@charset "utf-8";
/* Default padding for larger screens */
#product_list_wrp {
    padding: 10px 100px;
  }
  
  /* Responsive padding for medium-sized screens */
  @media (max-width: 768px) {
    #product_list_wrp {
      padding: 10px 50px;
    }
  }
  
  /* Responsive padding for smaller screens */
  @media (max-width: 480px) {
    #product_list_wrp {
      padding: 10px 20px;
    }
  }
  
#Breadcrumbs li {
    display: inline
}

#Breadcrumbs li:not(:last-child)::after {
    content: '/';
    margin: 0 .5em;
    opacity: .25
}

#Breadcrumbs a {
    display: inline-block;
    vertical-align: top;
    color: currentColor;
    opacity: .7
}

#product_list_content {
    flex: auto
}

#product_list_content>.inner {
    max-width: var(--MaxContentWidth);
    padding: 0 2em;
    margin: 0 auto;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: clamp(25em, 25%, 30em) 1fr;
    gap: 4em;
    align-items: normal
}

#product_list_menu {
    position: sticky;
    z-index: 1;
    top: calc((var(--site-header-height) - var(--global-nav-height)) * 1px + 2em);
    margin: 3em 0
}

#product_list_menu>.inner {
    max-height: calc(var(--VHeight) - 9em);
    overflow: hidden;
    overflow-y: auto
}

#product_list_wrp {
    margin: 3em 0
}

#product_list_menu>.inner>.title,
.product_list_menu_ctrl_off,
.product_list_menu_ctrl_on {
    display: none
}

@media only screen and (max-width:1280px) {
    #product_list_content>.inner {
        gap: 2em
    }

    #product_list_menu,
    #product_list_wrp {
        margin: 2em 0
    }
}

@media only screen and (max-width:1000px) {

    .product_list_menu_ctrl_off,
    .product_list_menu_ctrl_on {
        display: inherit
    }

    #product_list_content>.inner {
        display: block
    }

    body.show_product_list_menu {
        overflow: hidden
    }

    #product_list_menu.show {
        opacity: 1;
        visibility: visible;
        transition: opacity .3s
    }

    #product_list_menu.show>.inner {
        margin-inline-start: 1em;
        transition: .3s
    }

    #product_list_menu {
        position: fixed;
        inset: 0;
        z-index: 999;
        background: var(--background-color-mask-a50, rgba(255 255 255/50%));
        visibility: hidden;
        opacity: 0;
        margin: 0
    }

    #product_list_menu>.product_list_menu_ctrl_off {
        position: absolute;
        inset: 0;
        z-index: -1
    }

    #product_list_menu>.inner {
        max-height: calc(100% - 2em);
        width: calc(100% - 2em);
        max-width: 25em;
        box-sizing: border-box;
        background: var(--background-color-L2, #fff);
        box-shadow: rgba(0 0 0/10%) 0 0 2em;
        overflow: hidden;
        display: grid;
        grid-template-rows: auto 1fr;
        margin: 1em auto;
        margin-inline-start: -2em;
        border-radius: 1em
    }

    #product_list_menu>.inner>.title {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 1em;
        align-items: center;
        padding: 1em 2em;
        box-shadow: var(--body-text-color-a5, rgba(0 0 0/5%)) 0 1px 0
    }

    #product_list_menu>.inner>.title h3 {
        font-size: 1em;
        font-weight: 800
    }

    #product_list_menu>.inner>.title .product_list_menu_ctrl_off {
        margin-inline-end: -1em;
        opacity: .5
    }
}

@media only screen and (max-width:480px) {
    #product_list_wrp .title .product_list_menu_ctrl_on>span {
        --padding-inline: 1.5em;
        display: block;
        height: 3em;
        width: 5em
    }

    #product_list_wrp .title .product_list_menu_ctrl_on>span::before {
        margin: 0 auto
    }
}

.ItemMenu ul li~li {
    margin-block-start: 1px
}

.ItemMenu ul a {
    display: block;
    color: currentColor
}

.ItemMenu ul span {
    display: grid;
    grid-template-columns: 2.5em 1fr;
    gap: 1.5em;
    align-items: center;
    padding: .5em 1em;
    border-radius: 3em;
    transition: background .3s
}

.ItemMenu ul span::before {
    content: '';
    display: block;
    font-size: 2.5em;
    width: 1em;
    height: 1em;
    line-height: 1;
    overflow: hidden;
    margin: 0 auto;
    background-image: url(../images/category_icons-734b268be6.svg);
    background-repeat: no-repeat;
    background-size: 10em 5em;
    background-position: calc((var(--x, 10) - 1) * -1em) calc((var(--y, 5) - 1) * -1em)
}

.ItemMenu ul span[data-item-count] {
    grid-template-columns: 2.5em 1fr auto
}

.ItemMenu ul span[data-item-count]::after {
    content: attr(data-item-count);
    display: block;
    text-align: center;
    opacity: .5;
    min-width: 2em
}

.ItemMenu ul span>b {
    display: block;
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: inherit
}

.ItemMenu ul a:hover span {
    background: var(--body-text-color-a5, rgba(0 0 0/5%))
}

.ItemMenu ul a.on {
    pointer-events: none
}

.ItemMenu ul a.on span {
    background: linear-gradient(var(--angle, -90deg), var(--body-text-color-a10, rgba(var(--r, 0) var(--g, 0) var(--b, 0)/10%)), var(--body-text-color-a0, rgba(var(--r, 0) var(--g, 0) var(--b, 0)/0%)))
}

.ItemMenu ul a.on span>b {
    font-weight: 800
}

[lang*=ar] .ItemMenu ul a.on span {
    --angle: 90deg
}

@media only screen and (min-width:1001px) {
    .ItemMenu {
        background: var(--background-color-L2, #fff);
        border-radius: 1em;
        padding: 1.5em 1em
    }
}

@media only screen and (max-width:1000px) {
    .ItemMenu {
        padding: 1.5em 1em;
        overflow: hidden;
        overflow-y: auto
    }
}

#hot_card_list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(24em, 1fr));
    gap: 2em;
    margin: 3em 0
}

#hot_card_list a {
    display: grid;
    grid-template-columns: 10em 1fr;
    gap: 0;
    border-radius: 1em;
    overflow: hidden;
    box-shadow: var(--color-img-bdc, rgba(0 0 0/5%)) 0 0 0 1px;
    position: relative;
    height: calc(160/120 * 10em);
    transform: translate3d(0, 0, 0);
    color: var(--color-text);
    background-color: var(--background-color);
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgMTkyMCAxMDAwIj48c3R5bGUgdHlwZT0idGV4dC9jc3MiPnBhdGh7b3BhY2l0eTouMTtjbGlwLXBhdGg6dXJsKCNjbGlwUGF0aCk7ZmlsbDp1cmwoI2xpbmVhckdyYWRpZW50KTt9PC9zdHlsZT48Y2xpcFBhdGggaWQ9ImNsaXBQYXRoIj48cmVjdCB3aWR0aD0iMTkyMCIgaGVpZ2h0PSIxMDAwIi8+PC9jbGlwUGF0aD48bGluZWFyR3JhZGllbnQgaWQ9ImxpbmVhckdyYWRpZW50IiB4MT0iMCUiIHkxPSIwJSIgeDI9IjkwJSIgeTI9IjAlIj48c3RvcCBvZmZzZXQ9IjAiIHN0b3AtY29sb3I9ImhzbCgwIDAlIDEwMCUvMSkiLz48c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9ImhzbCgwIDAlIDEwMCUvMCkiLz48L2xpbmVhckdyYWRpZW50PjxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDE5MjAsMTAwMClzY2FsZSgtMSwtMSkiPjxwYXRoIGQ9Ik0xMzg0LjUgMzQzLjJMMTkyLjcgMTUzNWwtMjEzLjUtM0wxMzgzIDEyOC4ybDEuNSAyMTV6Ii8+PHBhdGggZD0iTTE5MTkuNyA0NDguM0wxMzU5IDEwMDlsLTEwMC40LTEuNEwxOTE5IDM0Ny4xbC43IDEwMS4yeiIvPjxwYXRoIGQ9Ik0xMTc2LjcgNTE0LjNMNjE2IDEwNzVsLTEwMC40LTEuNEwxMTc2IDQxMy4xbC43IDEwMS4yeiIvPjxwYXRoIGQ9Ik02NDQuNyA0NTcuM0w4NCAxMDE4bC0xMDAuNC0xLjRMNjQ0IDM1Ni4xbC43IDEwMS4yeiIvPjxwYXRoIGQ9Ik0xMzg3LjcgNDQ4LjNMODI3IDEwMDlsLTEwMC40LTEuNEwxMzg3IDM0Ny4xbC43IDEwMS4yeiIvPjxwYXRoIGQ9Ik0xMjUwLjEgNDkzLjhsLTU0NSA1NDUtNTIuNyA0My42IDY0MS45LTY0MS45LTQ0LjIgNTMuM3oiLz48cGF0aCBkPSJNODkxLjEgNjM5LjFMLTc3OCAyMzA4LjNsLTI5OC45LTQuMkw4ODkgMzM4LjFsMi4xIDMwMXoiLz48cGF0aCBkPSJNMTg3MC40IDQxOS44TC0yOC44IDIzMTlsLTM0MC4xLTQuOEwxODY4IDc3LjNsMi40IDM0Mi41eiIvPjxwYXRoIGQ9Ik05MDguNCA0MzYuOEwtOTkwLjggMjMzNmwtMzQwLjEtNC44TDkwNiA5NC4zbDIuNCAzNDIuNXoiLz48cGF0aCBkPSJNMTYzMi40IDUxNS44TC0yNjYuOCAyNDE1bC0zNDAuMS00LjhMMTYzMCAxNzMuM2wyLjQgMzQyLjV6Ii8+PHBhdGggZD0iTTExNzYuMyA1NjcuMUwtMTQ0NS42IDMxODlsLTQ2OS41LTYuNkwxMTczIDk0LjNsMy4zIDQ3Mi44eiIvPjxwYXRoIGQ9Ik0xNDI3LjMgNTgwLjFMLTExOTQuNiAzMjAybC00NjkuNS02LjZMMTQyNCAxMDcuM2wzLjMgNDcyLjh6Ii8+PHBhdGggZD0iTTE2NDkuNSA4ODAuMkw0NTcuNyAyMDcybC0yMTMuNS0zTDE2NDggNjY1LjJsMS41IDIxNXoiLz48cGF0aCBkPSJNNjc1LjggNTIyLjJsLTI2MjEuOSAyNjIxLjktNDY5LjQtNi42TDY3Mi41IDQ5LjRsMy4zIDQ3Mi44eiIvPjxwYXRoIGQ9Ik0yNTk1LjkgNTIyLjJMLTI2IDMxNDQuMWwtNDY5LjUtNi42TDI1OTIuNiA0OS40bDMuMyA0NzIuOHoiLz48L2c+PC9zdmc+), linear-gradient(to right bottom, hsl(var(--offset-h1) var(--offset-s1) var(--offset-l1)), hsl(var(--offset-h2) var(--offset-s2) var(--offset-l2)));
    background-repeat: repeat-x;
    background-position: top center;
    background-size: 80em auto, cover
}

#hot_card_list .img {
    --W: 10em;
    width: var(--W);
    height: calc(4/3 * var(--W));
    background: var(--body-text-color-a5, rgba(0 0 0/5%));
    overflow: hidden
}

#hot_card_list .img>img {
    vertical-align: top;
    width: 100%;
    object-position: center;
        object-fit: cover;
    height: 100%;
    transition: transform .3s
}

#hot_card_list .T {
    padding: 1.5em;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: .5em
}

#hot_card_list .name {
    word-break: break-word;
    font-weight: 800;
    font-size: 1.166667em
}

#hot_card_list .info {
    opacity: .5
}

#hot_card_list .info span {
    display: inline-block;
    vertical-align: top
}

#hot_card_list .data {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    opacity: .5;
    margin-block-start: auto
}

#hot_card_list .data span[icon] {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .5em;
    line-height: 1
}

#hot_card_list .data span[icon]::before {
    content: attr(icon);
    display: block;
    font-size: 1em;
    width: 1em;
    height: 1em;
    line-height: 1;
    overflow: hidden
}

#hot_card_list .data[data-sales="0"] {
    display: none
}

#hot_card_list>li>a:hover .img>img {
    transform: scale(1.05)
}

#hot_topup_list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(36em, 2fr));
    gap: 2em;
    margin: 3em 0
}

#hot_topup_list a {
    display: grid;
    grid-template-columns: 11.5em 1fr;
    gap: 0;
    border-radius: 1em;
    overflow: hidden;
    box-shadow: var(--color-img-bdc, rgba(0 0 0/5%)) 0 0 0 1px;
    position: relative;
    height: 11.5em;
    transform: translate3d(0, 0, 0);
    color: var(--color-text);
    background-color: var(--background-color);
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgMTkyMCAxMDAwIj48c3R5bGUgdHlwZT0idGV4dC9jc3MiPnBhdGh7b3BhY2l0eTouMTtjbGlwLXBhdGg6dXJsKCNjbGlwUGF0aCk7ZmlsbDp1cmwoI2xpbmVhckdyYWRpZW50KTt9PC9zdHlsZT48Y2xpcFBhdGggaWQ9ImNsaXBQYXRoIj48cmVjdCB3aWR0aD0iMTkyMCIgaGVpZ2h0PSIxMDAwIi8+PC9jbGlwUGF0aD48bGluZWFyR3JhZGllbnQgaWQ9ImxpbmVhckdyYWRpZW50IiB4MT0iMCUiIHkxPSIwJSIgeDI9IjkwJSIgeTI9IjAlIj48c3RvcCBvZmZzZXQ9IjAiIHN0b3AtY29sb3I9ImhzbCgwIDAlIDEwMCUvMSkiLz48c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9ImhzbCgwIDAlIDEwMCUvMCkiLz48L2xpbmVhckdyYWRpZW50PjxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDE5MjAsMTAwMClzY2FsZSgtMSwtMSkiPjxwYXRoIGQ9Ik0xMzg0LjUgMzQzLjJMMTkyLjcgMTUzNWwtMjEzLjUtM0wxMzgzIDEyOC4ybDEuNSAyMTV6Ii8+PHBhdGggZD0iTTE5MTkuNyA0NDguM0wxMzU5IDEwMDlsLTEwMC40LTEuNEwxOTE5IDM0Ny4xbC43IDEwMS4yeiIvPjxwYXRoIGQ9Ik0xMTc2LjcgNTE0LjNMNjE2IDEwNzVsLTEwMC40LTEuNEwxMTc2IDQxMy4xbC43IDEwMS4yeiIvPjxwYXRoIGQ9Ik02NDQuNyA0NTcuM0w4NCAxMDE4bC0xMDAuNC0xLjRMNjQ0IDM1Ni4xbC43IDEwMS4yeiIvPjxwYXRoIGQ9Ik0xMzg3LjcgNDQ4LjNMODI3IDEwMDlsLTEwMC40LTEuNEwxMzg3IDM0Ny4xbC43IDEwMS4yeiIvPjxwYXRoIGQ9Ik0xMjUwLjEgNDkzLjhsLTU0NSA1NDUtNTIuNyA0My42IDY0MS45LTY0MS45LTQ0LjIgNTMuM3oiLz48cGF0aCBkPSJNODkxLjEgNjM5LjFMLTc3OCAyMzA4LjNsLTI5OC45LTQuMkw4ODkgMzM4LjFsMi4xIDMwMXoiLz48cGF0aCBkPSJNMTg3MC40IDQxOS44TC0yOC44IDIzMTlsLTM0MC4xLTQuOEwxODY4IDc3LjNsMi40IDM0Mi41eiIvPjxwYXRoIGQ9Ik05MDguNCA0MzYuOEwtOTkwLjggMjMzNmwtMzQwLjEtNC44TDkwNiA5NC4zbDIuNCAzNDIuNXoiLz48cGF0aCBkPSJNMTYzMi40IDUxNS44TC0yNjYuOCAyNDE1bC0zNDAuMS00LjhMMTYzMCAxNzMuM2wyLjQgMzQyLjV6Ii8+PHBhdGggZD0iTTExNzYuMyA1NjcuMUwtMTQ0NS42IDMxODlsLTQ2OS41LTYuNkwxMTczIDk0LjNsMy4zIDQ3Mi44eiIvPjxwYXRoIGQ9Ik0xNDI3LjMgNTgwLjFMLTExOTQuNiAzMjAybC00NjkuNS02LjZMMTQyNCAxMDcuM2wzLjMgNDcyLjh6Ii8+PHBhdGggZD0iTTE2NDkuNSA4ODAuMkw0NTcuNyAyMDcybC0yMTMuNS0zTDE2NDggNjY1LjJsMS41IDIxNXoiLz48cGF0aCBkPSJNNjc1LjggNTIyLjJsLTI2MjEuOSAyNjIxLjktNDY5LjQtNi42TDY3Mi41IDQ5LjRsMy4zIDQ3Mi44eiIvPjxwYXRoIGQ9Ik0yNTk1LjkgNTIyLjJMLTI2IDMxNDQuMWwtNDY5LjUtNi42TDI1OTIuNiA0OS40bDMuMyA0NzIuOHoiLz48L2c+PC9zdmc+), linear-gradient(to right bottom, hsl(var(--offset-h1) var(--offset-s1) var(--offset-l1)), hsl(var(--offset-h2) var(--offset-s2) var(--offset-l2)));
    background-repeat: repeat-x;
    background-position: top center;
    background-size: 80em auto, cover
}

#hot_topup_list .img {
    --W: 11.5em;
    width: var(--W);
    height: var(--W);
    background: var(--body-text-color-a5, rgba(0 0 0/5%));
    overflow: hidden
}

#hot_topup_list .img>img {
    vertical-align: top;
    width: 100%;
    height: 100%;
    transition: .3s
}

#hot_topup_list .T {
    padding: 1.5em;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: .5em
}

#hot_topup_list .info {
    opacity: .5
}

#hot_topup_list .name {
    word-break: break-word;
    font-weight: 800
}

#hot_topup_list .data {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    opacity: .5;
    margin-block-start: auto
}

#hot_topup_list .data span[icon] {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .5em;
    line-height: 1
}

#hot_topup_list .data span[icon]::before {
    content: attr(icon);
    display: block;
    font-size: 1em;
    width: 1em;
    height: 1em;
    line-height: 1;
    overflow: hidden
}

#hot_topup_list .data[data-sales="0"] {
    display: none
}

#hot_topup_list>li>a:hover .img>img {
    transform: scale(1.05)
}

#product_list_wrp .ItemList {
    margin: 3em 0
}

@media only screen and (max-width:1280px) {
    #product_list_wrp .ItemList {
        margin: 2em 0;
        --column: 10em
    }
}

@media only screen and (max-width:1000px) {
    #product_list_wrp .title {
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: center;
        gap: 2em;
        justify-content: space-between
    }
}

[data-item-theme] {
    --r: var(--d-r, 255);
    --g: var(--d-g, 255);
    --b: var(--d-b, 255);
    --h: var(--d-h, 0);
    --s: var(--d-s, 0%);
    --l: var(--d-l, 100%);
    --threshold: .72;
    --background-color: rgba(var(--r), var(--g), var(--b), var(--background-alpha, 1));
    --red: calc(var(--r) * .2126);
    --green: calc(var(--g) * .7152);
    --blue: calc(var(--b) * .0722);
    --sum: calc(var(--red) + var(--green) + var(--blue));
    --lightness: calc(var(--sum) / 255);
    --color-text: hsl(0 0% calc((var(--lightness) - var(--threshold)) * -999999999%));
    --color-img-bdc: hsl(0 0% calc((var(--lightness) - var(--threshold)) * -999999999%)/5%);
    --color-img-bgc: hsl(0 0% calc((var(--lightness) - var(--threshold)) * -999999999%)/10%);
    --offset-h1: calc(var(--h) + 10);
    --offset-h2: calc(var(--h) - 10);
    --offset-s1: calc(var(--s) * .9);
    --offset-s2: calc(var(--s) * .9);
    --offset-l1: max(calc(var(--l) - 25%), 10%);
    --offset-l2: min(calc(var(--l) + 25%), 90%)
}

#Product_cover {
    color: var(--color-text);
    background-color: var(--background-color);
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgMTkyMCAxMDAwIj48c3R5bGUgdHlwZT0idGV4dC9jc3MiPnBhdGh7b3BhY2l0eTouMTtjbGlwLXBhdGg6dXJsKCNjbGlwUGF0aCk7ZmlsbDp1cmwoI2xpbmVhckdyYWRpZW50KTt9PC9zdHlsZT48Y2xpcFBhdGggaWQ9ImNsaXBQYXRoIj48cmVjdCB3aWR0aD0iMTkyMCIgaGVpZ2h0PSIxMDAwIi8+PC9jbGlwUGF0aD48bGluZWFyR3JhZGllbnQgaWQ9ImxpbmVhckdyYWRpZW50IiB4MT0iMCUiIHkxPSIwJSIgeDI9IjkwJSIgeTI9IjAlIj48c3RvcCBvZmZzZXQ9IjAiIHN0b3AtY29sb3I9ImhzbCgwIDAlIDEwMCUvMSkiLz48c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9ImhzbCgwIDAlIDEwMCUvMCkiLz48L2xpbmVhckdyYWRpZW50PjxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDE5MjAsMTAwMClzY2FsZSgtMSwtMSkiPjxwYXRoIGQ9Ik0xMzg0LjUgMzQzLjJMMTkyLjcgMTUzNWwtMjEzLjUtM0wxMzgzIDEyOC4ybDEuNSAyMTV6Ii8+PHBhdGggZD0iTTE5MTkuNyA0NDguM0wxMzU5IDEwMDlsLTEwMC40LTEuNEwxOTE5IDM0Ny4xbC43IDEwMS4yeiIvPjxwYXRoIGQ9Ik0xMTc2LjcgNTE0LjNMNjE2IDEwNzVsLTEwMC40LTEuNEwxMTc2IDQxMy4xbC43IDEwMS4yeiIvPjxwYXRoIGQ9Ik02NDQuNyA0NTcuM0w4NCAxMDE4bC0xMDAuNC0xLjRMNjQ0IDM1Ni4xbC43IDEwMS4yeiIvPjxwYXRoIGQ9Ik0xMzg3LjcgNDQ4LjNMODI3IDEwMDlsLTEwMC40LTEuNEwxMzg3IDM0Ny4xbC43IDEwMS4yeiIvPjxwYXRoIGQ9Ik0xMjUwLjEgNDkzLjhsLTU0NSA1NDUtNTIuNyA0My42IDY0MS45LTY0MS45LTQ0LjIgNTMuM3oiLz48cGF0aCBkPSJNODkxLjEgNjM5LjFMLTc3OCAyMzA4LjNsLTI5OC45LTQuMkw4ODkgMzM4LjFsMi4xIDMwMXoiLz48cGF0aCBkPSJNMTg3MC40IDQxOS44TC0yOC44IDIzMTlsLTM0MC4xLTQuOEwxODY4IDc3LjNsMi40IDM0Mi41eiIvPjxwYXRoIGQ9Ik05MDguNCA0MzYuOEwtOTkwLjggMjMzNmwtMzQwLjEtNC44TDkwNiA5NC4zbDIuNCAzNDIuNXoiLz48cGF0aCBkPSJNMTYzMi40IDUxNS44TC0yNjYuOCAyNDE1bC0zNDAuMS00LjhMMTYzMCAxNzMuM2wyLjQgMzQyLjV6Ii8+PHBhdGggZD0iTTExNzYuMyA1NjcuMUwtMTQ0NS42IDMxODlsLTQ2OS41LTYuNkwxMTczIDk0LjNsMy4zIDQ3Mi44eiIvPjxwYXRoIGQ9Ik0xNDI3LjMgNTgwLjFMLTExOTQuNiAzMjAybC00NjkuNS02LjZMMTQyNCAxMDcuM2wzLjMgNDcyLjh6Ii8+PHBhdGggZD0iTTE2NDkuNSA4ODAuMkw0NTcuNyAyMDcybC0yMTMuNS0zTDE2NDggNjY1LjJsMS41IDIxNXoiLz48cGF0aCBkPSJNNjc1LjggNTIyLjJsLTI2MjEuOSAyNjIxLjktNDY5LjQtNi42TDY3Mi41IDQ5LjRsMy4zIDQ3Mi44eiIvPjxwYXRoIGQ9Ik0yNTk1LjkgNTIyLjJMLTI2IDMxNDQuMWwtNDY5LjUtNi42TDI1OTIuNiA0OS40bDMuMyA0NzIuOHoiLz48L2c+PC9zdmc+), linear-gradient(135deg, hsl(216 85% 39%/75%),rgba(0, 28, 81, 0.7));
    background-repeat: repeat-x;
    background-position: top center;
    background-size: clamp(60em, var(--VWidth), 100em) auto, cover
}

#Product_cover>.inner {
    max-width: var(--MaxContentWidth);
    margin: 0 auto;
    padding: 0 2em;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2em 3em;
    align-items: end
}

#Product_cover .cover {
    align-self: start;
    transform: translateY(2em)
}

#Product_cover .cover .img {
    width: var(--width);
    border-radius: calc(var(--width)/10);
    position: relative;
    overflow: hidden;
    box-shadow: var(--color-img-bdc, rgba(0 0 0/10%)) 0 0 0 1px, rgba(0 0 0/20%) 0 0 2em;
    background: var(--color-img-bgc, rgba(0 0 0/5%))
}

#Product_cover .cover .img.card {
    --width: 15em;
    height: calc(var(--width) * 1.333334)
}

#Product_cover .cover .img.topup {
    --width: 20em;
    height: var(--width)
}

#Product_cover .cover img {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%
}

#Product_cover .info {
    display: grid;
    gap: 1em;
    margin: 2em 0
}

#Product_cover .info .name h1 {
    font-size: 2.5em;
    font-weight: 800;
    text-transform: uppercase
}

#Product_cover .info .feature {
    display: flex;
    flex-wrap: wrap;
    gap: 1em
}

#Product_cover .info .feature>li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .5em;
    align-items: center
}

#Product_cover .info .feature>li>.C {
    white-space: nowrap
}

#Product_cover .info .feature span {
    display: block
}

#Product_cover .info .feature span[region] {
    width: 3em;
    height: 2em;
    overflow: hidden
}

#Product_cover .info .feature span[region]::before {
    --h: 2em;
    margin: 0;
    box-shadow: var(--color-img-bdc, rgba(0 0 0/10%)) 0 0 0 2px;
    transform: scale(.833334)
}

#Product_cover .info .feature span[icon] {
    width: 2em;
    height: 2em;
    overflow: hidden
}

#Product_cover .info .feature span[icon]::before {
    content: attr(icon);
    display: block;
    font-size: 2em;
    width: 1em;
    height: 1em;
    line-height: 1;
    overflow: hidden;
    opacity: .5
}

#Product_cover .info .feature b.mb_grade_pct,
#Product_cover .info .feature b.mb_rate {
    background: var(--color-img-bgc, rgba(0 0 0/5%));
    display: inline-block;
    vertical-align: top;
    padding: 0 .5em;
    border-radius: .25em
}

#Product_cover .info .note {
    display: grid;
    grid-template-columns: 2.5em 1fr;
    gap: 1em;
    align-items: center;
    max-width: 60em
}

#Product_cover .info .note::before {
    content: attr(icon);
    display: block;
    font-size: 2em;
    width: 1em;
    height: 1em;
    line-height: 1;
    overflow: hidden;
    opacity: .5;
    margin: 0 auto;
    align-self: flex-start
}

#Product_cover .info .note>div {
    word-break: break-word
}

#Product_cover .info .note a {
    color: currentColor !important;
    text-decoration: underline;
    font-weight: 800
}

#Product_cover .info .note b,
#Product_cover .info .note strong {
    font-weight: 800
}

#Product_cover .info .note>div * {
    display: inline
}

#Product_cover .info .note>div p {
    display: inline;
    margin: 0
}

#Product_cover .info .note>div br {
    display: none !important
}

#Product_cover .info .note>div [color],
#Product_cover .info .note>div [style] {
    all: unset !important
}

#Product_cover .info .note a.bundle_link {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1em;
    align-items: center;
    text-decoration: none
}

#Product_cover .info .note a.bundle_link::before {
    content: attr(icon);
    display: block;
    font-size: 1em;
    width: 1.5em;
    height: 1.5em;
    line-height: 1;
    overflow: hidden;
    order: 99;
    background: var(--color-img-bgc);
    border-radius: 1em;
    box-sizing: border-box;
    padding: .25em;
    align-self: flex-start
}

#Product_cover .func {
    margin: 2em 0
}

#Product_cover .func_btc {
    display: flex;
    gap: 1em;
    flex-direction: column;
    align-items: center;
    justify-content: end
}

#Product_cover .func_btc .btw>span {
    padding: 0
}

#Product_cover .func_btc #favorite_bt.added>span::before {
    color: var(--SiteTHM)
}

@media only screen and (max-width:1280px) {
    #Product_cover>.inner {
        gap: 2em
    }

    #Product_cover .cover .img.card {
        --width: 13.333334em
    }

    #Product_cover .info .name h1 {
        font-size: 2em
    }

    #Product_cover .func_btc {
        flex-direction: column
    }
}

@media only screen and (max-width:1000px) {
    #Product_cover .cover .img.card {
        --width: 12em
    }

    #Product_cover .info .name h1 {
        font-size: 1.75em
    }

    #Product_cover .func {
        align-self: start
    }

    #Product_cover .func_btc .btw>span {
        display: block;
        width: 2em;
        height: 2em;
        overflow: hidden
    }
}

@media only screen and (max-width:800px) {
    #Product_cover {
        position: relative
    }

    #Product_cover>.inner {
        grid-template-columns: 1fr;
        max-width: 40em;
        padding: 2em;
        padding-block-end: 5em
    }

    #Product_cover .cover {
        transform: none
    }

    #Product_cover .cover .img.card {
        margin: 0 auto;
        --width: 12em
    }

    #Product_cover .cover .img.topup {
        margin: 0 auto;
        --width: 16em
    }

    #Product_cover .info {
        margin: 0
    }

    #Product_cover .info .name {
        text-align: center
    }

    #Product_cover .info .feature {
        justify-content: center
    }

    #Product_cover .info .note {
        margin-inline: auto;
        grid-template-columns: 1fr;
        text-align: center
    }

    #Product_cover .info .note::before {
        content: none
    }

    #Product_cover .func {
        position: absolute;
        top: 0;
        right: 0;
        z-index: 1;
        margin: 2em
    }
}

#Product_purchase {
    padding: 4em 0
}

#Product_purchase>.inner {
    max-width: var(--MaxContentWidth);
    margin: 0 auto;
    padding: 0 2em;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr clamp(30em, 33%, 35em);
    gap: 3em;
    align-items: flex-start
}

@media only screen and (min-height:481px) {
    #Product_purchase .item_function {
        position: sticky;
        top: calc((var(--site-header-height) - var(--global-nav-height)) * 1px + 2em);
        z-index: 1
    }
}

#item_form_ctrl_on,
.item_sku>.btc,
.item_sku>.title {
    display: none
}

@media only screen and (max-width:1280px) {
    #Product_purchase>.inner {
        gap: 2em
    }
}

@media only screen and (max-width:800px) {
    #Product_purchase {
        padding: 1em 0
    }

    #Product_purchase>.inner {
        display: block;
        max-width: 40em;
        padding: 0 1em
    }
}

#SKU_list input[type=radio] {
    position: absolute;
    inset: 100%;
    width: 0;
    height: 0;
    padding: 0;
    margin: 0;
    -webkit-appearance: none;
    -moz-appearance: none
}

#SKU_list .SKU_type::before {
    content: '';
    display: none;
    width: 1.5em;
    height: 1.5em;
    overflow: hidden;
    background: var(--body-text-color-a10, rgba(0 0 0/10%));
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTkuMiAxNi4ybC0yLjktMi44Yy0uNC0uNC0uNC0xIDAtMS40LjQtLjQgMS0uNCAxLjQgMGwxLjQgMS40Yy40LjQgMSAuNCAxLjQgMGw1LjctNS43Yy40LS40IDEtLjQgMS40IDAgLjQuNC40IDEgMCAxLjRsLTcgNy4xYy0uNC40LTEgLjQtMS40IDB6IiBmaWxsPSJyZ2JhKDAgMCAwLzUlKSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMCAyKSIvPjxwYXRoIGQ9Ik05LjIgMTYuMmwtMi45LTIuOGMtLjQtLjQtLjQtMSAwLTEuNC40LS40IDEtLjQgMS40IDBsMS40IDEuNGMuNC40IDEgLjQgMS40IDBsNS43LTUuN2MuNC0uNCAxLS40IDEuNCAwIC40LjQuNCAxIDAgMS40bC03IDcuMWMtLjQuNC0xIC40LTEuNCAweiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==);
    background-size: 0;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 1.5em;
    transition: background-size cubic-bezier(.5, 0, .5, 2) .3s, background-color .3s;
    align-self: start
}

#SKU_list input:checked+.SKU_type::before {
    background-color: var(--SiteTHM);
    background-size: 100%
}

#SKU_list input:disabled+.SKU_type {
    cursor: not-allowed
}

#SKU_list input:disabled+.SKU_type::before {
    background-color: var(--body-text-color-a25, rgba(0 0 0/5%));
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCA0OCI+PHBhdGggZmlsbD0icmdiYSgwIDAgMC81MCUpIiBkPSJNMTYuMyAxNi4zYy0uNC40LTEgLjQtMS40IDBMMTIgMTMuNGwtMi45IDIuOWMtLjQuNC0xIC40LTEuNCAwLS40LS40LS40LTEgMC0xLjRsMi45LTIuOS0yLjktMi45Yy0uNC0uNC0uNC0xIDAtMS40LjQtLjQgMS0uNCAxLjQgMGwyLjkgMi45IDIuOS0yLjljLjQtLjQgMS0uNCAxLjQgMCAuNC40LjQgMSAwIDEuNEwxMy40IDEybDIuOSAyLjljLjQuNC40IDEgMCAxLjR6Ii8+PHBhdGggZmlsbD0icmdiYSgwIDAgMC81JSkiIGQ9Ik0xNi4zIDQyLjNjLS40LjQtMSAuNC0xLjQgMEwxMiAzOS40bC0yLjkgMi45Yy0uNC40LTEgLjQtMS40IDAtLjQtLjQtLjQtMSAwLTEuNGwyLjktMi45LTIuOS0yLjljLS40LS40LS40LTEgMC0xLjQuNC0uNCAxLS40IDEuNCAwbDIuOSAyLjkgMi45LTIuOWMuNC0uNCAxLS40IDEuNCAwIC40LjQuNCAxIDAgMS40TDEzLjQgMzhsMi45IDIuOWMuNC40LjQgMSAwIDEuNHoiLz48cGF0aCBmaWxsPSIjZmZmIiBkPSJNMTYuMyA0MC4zYy0uNC40LTEgLjQtMS40IDBMMTIgMzcuNGwtMi45IDIuOWMtLjQuNC0xIC40LTEuNCAwLS40LS40LS40LTEgMC0xLjRsMi45LTIuOS0yLjktMi45Yy0uNC0uNC0uNC0xIDAtMS40LjQtLjQgMS0uNCAxLjQgMGwyLjkgMi45IDIuOS0yLjljLjQtLjQgMS0uNCAxLjQgMCAuNC40LjQgMSAwIDEuNEwxMy40IDM2bDIuOSAyLjljLjQuNC40IDEgMCAxLjR6Ii8+PC9zdmc+);
    background-size: 100%;
    background-position-y: var(--y, top)
}

#SKU_list .SKU_type {
    --fs: 1em;
    --pd: 1.5em;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--pd);
    align-items: center
}

#SKU_list .SKU_type .img {
    --W: 5em;
    width: var(--W);
    height: var(--W);
    background: var(--body-text-color-a5, rgba(0 0 0/5%));
    box-shadow: var(--body-text-color-a5, rgba(0 0 0/5%)) 0 0 0 1px;
    border-radius: 25%;
    overflow: hidden
}

#SKU_list .SKU_type .img img {
    width: 100%;
    height: 100%;
    vertical-align: top
}

#SKU_list .SKU_type .T {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: .25em var(--pd);
    align-items: start
}

#SKU_list .SKU_type .sku {
    font-size: var(--fs);
    font-weight: 800;
    display: flex;
    flex-wrap: wrap;
    gap: .5em;
    align-items: center
}

#SKU_list .SKU_type .sku .instantdelivery,
#SKU_list .SKU_type .sku .promo {
    display: block
}

#SKU_list .SKU_type .sku .instantdelivery::before,
#SKU_list .SKU_type .sku .promo::before {
    display: block;
    font-size: 1.5em;
    width: 1em;
    height: 1em;
    line-height: 1;
    overflow: hidden
}

#SKU_list .SKU_type .sku .instantdelivery::before {
    content: 'offline_bolt';
    color: var(--text-color-promotion)
}

#SKU_list .SKU_type .sku .promo::before {
    content: 'local_mall';
    color: var(--SiteTHM)
}

#SKU_list .SKU_type .price {
    display: flex;
    flex-direction: column;
    align-items: end
}

#SKU_list .SKU_type .price b {
    display: block;
    white-space: nowrap;
    font-weight: inherit
}

#SKU_list .SKU_type .price b:not(.price_origional) {
    font-size: var(--fs);
    color: var(--CPT-THM);
    font-weight: 800
}

#SKU_list .SKU_type .price b.price_origional {
    opacity: .5;
    text-decoration: line-through
}

#SKU_list ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(26em, 1fr));
    gap: 1em;
    align-items: flex-start
}

#SKU_list ul~ul {
    margin-block-start: 2em
}

#SKU_list label {
    display: block;
    position: relative
}

#SKU_list .SKU_type {
    padding: var(--pd, 1.333334em);
    border-radius: 1em;
    background: var(--background-color-L3, #fff);
    cursor: pointer;
    transition: .3s;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    box-shadow: var(--SiteTHM-A50) 0 0 0 0 inset, var(--SiteTHM-A0) 0 0 0 999em inset
}

#SKU_list .SKU_type .img {
    --W: 4em;
    align-self: flex-start
}

#SKU_list .mark {
    grid-column: 1/2;
    font-size: .8em
}

#SKU_list .mark.promotion {
    color: var(--text-color-promotion)
}

#SKU_list .mark.bundle {
    color: var(--text-color-promotion)
}

#SKU_list .mark.stockout {
    color: #fff;
    background: var(--text-color-alert);
    width: fit-content;
    padding: 0 .5em;
    border-radius: .25em
}

#SKU_list .mark.preorder {
    color: #fff;
    background: rgba(102 51 153);
    width: fit-content;
    padding: 0 .5em;
    border-radius: .25em
}

#SKU_list input:checked+.SKU_type {
    box-shadow: var(--SiteTHM-A50) 0 0 0 .25em inset, var(--SiteTHM-A5) 0 0 0 999em inset
}

@media only screen and (min-width:1001px) {
    #SKU_list li:only-of-type .SKU_type {
        --pd: 2em;
        --fs: 1.25em
    }

    #SKU_list li:only-of-type .SKU_type .img {
        --W: 5em
    }

    #SKU_list li:nth-last-child(n+11) .SKU_type,
    #SKU_list li:nth-last-child(n+11)~li .SKU_type {
        --pd: 1.5em;
        padding-block: 1.75em
    }

    #SKU_list li:nth-last-child(n+11) .SKU_type::before,
    #SKU_list li:nth-last-child(n+11)~li .SKU_type::before {
        display: block
    }

    #SKU_list li:nth-last-child(n+11) .SKU_type .img,
    #SKU_list li:nth-last-child(n+11)~li .SKU_type .img {
        display: none
    }
}

@media only screen and (min-width:801px) and (max-width:1000px) {

    #SKU_list li:nth-last-child(n+7) .SKU_type::before,
    #SKU_list li:nth-last-child(n+7)~li .SKU_type::before {
        display: block
    }

    #SKU_list li:nth-last-child(n+7) .SKU_type .img,
    #SKU_list li:nth-last-child(n+7)~li .SKU_type .img {
        display: none
    }

    #SKU_list .SKU_type {
        --pd: 1.5em
    }

    #SKU_list .SKU_type .img {
        --W: 3.5em
    }
}

@media only screen and (max-width:800px) {
    .item_form {
        position: fixed;
        inset: 0;
        z-index: 999;
        background: var(--background-color-mask-a75, rgba(255 255 255/75%));
        display: flex;
        align-items: flex-end;
        opacity: 0;
        visibility: hidden
    }

    .item_form.item_form_activated {
        opacity: 1;
        visibility: visible;
        transition: .3s
    }

    body.item_form_activated {
        overflow: hidden
    }

    #item_form_ctrl_on {
        display: block;
        background: var(--background-color-L2, #fff);
        border-radius: 1em;
        padding: 1.5em 2em;
        margin-block-end: 1em;
        margin-block-start: -4em;
        position: relative;
        z-index: 1
    }

    #item_form_ctrl_on>.inner {
        --fs: 1em;
        --pd: 1em;
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: var(--pd);
        align-items: flex-start
    }

    #item_form_ctrl_on>.inner::before {
        content: attr(icon);
        display: block;
        order: 9;
        font-size: 1.5em;
        width: 1.333334em;
        height: 1.333334em;
        text-align: center;
        line-height: 1.333334;
        background: var(--body-text-color-a5, rgba(0 0 0/5%));
        border-radius: 100%;
        margin: .333334em 0
    }

    #item_form_ctrl_on .img {
        --W: 3em;
        width: var(--W);
        height: var(--W);
        border-radius: calc(var(--W)/4);
        overflow: hidden;
        background: var(--body-text-color-a5, rgba(0 0 0/5%));
        box-shadow: var(--body-text-color-a5, rgba(0 0 0/5%)) 0 0 0 1px
    }

    #item_form_ctrl_on .img img {
        vertical-align: top;
        width: 100%;
        height: 100%
    }

    #item_form_ctrl_on .T {
        align-self: center
    }

    #item_form_ctrl_on .sku {
        font-size: var(--fs);
        font-weight: 800
    }

    #item_form_ctrl_on .price {
        display: none
    }

    #item_form_ctrl_on .mark {
        grid-column: 1/2
    }

    #item_form_ctrl_on .mark.promotion {
        color: var(--text-color-promotion)
    }

    #item_form_ctrl_on .mark.stockout {
        color: #fff;
        background: rgba(0 0 0/50%);
        width: fit-content;
        font-size: .8em;
        padding: 0 .5em;
        border-radius: .25em
    }

    #item_form_ctrl_on .mark.preorder {
        color: #fff;
        background: rgba(102 51 153);
        width: fit-content;
        font-size: .8em;
        padding: 0 .5em;
        border-radius: .25em
    }

    #item_form_ctrl_on .mark.bundle {
        color: var(--text-color-promotion)
    }

    #item_form_ctrl_on.loading {
        pointer-events: none
    }

    #item_form_ctrl_on.loading>.inner::before {
        content: '';
        background: rgba(0 0 0/25%);
        opacity: 0;
        animation: btwloadingdot .75s 0s ease-out infinite
    }

    .item_sku {
        width: 100%;
        max-width: 40em;
        min-height: calc(var(--VHeight) * .5);
        max-height: calc(var(--VHeight) - 2em);
        margin: 0 auto;
        background: var(--background-color-L1, #fff);
        box-shadow: rgba(0 0 0/10%) 0 0 2em;
        border-radius: 1em 1em 0 0;
        display: flex;
        flex-direction: column;
        overflow: hidden
    }

    .item_sku>.title {
        display: block;
        flex: none;
        padding: 1.75em 1.5em
    }

    .item_sku>.title h3 {
        font-size: 1em
    }

    .item_sku>.btc {
        display: block;
        flex: none;
        padding: 1.5em
    }

    .item_sku>.btc #item_form_ctrl_off {
        display: block;
        text-transform: uppercase;
        font-weight: 800;
        font-size: 1.166667em
    }

    @supports(bottom:env(safe-area-inset-bottom)) {
        .item_sku>.btc {
            padding-block-end: max(1.5em, env(safe-area-inset-bottom))
        }
    }

    #SKU_list {
        flex: auto;
        overflow: hidden;
        overflow-y: auto;
        padding: 1.5em;
        background: var(--background-color-L2, hsl(0 0% 97%));
        border-radius: 1em;
        box-shadow: var(--body-text-color-a5, rgb(0 0 0/5%)) 0 0 0 1px
    }

    #SKU_list ul {
        grid-template-columns: repeat(auto-fill, minmax(20em, 1fr))
    }

    #SKU_list .SKU_type::before {
        display: block !important
    }

    #SKU_list .SKU_type .img {
        display: none !important
    }
}

@media only screen and (max-width:480px) {
    #item_form_ctrl_on {
        padding: 1.5em
    }
}

.item_function {
    display: grid;
    gap: 1em
}

.item_function .order {
    background: var(--background-color-L2, #fff);
    border-radius: 1em;
    overflow: hidden;
    padding: 1.5em 2em
}

.item_function .order.hide {
    display: none
}

.item_function .calculate {
    background: var(--background-color-L2, #fff);
    border-radius: 1em;
    overflow: hidden
}

@media only screen and (max-width:480px) {
    .item_function .order {
        padding: 1.5em
    }
}

.item_qtt {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0 2em;
    align-items: center
}

.item_qtt.hide {
    display: none
}

.item_qtt>.title {
    font-weight: 800
}

#SKU_quantity {
    text-align: center;
    width: 10em;
    align-self: start
}

#SKU_quantity .cpt-quantity:not(:focus-within) {
    border-color: transparent;
    background: var(--body-text-color-a5, rgba(0 0 0/5%))
}

#SKU_quantity .cpt-quantity>input[type=number] {
    font-weight: 800;
    padding: 0;
    min-width: unset
}

#SKU_quantity .cpt-quantity>input[type=number][disabled] {
    width: 100%;
    background: 0 0
}

#SKU_quantity .cpt-quantity>input[type=number][disabled]~a.btw {
    display: none
}

@media only screen and (max-width:480px) {
    #SKU_quantity .cpt-quantity>input[type=number] {
        padding: 0;
        min-width: 3.5em
    }
}

#SKU_quantity:focus-within {
    grid-row: span 2
}

#SKU_quantity:focus-within~.tips_wrp {
    display: block
}

.item_qtt .tips_wrp {
    display: none
}

.item_qtt .tips_wrp .tips {
    opacity: .5
}

.item_qtt .tips_wrp .tips span {
    display: block
}

.item_qtt .tips_wrp .tips span.hide {
    display: none
}

.item_function .calculate>.inner {
    padding: 2em
}

@media only screen and (max-width:800px) {
    .item_function .calculate {
        margin-block-start: 1em
    }
}

@media only screen and (max-width:480px) {
    .item_function .calculate>.inner {
        padding: 1.5em
    }
}

.item_function .details {
    display: grid;
    gap: 1em
}

.item_function .details>div {
    display: grid;
    grid-template-columns: max(30%, 8em) 1fr;
    gap: 2em
}

.item_function .details>div.hide {
    display: none !important
}

.item_function .details #gstInfo .C {
    font-weight: 800;
    color: var(--CPT-THM)
}

.item_function .details #card_discountInfo .C {
    font-weight: 800;
    color: var(--text-color-promotion)
}

.item_function .details .C {
    text-align: end
}

.item_function .details .C b {
    font-weight: 800
}

.item_function .details .free_item {
    display: inline-block;
    vertical-align: top
}

.item_function .details .free_qtt {
    display: inline-block;
    vertical-align: top
}

.item_function .details .total {
    margin-block-end: 1em;
    padding-block-end: 2em;
    border-bottom: 1px var(--body-text-color-a5, rgba(0 0 0/5%)) solid
}

.item_function .details .total>div {
    font-size: 1.666667em;
    font-weight: 800;
    line-height: 1.25
}

.item_function .details .total .price {
    display: block;
    color: var(--SiteTHM)
}

.item_function .details .total .credits {
    display: block;
    font-size: .6em;
    font-weight: 600;
    opacity: .5
}

.item_function .details .total #totalCredits {
    font-weight: 800
}

.item_function .calculate .btc {
    display: grid;
    grid-template-columns: max(10em, 30%) 1fr;
    gap: 1em;
    margin-block-start: 2em
}

.item_function .calculate .btw {
    font-size: 1.166667em;
    text-transform: uppercase
}

.item_function .calculate .btw:only-child {
    grid-column: 1/-1
}

.item_function .calculate .btw.stockout {
    background: var(--body-text-color-a50, rgba(0 0 0/10%))
}

.item_function .calculate #addToCardButton>span {
    width: auto
}

.item_function .calculate #addToCardButton>span::before {
    margin: 0 auto !important
}

.item_function .calculate .btc_paypal {
    margin-block-start: 1em
}

.item_function .calculate .btc_paypal #paypalBuyButton {
    display: block;
    text-transform: none
}

.item_function .calculate .btc_paypal #paypalBuyButton:not(.btwloading)>span::before {
    color: transparent;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0OCA0OCI+PGcgZmlsbD0iI0ZGRiI+PHBhdGggb3BhY2l0eT0iLjY4IiBkPSJNNDAuMyAxMi4yYy42LTMuNyAwLTYuMy0yLTguNkMzNi4xIDEuMSAzMi4xIDAgMjYuOSAwSDEyYy0xLjEgMC0xLjkuOC0yLjEgMS44TDMuNyA0MS4yYy0uMS44LjUgMS41IDEuMyAxLjVoOS4ybC0uNiA0Yy0uMS43LjQgMS4zIDEuMSAxLjNoNy44Yy45IDAgMS43LS43IDEuOC0xLjZsLjEtLjQgMS41LTkuMy4xLS41Yy4xLS45LjktMS42IDEuOC0xLjZIMjljNy41IDAgMTMuNC0zLjEgMTUuMS0xMS45LjctMy43LjMtNi44LTEuNi04LjktLjYtLjYtMS4zLTEuMi0yLjItMS42Ii8+PHBhdGggb3BhY2l0eT0iLjciIGQ9Ik00MC4zIDEyLjJjLjYtMy43IDAtNi4zLTItOC42QzM2LjEgMS4xIDMyLjEgMCAyNi45IDBIMTJjLTEuMSAwLTEuOS44LTIuMSAxLjhMMy43IDQxLjJjLS4xLjguNSAxLjUgMS4zIDEuNWg5LjJMMTYuNSAyOGwtLjEuNWMuMi0xIDEuMS0xLjggMi4xLTEuOGg0LjRjOC42IDAgMTUuMy0zLjUgMTcuMy0xMy42IDAtLjMuMS0uNi4xLS45Ii8+PHBhdGggZD0iTTE5IDEyLjJjLjEtLjYuNS0xLjEgMS0xLjQuMi0uMS41LS4yLjgtLjJoMTEuN2MxLjQgMCAyLjcuMSAzLjkuMy4zLjEuNy4xIDEgLjIuMy4xLjYuMS45LjIuMiAwIC4zLjEuNC4xLjYuMiAxLjEuNCAxLjYuNy42LTMuNyAwLTYuMy0yLTguNkMzNi4xIDEuMSAzMi4xIDAgMjYuOSAwSDEyYy0xLjEgMC0xLjkuOC0yLjEgMS44TDMuNyA0MS4yYy0uMS44LjUgMS41IDEuMyAxLjVoOS4yTDE2LjUgMjggMTkgMTIuMnoiLz48L2c+PC9zdmc+);
    background-size: 75%;
    background-position: center;
    background-repeat: no-repeat
}

.item_function .calculate .btc_paypal #paypalSave {
    display: block;
    margin: 1em 1em 0
}

.item_function .calculate .btc_paypal #paypalSave>span {
    justify-content: center
}

@media only screen and (max-width:480px) {
    .item_function .details .total {
        padding-block-end: 1.5em;
        margin-block-end: .5em
    }

    .item_function .calculate .btc {
        margin-block-start: 1.5em
    }
}

.item_qtt:not(.hide)~.item_table {
    padding-block-start: 1.5em;
    margin-block-start: 1.5em;
    box-shadow: var(--body-text-color-a5, rgb(0 0 0/5%)) 0 1px 0 inset
}

.item_table {
    display: grid;
    gap: 1.5em
}

.item_table.hide {
    display: none
}

.item_table>.title {
    font-weight: 800
}

#SKU_table {
    display: grid;
    gap: 1.5em
}

#SKU_table [class*=cpt-]:not(:focus-within) {
    border-color: transparent;
    background: var(--body-text-color-a5, rgba(0 0 0/5%))
}

#SKU_table .cpt-select>span,
#SKU_table .cpt-text>span {
    padding: 0 1.5em;
    font-weight: 600;
    min-width: 30%;
    box-sizing: border-box
}

#SKU_table .cpt-select>select,
#SKU_table .cpt-text>input {
    padding: 0 1.5em;
    text-align: left;
    font-weight: 800
}

#SKU_table #game_top_up_field {
    display: grid;
    gap: 1em
}

#SKU_table .field .tips_wrp {
    margin: 0 1.5em
}

#SKU_table .field .tips_wrp .tips {
    margin-block-start: .5em;
    opacity: .5
}

#SKU_table .field .tips_wrp .alert {
    margin-block-start: .5em;
    color: var(--text-color-alert);
    font-weight: 800
}

#SKU_table .field .tips_img {
    margin: 1em 1.5em;
    display: none
}

#SKU_table .field:focus-within .tips_img {
    display: block
}

#SKU_table .field .tips_img .img {
    display: block;
    text-align: center;
    position: relative;
    border-radius: .5em;
    overflow: hidden;
    background: var(--body-text-color-a5, #fff);
    box-shadow: var(--body-text-color-a10, rgb(0 0 0/5%)) 0 0 0 1px
}

#SKU_table .field .tips_img .img::before {
    content: attr(icon);
    display: block;
    font-size: 4em;
    width: 100%;
    height: 100%;
    background: rgba(0 0 0/50%);
    color: #fff;
    position: absolute;
    inset: 0;
    margin: auto;
    z-index: 1;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity .3s
}

#SKU_table .field .tips_img .img:hover::before {
    opacity: .7
}

#SKU_table .field .tips_img img {
    vertical-align: top;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 30em
}

#SKU_table .field .tips_img img.lazyloading {
    width: 100%;
    aspect-ratio: 2/1;
    background: url(../images/placeholder/newscover-45f2fe4849.svg) no-repeat center/contain
}

#SKU_table #game_top_up_field_autofill.hide,
#SKU_table #game_top_up_field_autofill:empty {
    display: none
}

#SKU_table #game_top_up_field_autofill {
    display: grid;
    gap: 1.5em
}

#SKU_table #game_top_up_field_autofill h3 {
    font-size: 1em
}

#SKU_table #game_top_up_field_autofill .field_wrp {
    display: flex;
    flex-wrap: wrap;
    gap: .5em 1em
}

#SKU_table #game_top_up_field_autofill .field {
    counter-increment: fields;
    display: grid;
    grid-template-columns: 1.5em 1fr;
    gap: 1em
}

#SKU_table #game_top_up_field_autofill .field::before {
    content: counter(fields);
    display: block;
    width: 1.5em;
    height: 1.5em;
    text-align: center;
    background: var(--body-text-color-a5, rgba(0 0 0/5%));
    color: var(--body-text-color-a50, rgba(0 0 0/50%));
    border-radius: 100%;
    font-weight: 800
}

#SKU_table #game_top_up_field_autofill .field>div {
    display: block;
    cursor: pointer
}

#SKU_table #game_top_up_field_autofill .field>div:hover {
    background: var(--SiteTHM);
    color: #fff
}

#SKU_table #game_top_up_field_autofill .field span {
    font-weight: 600
}

#SKU_table #game_top_up_field_autofill .field span:not(:last-child)::after {
    content: ' / ';
    opacity: .25
}

@media only screen and (max-width:800px) {
    .item_qtt~.item_table {
        padding-block-start: 1.25em;
        margin-block-start: 1.25em
    }
}

#Product_purchase2 {
    padding-block: 4em
}

#Product_purchase2>.inner {
    max-width: var(--MaxContentWidth);
    margin-inline: auto;
    padding-inline: 2em;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr clamp(30em, 33%, 35em);
    gap: 2em 3em;
    align-items: flex-start
}

#Product_purchase2 [data-step] {
    position: relative;
    counter-increment: step
}

#Product_purchase2 [data-step]:not(:last-of-type)::after {
    content: '';
    display: block;
    position: absolute;
    inset-inline-start: .875em;
    inset-block-start: 3em;
    z-index: 1;
    width: .25em;
    height: calc(100% - 2em);
    background: var(--SiteTHM-A10);
    border-radius: 1em
}

#Product_purchase2 [data-step]>h3 {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1em;
    align-items: center;
    font-size: 1em;
    font-weight: 800;
    line-height: 2;
    text-transform: uppercase
}

#Product_purchase2 [data-step]>h3::before {
    content: counter(step);
    display: block;
    font-size: 1.333334em;
    font-weight: 800;
    width: 1.5em;
    height: 1.5em;
    line-height: 1.5;
    overflow: hidden;
    text-align: center;
    background: var(--SiteTHM);
    color: #fff;
    border-radius: .5em;
    border-end-end-radius: unset
}

#Product_purchase2 [data-step]>h3~div {
    margin-inline-start: 3em
}

#DPItem_info {
    display: flex;
    flex-direction: column;
    gap: 1em
}

#DPItem_info_wrp {
    background: var(--background-color-L3, #fff);
    border-radius: 1em;
    overflow: hidden
}

#DPItem_info_wrp>.inner {
    padding: 2em;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(22em, 1fr));
    gap: 1em 2em;
    align-items: flex-start
}

#DPItem_info_wrp .cpt-select>span,
#DPItem_info_wrp .cpt-text>span {
    padding-inline: 1.5em;
    font-weight: 600;
    min-width: max(25%, 8em);
    box-sizing: border-box
}

#DPItem_info_wrp [class*=cpt-]>input[type=number] {
    text-align: start
}

#DPItem_info_wrp [class*=cpt-]:not(:focus-within) {
    border-color: transparent;
    background: var(--body-text-color-a5, rgba(0 0 0/5%))
}

#DPItem_info_wrp .field {
    width: 100%;
    max-width: 35em
}

#DPItem_info_wrp .field .tips_wrp {
    margin: 0 1.5em
}

#DPItem_info_wrp .field .tips_wrp .tips {
    margin-block-start: 1em;
    opacity: .5
}

#DPItem_info_wrp .field .tips_wrp .alert {
    margin-block-start: 1em;
    color: var(--text-color-alert);
    font-weight: 800
}

#DPItem_info_wrp .field .tips_img {
    margin: 1em 1.5em;
    display: none
}

#DPItem_info_wrp .field:focus-within .tips_img {
    display: block
}

#DPItem_info_wrp .field .tips_img .img {
    display: block;
    text-align: center;
    position: relative;
    border-radius: .5em;
    overflow: hidden;
    background: var(--body-text-color-a5, #fff);
    box-shadow: var(--body-text-color-a10, rgb(0 0 0/5%)) 0 0 0 1px
}

#DPItem_info_wrp .field .tips_img .img::before {
    content: attr(icon);
    display: block;
    font-size: 4em;
    width: 100%;
    height: 100%;
    background: rgba(0 0 0/50%);
    color: #fff;
    position: absolute;
    inset: 0;
    margin: auto;
    z-index: 1;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity .3s
}

#DPItem_info_wrp .field .tips_img .img:hover::before {
    opacity: .7
}

#DPItem_info_wrp .field .tips_img img {
    vertical-align: top;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 30em
}

#DPItem_info_wrp .field .tips_img img.lazyloading {
    width: 100%;
    aspect-ratio: 2/1;
    background: url(../images/placeholder/newscover-45f2fe4849.svg) no-repeat center/contain
}

#DPItem_sku {
    display: flex;
    flex-direction: column;
    gap: 1em
}

#DPItem_sku_wrp_ctrl_on {
    display: none
}

#DPItem_sku #SKU_list ul {
    grid-template-columns: repeat(auto-fit, minmax(22em, 1fr))
}

#DPItem_sku #SKU_list .SKU_type .T {
    grid-template-columns: 1fr;
    gap: .25em
}

#DPItem_sku #SKU_list .SKU_type .sku {
    display: block
}

#DPItem_sku #SKU_list .SKU_type .sku .instantdelivery,
#DPItem_sku #SKU_list .SKU_type .sku .promo {
    display: inline-block;
    vertical-align: top
}

#DPItem_sku_wrp .btc,
#DPItem_sku_wrp .title {
    display: none
}

#DPItem_payment {
    display: flex;
    flex-direction: column;
    gap: 1em
}

#DPItem_payment_wrp_ctrl_on {
    display: none
}

#DPItem_payment_loading>.load {
    text-align: start;
    padding: 1.5em;
    background: var(--background-color-L3, #fff);
    border-radius: 1em
}

#DPItem_payment_empty {
    background: var(--background-color-L3, #fff);
    border-radius: 1em;
    padding: 2em;
    display: grid;
    grid-template-columns: min(12em, 40%) 1fr;
    align-items: center;
    gap: 2em
}

#DPItem_payment_empty .art>img {
    vertical-align: top;
    width: 100%;
    height: auto;
    aspect-ratio: 5/3;
    object-fit: contain
}

#DPItem_payment_empty .tips_wrp {
    display: flex;
    flex-direction: column;
    gap: 1em
}

#DPItem_payment_empty .tips {
    color: var(--body-text-color-a50, rgba(0 0 0/50%))
}

#DPItem_payment_empty .alert {
    color: var(--text-color-alert);
    font-weight: 800
}

#DPItem_payment #ChannelList {
    display: flex;
    flex-direction: column;
    gap: 1em
}

#DPItem_payment #ChannelList .group_name {
    color: var(--body-text-color-a50, rgba(0 0 0/50%))
}

#DPItem_payment #ChannelList .group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(22em, 1fr));
    gap: 1em;
    align-items: flex-start;
    --pd: 1.333334em
}

#DPItem_payment #ChannelList .group label {
    display: block;
    position: relative
}

#DPItem_payment #ChannelList .group input[type=radio] {
    position: absolute;
    inset: 100%;
    width: 0;
    height: 0;
    padding: 0;
    margin: 0;
    -webkit-appearance: none;
    -moz-appearance: none
}

#DPItem_payment #ChannelList .group .channel {
    padding: var(--pd);
    border-radius: 1em;
    background: var(--background-color-L3, #fff);
    cursor: pointer;
    transition: box-shadow .3s;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
    box-shadow: var(--SiteTHM-A50) 0 0 0 0 inset, var(--SiteTHM-A0) 0 0 0 999em inset;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: .5em var(--pd);
    min-height: 5em;
    box-sizing: border-box
}

#DPItem_payment #ChannelList .group .channel::before {
    content: '';
    display: block;
    width: 1.5em;
    height: 1.5em;
    overflow: hidden;
    background: var(--body-text-color-a10, rgba(0 0 0/10%));
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTkuMiAxNi4ybC0yLjktMi44Yy0uNC0uNC0uNC0xIDAtMS40LjQtLjQgMS0uNCAxLjQgMGwxLjQgMS40Yy40LjQgMSAuNCAxLjQgMGw1LjctNS43Yy40LS40IDEtLjQgMS40IDAgLjQuNC40IDEgMCAxLjRsLTcgNy4xYy0uNC40LTEgLjQtMS40IDB6IiBmaWxsPSJyZ2JhKDAgMCAwLzUlKSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMCAyKSIvPjxwYXRoIGQ9Ik05LjIgMTYuMmwtMi45LTIuOGMtLjQtLjQtLjQtMSAwLTEuNC40LS40IDEtLjQgMS40IDBsMS40IDEuNGMuNC40IDEgLjQgMS40IDBsNS43LTUuN2MuNC0uNCAxLS40IDEuNCAwIC40LjQuNCAxIDAgMS40bC03IDcuMWMtLjQuNC0xIC40LTEuNCAweiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==);
    background-size: 0;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 1.5em;
    transition: background-size cubic-bezier(.5, 0, .5, 2) .3s, background-color .3s
}

#DPItem_payment #ChannelList .group input:checked+.channel {
    box-shadow: var(--SiteTHM-A50) 0 0 0 .25em inset, var(--SiteTHM-A5) 0 0 0 999em inset
}

#DPItem_payment #ChannelList .group input:checked+.channel::before {
    background-color: var(--SiteTHM);
    background-size: 100%
}

#DPItem_payment #ChannelList .group input:disabled+.channel {
    cursor: not-allowed
}

#DPItem_payment #ChannelList .group input:disabled+.channel::before {
    background-color: var(--body-text-color-a25, rgba(0 0 0/5%));
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCA0OCI+PHBhdGggZmlsbD0icmdiYSgwIDAgMC81MCUpIiBkPSJNMTYuMyAxNi4zYy0uNC40LTEgLjQtMS40IDBMMTIgMTMuNGwtMi45IDIuOWMtLjQuNC0xIC40LTEuNCAwLS40LS40LS40LTEgMC0xLjRsMi45LTIuOS0yLjktMi45Yy0uNC0uNC0uNC0xIDAtMS40LjQtLjQgMS0uNCAxLjQgMGwyLjkgMi45IDIuOS0yLjljLjQtLjQgMS0uNCAxLjQgMCAuNC40LjQgMSAwIDEuNEwxMy40IDEybDIuOSAyLjljLjQuNC40IDEgMCAxLjR6Ii8+PHBhdGggZmlsbD0icmdiYSgwIDAgMC81JSkiIGQ9Ik0xNi4zIDQyLjNjLS40LjQtMSAuNC0xLjQgMEwxMiAzOS40bC0yLjkgMi45Yy0uNC40LTEgLjQtMS40IDAtLjQtLjQtLjQtMSAwLTEuNGwyLjktMi45LTIuOS0yLjljLS40LS40LS40LTEgMC0xLjQuNC0uNCAxLS40IDEuNCAwbDIuOSAyLjkgMi45LTIuOWMuNC0uNCAxLS40IDEuNCAwIC40LjQuNCAxIDAgMS40TDEzLjQgMzhsMi45IDIuOWMuNC40LjQgMSAwIDEuNHoiLz48cGF0aCBmaWxsPSIjZmZmIiBkPSJNMTYuMyA0MC4zYy0uNC40LTEgLjQtMS40IDBMMTIgMzcuNGwtMi45IDIuOWMtLjQuNC0xIC40LTEuNCAwLS40LS40LS40LTEgMC0xLjRsMi45LTIuOS0yLjktMi45Yy0uNC0uNC0uNC0xIDAtMS40LjQtLjQgMS0uNCAxLjQgMGwyLjkgMi45IDIuOS0yLjljLjQtLjQgMS0uNCAxLjQgMCAuNC40LjQgMSAwIDEuNEwxMy40IDM2bDIuOSAyLjljLjQuNC40IDEgMCAxLjR6Ii8+PC9zdmc+);
    background-size: 100%;
    background-position-y: var(--y, top)
}

#DPItem_payment #ChannelList .group input:disabled+.channel div:not(.alert) {
    opacity: .5
}

#DPItem_payment #ChannelList .group .img {
    height: 2em
}

#DPItem_payment #ChannelList .group .img>img {
    vertical-align: top;
    width: auto;
    height: 100%;
    max-width: 100%;
    color: rgba(0 0 0/50%);
    border-radius: .25em;
    background: var(--body-text-color, transparent);
    padding: 1px;
    box-sizing: border-box;
    object-fit: contain
}

#DPItem_payment #ChannelList .group .price {
    color: var(--SiteTHM);
    font-weight: 800;
    white-space: nowrap
}

#DPItem_payment #ChannelList .group .seagmcredits_price {
    text-align: end
}

#DPItem_payment #ChannelList .group .credits {
    font-size: .8em;
    white-space: nowrap;
    opacity: .5
}

#DPItem_payment #ChannelList .group .credits>span {
    font-weight: 800
}

#DPItem_payment #ChannelList .group .tips {
    grid-column: 2/-1;
    color: var(--body-text-color-a50, rgba(0 0 0/50%))
}

#DPItem_payment #ChannelList .group .tips.promotion {
    color: var(--text-color-promotion)
}

#DPItem_payment #ChannelList .group .tips.alert {
    color: var(--text-color-alert);
    font-weight: 800
}

#DPItem_payment .btc,
#DPItem_payment .title {
    display: none
}

#DPItem_calculate {
    grid-area: 1/-1/4/-2;
    background: var(--background-color-L2, #fff);
    border-radius: 1em;
    overflow: hidden;
    position: sticky;
    top: calc((var(--site-header-height) - var(--global-nav-height)) * 1px + 2em);
    z-index: 1;
    margin-block-start: 3em
}

#DPItem_calculate>.inner {
    padding: 2em;
    display: flex;
    flex-direction: column;
    gap: 2em
}

#DPItem_calculate .details {
    display: flex;
    flex-direction: column;
    gap: 2em
}

#DPItem_calculate .total {
    display: flex;
    justify-content: space-between;
    gap: 2em
}

#DPItem_calculate .total>div {
    font-size: 1.666667em;
    font-weight: 800;
    line-height: 1.25
}

#DPItem_calculate .total .C {
    text-align: end
}

#DPItem_calculate .total .price {
    display: block;
    color: var(--SiteTHM)
}

#DPItem_calculate .total .credits {
    display: block;
    font-size: .6em;
    font-weight: 600;
    opacity: .5
}

#DPItem_calculate .total #totalCredits {
    font-weight: 800
}

#DPItem_calculate .info {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1em 2em;
    padding-block-start: 2em;
    box-shadow: var(--body-text-color-a5, rgba(0 0 0/5%)) 0 1px 0 inset
}

#DPItem_calculate .info .T {
    white-space: nowrap
}

#DPItem_calculate .info .C {
    font-weight: 800;
    text-align: end
}

#DPItem_calculate .btc {
    display: flex;
    flex-direction: column;
    gap: 1em
}

#DPItem_calculate .btc.hide {
    display: none
}

#DPItem_calculate .btc .btw {
    display: block;
    font-size: 1.166667em;
    text-transform: uppercase
}

#DPItem_calculate .btc .stockout {
    background: var(--body-text-color-a5, #fff);
    box-shadow: var(--body-text-color-a25, rgba(0 0 0/25%)) 0 0 0 1px;
    color: currentColor;
    cursor: not-allowed
}

@media only screen and (max-width:800px) {
    #Product_purchase2 {
        padding-block: 2em
    }

    #Product_purchase2>.inner {
        grid-template-columns: 1fr;
        max-width: 40em;
        padding-inline: 1em;
        gap: 1em
    }

    #Product_purchase2 [data-step] {
        background: var(--background-color-L3, #fff);
        border-radius: 1em;
        gap: 0
    }

    #Product_purchase2 [data-step]:first-of-type {
        margin-block-start: -5em
    }

    #Product_purchase2 [data-step]::after {
        content: unset !important
    }

    #Product_purchase2 [data-step]>h3 {
        margin-inline: 2em;
        padding-block: 1.5em;
        box-shadow: var(--body-text-color-a5, rgba(0 0 0/5%)) 0 -1px 0 inset
    }

    #Product_purchase2 [data-step]>h3~div {
        margin: 0
    }

    #DPItem_info_wrp>.inner {
        gap: 1em
    }

    #DPItem_info_wrp .field {
        max-width: 30em;
        margin-inline: auto
    }

    #DPItem_sku_wrp_ctrl_on {
        display: block;
        background: var(--background-color-L3, #fff);
        border-radius: 1em;
        overflow: hidden;
        padding: 2em
    }

    #DPItem_sku_wrp_ctrl_on>.inner {
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 1em;
        align-items: center
    }

    #DPItem_sku_wrp_ctrl_on>.inner::before {
        content: attr(icon);
        display: block;
        order: 9;
        font-size: 1.5em;
        width: 1.333334em;
        height: 1.333334em;
        text-align: center;
        line-height: 1.333334;
        background: var(--body-text-color-a5, rgba(0 0 0/5%));
        border-radius: 100%
    }

    #DPItem_sku_wrp_ctrl_on .img {
        --W: 4em;
        width: var(--W);
        height: var(--W);
        border-radius: calc(var(--W)/4);
        overflow: hidden;
        background: var(--body-text-color-a5, rgba(0 0 0/5%));
        box-shadow: var(--body-text-color-a5, rgba(0 0 0/5%)) 0 0 0 1px
    }

    #DPItem_sku_wrp_ctrl_on .img>img {
        vertical-align: top;
        width: 100%;
        height: 100%
    }

    #DPItem_sku_wrp_ctrl_on .T {
        display: flex;
        flex-direction: column;
        gap: .25em
    }

    #DPItem_sku_wrp_ctrl_on .sku {
        font-weight: 800
    }

    #DPItem_sku_wrp_ctrl_on .sku .instantdelivery {
        display: inline-block;
        vertical-align: top
    }

    #DPItem_sku_wrp_ctrl_on .sku .instantdelivery::before {
        content: 'offline_bolt';
        color: var(--text-color-promotion);
        display: block;
        font-size: 1.5em;
        width: 1em;
        height: 1em;
        line-height: 1;
        overflow: hidden
    }

    #DPItem_sku_wrp_ctrl_on .mark.promotion {
        color: var(--text-color-promotion)
    }

    #DPItem_sku_wrp_ctrl_on .mark.stockout {
        color: #fff;
        background: var(--text-color-alert);
        width: fit-content;
        padding: 0 .5em;
        border-radius: .25em
    }

    #DPItem_sku_wrp_ctrl_on .mark.preorder {
        color: #fff;
        background: rgba(102 51 153);
        width: fit-content;
        padding: 0 .5em;
        border-radius: .25em
    }

    body.DPItem_sku_activated {
        overflow: hidden
    }

    #DPItem_sku_wrp.DPItem_sku_activated {
        opacity: 1;
        visibility: visible;
        transition: opacity .3s
    }

    #DPItem_sku_wrp {
        position: fixed;
        inset: 0;
        z-index: 999;
        background: var(--background-color-mask-a75, rgba(255 255 255/75%));
        display: flex;
        align-items: flex-end;
        opacity: 0;
        visibility: hidden
    }

    #DPItem_sku_wrp>.inner {
        width: 100%;
        max-width: 40em;
        min-height: calc(var(--VHeight)/2);
        max-height: calc(var(--VHeight) - 2em);
        margin: 0 auto;
        background: var(--background-color-L1, #fff);
        box-shadow: rgb(0 0 0/10%) 0 0 2em;
        border-radius: 1em 1em 0 0;
        display: grid;
        grid-template-rows: auto 1fr auto;
        overflow: hidden
    }

    #DPItem_sku #SKU_list ul {
        grid-template-columns: repeat(auto-fit, minmax(20em, 1fr))
    }

    #DPItem_sku_wrp .title {
        display: block;
        padding: 1.5em;
        font-weight: 800;
        text-transform: uppercase;
        color: var(--body-text-color-a50, rgba(0 0 0/50%))
    }

    #DPItem_sku_wrp .btc {
        display: block;
        padding: 1.5em
    }

    #DPItem_sku_wrp .btc>.btw {
        display: block;
        font-size: 1.166667em;
        text-transform: uppercase
    }

    @supports(bottom:env(safe-area-inset-bottom)) {
        #DPItem_sku_wrp .btc {
            padding-block-end: max(1.5em, env(safe-area-inset-bottom))
        }
    }

    #DPItem_payment_wrp_ctrl_on {
        display: block;
        background: var(--background-color-L3, #fff);
        border-radius: 1em;
        overflow: hidden;
        padding: 2em
    }

    #DPItem_payment_wrp_ctrl_on>.inner {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: .5em 1em;
        align-items: center
    }

    #DPItem_payment_wrp_ctrl_on>.inner::before {
        content: attr(icon);
        display: block;
        order: 9;
        font-size: 1.5em;
        width: 1.333334em;
        height: 1.333334em;
        text-align: center;
        line-height: 1.333334;
        background: var(--body-text-color-a5, rgba(0 0 0/5%));
        border-radius: 100%
    }

    #DPItem_payment_wrp_ctrl_on .img {
        height: 2em
    }

    #DPItem_payment_wrp_ctrl_on .img>img {
        vertical-align: top;
        width: auto;
        height: 100%;
        max-width: 100%;
        color: rgba(0 0 0/50%);
        border-radius: .25em;
        background: var(--body-text-color, transparent);
        padding: 1px;
        box-sizing: border-box;
        object-fit: contain
    }

    #DPItem_payment_wrp_ctrl_on .price {
        color: var(--SiteTHM);
        font-weight: 800;
        white-space: nowrap
    }

    #DPItem_payment_wrp_ctrl_on .tips {
        grid-area: 2/1/3/-2;
        color: var(--body-text-color-a50, rgba(0 0 0/50%))
    }

    #DPItem_payment_wrp_ctrl_on .tips.promotion {
        color: var(--text-color-promotion)
    }

    body.DPItem_payment_activated {
        overflow: hidden
    }

    #DPItem_payment_wrp.DPItem_payment_activated {
        opacity: 1;
        visibility: visible;
        transition: opacity .3s
    }

    #DPItem_payment_wrp {
        position: fixed;
        inset: 0;
        z-index: 999;
        background: var(--background-color-mask-a75, rgba(255 255 255/75%));
        display: flex;
        align-items: flex-end;
        opacity: 0;
        visibility: hidden
    }

    #DPItem_payment_wrp>.inner {
        width: 100%;
        max-width: 40em;
        min-height: calc(var(--VHeight)/2);
        max-height: calc(var(--VHeight) - 2em);
        margin: 0 auto;
        background: var(--background-color-L1, #fff);
        box-shadow: rgb(0 0 0/10%) 0 0 2em;
        border-radius: 1em 1em 0 0;
        display: grid;
        grid-template-rows: auto 1fr auto;
        overflow: hidden
    }

    #DPItem_payment #ChannelList {
        overflow: hidden;
        overflow-y: auto;
        padding: 1.5em;
        background: var(--background-color-L2, hsl(0 0% 97%));
        border-radius: 1em;
        box-shadow: var(--body-text-color-a5, rgb(0 0 0/5%)) 0 0 0 1px
    }

    #DPItem_payment .title {
        display: block;
        padding: 1.5em;
        font-weight: 800;
        text-transform: uppercase;
        color: var(--body-text-color-a50, rgba(0 0 0/50%))
    }

    #DPItem_payment .btc {
        display: block;
        padding: 1.5em
    }

    #DPItem_payment .btc>.btw {
        display: block;
        font-size: 1.166667em;
        text-transform: uppercase
    }

    @supports(bottom:env(safe-area-inset-bottom)) {
        #DPItem_payment .btc {
            padding-block-end: max(1.5em, env(safe-area-inset-bottom))
        }
    }

    #Product_purchase2 #DPItem_calculate {
        grid-area: unset;
        margin: 0;
        position: unset;
        top: unset
    }
}

@media only screen and (max-width:480px) {
    #Product_purchase2 [data-step]>h3 {
        margin-inline: 1.5em
    }

    #DPItem_info_wrp>.inner {
        padding: 1.5em
    }

    #DPItem_sku_wrp_ctrl_on {
        padding: 1.5em
    }

    #DPItem_payment_empty {
        padding: 1.5em;
        gap: 1.5em
    }

    #DPItem_payment_wrp_ctrl_on {
        padding: 1.5em
    }

    #DPItem_calculate>.inner {
        padding: 1.5em;
        gap: 1.5em
    }

    #DPItem_calculate .info {
        padding-block-start: 1.5em
    }
}

#Product_information>.inner {
    max-width: var(--MaxContentWidth);
    margin: 0 auto 4em;
    padding: 0 2em;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr clamp(30em, 33%, 35em);
    gap: 3em;
    align-items: flex-start
}

#Product_information>.inner>.aside {
    display: grid;
    gap: 2em
}

#Product_information>.inner>.aside>.inner {
    background: var(--background-color-L3, #fff);
    border-radius: 1em;
    overflow: hidden
}

#Product_information .content_nav.float {
    visibility: visible;
    opacity: 1;
    transition: opacity .3s
}

#Product_information .content_nav.float>.inner {
    transform: none;
    transition: transform .3s
}

#Product_information .content_nav {
    position: sticky;
    top: calc((var(--site-header-height) - var(--global-nav-height)) * 1px);
    z-index: 2;
    height: 0;
    visibility: hidden;
    opacity: 0
}

#Product_information .content_nav>.inner {
    background: var(--background-color-L3, #fff);
    box-shadow: var(--body-text-color-a5, transparent) 0 1px 0, rgba(0 0 0/5%) 0 0 1em;
    border-radius: 0 0 1em 1em;
    transform: translateY(-2em)
}

#Product_information .content_nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3em
}

#Product_information .content_nav ul a {
    display: flex;
    align-items: center;
    color: currentColor
}

#Product_information .content_nav ul a span {
    font-weight: 800;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1em;
    align-items: center;
    padding: 1.75em 0;
    text-transform: uppercase
}

#Product_information .content_nav ul a span::before {
    content: attr(icon);
    display: block;
    font-size: 1.5em;
    width: 1em;
    height: 1em;
    line-height: 1;
    overflow: hidden;
    opacity: .5
}

#Product_information .content_nav ul a:hover span {
    color: var(--SiteTHM)
}

#Product_information .content_nav ul a:hover span::before {
    --IconFF: inherit;
    opacity: 1
}

@media only screen and (max-width:1280px) {
    #Product_information>.inner {
        gap: 2em
    }
}

@media only screen and (max-width:1000px) {
    #Product_information .content_nav ul {
        gap: 2em;
        overflow: hidden;
        overflow-x: auto;
        padding: 0 2em;
        justify-content: start;
        scroll-snap-type: x mandatory;
        scrollbar-color: transparent;
        scrollbar-width: none -webkit-overflow-scrolling:touch
    }

    #Product_information .content_nav ul::-webkit-scrollbar {
        height: 0;
        width: 0;
        display: none
    }

    #Product_information .content_nav ul>li {
        scroll-snap-align: center
    }

    #Product_information .content_nav ul a span {
        display: block
    }

    #Product_information .content_nav ul a span::before {
        content: none
    }
}

@media only screen and (max-width:800px) {
    #Product_information {
        margin: 0;
        background: 0 0
    }

    #Product_information>.inner {
        display: block;
        max-width: 40em;
        padding: 0 1em;
        margin: 0 auto 2em
    }

    #Product_information>.inner>.aside {
        margin: 2em 0
    }
}

@media only screen and (max-width:640px) {
    #Product_information>.inner>.content>.inner {
        background: 0 0;
        box-shadow: none;
        padding: 0
    }
}

@media only screen and (max-width:480px) {
    #Product_information .content_nav {
        margin: 0 -1em
    }
}

#item_description,
#item_instruction,
#item_promotion,
#item_reviews {
    background: var(--background-color-L3, #fff);
    border-radius: 1em;
    padding: 2em;
    scroll-margin-block-start: calc((var(--site-header-height) - var(--global-nav-height)) * 1px + 6em)
}

#item_description,
#item_instruction,
#item_reviews {
    margin-block-end: 2em
}

@media only screen and (max-width:1280px) {

    #item_description,
    #item_instruction,
    #item_reviews {
        margin-block-end: 1em
    }
}

#item_description>.inner,
#item_instruction>.inner {
    word-break: break-word;
    max-width: 60em;
    margin: 0 auto
}

#item_description .title,
#item_instruction .title {
    box-shadow: var(--body-text-color-a5, rgba(0 0 0/5%)) 0 -1px 0 inset;
    padding-block-end: 2em;
    margin-block-end: 2em;
    color: var(--body-text-color-a50, rgba(0 0 0/50%));
    text-transform: uppercase;
    font-weight: 800
}

article.docs h2 {
    font-weight: 800;
    font-size: 1.5em;
    margin: 1em 0
}

article.docs h2:first-of-type {
    margin-block-start: 0
}

article.docs h3 {
    font-weight: 800;
    font-size: 1.333334em;
    margin: 1em 0
}

article.docs ol,
article.docs ul {
    margin: 1em 0;
    margin-inline-start: 2em
}

article.docs ul>li {
    list-style: disc outside;
    margin: 1em 0
}

article.docs ol>li {
    list-style: decimal outside;
    margin: 1em 0
}

article.docs ol>li::marker,
article.docs ul>li::marker {
    color: var(--body-text-color-a50, rgba(0 0 0/50%))
}

article.docs a {
    font-weight: 800
}

article.docs a:hover {
    text-decoration: underline
}

article.docs img {
    vertical-align: top;
    max-width: 100%;
    max-height: 60em;
    width: auto;
    height: auto
}

article.docs .img {
    margin: 2em 0;
    max-width: 60em;
    background: var(--body-text-color-a5, #fff);
    box-shadow: var(--body-text-color-a10, rgb(0 0 0/5%)) 0 0 0 1px inset;
    border-radius: 1em;
    padding: 1em;
    box-sizing: border-box;
    text-align: center
}

article.docs .img>img {
    vertical-align: top;
    max-width: 100%;
    max-height: 60em;
    width: auto;
    height: auto
}

article.docs table {
    width: auto !important;
    vertical-align: top;
    border-collapse: collapse;
    border: none !important;
    text-align: center;
    margin: 2em 0
}

article.docs table td,
article.docs table th {
    border: 1px #ddd solid;
    padding: .5em 1em !important
}

article.docs table p {
    margin: 0 !important
}

article.docs .youtube-player {
    margin: 1em auto;
    max-width: 60em
}

article.docs iframe {
    display: block;
    width: 100%;
    max-width: 60em;
    height: auto;
    aspect-ratio: 16/9;
    margin: 0 auto;
    border-radius: 1em;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0)
}

@media only screen and (max-width:1000px) {
    article.docs h2 {
        font-size: 1.25em
    }

    article.docs h3 {
        font-size: 1.166667em
    }
}

#item_reviews>.inner {
    max-width: 60em;
    margin: 0 auto
}

#item_reviews .title {
    display: flex;
    gap: 2em;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--body-text-color-a5, rgba(0 0 0/5%)) 0 -1px 0 inset;
    padding-block-end: 2em;
    margin-block-end: 2em
}

#item_reviews .title>span {
    text-transform: uppercase;
    font-weight: 800;
    color: var(--body-text-color-a50, rgba(0 0 0/50%))
}

#item_reviews .title a.all_reviews {
    display: block;
    font-weight: 800
}

#item_reviews .title a.all_reviews>span {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: .5em
}

#item_reviews .title a.all_reviews>span::before {
    content: attr(icon);
    display: block;
    font-size: 1.5em;
    width: 1em;
    height: 1em;
    line-height: 1;
    overflow: hidden;
    order: 9
}

#item_reviews .statistic {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1em 2em;
    margin-block: 2em
}

#item_reviews .statistic .stat {
    display: flex;
    align-items: baseline;
    gap: 1em
}

#item_reviews .statistic span {
    opacity: .5;
    text-transform: uppercase
}

#item_reviews .statistic b {
    font-size: 1.5em;
    font-weight: 800;
    line-height: 1
}

.review_list {
    margin-block: 3em 1em;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(22.5em, 1fr));
    gap: 2em 4em
}

.review_list>li>div {
    display: grid;
    grid-template-columns: 3em 1fr auto;
    gap: 0 1em;
    align-items: start;
    box-sizing: border-box;
    min-height: 100%;
    grid-template-rows: auto auto 1fr
}

.review_list .avatar {
    grid-area: 1/1/3/2;
    align-self: start;
    border-radius: 100%;
    overflow: hidden;
    background: var(--body-text-color-a5, rgba(0 0 0/5%));
    box-shadow: var(--body-text-color-a5, rgba(0 0 0/5%)) 0 0 0 1px;
    aspect-ratio: 1/1
}

.review_list .avatar img {
    vertical-align: top;
    width: 100%;
    height: 100%
}

.review_list .name {
    grid-area: 1/2/2/4;
    font-weight: 800;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 8em;
    line-height: 2
}

.review_list .time {
    font-size: .8em;
    opacity: .5;
    line-height: 1
}

.review_list .comment {
    grid-area: 3/2/4/-1;
    margin-block-start: 1em;
    color: var(--body-text-color-a75, rgba(0 0 0/75%));
    max-height: 4.5em;
    word-break: break-word;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical
}

@media only screen and (max-width:1000px) {
    .review_list {
        gap: 2em
    }
}

#item_promotion>.inner {
    max-width: 60em;
    margin: 0 auto
}

#item_promotion .title {
    margin-block-end: 2em;
    color: var(--body-text-color-a50, rgba(0 0 0/50%));
    text-transform: uppercase;
    font-weight: 800
}

#item_promotion ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(22.5em, 1fr));
    gap: 2em;
    margin-block: 2em 1em
}

#item_promotion ul a {
    display: block;
    color: currentColor
}

#item_promotion ul .img {
    overflow: hidden;
    border-radius: 1em;
    background: var(--body-text-color-a10, #fff);
    box-shadow: var(--body-text-color-a10, rgba(0 0 0/5%)) 0 0 0 1px;
    transform: translate3d(0, 0, 0)
}

#item_promotion ul .img img {
    vertical-align: top;
    width: 100%;
    height: 100%;
    aspect-ratio: 2/1;
    object-fit: cover;
    transition: transform .3s
}

#item_promotion ul h3 {
    font-size: 1em;
    margin-block-start: 1em
}

#item_promotion ul a:hover .img img {
    transform: scale(1.05)
}

@media only screen and (max-width:1280px) {
    #item_promotion ul {
        grid-template-columns: repeat(auto-fill, minmax(19em, 1fr))
    }
}

@media only screen and (max-width:1000px) {
    #item_promotion>.inner>.title h3 {
        font-size: 1.25em
    }
}

@media only screen and (max-width:800px) {
    #item_promotion ul {
        display: flex;
        overflow: hidden;
        overflow-x: auto;
        margin-inline: -2em;
        margin-block-end: 0;
        padding: 1px 2em;
        scroll-snap-type: x mandatory;
        scrollbar-color: transparent;
        scrollbar-width: none -webkit-overflow-scrolling:touch
    }

    #item_promotion ul::-webkit-scrollbar {
        height: 0;
        width: 0;
        display: none
    }

    #item_promotion ul>li {
        flex: none;
        width: min(25em, calc(var(--VWidth) - 8em));
        scroll-snap-align: center
    }
}

.aside_nav {
    display: flex;
    overflow: hidden
}

.aside_nav .tab {
    flex: auto;
    display: block;
    color: currentColor;
    padding: 1.75em 1em;
    border-radius: 1em 1em 0 0;
    text-align: center;
    cursor: pointer;
    opacity: .5
}

.aside_nav .tab.on {
    opacity: 1;
    box-shadow: var(--background-color-mask-a50, rgb(0 0 0/10%)) 0 0 2em
}

.aside_nav .tab:only-child {
    padding: 2em 0;
    margin-inline: 2em;
    text-align: start;
    color: var(--body-text-color-a50, rgba(0 0 0/50%));
    box-shadow: var(--body-text-color-a5, rgba(0 0 0/5%)) 0 -1px 0 inset
}

.aside_nav .tab span {
    display: block;
    font-weight: 800;
    white-space: nowrap
}

.recommend:not(.show) {
    display: none
}

.recommend:only-child {
    display: block
}

.recommend .ItemList {
    display: grid;
    gap: 1em;
    margin: 2em auto;
    padding: 0 2em;
    max-width: 30em;
    box-sizing: border-box
}

.recommend .ItemList>li>a {
    padding: 0
}

#related_items .ItemList>li:only-child {
    grid-column: span 2
}

#related_items .ItemList.card .img {
    --W: 9em
}

#related_items .ItemList.topup .img {
    --W: 10em
}

#slide_show {
    background: var(--background-color-L3, #fff);
    border-radius: 1em;
    overflow: hidden;
    position: relative;
    padding-block-start: 50%;
    transform: translate3d(0, 0, 0);
    touch-action: pan-y
}

#slide_show .swiper-wrapper {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1
}

#slide_show .swiper-slide {
    flex: none;
    width: 100%;
    display: flex;
    align-items: center
}

#slide_show .swiper-slide .img {
    display: block;
    flex: auto
}

#slide_show .swiper-slide .img img {
    vertical-align: top;
    width: 100%;
    height: auto
}

@media only screen and (max-width:1000px) {

    #related_items .ItemList,
    #supported_game .ItemList {
        gap: 1em;
        --W: 4em
    }
}

.tukibox_confirmation>h3 {
    font-size: 1.5em;
    font-weight: 600;
    text-align: start;
    margin: 0 0 1em
}

.tukibox_confirmation .SKU_confirmation {
    margin: 2em 0
}

.tukibox_confirmation .SKU_confirmation .sku_wrp {
    background: #fff;
    border: 1px rgba(0 0 0/10%) solid;
    border-radius: 1.5em;
    overflow: hidden;
    padding: 1.5em 2em;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1em;
    align-items: center;
    margin: 1em 0
}

.tukibox_confirmation .SKU_confirmation .img {
    width: 4em;
    height: 4em;
    border-radius: 25%;
    overflow: hidden;
    align-self: flex-start
}

.tukibox_confirmation .SKU_confirmation .img img {
    vertical-align: top;
    width: 100%;
    height: 100%
}

.tukibox_confirmation .SKU_confirmation .name {
    font-size: 1.166667em;
    font-weight: 600
}

.tukibox_confirmation .SKU_confirmation .qtt {
    display: block;
    background: rgba(0 0 0/10%);
    padding: .25em 1em;
    border-radius: 1em
}

.tukibox_confirmation .SKU_confirmation .promotion {
    margin: 1em 2em;
    color: green
}

.tukibox_confirmation .Order_confirmation {
    background: #fff;
    border: 1px rgba(0 0 0/10%) solid;
    border-radius: 1.5em;
    overflow: hidden;
    padding: 2em;
    margin: 2em 0
}

.tukibox_confirmation .Order_confirmation h3 {
    font-size: 1em;
    text-align: start;
    font-weight: 600;
    margin: 0 0 1em
}

.tukibox_confirmation .Order_confirmation .details>li {
    display: grid;
    grid-template-columns: max(30%, 8em) 1fr;
    gap: 2em;
    margin: .5em 0 0
}

.tukibox_confirmation .Order_confirmation .details .C {
    text-align: right
}

@media only screen and (max-width:640px) {
    .tukibox_confirmation .SKU_confirmation {
        margin: 1em 0
    }

    .tukibox_confirmation .SKU_confirmation .sku_wrp {
        padding: 1em
    }

    .tukibox_confirmation .SKU_confirmation .img {
        width: 3em;
        height: 3em
    }

    .tukibox_confirmation .SKU_confirmation .name {
        font-size: 1em
    }

    .tukibox_confirmation .SKU_confirmation .qtt {
        padding: 0 .5em
    }

    .tukibox_confirmation .SKU_confirmation .promotion {
        margin: 1em
    }

    .tukibox_confirmation .Order_confirmation {
        padding: 1.5em;
        margin: 1em 0
    }
}

.item_function .coupon_tips {
    background: var(--background-color-L2, #fff);
    border-radius: 1em;
    overflow: hidden
}

.item_function #coupon_popup_ctrl {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0 1em;
    align-items: center;
    padding: 2em;
    cursor: pointer
}

.item_function #coupon_popup_ctrl::before {
    order: 99;
    content: attr(icon);
    display: block;
    font-size: 1.5em;
    width: 1.333334em;
    height: 1.333334em;
    background: var(--body-text-color-a5, rgba(0 0 0/5%));
    line-height: 1.333334;
    text-align: center;
    border-radius: 1em
}

.item_function #coupon_popup_ctrl>.title {
    font-weight: 800
}

.item_function #coupon_popup_ctrl span {
    text-align: right
}

.item_function #coupon_popup_ctrl span b {
    font-weight: 800
}

.item_function #coupon_popup_ctrl .coupon_list {
    display: flex;
    gap: .5em;
    justify-content: flex-end;
    flex-wrap: wrap;
    max-height: 2em;
    overflow: hidden
}

.item_function #coupon_popup_ctrl .coupon_list .coupon-s {
    --coupon-txsize: 1em
}

@media only screen and (max-width:480px) {
    .item_function #coupon_popup_ctrl {
        padding: 1.75em 1.5em
    }
}

#coupon_drawer {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--background-color-mask-a75, rgba(255 255 255/75%));
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    display: flex
}

#coupon_drawer>.inner {
    background: var(--background-color-L1, #fff);
    box-shadow: rgba(0 0 0/10%) 0 0 2em;
    width: 30em;
    max-width: calc(var(--VWidth) - 5em);
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    transition: margin .3s;
    overflow: hidden;
    flex: none;
    margin-inline-start: auto;
    margin-inline-end: -2em
}

#coupon_drawer>.coupon_popup_ctrl_off {
    flex: auto
}

body.coupon_drawer_show {
    overflow: hidden
}

#coupon_drawer.show {
    opacity: 1;
    visibility: visible
}

#coupon_drawer.show>.inner {
    margin-inline-end: 0
}

#coupon_drawer>.inner>.title {
    flex: none;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 1em 2em;
    box-shadow: var(--body-text-color-a5, rgba(0 0 0/5%)) 0 -1px 0 inset
}

#coupon_drawer>.inner>.title h3 {
    font-size: 1em;
    font-weight: 800
}

#coupon_drawer>.inner>.title .btw {
    margin-inline-end: -1em
}

#coupon_drawer>.inner>.title .coupon_tab {
    grid-column: 1/-1;
    display: flex;
    align-items: center;
    gap: 2em;
    margin-block-end: -1em
}

#coupon_drawer>.inner>.title .coupon_tab>div {
    text-align: center;
    padding: 1em 0;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent
}

#coupon_drawer>.inner>.title .coupon_tab>div[data-coupon-counter]:not([data-coupon-counter=""]) {
    display: flex;
    gap: .5em
}

#coupon_drawer>.inner>.title .coupon_tab>div[data-coupon-counter]:not([data-coupon-counter=""])::after {
    content: "(" attr(data-coupon-counter) ")";
    opacity: .5
}

#coupon_drawer>.inner>.title .coupon_tab>div.on {
    position: relative
}

#coupon_drawer>.inner>.title .coupon_tab>div.on::before {
    content: '';
    display: block;
    position: absolute;
    inset-inline: 0;
    inset-block-end: 0;
    z-index: 1;
    height: .333334em;
    background: var(--SiteTHM);
    border-radius: 1em 1em 0 0
}

#coupon_drawer>.inner>.content {
    flex: auto;
    overflow: hidden;
    overflow-y: auto;
    padding: 0 2em;
    background: var(--background-color-L2, #fff)
}

#coupon_drawer .coupon_list_wrap {
    margin: 2em 0;
    display: none
}

#coupon_drawer .coupon_list_wrap.show {
    display: block
}

#coupon_drawer .coupon_list_wrap .tips {
    margin: 2em 0;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 1em
}

#coupon_drawer .coupon_list_wrap .tips::before {
    content: attr(icon);
    display: block;
    font-size: 2em;
    width: 1em;
    height: 1em;
    line-height: 1;
    overflow: hidden;
    align-self: start
}

#coupon_drawer .coupon_list>li~li {
    margin-block-start: 2em
}

#coupon_drawer .coupon_list .coupon {
    --coupon-txsize: 2em;
    --spacing: 1.5em
}

#coupon_drawer .coupon_list .expiry {
    margin: 1em 1.5em;
    opacity: .5
}

#reviews_content {
    flex: auto
}

#reviews_content>.inner {
    margin: 0 auto;
    max-width: var(--MaxContentWidth);
    padding: 2em;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: clamp(25em, 33%, 30em) 1fr;
    grid-template-rows: auto 1fr;
    gap: 2em 3em;
    align-items: start
}

#reviews_content>.inner>h1 {
    font-size: 2em;
    margin-block: 1em .5em
}

#reviews_content>.inner>h1 b {
    font-weight: 800
}

#review_stat {
    order: -1;
    grid-row: span 2;
    position: sticky;
    top: calc((var(--site-header-height) - var(--global-nav-height)) * 1px + 2em);
    z-index: 1;
    padding: 2em;
    border-radius: 1em;
    background: var(--background-color-L2, #fff)
}

#review_stat .item {
    padding-block-end: 2em;
    margin-block-end: 2em;
    border-bottom: var(--body-text-color-a5, rgba(0 0 0/5%)) 1px solid
}

#review_stat .item a {
    display: grid;
    grid-template-columns: 5em 1fr;
    gap: 2em;
    align-items: center;
    color: currentColor
}

#review_stat .item .img {
    position: relative;
    background: var(--body-text-color-a10, rgba(0 0 0/5%));
    box-shadow: var(--body-text-color-a10, rgba(0 0 0/5%)) 0 0 0 1px;
    border-radius: 25%;
    overflow: hidden;
    align-self: start
}

#review_stat .item .img::before {
    content: '';
    display: block;
    padding-block-start: 100%
}

#review_stat .item .img img {
    vertical-align: top;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: 1
}

#review_stat .item .name {
    font-size: 1.25em;
    font-weight: 800
}

#review_stat .item .info {
    opacity: .5
}

#review_stat .overview {
    margin: 2em 0;
    display: flex;
    justify-content: space-around
}

#review_stat .overview>div {
    text-align: center;
    display: flex;
    flex-direction: column-reverse;
    gap: 1em
}

#review_stat .overview b {
    display: block;
    font-size: 2em;
    font-weight: 800;
    line-height: 1
}

#review_stat .overview span {
    opacity: .5
}

#review_stat .statistics {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: .5em 2em
}

#review_stat .statistics .B {
    display: flex;
    align-items: center;
    position: relative
}

#review_stat .statistics .B::before {
    content: '';
    display: block;
    width: 100%;
    height: .666667em;
    border-radius: 1em;
    background: var(--SiteTHM-A10);
    position: absolute;
    inset: 0;
    z-index: 0;
    margin: auto
}

#review_stat .statistics .B::after {
    content: '';
    display: block;
    width: calc(.666667em - 4px);
    height: calc(.666667em - 4px);
    margin: calc((.666667em - 4px)/-2) 2px;
    background: var(--SiteTHM);
    border-radius: 1em;
    animation: bar ease 3s .3s forwards
}

#review_stat .statistics .C {
    font-weight: 800;
    text-align: end
}

@keyframes bar {
    100% {
        width: clamp(calc(.666667em - 4px), calc(var(--Review)/var(--TotalReviews) * 100%), calc(100% - 4px))
    }
}

#review_comment>h3 {
    font-size: 1em;
    font-weight: 800
}

#review_comment .filter {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0 2em
}

#review_comment .filter .rating {
    position: relative
}

#review_comment .filter .tab_wrp {
    display: flex;
    align-items: center;
    gap: 1em
}

#review_comment .filter .tab {
    flex: none;
    display: block;
    background: var(--background-color-L3, #fff);
    color: currentColor;
    padding: .75em 1.5em;
    border-radius: 3em;
    position: relative;
    overflow: hidden;
    cursor: pointer
}

#review_comment .filter .tab.on::after,
#review_comment .filter .tab:hover::after {
    transform: none;
    opacity: 1
}

#review_comment .filter .tab::after {
    content: '';
    display: block;
    height: .25em;
    transform: translateY(.25em);
    opacity: 0;
    transition: .3s;
    background: var(--SiteTHM);
    border-radius: 1em 1em 0 0;
    position: absolute;
    inset: 0 1.5em;
    inset-block-start: auto;
    z-index: 1
}

#review_comment .filter .tab.on>span {
    font-weight: 800
}

@media only screen and (max-width:1280px) {
    #review_comment .filter {
        grid-template-columns: 1fr
    }

    #review_comment .filter .rating {
        display: grid;
        grid-template-columns: 2em 1fr 2em;
        margin-inline: -2em;
        width: calc(100% + 4em);
        box-sizing: border-box;
        overflow: hidden;
        overflow-x: auto;
        padding-block-end: 2em
    }

    #review_comment .filter .rating::after,
    #review_comment .filter .rating::before {
        content: '';
        display: block;
        background: linear-gradient(var(--linear-angle), var(--body-background-color, hsl(0 0% 97%)), transparent);
        position: sticky;
        z-index: 1
    }

    #review_comment .filter .rating::before {
        --linear-angle: calc(90deg * var(--angle-reverse, 1));
        inset-inline-start: 0
    }

    #review_comment .filter .rating::after {
        --linear-angle: calc(-90deg * var(--angle-reverse, 1));
        inset-inline-end: 0
    }

    #review_comment .filter .tab {
        text-align: center
    }

    #review_comment .filter .cpt-checkbox {
        margin-inline: 1.5em
    }
}

@media only screen and (max-width:480px) {
    #review_comment .filter .rating {
        -webkit-overflow-scrolling: touch;
        scrollbar-color: transparent;
        scrollbar-width: none
    }

    #review_comment .filter .rating::-webkit-scrollbar {
        height: 0;
        width: 0;
        display: none
    }
}

#review_comment .review_listF {
    margin: 2em 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(22.5em, 1fr));
    gap: 1em
}

#review_comment .review_listF>li>div {
    display: grid;
    grid-template-columns: 3em 1fr auto;
    gap: 0 1.5em;
    align-items: start;
    background: var(--background-color-L3, #fff);
    padding: 1.5em;
    border-radius: 1em;
    box-sizing: border-box;
    min-height: 100%;
    grid-template-rows: auto auto 1fr;
    overflow: hidden;
    position: relative
}

#review_comment .review_listF .avatar {
    grid-area: 1/1/3/2;
    align-self: start;
    border-radius: 100%;
    overflow: hidden;
    background: var(--body-text-color-a5, rgba(0 0 0/5%));
    box-shadow: var(--body-text-color-a10, rgba(0 0 0/5%)) 0 0 0 1px;
    aspect-ratio: 1/1
}

#review_comment .review_listF .avatar img {
    vertical-align: top;
    width: 100%;
    height: 100%
}

#review_comment .review_listF .name {
    grid-area: 1/2/2/4;
    font-weight: 800;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 10em;
    line-height: 2
}

#review_comment .review_listF .rate {
    margin-block-end: 1em
}

#review_comment .review_listF .time {
    font-size: .8em;
    opacity: .5;
    line-height: 1
}

#review_comment .review_listF .comment {
    grid-area: 3/2/4/-1;
    color: var(--body-text-color-a75, rgba(0 0 0/75%));
    max-height: 4.5em;
    overflow: hidden;
    overflow-y: auto;
    word-break: break-word
}

#review_comment .review_listF .comment.nocomment {
    font-style: italic;
    opacity: .5
}

#review_comment .review_listF .func {
    grid-area: 3/1/4/2;
    text-align: center
}

#review_comment .review_listF>li>div:not(:hover) .report {
    opacity: 0
}

#review_comment .review_listF .report {
    color: currentColor;
    box-shadow: var(--body-text-color-a25, rgba(0 0 0/10%)) 0 0 0 1px inset
}

#review_comment .review_listF .report>span {
    width: 1.5em;
    height: 1.5em;
    padding: .25em
}

#review_comment .review_listF .report>span::before {
    font-size: 1em
}

#review_comment .review_listF .report:hover {
    background-color: var(--SiteTHM);
    color: #fff;
    box-shadow: unset
}

#review_comment .load {
    margin-block: 2em
}

#review_comment #moreComment {
    display: block;
    margin-block: 2em;
    text-transform: uppercase
}

#review_comment #moreComment>span {
    flex-direction: column-reverse;
    gap: 0
}

#review_comment #moreComment>span::before {
    opacity: .5
}

@media only screen and (max-width:1000px) {
    #reviews_content>.inner {
        grid-template-columns: 1fr;
        grid-template-rows: unset;
        max-width: 60em
    }

    #reviews_content>.inner>h1 {
        order: -1;
        font-size: 1.5em
    }

    #review_stat {
        position: inherit;
        order: inherit;
        padding: 0;
        background: unset;
        grid-row: unset
    }

    #review_stat .item .name {
        font-size: 1em
    }

    #review_comment .review_listF .comment {
        max-height: unset
    }
}

@media only screen and (max-width:640px) {
    #reviews_content>.inner {
        max-width: 40em
    }
}