.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: 40px 60px;
    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(3, 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;
}
@media (max-width:1200px) {
    .phone_container{
        grid-template-columns: repeat(2, 1fr);
    }
    .app_container{
        padding: 0 20px;
    }
}
@media (max-width: 1280px) {
    .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) {
    #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{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}
.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;
}
@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 40px;
        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 20px;
    }
    .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: 340px;
        min-width: 340px;
    }	
    .roaming-components .swiper{
        padding: 0 20px;
    }
    .bannerPadding{
        padding: 20px 0;
    }
    .planDesc{
        margin: 0px 20px 40px;
    }
    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;
    }
    .topTitle{
        margin-top: 40px !important;
        margin-bottom: 20px;
    }
    .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;
}
/* .selectPlanBox{
    min-height: 325px;
}
.planBoxTitle{
    height: auto;
}
.planItemBox{
    height: inherit;
} */

@media (max-width:767px) {
    #app{
        overflow: unset;
    }
    .i17PlanCardContainer{
        padding: 40px 0;
        margin: 0 -20px;
    }
    .iphone4LifePopupBox{
        width: 100%;
    }
    .theme[lang="en-US"] .whatsappContainer button{
        font-size: 12px !important;
    }
    .mbShow{
        display: block;
    }
}