.desktopMenu{
    display: block;
    position: relative;
}
.desktopMenu span::before{
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0px;
    width: 0%;
    height: 3px;
    background: red;
    transition: all .2s;
    transition-timing-function: cubic-bezier(1, 0.01, 0.3, 0.8);
}
.desktopMenu span:hover::before{
    width: 100%;
}
.desktopMenu span:hover a{
    color: red !important;
}
.mobilePreorderBtn{
    display: none;
}
.preorderButton{
    height: 45px;
    font-size: 14px !important;
}
.theme .desktopMenu span a, .theme .mobileMenuItem div a{
    color: #333333;
}
.mobileMenu{
    display: none;
}
.theme .popupBannerContainer{
    max-width: 1024px;
    max-height: 470px;
    height: 100%;
    width: 100%;
    padding: 0 !important;
    overflow: hidden;
}
.popupBannerContainer img{
    max-width: 1024px;
    display: block;
    width: 100%;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
}
.topConatiner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px 0;
    position: sticky;
    background: white;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid #C8C8C8;
    height: 83px;
    box-sizing: border-box;
}
.topConatiner a{
    text-decoration: none;
}
.tabConatiner{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.tabConatiner span{
    position: relative;
    cursor: pointer;
    min-height: 45px;
    display: flex;
    align-items: center;
}
.theme .tabConatiner .activeTabName{
    color: #FF0000;
}
.activeTabName::after{
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0px;
    width: 100%;
    height: 3px;
    background: red;
    transition: all .2s;
    transition-timing-function: cubic-bezier(1, 0.01, 0.3, 0.8);
}
.button-bar {
    background: #f2f2f2;
    border-radius: 30px;
    max-width: 700px;
    width: 100%;
    position: relative;
    display: flex;
    margin: 50px auto 20px;
    transform: translate(0px, 0px);
    min-height: 56px;
    align-items: center;
}
.button-bar .highlight {
    width: 50%;
    height: 100%;
    border-radius: 30px;
    position: absolute;
    left: 0;
    top: 0;
    background: #FF0000;
    text-align: center;
    line-height: 56px;
    transition: 0.2s all linear;
}
.button-bar a {
    transition: 0.2s all linear;
    color: #333333;
    font-size: 16px;
    font-weight: 700;
    width: 50%;
    line-height: 56px;
    text-align: center;
    z-index: 10;
}
.button-bar a.active {
    color: #fff;
}
.fade-enter-active, .fade-leave-active {
    transition: opacity .3s;
}
.fade-enter, .fade-leave-to {
    opacity: 0;
}
#menu-btn {
    padding: 0px;
}
#menu-btn .icon {
    display: block;
    position: relative;
    width: 36px;
    height: 36px;
}
#menu-btn .icon-bar.first {
    -webkit-transform: translateY(-4px);
    -moz-transform: translateY(-4px);
    -o-transform: translateY(-4px);
    transform: translateY(-4px);
    top: 14px;
}
#menu-btn .icon-bar.second {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    top: 18px;
}
#menu-btn .icon-bar.last {
    -webkit-transform: translateY(4px);
    -moz-transform: translateY(4px);
    -o-transform: translateY(4px);
    transform: translateY(4px);
}
#menu-btn .icon-bar {
    position: absolute;
    background-color: #333;
    width: 20px;
    margin: 0px;
    top: 22px;
    left: 8px;
    -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    -moz-transition: -moz-transform 0.25s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    -o-transition: -o-transform 0.25s cubic-bezier(0.4, 0.01, 0.165, 0.99);
    transition: transform 0.25s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}
.site-btn {
    display: inline-block;
    text-decoration: none;
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    float: right;
    /* background-color: #fbfbfb; */
    border-radius: 60px;
    /* border: 1px solid #ddd; */
    /* margin: 10px 0px; */
    font-size: 12px;
    font-weight: bold;
    color: #999;
}
.navbar-nav {
    margin: 0px;
    text-align: center;
    float: none;
}
.nav {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}
#navMenu>li {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
}
.navbar-collapse {
    overflow-x: visible;
    padding-right: 15px;
    padding-left: 15px;
    border-top: 1px solid transparent;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    -webkit-overflow-scrolling: touch;
}
.navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
}
.collapse {
    display: none;
}
.collapse.show {
    display: block;
}
.collapsing{
    position: relative;
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}
.mobileMenuContainer{
    padding: 0 20px;
}
.mobileMenuItem{
    display: flex;
    flex-wrap: wrap;
}
.mobileMenuItem div{
    width: 100%;
    border-top: 1px solid #EBECEE;
    padding: 20px 20px 20px 0;
}
.mobileMenuItem div:nth-child(1){
    border-top: 1px solid #c2c2c2;
}
.theme .vanSwiperContainer .cardContainer{
    background: white;
}
.footerContainer{
    border-top: 1px solid #D9D9D9;
    margin: 0px 60px 40px;
    padding-top: 40px;
    color: #666666;
}
.theme .iphone4LifePopupBox .van-popup__close-icon--top-right,.theme .checkVoucherPopupBox .van-popup__close-icon--top-right{
    top: 36px;
    right: 40px;
}
.theme #app .van-popup{
    overflow: hidden;
}
.bannerContainer{
    max-width: 1200px;
    margin: 40px auto 0;
    width: 100%;
}
.bannerContainer div{
    position: relative;
}
.bannerContainer div a{
    display: block;
    position: absolute;
    width: 100%;
}
.bannerContainer img{
    width: 100%;
    display: block;
}
.logoBox{
    margin: auto 0;
}
.theme .van-popup__close-icon{
    color: #9C9C9C;
}
.theme[lang=en-US] .langSpan{
    font-family: var(--typography-fontFamilyHeaderMix) !important;
}
body{
    color: var(--Color-Black, #333);
}
.app_container{
    max-width: 1200px;
    width: auto;
    margin: 40px auto;
}
.appleCareImg{
    min-width: 160px;
    min-height: 160px;
}
.top_section{
    display: flex;
    justify-content: center;
    gap: 40px;
}
.second_section{
    margin: 40px auto;
}
.phone_container{
    display: grid;
    gap: 20px;
    align-self: stretch;
    grid-template-columns: repeat(4, 1fr);
}
.phone_item{
    display: flex;
    padding: 20px 24px;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex: 1 0 0;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
    text-align: center;
}
.phone_img{
    display: flex;
    gap: 6px;
}
.theme[lang=zh-HK] .price_need{
    margin: 4px auto;
}
.theme[lang=zh-HK] .h7.phone_price{
    font-family: 'titling-gothic-fb-condensed';
    font-weight: 500;
}
.theme[lang=en-US] .price_need{
    margin: 4px auto;
}
.theme[lang=en-US] .h7.phone_price{
    font-family: 'titling-gothic-fb-condensed';
    font-weight: 500;
}
.text_content{
    height: 100%;
}
.view_detail{
    display: flex;
    padding: 12px 0px;
    justify-content: center;
    align-items: center;
    gap: 15px;
    align-self: stretch;
    border-radius: 100px;
    border: 2px solid var(--Color-Red---Default, #F00);
    background: var(--Color-White, #FFF);
    color: var(--Color-Black, #333);
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-family: "Noto Sans TC";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 21px; 
    margin: 20px auto 0;
    width: 160px;
    box-sizing: border-box;
}
.theme[lang=zh-HK] .view_detail:hover,.theme[lang=en-US] .view_detail:hover{
    background-color: #CA1100;
    color: #fff;
    outline: none;
    border: 2px solid var(--Color-Red---Default, #CA1100);
}
.remark_tnc_section p{
    margin-bottom: 12px;
}
.remark_tnc_section ul{
    margin-left: 21px;
    list-style: disc;
}
.remark_tnc_section ul li{
    margin-bottom: 6px;
}
.theme[lang=zh-HK] .lead_in p{
    margin-bottom: 12px;
}
.theme[lang=zh-HK] .lead_in p:last-child{
    margin-bottom: 0;
}
.theme[lang=en-US] .lead_in p{
    margin-bottom: 12px;
}
.theme[lang=en-US] .lead_in p:last-child{
    margin-bottom: 0;
}
.mobileContainer{
    display: none;
}
.topTitle{
    text-align: center;
    margin-top: 60px;
}

@media (max-width:1200px) {
    .phone_container{
        grid-template-columns: repeat(2, 1fr);
    }
    .app_container{
        padding: 0 20px;
    }
}
@media (min-width: 1480px) and (max-width: 1515px) {
    .theme[lang=en-US] .tabConatiner{
        gap: 15px;
    }
}
@media (max-width: 1440px) {
    .desktopMenu{
        display: none;
    }
    .mobileMenu{
        display: block;
        margin: auto 0;
    }
    .mobileContainer{
        display: flex;
    }
    .theme .mobileMenu .van-popup__close-icon--top-right{
        top: 26px;
        right: 26px;
    }
    .mobileMenu .van-popup{
        padding: 0 !important;
        height: 100%;
        width: 100%;
    }
    .topConatiner div a img{
        width: 90px;
    }
    .mobileMenuContainer div img{
        width: 90px;
        margin: 30px 0 20px;
    }
    .mobilePreorderBtn{
        display: block;
    }
}
@media (max-width: 767px) {
    .topTitle{
        text-align: center;
        margin-top: 40px;
    }
    #mainNavMenu {
        background: #fbfbfb;
    }
    .theme .popupBannerContainer{
        max-width: 230px;
        /* max-height: 230px; */
        background: center;
    }
    .popupBannerContainer img{
        width: 100%;
        height: 100%;
        max-width: 230px;
        top: 50%;
        max-height: 420px;
    }
    .theme .popupBannerContainer .van-popup__close-icon--top-right{
        top: 30px;
        right: 10px;
    }
    .topConatiner{
        position: sticky;
        padding: 20px 20px 10px;
        margin: auto;
        height: auto;
        align-items: center;
    }
    .mobileMenuBox{
        justify-content: space-between;
    }
    .mobilePreorderBtn{
        margin-right: 10px;
    }
    .footerContainer{
        margin: 20px 0 0 0;
        padding: 20px;
    }
    .bannerContainer{
        margin-top: 20px;
    }
    .phone_container{
        grid-template-columns: 100%;
    }
    .app_container{
        margin: 20px 0px 40px;
        width: auto;
    }
    .top_section {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 20px;
    }
    .appleCareImg{
        width: 100px;
        height:100px;
        min-width: unset;
        min-height: unset;
    }    
    .theme[lang=zh-HK] .second_section a {
        width: auto;
    }
    .theme[lang=en-US] .second_section a {
        width: auto;
    }
    .second_section {
        margin: 32px auto;
    }
}



#app{
    overflow: hidden;
}
body img{
    max-width: 100%;
}
body #app .swiper-button-next{
    background-image: url("https://www.smartone.com/Home5GBroadband/web/img/icon/Next_Btn_Red_Pc.png");
}
body #app .swiper-button-prev{
    background-image: url("https://www.smartone.com/Home5GBroadband/web/img/icon/Previous_Btn_Red_Pc.png");
}
body #app .swiper-button-next, body #app .swiper-button-prev{
    width: 80px !important;
    height: 80px !important;
}
body #app .swiper-button-next{
    right: -4px;
}
body #app .swiper-button-prev{
    left: -4px;
}
body #app .contract30NextBtn, body #app .contract30PrevBtn{
    top: 25%;
}
.viewMySTPConatiner{
    display: flex;
    justify-content: center;
    background-color: white;
    padding-bottom: 40px;
}
.ViewmySmarTPass{
    width: auto !important;
}
.showPlanContainer{
    position: relative;
    background: white;
    display: flex;
    justify-content: center;
    align-items: end;
}
.showPlanContainer::after{
    content: '';
    display: block;
    width: 100%;
    height: 6px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: red;
}
.showPlanItem{
    margin-left: -7px;
}
.showPlanItem div{
    height: 60px;
    max-width: 294px;
    text-align: center;
}
.showPlanItem:nth-child(3) div{
    max-width: 315px;
}
.theme[lang=zh-HK] .showPlanItem:nth-child(4) div{
    max-width: 315px;
}
.theme[lang=en-US] .showPlanItem div{
    height: 80px;
}
.showPlanItem:not(:nth-child(1):hover){
    cursor: pointer;
}
.planTitle img{
    width: 40px;
}
.planTitle span{
    margin-bottom: 0;
}
.selectPlanContainer{
    display: flex;
    gap:8px;
    flex-wrap: wrap;
    margin: 12px auto 12px auto;
}
.theme .selectPlanItem .detailSubDesc{
    font-size: 12px;
}
.offerContainer{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.offerContainer .line{
    width: 70%;
}
.theme[lang="en-US"] .offerContainer .line{
    width: 50%;
}
.offerDesc{
    margin-top: 12px;
    height: 21px;
}
.line{
    background:var(--palette-grey-50);
    height: 1px;
}
.whatsappContainer{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: end;
}
.whatsappBtn{
    width: 100%;
}
.textCenter{
    text-align: center;
}
.normalPlanSwiper{
    position: relative;
}
.prevBtn{
    position: absolute;
    left: 12%;
    background-image: url('https://www.smartone.comhttps://www.smartone.com/Home5GBroadband/web/img/icon/Previous_Btn_Red_Pc.png') ;
    width: 74px;
    background-size: cover;
    height: 74px;
    top: 60%;
    cursor: pointer;
}
.nextBtn{
    position: absolute;
    right: 12%;
    top: 60%;
    background-image: url('https://www.smartone.comhttps://www.smartone.com/Home5GBroadband/web/img/icon/Next_Btn_Red_Pc.png') ;
    width: 74px;
    background-size: cover;
    height: 74px;
    cursor: pointer;
}
.vanSwiperContainer{
    max-width: 1300px;
    margin: auto;
    position: relative;
    overflow: hidden;
}
.van-swipe__track{
    height: auto;
}
.van-swipe{
    cursor: auto;
    user-select: auto;
    margin-left: 80px;
    margin-right: 80px;
    overflow: unset;
}
.firstShowContainer{
    display: flex;
    justify-content: center;
    gap: 20px;
}
.hotPick{
    position: absolute;
    left: 12px;
    border-radius: 8px 8px 8px 0;
    color: white;
    background: red;
    padding:4px 12px;
}
.normalPlanText{
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
}
.giftText{
    display: flex;
    justify-content: center;
    gap: 12px;
}
.whatsappBtnConatiner{
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-bottom: 40px;
    background-color: white;
}
.whatsappBtn img{
    height: 24px;
    width: 24px;
}
.whatsappBtnConatiner .whatsappBtn{
    width: 250px;
}
.whatsappBtnConatiner .whatsappBtn button{
    width: 250px;
    display: flex;
    gap: 15px;
}
.theme .smc-container .topDes{
    margin-bottom: 20px;
}
.terms-anchor{
    color: #333 !important;
    font-feature-settings: 'clig' off, 'liga' off;
    font-family: "titling-gothic-fb-narrow", "Noto Sans", "Noto Sans TC", "MHei", "微軟正黑體", "Microsoft JhengHei", sans-serif !important;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin: 40px 0 0 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
}
.tnc-icon {
    width: 18px;
    height: 18px;
    background: red;
    border-radius: 30px;
    margin-left: 10px;
    position: relative;
    transition: all .3s;
}
.tnc-icon::before {
    position: absolute;
    top: 4px;
    width: 2px;
    height: 10px;
    left: 8px;
    background: #fff;
    content: "";
    transition: all .3s;
}
a[aria-expanded="true"] .tnc-icon::before {
    width: 0;
    height: 0;
}
.tnc-icon::after {
    position: absolute;
    top: 8px;
    width: 10px;
    height: 2px;
    left: 4px;
    background: #fff;
    content: "";
    transition: all .3s;
}
[data-toggle="collapse"][aria-expanded="true"] > img[src="https://www.smartone.com/common/arrow_red.gif"]
{
    content:url(https://www.smartone.com/common/arrow_red_down.gif);
}
.plan__div{
    margin-top: 20px;
}
.ExclusiveOffersTitle{
    margin: 40px 0;
    text-align: center;
}
.theme .tnc p a{
    color: red;
}
.theme .roaming-components .tabs .tab.selected .content{
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}
.theme .roaming-components .tabs .tab:last-child .content{
    border-top-right-radius: 20px;
}
.theme .roaming-components .tabs .tab:first-child .content{
    border-top-left-radius: 20px;
}
.theme .roaming-components .tabs{
    justify-content: start;
    overflow-x: scroll;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.theme .tabsNextBtn{
    position: absolute;
    top: -3px;
    right: -3px;
    width: 25px;
    height: 50px;
}
.theme .tabsPrevBtn{
    position: absolute;
    top: -3px;
    left: -3px;
    width: 25px;
    height: 50px;
    display: none;
}
.extraDescText{
    justify-content: center;
}
.i17PlanCardContainer{
    background-color: #F6F6F6;
    padding: 60px 0 0;
}
.roaming-components{
    max-width: 1200px;
    margin: auto;
    margin-top: 40px;
}
.roaming-components .swiper-slide{
    max-width: 360px;
    min-width: 360px;
}	
.planBottomContainer{
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 28px 40px;
    border-radius: 20px;
    background-color: white;
    margin: 0px 40px 40px;
    z-index: 1;
    position: relative;
}
.planBottomContainer img{
    width: 80px;
}
.featuredPlanCardBox .planBottomContainer{
    z-index: 1;
    width: 100%;
}
.roaming-components .swiper-wrapper{
    height: auto;
}
.swiper-button-disabled{
    display: none !important;
}
.roaming-components .swiper{
    max-width: 1140px;
    overflow: hidden;
    margin: auto;
    padding: 0 10px;
    box-sizing: border-box;
}
.allServiceContainer {
    display: flex;
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    align-self: stretch;
    border-radius: 20px;
    max-width: 1200px;
    width: 100%;
    max-width: 1200px;
    margin: -20px auto 0px;
    padding-bottom: 60px;
    text-align: center;
    box-sizing: border-box;
}
.allServiceTitle{
    color: var(--Color-Black, #333);
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px; /* 150% */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    align-self: stretch;
    cursor: pointer;
}
.allServiceTitle b{
    transition: 0.5s;
    transform: rotate(180deg);
}
.allServiceContent{
    max-width: 1200px;
    width: 100%;
    gap: 28px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 0 40px;
    box-sizing: border-box;

}
.allServiceContentTop{
    display: flex;
    align-items: center;
    gap: 40px;
    align-self: stretch;
    justify-content: space-around;
}
.allServiceContentTop hr{
    width: 1px;
    height: 106px;
    background: #D3D3D3;
    margin: 0;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.allServiceContentTopItem h1{
    color: var(--black-white-grey-black, #333);
    text-align: center;
    margin: 12px 0 0 !important;
}
.allServiceContentTopItem p{
    color: var(--black-white-grey-black, #333);
    text-align: center;
    font-feature-settings: 'liga' off, 'clig' off;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    margin: 0 !important;
}
.smarTonePlus_logo{
    width: 126px;
}
.mgm_logo{
    width: 43px;
}
.plan_logo {
    width: 60px;
}
.allServiceHr{
    width: 100%;
    height: 1px;
    background: #D3D3D3;
    margin: 0;
    border: none;
}
.allServiceContentBottom{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 40px;
}
.allServiceContentBottomItem{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    gap: 12px;
}
.allServiceContentBottomItem p{
    color: var(--black-white-grey-black, #333);
    margin: 0 !important;
}
#app .container{
    padding: 0;
    width: 100%;
    position: relative;
}
.spTopImg{
    position: absolute;
    width: 100%;
    top: 20px;
    left: 0;
}
.clickAbleBox{
    position: relative;
}
.clickRange{
    position: absolute;
    width: 40px;
    height: 40px;
    top: 0%;
    left: 48%;
    cursor: pointer;
}
.theme[lang="en-US"] .clickRange{
    left: 27%;
}
.superSPclickRange{
    left: 64%;
}
.theme[lang="en-US"] .superSPclickRange{
    left: 43%;
}
.upData{
    color: red;
}
.upData img{
    width: 17px;
    height: 19px;
}
.handsetVoucherGiftBox{
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    background-color: #F6F6F6;
    border-radius: 20px;
    margin-top: 8px;
}
.hvGiftIcon{
    width: 32px;
    height: 32px;
}
.hvGiftText img{
    height: 15px;
    width: 15px;
}
.cardContainer{
    background: none;
}
.bannerPadding{
    padding: 40px 0;
}
.planDesc{
    margin: 20px auto 50px;
    text-align: center;
}
.coverBGBanner {
    max-width: 1200px;
    height: 100%;
    width: 100%;
    padding: 0 !important;
    overflow: hidden;
    border-radius: 20px;
    position: absolute;
}
.coverBGBanner img {
    max-width: 1200px !important;
    display: block;
    position: absolute;
    bottom: 0;
    border-radius: 20px;
}
.planCard400GiftContainer{
    display: flex;
    gap: 20px;
    flex-direction: column;
}
.planCard400GiftContainer>div{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.blackLine{
    background: black;
    height: 1px;
}
.otp-widget-screen__heading__text{
    color: #333;
}
.planCardOtherOfferContainer{
    z-index: 2;
    position: relative;
    max-width: 1200px;
    margin: auto;
    text-align: center;
    padding: 0 20px;
    box-sizing: content-box;
    margin-top: 20px;
}
#app .planCardOtherOfferContainer img{
    max-width: 700px !important;
}
.planCardOtherOfferContainer .whatsappBtnConatiner{
    background: none;
    margin-top: 28px;
}
.roaming-components .tabs{
    border-radius: 20px 20px 0 0;
}
.topDescSpacing{
    margin-top: 40px;
}
.theme .roaming-components .tabs .tab:nth-child(2) .content {
    border-top-left-radius: 20px;
}
/* .recommendPopupTable, td, th {
    border: 3px solid #FFF;
} */
body .recommendPopupTable th:first-child {
    min-width: 330px;
}
.recommendPopupTable th, .recommendPopupTable td {
    padding: 20px;
}
.plan-table th{
    padding: 20px 0;
    background: var(--palette-grey-80);
    color: var(-palette-white-main);
    text-align: center;
    width: 33%;
}
.first-td{
    display: flex;
    justify-content: space-around;
}
.first-td img{
    width: 130px;
    height: fit-content;
}
.recommendPopupTable {
    width: 680px;
    margin: 0 auto 20px;
    border-radius: 20px;
    background: var(--black-white-grey-grey-background, #F5F6F7);
    border-collapse: collapse;
    overflow: hidden;
}
.recommendPopupTable tr th:nth-child(2) {
    color: var(--Smt-Red-Red, #FD1500);
}
.recommendPopupTable tr th:nth-child(3) {
    color: var(--Green, #4CAF51);
}
.recommendPopupContainer {
    max-width: 680px;
    width: 100%;
    text-align: center;
}
.recommendTitle {
    margin-bottom: 20px !important;
}
.recommendPopupTable tr th {
    background: #EAEBEC;
    text-align: center;
}
.recommendPopupTable td b {
    font-family: "Titling-Gothic-FB-Condensed";
    font-weight: 500;
}
.offerContainer div{
    white-space: nowrap;
}
.roaming-components .swiper .button:hover{
    min-height: 56px;
}
.offerContainer{
    gap: 20px;
}
.swiper-button-prev, .swiper-button-next{
    background-size: contain !important;
}
.notPreRegStyle{
    padding-top: 0;
}
#planLot1,#planLot2,#planLot3,#planLot4{
    width: 150px;
    height: 80px;
    position: absolute;
    top: -50px;
    left: 59%;
    pointer-events: none;
    z-index: 2;
}
.showAt1480{
    display: none;
}
.extraRedText, .extraSubText{
    font-size: 13px !important;
}
.extraSubText.Retailprice{
    font-size: 16px !important;
    color:#333 !important;
}
.box-height{
        height: 72px;
}
@media (max-width: 1700px) {
    .nextBtn{
        right: 150px;
    }
    .prevBtn{
        left: 150px;
    }
}
@media (max-width: 1500px) {
    .nextBtn{
        right: 50px;
    }
    .prevBtn{
        left: 50px;
    }
}
@media (max-width: 1480px) {
    .showAt1480{
        display: block;
    }
}
@media (max-width: 1400px) {
    .nextBtn{
        right: 6%;
    }
    .prevBtn{
        left: 6%;
    }
}
@media (max-width: 1350px) {
    .tabConatiner{
        gap: 12px;
    }
}
@media (max-width: 1300px) {
    .vanSwiperContainer{
        max-width: 1000px;
    }
}
@media (max-width: 1200px) {
    .vanSwiperContainer{
        max-width: 900px;
    }
}
@media (max-width: 920px) {
    .vanSwiperContainer{
        max-width: 700px;
    }
}
@media (max-width: 800px) {
    .vanSwiperContainer{
        max-width: 600px;
    }
}
@media (max-width: 767px) {
    .viewMySTPConatiner{
        padding-bottom: 20px;
    }
    .cardBox{
        width: 315px;
    }
    .prevBtn{
        width: 54px;
        height: 54px;
        top: 60%;
        left: -20px;
    }
    .nextBtn{
        width: 54px;
        height: 54px;
        top: 60%;
        right: -20px;
    }
    .normalPlanSwiper .nextBtn, .normalPlanSwiper .prevBtn{
        top: 38%
    }
    .vanSwiperContainer{
        max-width: 1200px;
        padding-left: 10px;
    }
    .van-swipe{
        margin-left: 0;
        margin-right: 0;
    }
    .van-swipe__track{
        margin-left: 10px;
    }
    .giftText{
        padding: 0 20px;
    }
    .whatsappBtnConatiner{
        flex-wrap: wrap;
        padding: 0 20px 0px;
        gap: 12px;
    }
    .whatsappBtnConatiner .whatsappBtn,.whatsappBtnConatiner .whatsappBtn button{
        /* width: 100%; */
        display: flex;
        justify-content: center;
    }
    .selectPlanItem{
        height: 44px;
    }
    .theme[lang=en-US] .selectPlanItem{
        height: 60px;
    }
    .theme[lang="en-US"] .offerContainer .line{
        width: 40%;
    }
    .roaming-components .giftContainer{
        width: 280px;
    }
    .theme .smc-container .topDes{
        margin-top: 40px;
        margin-bottom: 20px;
    }
    .showPlanContainer::after{
        bottom: -4px;
    }
    .planTitle{
        margin: 40px 0 28px;
    }
    .whatsappContent{
        padding: 0 20px 12px;
    }
    .exclusiveOffersContainer{
        margin: 30px 20px 48px;
        padding:20px;
    }
    .offerSection{
        flex-wrap: wrap;
        justify-content: left;
        gap:16px;
    }
    .offerItem{
        flex-direction: row;
        width: 100%;
        flex-wrap: nowrap;
        gap: 0px;
    }
    .offerItem img{
        width: 30px;
        height: 30px;
    }
    .offerItem div{
        text-align: left;
        margin-left: 12px;
    }
    .theme .offerItem div span.h7{
        font-size: 18px;
    }
    .ExclusiveOffersTitle{
        margin: 40px 0 28px;
    }
    .allServiceContent, .allServiceContainer {
        gap: 20px;
    }
    .allServiceContainer{
        padding: 40px 20px;
        margin-top: 0;
        width: unset;
    }
    .allServiceContent {
        padding: 0;
    }
    .allServiceContentTop {
        gap: 12px;
    }
    .allServiceContentTopItem {
        width: 50%;
    }
    .smarTonePlus_logo {
        width: 80px;
    }
    .allServiceContentBottom {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .plan_logo {
        width: 36px;
    }
    .mgm_logo {
        width: 30px;
    }
    .planBottomContainer img {
        min-width: 48px;
    }
    .featuredPlanCardBox .planBottomContainer {
        width: unset;
    }
    .planBottomContainer {
        padding: 20px;
        gap: 20px;
        margin: 0 20px 20px;
    }
    .spTopImg{
        max-width: 315px;
    }
    .clickRange{
        left: 54%;
    }
    .theme[lang="en-US"] .clickRange {
        left: 30%;
    }
    .superSPclickRange{
        left: 72%;
    }
    .theme[lang="en-US"] .superSPclickRange {
        left: 48%;
    }
    .roaming-components .swiper-slide{
        max-width: 315px;
        min-width: 315px;
    }	
    .roaming-components .swiper{
        padding: 0 20px;
    }
    .bannerPadding{
        padding: 20px 0;
    }
    .planDesc{
        margin: 0px 20px 20px;
    }
    body #app .swiper-button-next{
        background-image: url("https://www.smartone.com//5G/images/mobile_tab_arrow_R.png");
        right: -24px;
    }
    body #app .swiper-button-prev{
        background-image: url("https://www.smartone.com//5G/images/mobile_tab_arrow_L.png");
        left: -24px;
    }
    .planCardOtherOfferContainer .whatsappBtnConatiner{
        margin-top: 20px;
        padding-left: 0;
        padding-right: 0;
    }
    .planCardOtherOfferContainer .whatsappBtnConatiner button{
        display: flex;
        flex-direction: row;
    }
    body .st-container.container{
        padding: 0;
    }
    body .backcrumb{
        margin-top: 0;
        height: 50px;
    }
    body .backcrumb .backcrumb-wrapper{
        display: block;
    }
    .topDescSpacing{
        margin-top: 20px;
    }
    #app .planCardOtherOfferContainer img{
        max-width: 100% !important;
    }
    .recommendPopupTable {
        text-align: center;
        width: 100%;
    }
    .recommendPopupTable tr td, .recommendPopupTable tr th {
        font-size: 12px !important;
        min-width: unset !important;
    }
    .roaming-components .tab-pages .tab-page{
        border-bottom-right-radius:0;
        border-bottom-left-radius:0;
    }
    .roaming-components{
        margin-top: 30px;
    }
    .coverBGBanner{
        bottom: 0;
        border-radius: 0;
    }
    .coverBGBanner img{
        border-radius: 0;
    }
    .recommendPopupContainer p {
        margin-bottom: 5px !important;
    }
    td {
        padding: 10px;
    }
    th {
        padding: 20px;
    }
    .recommendPopupTable th{
        text-align: center;
    }
    .planTitle img{
        width: 24px;
    }
    .preorderButton{
        width: unset;
    }
}



.switchTabContainer{
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: 20px;
}
.switchTabItem{
    padding: 12px 0;
    border: 1.5px solid #D3D3D3;
    text-align: center;
    width: 50%;
    cursor: pointer;
}
.switchAciteTab{
    color: red;
    border: 1px solid #F00 !important;
}
.switchTabItem:nth-child(2){
    border-radius: 12px 0 0 12px;
}
.switchTabItem:last-child{
    border-radius: 0 12px 12px 0;
}
.theme[lang=zh-HK] .heightPlaceHolder{
    height: 162px;
}
#app .form-control{
    margin-bottom: 0;
    margin-top: 10px;
}
.topDesc{
    margin: 20px auto;
    text-align: center;
}
.mbShow{
    display: none;
}
.offerBoxBannerBox {
    max-width: 1000px;
    margin: 0 auto;
}
/* .selectPlanBox{
    min-height: 325px;
}
.planBoxTitle{
    height: auto;
}
.planItemBox{
    height: inherit;
} */

.bankContainer{
    display: grid;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.bankItem{
    margin-top: 20px;
}

.bankTitle{
    margin-bottom: 20px;
}

@media (max-width:767px) {
    #app{
        overflow: unset;
    }
    .i17PlanCardContainer{
        padding: 40px 0;
        margin: 0 -20px;
        overflow: hidden;
    }
    .iphone4LifePopupBox{
        width: 100%;
    }
    .theme[lang="en-US"] .whatsappContainer button{
        font-size: 12px !important;
    }
    .mbShow{
        display: block;
    }
    .offerBoxBannerBox{
        margin-bottom: 0;
        padding: 0 20px;
        width: unset;
    }
    .bankContainer{
        display: grid;
        gap: 32px;
    }
    .bankItem{
        margin-top: 16px;
    }
    .bankBox {
        width: 100px;
    }
    .bankBox img{
        width: 100px;
    }
    .bankTitle{
        margin-bottom: 12px;
    }
}

/* new text layout */
		.numberFont {
			font-weight:normal!important;
			font-family: titling-gothic-fb-condensed, Noto Sans TC, sans-serif, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"!important;

		}
		.promoTitle{
			color: #333333;
			font-size: 38px;
			font-family: "NotoSansCondBold","Noto Sans","Noto Sans TC","MHei","微軟正黑體","Microsoft JhengHei",sans-serif;
			font-weight: 700;
			margin-bottom: 20px;
		}
		/*.st-container{
			display: flex;
			justify-content: space-between;
			// margin: 30px auto;
			flex-wrap: wrap;
		}*/
		.plan-container .middleBanner{
			max-width: 1200px !important;
    		margin: 0 auto;
		}
		.iPhoneSelect select{
			color: #333333;
			background: #F6F6F6;
			border-radius: 100px;
			padding: 10px 15px 10px 18px;
			width: 262px;
			font-family: "NotoSansCondBold","Noto Sans","Noto Sans TC","MHei","微軟正黑體","Microsoft JhengHei",sans-serif;
			height: 56px;    
		}
		.iPhoneSelect::after{
			content: '▼';
			position: relative;
			top: 2px;
			right: 40px;
		}
		.smc-container{
			max-width: 1200px;
			width: 100%;
			margin-left: auto;
			margin-right: auto;
			border: 0;
			border-radius: 0;
			text-align: center;
		}
		.padding-full-80 p,.smc-container p{
			text-align: center;
    		font-size: 24px;
			margin: 20px 0 50px;
			font-family: "Noto Sans","Noto Sans TC";
		}	
		.padding-full-80 img{
			border-radius: 20px;
    		width:100%;
		}	
		
		.offer-box-container{
			display: flex;
			position: relative;
    		justify-content: center;
			flex-wrap: wrap;
		}
		.offer-box-item{
			width: 420px;
			height: 225px;
			background-color: #F6F6F6;
			border-radius: 20px;
			margin: 30px 16px;
		}
		.offer-box-item h3{
			width: 90px;
			height: 35px;
			background-color: red;
			border-radius: 10px 10px 0px 10px;
			display: inline-block;
			color: var(-palette-white-main);
			font-size: 16px;
			position: relative;
			top: -20px;
			left: -20px;
			line-height: 35px;
			text-align: center;
			font-family: "NotoSansCond","Noto Sans","Noto Sans TC","MHei","微軟正黑體","Microsoft JhengHei",sans-serif;
		}
		.offer-item{
			text-align: center;

		}
		.plus{
			color: #333333;
			width: 82px;
			height: 82px;
			font-size: 40px;
			background: var(-palette-white-main);
			text-align: center;
			vertical-align: middle;
			line-height: 82px;
			border-radius: 50%;
			position: absolute;
			top: 50%;
			left: 50%;
			z-index: 999;
			transform: translate(-50%, -50%);			
		}
		.offer-item img{
			width: 80px;
			height: 80px;
			margin: 0 auto;

		}
		.offer-item p{
			font-size: 24px;
			font-weight: 700;
			color: #333333;
			font-family: "NotoSansCondBold","Noto Sans","Noto Sans TC","MHei","微軟正黑體","Microsoft JhengHei",sans-serif;
			text-align: center;
   			margin: 20px auto;
		}
		.plan-header__title-text {
			font-family: NotoSansCondBold, NotoSansTCBlack;
			font-size: 38px;
			align-items: baseline;
			color: #333;
			margin: 0 auto 20px;
			text-align: center;
		}
		.plan-header__title-text span{
			font-family: NotoSansCondBold, NotoSansTCBlack;
			white-space: nowrap;
		}
		.plan-header__title-text img{
			width: 30px;
			height: 31px;
			margin: 0 6px;
			vertical-align: baseline;
		}
		.plan-container{
			margin: 0 auto;
			overflow: hidden;
			background: var(-palette-white-main);
		}
		.plan-table{
			max-width: 1200px;
			margin: 0 auto;
			background: #F6F6F6;
			border-radius: 20px;
			padding: 10px;
		}
		.plan-table ul li{
			padding: 5px 0;
			font-weight: 400;
			font-family: "Noto Sans","Noto Sans TC";
		}
		table,th,td{
			border: none;			
		}
		th,td{
			padding: 20px;
			
		}
		table{
			width: 100%;
			border-radius: 20px;
			overflow: hidden;
			background: #F6F6F6;
		}
		body.v4 table th:first-child {
			min-width: 330px;
		}
		.plan-table th{
			padding: 20px 0;
			background: var(--palette-grey-80);
			color: var(-palette-white-main);
			text-align: center;
			width: 33%;
		}
		.first-td{
			display: flex;
  			justify-content: space-around;
		}
		.first-td img{
			width: 130px;
			height: fit-content;
		}
		.mon_price{
			text-align: center;
			display: inline-block;
   			vertical-align: middle;
		}
		.mon_price p{
			color: #757575;
			font-size: 14px;
			margin-bottom: 4px;
		}
		.mon_price .main{
			font-size: 60px;
			color: #333;
		}
		.mon_price .main em{
			font-size: 24px;
			font-family: "titling-gothic-fb-condensed","Noto Sans","Noto Sans TC","MHei","微軟正黑體","Microsoft JhengHei",sans-serif;
		}
		.mon_price .main span{
			font-size: 14px;
    		color: #757575;
		}
		body.v4-english .mon_price .main{
			font-size: 50px;
		}
		.website_button{
			text-decoration: none;
			background: #ff0000;
			color: var(-palette-white-main);
			border-radius: 100px;
			padding: 14px 24px;
			display: inline-block;
			border: 1px solid red;
			font-weight: bold;
			font-family: NotoSansSemiBold;
			font-size: 16px;
			white-space: nowrap;
		}
		.website_button:link,.website_button:visited{
			color: var(-palette-white-main);
			text-decoration: none;
		}
		.website_button span{
			width: 7px;
			display: inline-block;
			height: 7px;
			border-top: 2px solid var(-palette-white-main);
			border-right: 2px solid var(-palette-white-main);
			transform: rotate(45deg);
			margin-left: 10px;
			margin-bottom: 2px;
		}
		
		body.v4-english .website_button {
			padding: 14px 18px;
    		font-size: 12px;
		}
		.website_button:hover{
			background: #ffffff;
			color: #ff0000;
			border: 1px solid #ff0000;
			text-decoration: unset;
		}
		.website_button:hover span{
			border-top: 2px solid #ff0000;
			border-right: 2px solid #ff0000;
		}
		.more p{
			text-align: right;
   			font-size: 14px;
			cursor: pointer;
		}
		.more-tnc{
			display: none;
			background-color: var(-palette-white-main);
			border-radius: 10px;
			padding: 30px;
			margin-top: 20px;
		}
		.more .more-tnc p{
			text-align: left;
    		margin-bottom: 12px;
		}
		.triangle{
			width: 0;
			height: 0;
			border-top: 7px solid #333333;
			border-right: 7px solid transparent;
			border-left: 7px solid transparent;
			margin-bottom: 2px;
			margin-left: 8px;
		}
		.more p span{
			transform: rotate(0deg);
			transition: all .3s;
			display: inline-block;
		}
		.open p span{
			transform: rotate(-180deg);
		}
		.white_bg{
			padding: 0 10px;
		}
		.white_bg td{
			background:var(-palette-white-main);
		}
		.white_bg .more-tnc{
			background: #F6F6F6;
		}
		.choose_this_plan-button_green{
			font-family: 'NotoSans-SemiBold', NotoSansTCBold, sans-serif;
			outline: none;
			background-color: #4dae4f;
			color: #ffffff;
			font-size: 20px;
			padding: 15.5px 15px;
			border-radius: 100px;
			transition: all 0.2s ease-in-out;
			min-height: 40px;
			cursor: pointer;
			border: 1px solid #4dae4f;
			min-width: 140px;
			display: block;
			text-align: center;
			margin: 30px auto 20px;
			height: 70px;
		}
		.choose_this_plan-button_green:hover {
			color: #4dae4f;
			background: #f5f6fa;
			border: 1px solid #4dae4f;
		}
		
		.choose_this_plan-button_green img {
			width: 30px;
			margin-right: 10px;
			margin-bottom: 7px;
				}
		.tnc{
			max-width: 1200px;
   			margin: 0 auto;
			/* color: var(--palette-grey-80); */
			padding-bottom: 60px;
		}
		.tnc p{
			color: var(--palette-black-main);
			font-size: 14px !important;	
			font-family: "Noto Sans","Noto Sans TC";
			font-weight: 400;
		}
		.tnc ul{
			margin-left: 22px;
		}
		.tnc ul li{
			font-family: "Noto Sans","Noto Sans TC";
			color: var(--palette-black-main);
			font-size: 14px !important;
			font-weight: 400;
		}
		.button-bar{
			background: #f2f2f2;
			border-radius: 30px;
			max-width: 700px;
			width: 100%;
			position: relative;
			display: flex;
			margin: 50px auto 80px;
			transform: translate(0px, 0px);
			height:56px;
		}
		.button-bar .highlight{
			width: 50%;
			height: 100%;
			border-radius: 30px;
			position: absolute;
			left: 0;
			top: 0;
			background: #FF0000;
			text-align: center;
			line-height: 56px;
			transition: 0.2s all linear;
		}

		.button-bar a{
			transition: 0.2s all linear;
			color: #333333;
			font-size: 16px;
			font-weight: 700;
			width: 50%;
			line-height: 56px;
			text-align: center;
			z-index: 10;
		}
		.button-bar a:link{
			text-decoration:none;
		}
		.button-bar a.active{
			color: white;
		}
		body.v4-tchinese .button-bar a{
			font-family: "NotoSansCondBold","Noto Sans TC";
		}
		body.v4-english .button-bar a{
			font-family: "titling-gothic-fb-narrow","Noto Sans", "Noto Sans TC";
			font-weight: 500;
		}
		.exclusiveOffersContainer{
			display: flex;
			flex-wrap: wrap;
			background: white;
			border-radius: 20px;
			padding: 40px;
			justify-content: center;
			gap: 20px;
			margin: 40px auto;
			max-width: 1200px;
		}
		.offerSection{
			width: 100%;
			display: flex;
			justify-content: center;
			gap: 40px;
		}
		.offerItem{
			display: flex;
			flex-wrap: wrap;
			flex-direction: column;
			width: 230px;
			align-items: center;
			color: black;
			gap: 8px;
		}
		.offerItem img{
			width: 50px;
			height: 50px;
		}
		.offerItem div{
			width: 100%;
			text-align: center;
		}
		.offerDescText{
			min-height: 60px;
		}
        .smartPassContainer .plan-card-scroll-box .swiper {
            padding: 0;
        }
		@media only screen and (max-width: 1920px){
			.plan-container  {
				padding: 0px 80px;
			}
		}	
		@media only screen and (max-width: 1600px){
			.plan-container  {
				padding: 0px 72px;
			}
		}	
		@media only screen and (max-width: 1366px){
			.plan-container  {
				padding: 0px 64px;
			}
			.plan-container .middleBanner{
				max-width: 100% !important;
				margin: 0 auto;
			}
			.exclusiveOffersContainer{
				margin-left: 64px;
				margin-right: 64px;
			}
		}		
		@media (max-width: 1024px) {
			body.v4-english .mon_price .main,.mon_price .main {
				font-size: 40px;
			}
			.exclusiveOffersContainer{
				margin-left: 50px;
				margin-right: 50px;
			}
			.mon_price .main em{
				font-size: 14px;
			}
			.first-td img {
				width: 90px;
			}
			.mon_price p {
				font-size: 12px;
			}
			.website_button{
				padding: 8px 10px;
				font-size: 12px;
			}
			.website_button span {
				margin-left: 0px;
			}
			.plan-table ul li {
				font-size: 12px;
			}
			body.v4 table th:first-child {
				min-width: 250px;
			}
		}
		@media (max-width: 768px) {
			.smartPassContainer .swiper{
    			padding: 0!important;
			}
			.plan-card-inner-tab {
				white-space: normal !important;
			}
			body.v4 {
				padding-top: 73px;
			}
			/*.st-container{
				margin: 0 auto;
			}*/
			.backcrumb {
				margin-top: 50px;
			}
			.plan-header__title-text{
				font-size: 28px;
				display: block;
				text-align: center;
				padding-top:0px;
			}
			.promoTitle{
				font-size: 28px;
			}
			th, td {
				padding: 10px;
			}
			td{
				padding: 30px 10px;
			}
			
			.smc-container p{
				font-size: 16px;
				font-weight: 400;
			}
			.offer-box-item{
				margin: 10px 16px;
			}
			.table_title{
				text-align: center;
				color: var(--palette-grey-80);
				margin: 20px auto;
				font-size: 18px;
			}
			.plan-container,.smc-container{
				padding:0 20px;
			}
			.tnc{
				padding-bottom:40px;
			}
			.plan-table{
				padding:10px;
			}
			ul{
				margin-left: 20px !important;
			}
			ul li{
				font-size: 16px;
				font-weight: 400;
				color: #333333;
			}
			.plan-table ul li{
				 font-size: 16px;
			}
			.more p {
				text-align: center;
				margin: 30px auto;
			}
			.more .more-tnc p {
				margin: 0px auto 10px;
				font-weight: 400;
				font-family: "Noto Sans","Noto Sans TC";
			}
			.more-tnc{
				padding: 15px 10px;
				margin-bottom: 30px;
				margin-top: 0;
			}
			.website_button{
				-margin-bottom: 30px;
				-margin-top: 20px;
				height: 56px;
				width: 146px;
				padding: 14px 24px;
				font-size: 16px;
			}
			body.v4-english .website_button {
				padding: 16px 30px 16px 30px;
				font-size: 16px;
				height: unset;
				width: unset;
			}
			.website_button span {
				margin-left: 15px;
			}
			.first-td img {
				width: 100px;
				height: 100px;
			}
			body.v4-english .mon_price .main,.mon_price .main {
				font-size: 60px;
			}
			.mon_price .main em {
				font-size: 24px;
			}
			.mon_price{
				text-align: left;
			}
			.mon_price p {
				font-size: 14px;
			}
			.choose_this_plan-button_green{
				font-size: 16px;
				height: auto;
				display: flex;
				align-items: center;
				text-align: left;
				margin-bottom: 20px;
				padding: 16px 30px 16px 30px;
			}
			body.v4-english .button-bar a{
				font-size: 12px;
			}
			#app{
				margin-top:40px !important;
			}
		}		
		@media (max-width: 360px) {
			.mon_price .main {
				font-size: 50px;
			}
		}
		@media (max-width: 320px) {			
			.mon_price .main {
				font-size: 40px;
			}
			body.v4-english .mon_price .main {
				font-size: 40px;
			}
			.first-td img {
				width: 86px;
				height: 86px;
			}
		}
	
         .selectSpecification {
        display: grid;
        margin-bottom: -40px;
        grid-template-columns: repeat(3,33%);
    }
    /* .selectSpecification  div:first-child {
        border-radius: 9px 0 0 0px;
    } */
    .selectSpecification  div:nth-child(3) {
        border-right: 1px solid #C8C8C8;
        border-radius: 0 9px 9px 0;
    }
    .selectSpecification  div:nth-child(4) {
        border-radius: 0 0 0 9px ;
        border-top: 0px;
    }
    .selectSpecification  div:nth-child(5) {
        border-radius: 0 0px 9px 0;
        border-top: 0px;
    }
    @media (min-width: 768px) and (max-width: 1025px) {
        .selectSpecification .moreThanFour{
            font-size: 13px!important;
        }
    }

    @media (max-width: 767px) {
        .selectSpecification{
            display: flex;
            margin-bottom: 0px;
        }
        .iphone4LifeDataContainer{
            width: 99%;
            justify-content: left;
        }
        .selectSpecification  .moreThanFour:nth-child(3), .iphone4LifeDataContainer .iphone4LifeDataItem:nth-child(3) {
            border-radius: 0 0px 0px 0;
        }
        .selectSpecification  .moreThanFour:nth-child(4), .iphone4LifeDataContainer .iphone4LifeDataItem:nth-child(4) {
            border-radius: 0 0 9px 0 ;
            border-right: 1px solid #C8C8C8;
        }
        .selectSpecification .moreThanFour:nth-child(5), .iphone4LifeDataContainer .iphone4LifeDataItem:nth-child(5) {
            border-radius: 0 0px 9px 9px;
        }
    }

    .plan-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        box-sizing: border-box;
    }
    .plan__div {
        margin-top: 20px;
    }
    
    .offerBoxBannerBox img {
        width: 100%;
        border-radius: 20px;
        display: block;
    }
    .smartPassContainer {
        max-width: 1200px;
        margin: 0 auto;
    }
    .planTitle {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin: 50px 0 28px;
    }
    .smartPassContainer .swiper {
        max-width: 1140px;
        overflow: hidden;
        margin: auto;
        padding: 0 10px;
        background: #f6f6f6;
    }
    .smartPassContainer .swiper-wrapper {
        height: auto;
    }
    .smartPassContainer .swiper-slide {
        max-width: 360px;
        min-width: 360px;
    }
    .cardContainer {
        background: none;
    }
    .cardBox {
        height: 100%;
    }
    .plan-card-redesign {
        display: grid;
        grid-template-rows: auto auto auto auto 1fr auto;
        background: #fff;
        border-radius: 20px;
        overflow: hidden;
    }
    .plan-card-redesign-top {
        background-repeat: no-repeat;
        background-size: 100% 100%;
        background-position: center;
        height: 40px;
        cursor: pointer;
    }
    .plan-card-redesign-voucher {
        background: url(/rotation_banner/iPhone_promo_page_2026/bkg_handset_coupon.jpg) no-repeat;
        background-size: 100%;
        padding: 14px 0px;
        text-align: center;
        font-weight: 700;
    }
    .plan-card-redesign-voucher .popupIcon {
        width: 16px;
        height: 16px;
        margin-left: 4px;
        vertical-align: 0px;
        cursor: pointer;
    }
    .plan-card-redesign-body {
        margin-top: 8px;
    }
    .plan-card-redesign-price {
        display: flex;
        align-items: baseline;
        gap: 4px;
    }
    .plan-card-redesign-price .price-dollar {
        font-weight: 700;
    }
    .plan-card-redesign-price .price-number {
        font-size: 40px;
        font-weight: 800;
        line-height: 1;
    }
    .plan-card-redesign-data {
        display: flex;
        align-items: baseline;
        gap: 8px;
    }
    .plan-card-redesign-data .network {
        display: block;
        width: 25px;
        height: 24px;
        flex: 0 0 auto;
    }
    .plan-card-redesign-data .data-size,
    .plan-card-redesign-data .data-unit {
        font-size: 24px;
        font-weight: 800;
    }
    .plan-card-redesign-subdesc {
        color: #999;
        margin-bottom: 28px;
    }
    .tabBox {
        margin: 0 0 24px;
        position: relative;
    }
    .plan-lottie {
        width: 100px;
        height: 68px;
        position: absolute;
        top: -50px;
        left: 72%;
        z-index: 2;
    }
    .plan-card-inner-tabs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        border: 1px solid #d3d3d3;
        border-radius: 8px;
        overflow: hidden;
        position: relative;
    }
    .plan-card-inner-tab {
        position: relative;
        padding: 12px 8px;
        text-align: center;
        background: #fff;
        cursor: pointer;
        white-space: nowrap;
    }
    .plan-card-inner-tab.active {
        border: 1.5px solid #f00;
        color: #f00 !important;
        background: #fff5f5;
        font-weight: 700 !important;
    }
    .plan-card-inner-tabs .plan-card-inner-tab:first-child.active {
        border-radius: 8px 0 0 8px;
    }
    .plan-card-inner-tabs .plan-card-inner-tab:nth-child(2).active {
        border-radius: 0 8px 8px 0;
    }
    .plan-card-inner-tab .limited-tag {
        position: absolute;
        top: -22px;
        right: 8px;
        background: #0c8df0;
        color: #fff;
        font-size: 11px;
        padding: 2px 6px;
        border-radius: 2px;
        white-space: nowrap;
    }
    .plan-card-section {
        padding: 0 0 18px;
    }
    .plan-card-section-title {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #999;
        font-weight: 700;
        margin-bottom: 10px;
    }
    .plan-card-section-title:after {
        content: '';
        flex: 1;
        height: 1px;
        background: #ddd;
    }
    .plan-card-scroll-box {
        background: #f5f5f5;
        border-radius: 12px;
        padding: 12px 20px;
        min-height: 120px;
    }
    .plan-card-scroll-page {
        width: 100%;
        min-width: 100%;
    }
    .plan-card-scroll-swiper {
        padding-bottom: 22px;
    }
    .plan-card-scroll-swiper .swiper-wrapper {
        padding-left: 0 !important;
    }
    .plan-card-scroll-swiper .swiper-slide {
        max-width: none !important;
        min-width: 100% !important;
        width: 100% !important;
        flex-shrink: 0;
    }
    .plan-card-scroll-swiper .swiper-pagination {
        bottom: 2px;
        z-index: 3;
        pointer-events: auto;
        position: relative;
        left: 0;
        width: 100%;
        margin-top: 8px;
        text-align: center;
    }
    .plan-card-scroll-swiper .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 6px;
        background: #cfcfcf;
        opacity: 1;
        cursor: pointer;
        pointer-events: auto;
    }
    .plan-card-scroll-swiper .swiper-pagination-bullet-active {
        background: #ff0000;
    }
    .plan-card-row {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 10px;
    }
    .plan-card-row:last-child {
        margin-bottom: 0;
    }
    .plan-card-row-value {
        font-size: 18px !important;
        white-space: nowrap;
    }
    .plan-card-benefits {
        display: grid;
        gap: 12px;
    }
    .plan-card-benefit {
        display: grid;
        grid-template-columns: 45px 1fr;
        gap: 10px;
        align-items: center;
    }
    .plan-card-benefit-icon {
        width: 45px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .plan-card-benefit-icon img {
        width: 52px;
        height: 24px;
        display: block;
    }
    .plan-card-benefit-help {
        width: 16px;
        height: 16px;
        display: inline-block;
        margin-bottom: -2px;
        cursor: pointer;
    }
    .plan-card-cta {
        margin: 8px 20px 0;
        border-radius: 999px;
        background: #f00;
        color: #fff;
        border: 0;
        padding: 14px 20px;
        font-weight: 700;
    }
    .contract24Swipertc .swiper-wrapper {
        align-items: stretch;
        background: #f6f6f6;
    }
    .contract24Swipertc .swiper-slide {
        height: auto;
        display: flex;
    }
    .contract24Swipertc .swiper-slide .cardContainer,
    .contract24Swipertc .swiper-slide .cardBox,
    .contract24Swipertc .swiper-slide .plan-card-redesign {
        display: flex;
        flex-direction: column;
        overflow: visible;
    }
    .contract24Swipertc .swiper-slide .plan-card-redesign {
        height: 100%;
    }
    .contract24Swipertc .swiper-slide .plan-card-section:last-of-type {
        flex: 1;
    }
    .contract24Swipertc .swiper-slide .plan-card-cta {
        margin-top: auto;
    }
    .contract24Swipertc .swiper-slide .plan-card-redesign-top,
    .contract24Swipertc .swiper-slide .plan-card-redesign-voucher {
        width: calc(100% + 40px);
        margin-left: -20px;
    }
    .roaming-components .tab-pages .tab-page {
        background: #f6f6f6;
        padding: 0;
        box-shadow: none;
    }
    .planCardOtherOfferContainer {
        z-index: 2;
        position: relative;
        max-width: 1200px;
        margin: 20px auto 0;
        text-align: center;
        padding: 0 20px;
        box-sizing: content-box;
    }
    #app .planCardOtherOfferContainer img {
        max-width: 700px !important;
    }
    .whatsappBtnConatiner .whatsappBtn,
    .whatsappBtnConatiner .whatsappBtn button {
        /* width: 100%; */
        display: flex;
        justify-content: center;
    }
    @media (max-width: 767px) {
        .handsetPhoneBox {
            width: 100%;
        }
        .handsetPhoneBox {
            gap: 20px;
        }
        .smartPassContainer .swiper-slide {
            max-width: 340px;
            min-width: unset;
        }
        .smartPassContainer .swiper-wrapper {
            padding-left: 20px;
        }
        .plan-lottie {
            left: 65%;
        }
        #app .planCardOtherOfferContainer img {
            max-width: 100% !important;
        }
        .roaming-components .tab-pages .tab-page {
            border-bottom-right-radius: 0;
            border-bottom-left-radius: 0;
        }
        .box-height{
            max-height: 72px;
        }
    }

