.seller-new-layout a {
    color: var(--primary);
}

.seller-block-wrap {
    border: 1px solid #d8d8d8;
    border-radius: 4px;
}

.additional {
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    font-size: 13px;
    margin: 10px 0;
    padding: 10px 0;
    user-select: none;
    min-height: 104px;
}
.additional img {
    width: 20px;
    margin-right: 10px;
    object-fit: contain;
}

.current-seller {
    margin: 10px 0 0;
    padding: 0 5px 2px 10px;
}

.other-seller {
    padding: 0;
}

.other-seller p {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 0;
}

.other-seller ul {
    padding: 0;
}

.seller-item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 7px;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    width: 100%;
}

.seller-item + .seller-item {
    margin-top: 7px;
}

.seller-item .seller-name {
    color: var(--darkness);
    display: block;
    font-size: 13px;
    margin-top: 2px;
    text-overflow: ellipsis;
    font-weight: 600;
}

.seller-item .seller-price {
    color: var(--price);
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-top: 0;
}

.seller-item .chosen-seller {
    line-height: 14px;
    border: 1px solid rgb(199, 199, 199);
    padding: 5px 15px;
    border-radius: 4px;
    background: 0px center;
    cursor: pointer;
    outline: 0px;
    text-align: center;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    width: 60px;
}

.other-seller-list  {
    margin-top: 3px;
}

.other-seller-list  .seller-item .seller-info {
    width: calc(100% - 60px);
    padding-right: 7px;
}

.seller-item .btn-set-seller {
    background-color: #fff;
    border: 1px solid var(-light);
    border-radius: 4px;
    bottom: 0;
    color: var(--darkness);
    font-size: 13px;
    height: 24px;
    line-height: 12px;
    margin-top: 5px;
    margin: auto;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 56px;
}

.store-info {
    margin-bottom: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    grid-gap: 6px;
    margin-top: 5px;
}

.store-info .image {
    width: 20px;
}

.store-info .text {
    width: calc(100% - 31px);
    font-weight: 500;
}

.store-info .text a {
    color: var(--primary-dk);
    font-weight: 600;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    margin-bottom: 6px;
    -webkit-box-orient: vertical;
}

.store-info .text > div {
    height: 16px;
}

.store-info .text-small {
    color:  var(--darkness);
    display: block;
    font-weight: 500;
}

.expired-date {
    display: none
}

.additional .item img {
    float: left;
}

.additional .contact {
    padding: 0 10px 10px 10px;
    display: block;
    font-weight: bold;
}

.additional .item p {
    margin: 0;
}

.register-to-sell {
    border-top: 1px dashed rgba(0, 0, 0, 0.12);
    font-size: 13px;
    padding: 8px 10px 0;
    line-height: 22px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.register-to-sell span {
    display: block;
    border-radius: 3px;
    font-size: 13px;
    line-height: 18px;
    padding: 8px 12px;
    white-space: nowrap;
    background: var(--primary-dk);
    color: #fff;
    font-weight: 300;
    text-align: center;
    transition: all 250ms ease;
    cursor: pointer;
    width: fit-content;
    width: -moz-fit-content;
    height: fit-content;
    height: -moz-fit-content;
}

.register-seller {
    width: calc(100% - 70px);
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.btn-register-to-sell:hover {
    background: var(--primary);
}

.register-to-sell a + a {
    margin-top: 15px;
}

.other-seller-wrapper-layout {
    position: fixed;
    width: 100%;
    height: 100%;
    display: block;
    top: 0;
    left: 0;
    z-index: 119999;
    opacity: 0;
    pointer-events: none;
    font-size: 14px;
}

.other-seller-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(11 11 11 / 55%);
    z-index: 1;
    display: none;
    transition: opacity 300ms ease-in-out;
}

.other-seller-background::before,
.other-seller-background::after {
    content: "";
    width: 30px;
    height: 2px;
    border-radius: 3px;
    display: block;
    background-color: #fff;
    position: absolute;
    top: 40px;
    right: 560px;
}

.other-seller-background::before {
    transform: rotate(45deg);
}
.other-seller-background::after {
    transform: rotate(-45deg);
}

.other-seller-content::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.other-seller-content::-webkit-scrollbar-thumb {
    width: 6px;
    border-radius: 3px;
}

.other-seller-content::-webkit-scrollbar-thumb {
    background-color: #c1c1c1;
    transition: var(--trans);
}

.other-seller-content {
    width: 500px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    overflow-x: hidden;
    overflow-y: visible;
    background-color: #fff;
    box-shadow: 0 1px 3px -1px rgb(0 0 0 / 20%), 0 3px 6px 0 rgb(0 0 0 / 14%), 0 1px 6px 0 rgb(0 0 0 / 10%);
    display: none;
    padding: 0;
}

.open-seller-wrapper .other-seller-wrapper-layout {
    opacity: 1;
    pointer-events: all;
}

.open-seller-wrapper .other-seller-content,
.open-seller-wrapper .other-seller-background {
    display: block;
    display: block;
}

.open-seller-wrapper {
    overflow: hidden;
}

.close-seller-layout {
    position: absolute;
    top: 30px;
    left: -40px;
    color: #fff;
    width: 36px;
    height: 36px;
    cursor: pointer;
}


.js-open-seller-layout {
    display: grid;
    grid-template-columns: auto 24px;
    grid-template-areas:
    "SellerHeader SellerArrow"
    "SellerCount SellerArrow";
    align-items: center;
    border: 1px solid #e1e1e1;
    border-top: 0;
    border-radius: 0 0 4px 4px;
    cursor: pointer;
    padding: 8px 12px;
    user-select: none;
    font-size: 14px;
}

.a-box-group {
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    margin-top: 10px;
}

.a-text-center {
    padding: 8px 12px;
    font-weight: bold;
    user-select: none;
    border-bottom: 1px solid #e1e1e1;
    font-size: 14px;
}

.on-chiaki-offer .a-chiaki-offer-inner {
    padding: 10px 12px;
}
.on-chiaki-offer .a-chiaki-offer-inner:nth-child(n + 2) {
    border-top: 1px solid #e1e1e1;
}

.aok-hidden {
    display: none
}

.a-color-price {
    display: block;
    font-size: 18px;
    color: var(--price);
}

.a-size-small {
    font-size: 12px;
    line-height: 16px;
}

.mbc-delivery {
    display: block;
    color: var(--silver);
}

.a-section {
    color: var(--silver);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding: 4px 0;
}

.a-section .store-image {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin-right: 4px
}
.mbcMerchantName {
    color: var(--darkness);
    user-select: none;
}

.mbcMerchantName:hover {
    color: #e47911;
}

.a-color-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.view-seller-link {
    font-size: 12px;
    border: 1px solid var(--primary);
    color: var(--darkness);
    padding: 6px 10px;
    border-radius: 24px;
    margin: 0 6px 0 auto;
    line-height: 1;
}

.addtocart-button svg {
    transform: translateY(2px);
}

.addtocart-button {
    border: 1px solid var(--primary);
    outline: none;
    font-size: 11px;
    color: var(--darkness);
    padding: 4px 8px;
    cursor: pointer;
    user-select: none;
    border-radius: 16px;
}

.addtocart-button:hover {
    background-color: #fff;
    color: var(--primary)
}
.seller-header {
    grid-area: SellerHeader;
    font-weight: bold;
    transition: color 300ms ease-in-out;
}
.seller-count {
    grid-area: SellerCount;
    color: var(--silver);
}
.seller-count span {
    color: var(--price);
}
.seller-arrow {
    grid-area: SellerArrow;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ccc;
    transition: color 300ms ease-in-out;
}

.js-open-seller-layout:hover .seller-arrow  {
    color: var(--silver)
}
.js-open-seller-layout:hover .seller-header  {
    color: var(--primary-dk)
}


.seller-product-info {
    display: grid;
    grid-template-columns: 120px auto;
    grid-gap: 16px;
    align-items: flex-start;
    align-self: flex-start;
    margin-bottom: 16px;
    padding: 16px 16px 0;
}

.seller-product-header-box {
    display: grid;
    grid-gap: 0 12px;
    grid-template-columns: auto 120px;
    grid-template-areas:
    "SellerProductTitle SellerProductTitle"
    "SellerProductRating SellerProductButton"
    "SellerProductPrice SellerProductButton"
    "SellerProductSold SellerProductButton";
    align-items: center;
    align-self: center;
}

.seller-product-image {
    width: 120px;
    object-fit: contain;
    background-color: var(--multiply, #f8f8f8);
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.seller-product-header {
    grid-area: SellerProductTitle;
    font-size: 18px;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 8px;
}

.seller-product-price {
    grid-area: SellerProductPrice;
}

.seller-product-price del {
    color: var(--silver);
}

.seller-product-price span {
    font-size: 21px;
    color: var(--price);
}

.seller-product-rating {
    grid-area: SellerProductRating;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    color: var(--silver);
    grid-column-end: span 2;
    flex-wrap: wrap;
}

.seller-product-rating * {
    font-weight: 500 !important;
}

.seller-product-rate-count {
    margin-left: 4px;
}

.seller-product-sold {
    grid-area: SellerProductSold;
}


.seller-product-action {
    grid-area: SellerProductButton;
}

.seller-addtocart {
    border: none;
    background-color: var(--primary);
    cursor: pointer;
    color: #fff;
    user-select: none;
    border-radius: 4px;
    padding: 10px;
    transition: background-color 300ms ease-in-out;
    border-radius: 24px;
}

.seller-addtocart:hover {
    background-color: var(--primary-dk);
}

.other-seller-list-wrapper {
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    display: block !important;
}

.other-seller-head {
    padding: 8px 16px;
    border-bottom: 1px solid #e1e1e1;
    background-color: #fafafa;
    margin: 0;
    color: var(--black);
    font-size: 17px;
    line-height: 23px;
    font-weight: bold;
    display: block;
    font-weight: bold;
}

#js-view-seller-info {
    margin-top: 0;
    margin-bottom: 12px;
    padding-top: 0;
}

#js-view-seller-info span {
    cursor: pointer;
    color: var(--primary-dk);
    user-select: none;
}

.other-seller-list-wrapper .other-seller-product-item {
    display: grid;
    grid-template-columns: 100px auto;
    align-items: flex-start;
    align-self: flex-start;
    grid-template-areas:
    "OtherPrice AddCartButton"
    "OtherImage OtherInfo"
    "OtherImage OtherButton";
    padding: 12px 16px;
    margin: 0;
}

#full-seller-info {
    font-size: 13px;
    margin: 0;
    padding-top: 0
}

#full-seller-info #seller-product-rating {
    margin: 4px 0
}

.other-seller-product-item:nth-child(n + 3) {
    border-top: 5px solid #e6edf0;
}

.other-seller-wrapper-layout .btn-add-to-cart {
    background-image: none;
    color: #fff;
    padding: 6px 12px;
    border-radius: 24px;
    display: block;
    max-height: 32px;
    font-size: 13px;
}

.btn-product-detail {
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 24px;
    display: block;
    max-height: 32px;
    font-size: 13px;
    margin-right: 6px;
}

.other-seller-addbutton {
    grid-area: AddCartButton;
    display: flex;
    justify-content: flex-end;
    text-align: center;
}

.other-seller-wrapper-layout .other-seller-button:not(.btn-add-to-cart) {
    padding-left: 0;
    padding-right: 0;
}

.other-seller-product-image {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    font-size: 14px;
    grid-area: OtherImage;
    margin-top: 12px;
}

.other-seller-product-image img {
    width: 36px;
    mix-blend-mode: multiply;
}

.other-seller-product-price {
    grid-area: OtherPrice;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 17px;
}

.other-seller-product-price span {
    color: var(--price);
    font-size: 17px;
}

.other-seller-name {
    grid-area: OtherInfo;
    margin-top: 12px;
}

.other-seller-button {
    grid-area: OtherButton;
    padding: 8px 12px;
    display: block;
    text-align: left;
}


.other-seller-button.btn-add-to-cart {
    grid-area: AddCartButton;
    border-radius: 24px;
}
.seller-related-product-wrapper {
    margin-top: 16px;
}

.seller-related-product-list {
    padding: 0 8px;
    margin-top: 16px;
    position: relative;
}
.seller-related-product-list .slick-prev {
    left: 6px;
}
.seller-related-product-list .slick-next {
    right: 6px;
}

.seller-related-product-list:not(.slick-slider) {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.seller-related-product-list:not(.slick-slider) .seller-related-product-item {
    width: calc(100% / 3)
}

.seller-related-product-list:not(.slick-slider) .seller-related-product-item:nth-child(n + 4) {
    display: none;
}

.seller-related-product-box {
    margin: 6px;
}

.seller-related-img {
    width: 100%;
    position: relative;
    display: block;
    cursor: pointer;
}
.seller-related-img::before {
    content: "";
    width: 100%;
    padding-bottom: 100%;
    display: block;
    border-radius: 5px;
    background-color: var(--multiply, #f8f8f8);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    margin-bottom: 8px;
}

.seller-related-img img {
    width: 100%;
    height: 152px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    object-fit: contain;
    object-position: center;
    mix-blend-mode: multiply;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.seller-related-title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 14px;
    color: var(--darkness);
    margin: 6px 0px;
    text-align: left;
}
.seller-related-title:hover {
    color: var(--primary-dk);
}

.seller-related-price {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.seller-related-product-price {
    color: var(--price);
    font-size: 17px;
    margin-right: 6px;
}

.seller-related-product-price-old {
    color: var(--silver);
}

.chiaki-extension {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 0;
}

.mb-addtocard {
    display: none
}

.seller-rating-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    line-height: 1;
}

.seller-rating-count {
    font-size: 12px;
    color: var(--dark);
    transform: translateY(1px);
    margin-left: 2px;
    padding-left: 6px;
    border-left: 1px solid #e1e1e1;
}

.seller-rating-number,
.other-seller-name .text {
    font-size: 13px;
    color: var(--darkness);
    font-weight: 500 !important;
    margin-right: 4px;
    transform: translateY(1px);
}

.other-seller-name .image {
    margin-right: 4px!important;
    width: 16px !important;
    height: 16px;
    object-fit: contain;
}

.other-seller-name .text {
    transform: translateY(-1px);
}

.seller-rating-item {
    width: 12px;
    min-width: 12px;
    height: 12px;
    display: block;
    margin-right: 4px;
    background-color: #ccc;
    -webkit-mask-image: url(/images/star.svg);
    mask-image: url(/images/star.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.ratingOn {
    background-color: #ffbc59;
}
.ratingHalf {
    background: linear-gradient(90deg,rgba(255,188,89,1) 50%,rgba(209,209,209,1) 50%,rgba(209,209,209,1) 100%)
}

@media (min-width: 1180px) {

    .mobile {
        display: none;
    }
}
@media (max-width: 880px) {
    .desktop {
        display: none
    }
    .swiper-wrapper,
    .suggestion-swiper-item {
        height: auto !important;
        max-height: fit-content;
        max-height: -moz-fit-content;
    }

    .seller-related-product-list .slick-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        list-style: none;
        margin: 16px 0 0;
        padding: 0;
    }
    .seller-related-product-list .slick-dots li {
        background: var(--silver);
        width: 12px;
        height: 12px;
        border-radius: 24px;
        margin: 0 6px 0 0;
    }
    .seller-related-product-list .slick-dots li.slick-active {
        background-color: var(--primary)
    }

    .seller-related-product-list .slick-dots li button {
        display: none;
    }
}
@media (min-width: 980px) and (max-width: 1180px) {
    .other-seller-content {
        width: 580px;
    }

    .other-seller-background::before,
    .other-seller-background::after {
        right: 600px;
    }
}
@media (min-width: 880px) and (max-width: 1180px) {
    .seller-related-product-list .slick-next,
    .seller-related-product-list .slick-prev {
        display: flex !important;
    }
}
@media (min-width: 760px) and (max-width: 1180px) {
    .other-seller-addbutton {
        justify-content: flex-end;
    }

    .other-seller-addbutton,
    .other-seller-product-price {
        border-bottom: 1px solid #e9e9e9;
        min-height: 40px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .other-seller-list-wrapper .other-seller-product-item {
        padding: 12px 0;
    }

    .other-seller-product-image {
        padding-left: 12px;
    }

    .store-image {
        width: 20px;
        min-width: 20px;
        height: 20px;
        -webkit-mask-image: url(/frontend/images/store.svg);
        mask-image: url(/frontend/images/store.svg);
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-size: contain;
        mask-size: contain;
        position: relative;
        display: block;
        background-color: var(--warning);
        margin-right: 10px;
        background-color: var(--primary);
    }

    .other-seller-list-wrapper .other-seller-product-item {
        grid-template-columns: 50px auto;
    }

    .seller-product-sold  {
        margin-top: 6px;
    }

    .desktop {
        display: none;
    }
}

@media (max-width: 760px) {
    .seller-container {
        margin-top: 12px;
    }

    .mbcMerchantName:hover {
        color: var(--darkness);
    }

    .seller-product-info {
        grid-template-columns: 100px auto;
        grid-gap: 6px 10px;
        padding: 10px;
        margin: 0;
        background-color: #fff;
        z-index: 1;
        position: sticky;
        top: 0;
        height: 199px;
        box-shadow: 0 2px 6px rgba(11 11 11 / 8%);
        padding-bottom: 6px !important;
    }

    .other-seller-list-wrapper {
        margin-top: 0;;
    }

    .other-seller-head {
        position: sticky;
        top: 199px;
        z-index: 2;
        padding-top: 10px;
        border-top: 1px solid #e1e1e1;
        border-bottom: none;
    }

    .seller-product-image-wrapper {
        width: 100%;
        display: block;
        position: relative;
    }

    .seller-product-image-wrapper::before {
        content: "";
        padding-top: 100%;
        display: block;
    }

    .other-seller-product-item:nth-child(n + 3) {
        border-width: 1px;
    }

    .seller-product-image {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-position: center;
        object-fit: contain;
    }

    .other-seller-content {
        width: 88vw;
        padding-bottom: 100px;
    }

    .other-seller-background::before,
    .other-seller-background::after {
        left: 6px;
        right: auto;
    }

    .seller-product-header-box {
        display: block;
    }

    .seller-product-header,
    .other-seller-head {
        font-size: 16px;
    }

    .seller-product-price,
    .seller-product-sold  {
        margin-bottom: 4px;
    }

    .seller-product-sold {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .seller-product-price {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 6px;
    }
    .seller-product-price .seller-addtocart {
        font-size: 13px;
        margin-left: auto;
        padding: 6px 12px;
    }

    .seller-related-product-list {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .seller-related-product-list:not(.slick-slider) .seller-related-product-item {
        width: calc(100% / 2)
    }

    .seller-related-product-list:not(.slick-slider) .seller-related-product-item:nth-child(n + 3) {
        display: none;
    }

    .seller-related-product-item {
        float: left;
    }

    .seller-product-price span {
        font-size: 19px;
    }

    .other-seller-list-wrapper .other-seller-product-item {
        padding: 10px;
        grid-template-columns: 30px auto;
        grid-template-areas:
        "OtherImage OtherInfo"
        "OtherImage OtherButton"
        "OtherPrice AddCartButton";
        grid-gap: 2px;
    }


    .other-seller-name {
        margin-top: 0;
        display: flex;
        flex-direction: column;
        gap: 2px;
        white-space: nowrap;
    }

    .store-name-box {
        margin: 0;
    }

    .store-name-box a {
        max-width: 100%;
    }

    .other-seller-product-image {
        margin-top: 0;;
    }

    .other-seller-product-price small {
        font-size: 15px;
    }

    .price-txt {
        display: none
    }

    .other-seller-product-price {
        margin: 0;
        align-self: center;
        padding-left: 30px;
        grid-column-end: span 2
    }

    .btn-product-detail {
        border: none;
        margin: 0;;
    }

    .other-seller-wrapper-layout .other-seller-button:not(.btn-add-to-cart) {
        width: 100%;
    }

    .seller-block-wrap {
        border: none;
    }

    .other-seller {
        border: 1px solid #e1e1e1;
        border-radius: 5px;
    }

    #seller-list .current-seller {
        margin: 0;
        padding: 0;
    }

    .other-seller {
        margin-top: 0;
    }

    .a-color-price {
        justify-content: flex-start;
    }

    .a-color-price small {
        color: var(--darkness);
        margin-right: 6px;
        font-size: 14px;
    }

    .a-box-group {
        margin-bottom: 12px;
        user-select: none;
    }
    .a-deck-autoname {
        border: 1px solid #e1e1e1;
        border-radius: 4px 4px 0 0;
        padding: 12px 12px 6px 12px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .seller-arrow {
        width: 24px;
    }

    .no-shop {
        display: none !important
    }

    .js-open-seller-layout.compare-row {
        border: none;
    }

    .store-info .text a {
        font-weight: 600 !important;
        margin: 0 0 3px;
        font-size: 14px;
        line-height: 18px;
    }

    .compare-row {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        transform: translateY(-1px);
        color: var(--primary);
        outline: none;
    }

    .compare-row svg {
        margin-right: 10px;
        color: var(--price)
    }

    .no-shop + .compare-row {
        border-top: 1px solid #e1e1e1;
        border-radius: 4px;
    }

    .other-seller:not(.more-seller-wrapper) .close-seller-info {
        opacity: 0;
        pointer-events: none;
    }

    .other-seller.more-seller-wrapper {
        padding-bottom: 90px;
        pointer-events: all
    }
    .more-seller-wrapper {
        opacity: 1;
        pointer-events: all;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 99999;
        padding-bottom: 60px;
        background-color: #fff;
    }

    .more-seller-wrapper .js-open-seller-layout {
        border: none !important;
        border-radius: 0;
        position: relative;
    }

    .more-seller-wrapper .js-open-seller-layout::after {
        content: "";
        width: 10px;
        height: 10px;
        border: 1px solid #999;
        border-left-width: 0;
        border-bottom-width: 0;
        display: block;
        margin-left: auto;
        margin-right: 10px;
        transform: rotate(45deg);
    }


    .js-viewall-seller-info {
        display: none;
        pointer-events: none;
        transition: opacity 300ms ease-in-out;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 9999;
        background-color: rgba(11 11 11 / 60%);
    }

    .js-viewall-seller-info.active {
        display: block;
        pointer-events: all;
    }

    .close-seller-info {
        position: absolute;
        color: #fff;
        right: 10px;
        top: -30px;
    }

    .seller-info-box {
        display: none;
    }

    .more-seller-wrapper .seller-info-box {
        display: block;
    }
    .more-seller-wrapper .seller-arrow {
        display: none;
    }

    .more-seller-wrapper .a-chiaki-offer-inner {
        width: 100%;
    }
    .more-seller-wrapper .mb-addtocard {
        display: block;
        text-align: center;
        padding: 5px 12px;
        font-size: 12px;
        background-color: var(--primary-dk);
        color: #fff;
        border-radius: 24px;
        margin-left: auto;
    }

    .seller-info-box .a-section {
        margin-top: 6px;
    }
    .seller-info-box .seller-product-rating {
        margin-top: 6px;
        font-size: 15px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        white-space: nowrap;
        gap: 10px
    }

    .store-info .image {
        margin-right: 3px;
    }
    
    .seller-info-box .seller-product-rating .store-info {
        margin: 0;
    }

    .other-seller-wrapper-layout .starRating {
        padding: 0;
        gap: 2px
    }

    .star-on {
        color: var(--warning);
    }

    .seller-product-rate-count {
        margin: 0;
    }

    .more-info {
        font-size: 13px;
        color: var(--primary-dk);
        user-select: none;
    }

    .seller-product-rating {
        gap: 6px;
        flex-wrap: nowrap;
    }

    .seller-product-info-box .seller-product-rating {
        flex-direction: column;
        margin-top: 6px;
    }

    .seller-product-sold .seller-product-rating {
        padding-left: 30px;
        width: 100%;
    }

    .other-seller-content .store-info {
        margin: 0;;
    }

    .seller-product-sold .store-image.store-default {
        margin-right: 10px;
    }

    .store-info .text {
        color: var(--darkness);
    }

    .seller-product-sold .seller-product-rating .store-info .image {
        width: 16px !important;
        height: 16px !important;
        margin-right: 4px !important
    }

    .other-seller-content .store-info {
        justify-content: flex-start;
        display: none;
    }
}

@media (max-width: 1000px) and (orientation:landscape) {
    .seller-related-product-item {
        float: left;
    }

    .slick-prev, .slick-next {
        font-size: 21px;
        line-height: 21px;
        position: absolute;
        top: 35%;
        display: block;
        width: 20px;
        height: 20px;
        margin-top: 0;
        padding: 0;
        cursor: pointer;
        color: var(--silver);
        border: none;
        outline: none;
        background: transparent;
        z-index: 7;
    }

    .other-seller-content {
        padding-bottom: 100px;
    }

    .seller-block-wrap .other-seller {
        margin: 0;
    }
    .seller-block-wrap .current-seller {
        margin: 0;
        padding: 8px 12px;
        border: 1px solid #e1e1e1;
        margin-top: 16px;
        border-radius: 4px 4px 0 0;
    }

    .seller-block-wrap {
        border: none;
        margin: 0;
    }
}
