.scroll-to-top {
    position: fixed;
    z-index: 9999999999;
    bottom: 2%;
    right: 1%;
    background: #5966a9;
    cursor: pointer;
}

.scroll-to-top span {
    width: 30px;
    height: 30px;
    color: #fff;
    font-size: 1.5em;
}

.scroll-to-top .anticon svg {
    position: relative;
}

.scroll-to-top {
    background: #5966a9;
    color: #3498db;
    overflow: hidden;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px -5px #00000070;
}

.scroll-to-top::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #3498db;
    top: 120%;
}

.scroll-to-top:hover:before {
    animation: name 0.7s;
    top: 0%;
}

@keyframes name {
    0% {
        top: 120%;
    }

    50% {
        top: -120%;
    }

    100% {
        top: 0%;
    }
}

.box-deal {
    background: #FFFFFF;
    box-shadow: 0px 0px 10px rgba(146, 146, 146, 0.25);
    border-radius: 8px;
    padding: 30px 0 20px;
    position: relative;
    height: 100%;
}

.box-deal a {
    text-decoration: inherit;
    color: inherit;
}

.box-deal:hover {
    box-shadow: 0 5px 25px 1px #afafaf;
}

.box-deal:hover .btn-detail {
    transform: translateX(0);
    opacity: 1;
}

.box-deal:hover .btn-reg {
    transform: translateX(0);
}

.box-deal section {
    height: 75%;
}

.box-deal h3 {
    text-align: center;
    position: relative;
    text-transform: uppercase;
    font-family: var(--font-medium);
    font-size: 30px;
    font-weight: 700;
    overflow-y: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-height: 56px;
}

.box-deal h3::before {
    content: "";
    width: 75%;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0px;
    height: 1px;
    position: absolute;
    background-color: #d0dddd;
}

.box-deal h4 {
    font-size: 3rem;
    color: #000;
    font-family: var(--font-bold);
    text-align: center;
}

.box-deal__content {
    position: relative;
    text-align: center;
    padding: 0 15% 0;
    line-height: 32px;
    font-size: 1.5rem;
    height: 160px;
    overflow-y: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}

.box-deal__content::before {
    content: "";
    width: 75%;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0px;
    height: 1px;
    position: absolute;
    background-color: #d0dddd;
}

.box-deal__content p {
    margin-bottom: 0 !important;
}

.box-deal__poster {
    padding: 10px 15% 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    aspect-ratio: 1 / 1;
}

.box-deal__poster img {
    width: 100%;
    max-height: 100%;
    margin-bottom: 15px;
    aspect-ratio: 1 / 1;
}

.box-deal__poster p {
    text-align: center;
    font-size: 1.5rem;
}

.box-deal__price-origin {
    color: #90a2a4;
    font-size: 1.6rem;
    text-align: center;
    text-decoration: line-through;
}

.box-deal__bottom {
    margin-top: 25px;
}

.box-deal__btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10%;
    overflow: hidden;
}

.box-deal__btn-wrapper > div {
    width: 46%;
    text-align: center;
    text-transform: uppercase;
    line-height: 18px;
    border-radius: 100px;
    cursor: pointer;
    transition: .5s;
    padding: 8px 0;
}

.box-deal__btn-wrapper > div:first-child {
    color: #5C5C5C;
    border: 1px solid #C4C4C4;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    transform: translateX(-20rem);
    opacity: 0;
}

.box-deal__btn-wrapper > div:first-child:hover {
    color: #3AA4F6;
    border-color: #3AA4F6;
}

.box-deal__btn-wrapper > div:first-child a {
    display: block;
    width: 100%;
    text-decoration: none;
}

.box-deal__btn-wrapper > div:last-child {
    color: #fff;
    background-color: #3AA4F6;
    transform: translateX(-55%);
}

.box-deal__btn-wrapper > div:last-child:hover {
    background-color: rgba(58, 164, 246, 0.7);
}

.box-deal__sell {
    margin-top: 20px;
    padding: 0 10%;
    display: flex;
    justify-content: space-between;
}

.box-deal__sell--title {
    font-size: 1rem;
    margin-bottom: -8px;
    color: #E7007F;
}

.box-deal__discount {
    position: absolute;
    min-width: 58px;
    right: -10px;
    top: 0;
    padding: 5px 10px 12px 17px;
    color: #fff;
    font-family: var(--font-bold);
    background: url("../images/icon-km-2.svg") no-repeat center center;
    background-size: 100% 100%;
}

.box-deal__progress {
    width: 70%;
}

.box-deal progress, .box-deal progress[value]::-webkit-progress-bar, .box-deal progress::-webkit-progress-value {
    border-radius: 100px;
    height: 5px;
    width: 100%;
}

.box-deal progress[value]::-webkit-progress-bar {
    background-color: #DCDCDC;
}

.box-deal progress::-webkit-progress-value {
    background-color: #E7007F;
}

@media screen and (max-width: 991px) {
    .box-deal__content {
        padding-left: 15%;
        padding-right: 15%;
        height: 130px;
        line-height: 26px;
    }
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .box-deal {
        padding-bottom: 10px;
    }

    .box-deal section {
        height: 70%;
    }

    .box-deal h3 {
        font-size: 1.8rem;
    }

    .box-deal h4 {
        font-size: 1.6rem;
    }

    .box-deal__content {
        font-size: 1.4rem;
        line-height: 24px;
        padding: 0 15% 0;
        height: 120px;
        -webkit-line-clamp: 5;
    }

    .box-deal__poster img {
        aspect-ratio: 1 / 1;
        object-fit: fill;
    }

    .box-deal__poster p {
        font-size: 1.4rem;
    }

    .box-deal__discount {
        right: -12px;
        padding: 3px 10px 8px 15px;
        font-size: 1.2rem;
    }

    .box-deal__btn-wrapper {
        padding: 0 5%;
    }

    .box-deal__btn-wrapper > div {
        font-size: 1rem;
        width: 50%;
        padding: 5px 0;
    }
}

.count-down {
    display: flex;
    width: 30%;
    justify-content: space-between;
    align-items: center;
    margin-left: 7%;
}

.count-down span {
    background: #6b828c;
    border-radius: 4px;
    color: #fff;
    padding: 0 3px;
    height: fit-content;
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .count-down {
        width: 35%;
    }

    .count-down span {
        font-size: 1rem;
    }
}

.box-internet {
    background: #FFFFFF;
    box-shadow: 0px 0px 10px rgba(146, 146, 146, 0.25);
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    height: 100%;
    color: #252525;
}

.box-internet:hover {
    box-shadow: 0 5px 25px 1px #afafaf;
}

.box-internet:hover .btn-detail {
    transform: translateX(0);
}

.box-internet:hover .btn-reg {
    transform: translateX(0);
}

.box-internet:hover .box-internet__border-top {
    background-color: #40C3FF;
}

.box-internet h3 {
    font-family: var(--font-medium);
    font-size: 30px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    color: #E7007F;
    height: 80px;
}

.box-internet h4 {
    font-size: 3rem;
    font-family: var(--font-bold);
}

.box-internet__border-top {
    height: 5px;
    border-radius: 2.5px;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    background-color: #0095D9;
}

.box-internet__top {
    padding: 40px 8% 20px;
    border-bottom: 0.8px solid #D0DDDD;
}

.box-internet__top span {
    font-size: 20px;
    font-family: var(--font-medium);
}

.box-internet__body {
    padding: 10px 8% 20px;
}

.box-internet__content {
    line-height: 28px;
    font-size: 1.5rem;
    height: 170px;
    overflow-y: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
}

.box-internet__content p {
    margin-bottom: 0;
}

.box-internet__price-origin {
    color: #90a2a4;
    font-size: 1.6rem;
    text-decoration: line-through;
}

.box-internet__btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 8%;
    overflow: hidden;
    border-top: 0.8px solid #D0DDDD;
}

.box-internet__btn-wrapper > div {
    width: 33%;
    text-align: center;
    text-transform: uppercase;
    line-height: 18px;
    border-radius: 100px;
    cursor: pointer;
    transition: .5s;
}

.box-internet__btn-wrapper > div:first-child {
    color: #5C5C5C;
    border: 1px solid #C4C4C4;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transform: translateX(-40rem);
}

.box-internet__btn-wrapper > div:first-child:hover {
    color: #3AA4F6;
    border-color: #3AA4F6;
}

.box-internet__btn-wrapper > div:first-child a {
    padding: 7px 0;
    width: 100%;
    text-decoration: none;
}

.box-internet__btn-wrapper > div:last-child {
    color: #fff;
    background-color: #3AA4F6;
    transform: translateX(-55%);
    padding: 7px 0;
}

.box-internet__btn-wrapper > div:last-child:hover {
    background-color: rgba(58, 164, 246, 0.7);
}

.box-internet__discount_wrapper {
    padding: 5px 7px 12px 14px;
    text-align: center;
    background: #FE5050;
    border-radius: 20px;
    display: block;
    position: relative;
    width: 58px;
    height: 29px;
    margin-left: 15px;
}

.box-internet__discount {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-family: var(--font-bold);
    background-size: 100% 100%;
}

.box-internet__promotionInfo {
    position: absolute;
    right: 9px;
    top: -13px;
    color: #fff;
    font-family: var(--font-bold);
    background: url("../images/tag_brcd_promo.png") no-repeat center center;
    background-size: 100% 100%;
    min-width: 83.03px;
    max-width: 83.03px;
    min-height: 96.46px;
    max-height: 96.46px;
    overflow-wrap: break-word;
}

.box-internet__promotionInfo span {
    position: relative;
    display: block;
    padding-left: 4px;
    padding-right: 13.97px;
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: center;
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .box-internet {
        padding-bottom: 10px;
    }

    .box-internet h3 {
        font-size: 1.8rem;
    }

    .box-internet h4 {
        font-size: 1.6rem;
    }

    .box-internet__top span {
        font-size: 1.6rem;
    }

    .box-internet__content {
        font-size: 1.4rem;
        line-height: 24px;
        height: 150px;
    }

    .box-internet__discount {
        right: -12px;
        padding: 3px 10px 8px 15px;
        font-size: 1.2rem;
    }

    .box-internet__btn-wrapper {
        padding: 10px 8%;
    }

    .box-internet__btn-wrapper > div {
        font-size: 1.2rem;
        width: 50%;
        padding: 5px 0;
    }
}

@media screen and (max-width: 1262px) {
    .box-internet h3 {
        height: 120px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: pre-wrap;
    }
}

.box-mobile {
    position: relative;
    background: #ffffff;
    box-shadow: 0px 0px 10px rgba(146, 146, 146, 0.25);
    border-radius: 8px;
    position: relative;
    text-align: center;
}

.box-mobile:hover {
    box-shadow: 0 5px 25px 1px #afafaf;
    text-decoration: none;
}

.box-mobile:hover .btn-detail {
    transform: translateX(0);
}

.box-mobile:hover .btn-reg {
    transform: translateX(0);
}

.box-mobile:hover .pointer {
    background: #3aa4f6;
}

.box-mobile a:hover {
    text-decoration: none;
}

.box-mobile a:hover h3 {
    background: #3aa4f6;
}

.box-mobile h3 {
    position: relative;
    color: #ffffff;
    background: #40c3ff;
    text-align: center;
    position: relative;
    font-size: 2.2rem;
    font-family: var(--font-medium);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.box-mobile h3 .icon-down {
    background: url("../images/icon-down.svg");
    width: 17px;
    height: 10px;
    background-size: contain;
    position: absolute;
    bottom: -9px;
    left: 0;
    right: 0;
    margin: auto;
}

.box-mobile__content {
    position: relative;
    padding: 15px 20% 11px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    font-size: 1.5rem;
    line-height: 28px;
    height: 131px;
}
.box-mobile__content {
    padding: 15px 10% 11px;
    -webkit-line-clamp: unset;
    height: auto;
}

.box-mobile__content:after {
    content: "";
    width: 75%;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0px;
    height: 1px;
    position: absolute;
    background-color: #d0dddd;
}

.box-mobile__content * {
    margin-bottom: 0 !important;
}

.box-mobile__price {
    color: #000;
    font-size: 18px;
    margin-bottom: 10px;
}

.box-mobile__price span {
    font-size: 2rem;
    font-family: var(--font-medium);
}

.box-mobile__btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10%;
    overflow: hidden;
}

.box-mobile__btn-wrapper .btn-detail {
    width: 46%;
    text-align: center;
    text-transform: uppercase;
    line-height: 18px;
    border-radius: 100px;
    padding: 8px 0;
    cursor: pointer;
    transition: .5s;
    color: #5C5C5C;
    border: 1px solid #C4C4C4;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    transform: translateX(-20rem);
}

.box-mobile__btn-wrapper .btn-detail:hover {
    color: #3AA4F6;
    border-color: #3AA4F6;
}

.box-mobile__btn-wrapper .btn-reg {
    width: 46%;
    text-align: center;
    text-transform: uppercase;
    line-height: 18px;
    border-radius: 100px;
    padding: 8px 0;
    cursor: pointer;
    transition: .5s;
    color: #5C5C5C;
    border: 1px solid #C4C4C4;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    transform: translateX(-20rem);
    color: #fff;
    background-color: #3AA4F6;
    transform: translateX(-55%);
}

.box-mobile__btn-wrapper .btn-reg:hover {
    background-color: rgba(58, 164, 246, 0.7);
}

.box-mobile__btn {
    color: #fff;
    background-color: #3AA4F6;
    border-radius: 20px;
    padding: 4px 15px;
    max-width: 50%;
    cursor: pointer;
}

.box-mobile__btn > div {
    font-size: 1.4rem;
}

.box-mobile__btn .btn--icon {
    display: none;
    right: -10px;
    top: 3px;
    position: absolute;
}

.box-mobile__btn:hover {
    background: #0071bc;
    transition: all 0.4s linear;
}

.box-mobile__btn:hover > div {
    padding-right: 10px;
    transition: all 0.4s linear;
}

.box-mobile__btn:hover .btn--icon {
    display: initial;
    animation: ringring 2s linear;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    font-weight: 300;
    color: #fdf050;
}

.box-mobile__hot {
    position: absolute;
    right: -6px;
    top: 8px;
    padding: 5px 7px 12px 14px;
    color: #fff;
    font-family: var(--font-bold);
    background: url("../images/icon-km-2.svg") no-repeat center center;
    background-size: 100% 100%;
}

@media screen and (max-width: 991px) {
    .box-mobile__btn {
        max-width: 70%;
    }
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .box-mobile__btn-wrapper {
        flex-direction: column;
    }

    .box-mobile__btn-wrapper > div {
        transform: initial !important;
        padding: 6px 0;
    }

    .box-mobile__btn-wrapper > div:first-child {
        width: 70%;
        margin-right: 0;
    }

    .box-mobile__btn-wrapper > div:last-child {
        margin-top: 8px;
        width: 70%;
    }

    .box-mobile h3 {
        font-size: 1.6rem;
    }

    .box-mobile__price {
        color: #FE5050;
        font-size: 1.6rem;
    }

    .box-mobile__hot {
        position: absolute;
        right: -10px;
        top: 5px;
        padding: 2px 4px 7px 8px;
        color: #fff;
    }

    .box-mobile__btn {
        max-width: 70%;
    }
}

@media screen and (max-width: 1000px) {
    .box-mobile h3 {
        height: 46.398px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

.bread-crumb {
    font-size: 1.6rem;
    margin-top: 15px;
}

.bread-crumb .ant-breadcrumb a {
    color: #4d4d4d;
}

.bread-crumb .ant-breadcrumb span {
    color: #4d4d4d;
}

.bread-crumb .ant-breadcrumb span:hover {
    text-decoration: underline;
}

.bread-crumb .ant-breadcrumb-separator {
    margin: 0 12px;
}

.bread-crumb__last {
    font-family: var(--font-bold);
    color: #40C3FF !important;
}

.btn-custom {
    text-align: center;
    text-transform: uppercase;
    font-size: 1.5rem;
    line-height: 18px;
    border-radius: 100px;
    padding: 8px 30px;
    box-shadow: 0px 10px 20px rgba(177, 186, 201, 0.15);
    color: #fff;
    font-family: var(--font-medium);
    background-color: #3aa4f6;
    border: none;
    cursor: pointer;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    position: relative;
    overflow: hidden;
    display: block;
}

.btn-custom:hover {
    background-color: rgba(58, 164, 246, 0.7);
}

.btn-custom span {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .btn-custom {
        padding: 8px 15px;
    }
}

.carousel-wrapper {
    position: relative;
}

.carousel-wrapper img {
    width: 100%;
    height: 250px;
}

.carousel-wrapper .arrow-icon {
    position: absolute;
    cursor: pointer;
    top: 45%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    font-size: 35px;
    text-align: center;
    opacity: .6;
}

.carousel-wrapper .\--right {
    right: 0;
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .carousel-wrapper img {
        height: 180px;
    }
}

.contact-Fact {
    position: fixed;
    z-index: 999999999;
    top: 60%;
    right: 1%;
    background-image: linear-gradient(#1a3cea, #767684);
    border-radius: 8px;
}

.contact-Fact .contact-Fact-0 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40px;
}

.contact-Fact .contact-Fact-0 span {
    width: 30px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    margin: 10px 0;
    position: relative;
    overflow: hidden;
}

.contact-Fact .contact-Fact-0 span svg {
    font-size: 1.2em;
}

.contact-Fact .contact-Fact-0 span svg:hover {
    font-size: 2em;
    transition: .5s;
}

@media (max-width: 1000px) {
    .contact-Fact {
        border-radius: 5px;
    }

    .contact-Fact .contact-Fact-0 {
        padding: 5px;
    }

    .contact-Fact .contact-Fact-0 span svg {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .contact-Fact .contact-Fact-0 {
        padding: 6px;
    }

    .contact-Fact .contact-Fact-0 span svg {
        font-size: 1.1em;
    }

    .scroll-to-top {
        padding: 0;
    }
}

.footer {
    width: 100%;
    background-color: #fff;
    color: #5C5C5C;
    padding-top: 30px;
    margin-bottom: 30px;
}

.footer h6 {
    font-size: 1.6rem;
    font-family: var(--font-bold);
    margin-bottom: 15px;
}

.footer li {
    list-style: inside disc;
    padding: 5px 0;
}

.footer li:first-child {
    padding-top: 0;
}

.footer li a {
    color: #5C5C5C;
}

.footer li a:hover {
    color: #3AA4F6;
}

.footer__social {
    display: flex;
    align-items: center;
}

.footer__social img {
    margin-right: 30px;
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .footer__wap-social {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-bottom: 15px;
    }

    .footer__wap-social img {
        margin-right: 30px;
        width: auto;
    }

    .footer__wap-social a:last-child img {
        margin-right: 0;
    }
}

.footer__wap-content {
    border-top: 1px solid #A0B4B6;
    padding: 12px 0;
}

.footer-menu {
    background: #EAEFF7;
    text-align: center;
    border-top: 1px solid #d4ddde;
    border-bottom: 1px solid #d4ddde;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-menu a {
    text-decoration: none;
    color: #0071BC;
    font-family: var(--font-bold);
    padding: 16px 20px;
    display: inline-block;
    font-size: 1.6rem;
}

.footer-menu a:hover {
    text-decoration: underline;
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .footer-menu {
        margin-bottom: 15px;
    }

    .footer-menu a {
        font-size: 1.2rem;
        padding: 16px 15px;
    }
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    width: 100%;
    border-top: 1px solid #A0B4B6;
}

.footer-bottom__left {
    display: flex;
    align-items: center;
}

.footer-bottom__left img {
    margin-right: 10px;
}

.footer-bottom__left span {
    font-size: 1.2rem;
    color: #5C5C5C;
}

.footer-bottom__right {
    display: flex;
    align-items: center;
}

.footer-bottom__right img {
    margin-left: 10px;
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .footer-bottom__right img {
        height: 32px;
    }
}

.header-wrapper {
    background-color: #fff;
    width: 100%;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    top: 0;
    z-index: 20;
    height: 60px;
}

@media screen and (max-width: 991px) {
    .header-wrapper {
        position: fixed;
    }
}

.sticky {
    height: 55px;
    position: fixed;
    top: 0;
    transition: all 0.4s;
}

.sticky ~ .main-page {
    padding-top: 70px;
}

.sticky .header__menu-dropdown {
    top: 50px;
}

.header-wrapper-top {
    background-color: #f2f2f2;
    height: 35px;
    display: flex;
    align-items: center;
    transition: all 0.3s;
}

.header-top {
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}

.header-top__content {
    display: flex;
    align-items: center;
}

.header-top__menu {
    position: relative;
    display: flex;
    align-items: center;
}

.header-top__nav-item {
    position: relative;
    margin-bottom: 0;
    color: var(--neutral2);
    margin-right: 20px;
    cursor: pointer;
    font-size: 1.6rem;
    padding: 5px 0;
}

.header-top__nav-item .img_menu {
    max-width: 20px;
    max-height: 20px;
}

.header-top__nav-item img {
    width: 20px;
    height: 20px;
}

.header-top__nav-item::before {
    content: '';
    width: 0%;
    left: 3px;
    bottom: 3px;
    height: 1px;
    position: absolute;
    background-color: var(--primary3);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.header-top__nav-item:hover::before {
    width: 95%;
}

.header-top__nav-item:hover {
    color: var(--primary3);
    text-decoration: none;
}

.header-top__nav-item:hover img, .header-top__nav-item:hover svg {
    filter: invert(75%) sepia(90%) saturate(85) hue-rotate(205deg);
}

.header-top__nav-item:hover ul {
    visibility: visible;
}

.header-top__nav-item img {
    margin-right: 5px;
}

.header-top ul {
    position: absolute;
    z-index: 2;
    top: 34px;
    left: 0;
    visibility: hidden;
    background-color: #fff;
    color: var(--neutral2);
    box-shadow: 0px 2px 5px #dedede;
}

.header-top li {
    white-space: nowrap;
    padding: 0.5rem 1.5rem;
}

.header-top li:hover {
    background-color: #efefef;
}

.header {
    position: relative;
    height: 100%;
    background-color: #fff;
}

.header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.header svg, .header__search-icon {
    font-size: 2rem;
    padding: 17px 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.header svg:hover, .header__search-icon:hover {
    filter: invert(75%) sepia(50%) saturate(35) hue-rotate(185deg);
}

.header a span {
    text-transform: uppercase;
    font-family: var(--font-medium);
    color: #2d2d2d;
    margin-left: 10px;
}

.header a:hover {
    text-decoration: none !important;
}

.header__search-wrapper {
    position: absolute;
    z-index: 10;
    bottom: -54px;
    right: 8px;
    padding: 9px 14px;
    background: #f2f2f2;
    width: 330px;
    box-shadow: 0px 2px 8px #dedede;
}

.header__banner {
    height: 40px;
    width: auto;
}

.header__user {
    height: 50%;
    width: auto;
    font-family: var(--font-medium);
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}

.header__user img {
    height: 100%;
    margin-right: 8px;
}

.header__menu-dropdown-user-info {
    width: 280px;
}

.header__menu-dropdown-user-info .ant-collapse {
    background-color: transparent;
}

.header__menu-dropdown-user-info .ant-collapse-content-box {
    padding: 0px;
}

.header__menu-dropdown-user-info .ant-collapse-header {
    background-color: transparent;
}

.header__menu-dropdown-user-info .ant-collapse-header:hover {
    background-color: #f5f5f5;
    color: #0571bc;
}

.header__menu-dropdown {
    margin-bottom: 0;
    font-family: var(--font-medium);
}

.header__menu-dropdown li {
    padding: 10px 16px;
    cursor: pointer;
}

.header__menu-dropdown li:hover {
    background-color: #f5f5f5;
    color: #0571bc;
}

.header__menu-dropdown a {
    text-decoration: none;
    color: inherit;
}

.header__nav-item {
    position: relative;
    margin-bottom: 0;
    cursor: pointer;
    padding: 17px 0;
}

.header__nav-item .img_menu {
    max-width: 20px;
    max-height: 20px;
}

.header__nav-item::before {
    content: '';
    width: 0%;
    left: 0;
    bottom: 1px;
    height: 2px;
    position: absolute;
    background-color: var(--primary3);
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.header__nav-item:hover::before {
    width: 80%;
}

.header__nav-item:hover span {
    color: var(--primary3);
    text-decoration: none;
}

.header__nav-item:hover img {
    filter: invert(60%) sepia(100%) saturate(85) hue-rotate(205deg);
}

.header a {
    color: #000;
    text-decoration: none;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 991px) {
    .header__wap-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 100%;
    }

    .header__wap-content--right {
        width: 20%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: right;
    }

    .header__wap-content--right svg {
        font-size: 2.2rem;
    }

    .header__user {
        height: 45%;
    }

    .header__menu {
        width: 100vw;
        background-color: #fff;
        transform: translate(-115%);
        box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
        position: absolute;
        top: 60px;
        left: 0;
        z-index: 20;
        transition: all 0.4s;
    }

    .header__menu--top {
        padding: 20px;
        box-shadow: 0px 3px 8px rgba(168, 168, 168, 0.3);
    }

    .header__menu--bottom {
        padding: 20px;
    }

    .header__btn-customer {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header__btn-customer span {
        width: 47%;
        color: #77869e;
        font-family: var(--font-medium);
        font-size: 1.2rem;
        background-color: #f2f2f2;
        text-align: center;
        padding: 5px 0;
        border-radius: 6px;
        text-transform: uppercase;
    }

    .header__btn-customer span.active-cust {
        background-color: #3aa4f6;
        color: #fff;
    }

    .header__btn-support {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 30px;
    }

    .header__btn-support a {
        width: 47%;
        padding: 10px 0;
        border-radius: 6px;
        border: 1px solid #dadada;
        justify-content: center;
    }

    .header__btn-support span {
        font-size: 1.3rem;
        color: #4d4d4d;
        text-transform: none !important;
    }

    .header__close-btn {
        width: 20%;
        z-index: 21;
        display: flex;
        align-items: center;
        padding-left: 9px;
        min-height: 1px;
    }

    .header__close-btn div, .header__close-btn div::before, .header__close-btn div::after {
        width: 27px;
        height: 3px;
        border-radius: 30px;
        background: #0571bc;
        transition: 0.3s;
        position: absolute;
        box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.101);
        content: '';
    }

    .header__close-btn div::before {
        width: 27px;
        right: 0;
        top: -8px;
    }

    .header__close-btn div::after {
        width: 27px;
        right: 0;
        top: 8px;
    }

    .header.open-menu .header__menu {
        transform: translateX(-3.1%);
    }

    .header.open-menu .header__close-btn {
        min-height: 1px;
    }

    .header.open-menu .header__close-btn div {
        background: transparent;
        box-shadow: none;
    }

    .header.open-menu .header__close-btn div::before {
        top: 0;
        width: 27px;
        transform: rotate(45deg);
    }

    .header.open-menu .header__close-btn div::after {
        top: 0;
        width: 27px;
        transform: rotate(135deg);
    }
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .header.open-menu .header__menu {
        transform: translateX(0);
    }
}

@media screen and (min-width: 200px) and (max-width: 767px) and (orientation: landscape) {
    .header.open-menu .header__menu {
        transform: translateX(-13.3%);
    }
}

.ant-popover-inner-content {
    padding: 0;
}

.input-checkbox {
    display: flex;
    justify-content: center;
}

.input-checkbox__title {
    color: #000;
}

.input-checkbox .ant-checkbox-wrapper {
    margin-right: 10px;
    padding-top: 5px;
}

.input-dropdown {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.input-dropdown.two-line {
    flex-direction: column;
    align-items: flex-start;
}

.input-dropdown.two-line .input-dropdown__title {
    margin-right: 0;
    margin-bottom: 10px;
}

.input-dropdown__title {
    white-space: nowrap;
    margin-right: 10px;
    font-size: 1.6rem;
}

.input-dropdown button {
    font-size: 1.6rem;
    width: 100%;
    border-radius: 5px;
    padding: 5px 15px;
    background-color: #fff;
    color: #000;
    border: 1px solid #ccc;
    display: flex;
    justify-content: space-between;
}

.input-dropdown button:disabled {
    background-color: #f1f1f1;
}

.ant-dropdown-menu-item, .ant-dropdown-menu-submenu-title {
    color: #000 !important;
    font-size: 1.6rem;
}

.dropdown-form .ant-select:not(.ant-select-customize-input) .ant-select-selector {
    font-size: 1.6rem;
    border-radius: 6px;
}

.dropdown-form .ant-select-single:not(.ant-select-customize-input) .ant-select-selector {
    height: 46px;
}

.dropdown-form .ant-select-single .ant-select-selector {
    align-items: center;
}

.input-radio {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    width: 100%;
}

.input-radio__title {
    color: #000;
    font-size: 13px;
    margin-left: 25px;
}

.input-radio .ant-radio {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.input-radio .ant-radio-inner, .input-radio .ant-radio-inner:after {
    width: 16px;
    height: 16px;
}

.input-radio .ant-radio-inner:after {
    background: url("../images/radio-check.png") no-repeat center center;
    background-color: #0095D9;
    border-radius: 50%;
}

.input-radio.color-blue .ant-radio-inner:after {
    background-color: #3AA4F6;
}

.custom-ant-radio-wrapper {
    display: block;
    width: 100%;
    height: 100%;
    padding-left: 12px;
    padding-top: 12px;
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .custom-ant-radio-wrapper {
        padding-left: 0px;
        line-height: 1.4rem;
    }
}

.custom-box-radio .ant-radio {
    position: absolute;
    right: 0;
    top: 5%;
}

.custom-box-radio .ant-radio-inner {
    width: 26px;
    height: 26px;
}

.custom-box-radio .ant-radio-inner:after {
    background-image: url("../images/checkbox.svg");
    width: 26px;
    height: 26px;
    border-radius: 50%;
}

.custom-box-radio .ant-radio ~ span {
    font-size: 1.6rem;
    font-family: var(--font-bold);
    margin-top: 8px;
    padding: 0;
}

.custom-box-radio .ant-radio-inner:after {
    transform: scale(0.7) translate(-25%, -25%) !important;
}

.custom-box-radio .ant-radio-wrapper-disabled .ant-radio {
    cursor: not-allowed;
}

.custom-box-radio .ant-radio-wrapper-disabled ~ span {
    color: rgba(0, 0, 0, 0.25) !important;
    cursor: not-allowed;
}

.ant-radio-checked .ant-radio-inner::after {
    transform: scale(0.7);
}

.search__input {
    border-radius: 6px;
}

.search__icon {
    position: absolute;
    right: 12px;
}

.input-text {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.input-text input {
    width: 100%;
    border: 1px solid #C5C5C5;
    box-sizing: border-box;
    line-height: 20px;
    padding: 7px 13px;
    font-size: 1.6rem;
    color: #000;
    background-color: #fff;
    outline: none;
}

.input-text img {
    position: absolute;
    top: 10px;
    left: 20px;
    cursor: pointer;
}

.input-text__title {
    width: 60%;
}

.input-common .custom-input {
    height: 48px;
    border-radius: 6px;
    position: relative;
    padding-left: 16px;
    padding-top: 16px;
    font-size: 1.6rem;
}

.input-common .custom-input:focus + span, .input-common .custom-input:not(:placeholder-shown) + span {
    top: 0;
    transform: unset;
    left: 16px;
    font-size: 1.2rem;
    color: #3aa4f6;
}

.input-common .ant-form-item-control-input-content {
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.input-common .custom-input-password {
    min-height: 48px;
    border-radius: 6px;
    position: relative;
    padding-left: 16px;
    padding-top: 16px;
    font-size: 1.6rem;
}

.input-common .custom-input-password input {
    padding: 0;
}

.input-common .custom-input-password .ant-input-suffix {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
}

.input-common__placeholder {
    position: absolute;
    pointer-events: none;
    left: 16px;
    top: 12px;
    font-size: 1.6rem;
    line-height: 24px;
    color: #7c808b;
    transition: 0.3s ease all;
}

.input-common .focus-password:focus + span, .input-common .focus-password:not(:placeholder-shown) + span {
    top: 0;
    transform: unset;
    left: 16px;
    font-size: 1.2rem;
    color: #3aa4f6;
}

.input-common__help-text {
    pointer-events: none;
    color: #a0b4b6;
    font-size: 1.3rem;
}

.input-common .ant-input-affix-wrapper:not(.ant-input-affix-wrapper-disabled):hover, .input-common .ant-input-affix-wrapper-focused, .input-common .ant-input-affix-wrapper:focus {
    z-index: auto;
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .input-common__help-text {
        font-size: 1.1rem;
    }
}

.modal-wrapper__title {
    display: flex;
    align-items: center;
}

.modal-wrapper__title > div {
    background-color: #1672ec;
    border-radius: 100px;
    padding: 3px;
    margin-right: 15px;
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-wrapper__title svg {
    width: 52% !important;
}

.modal-wrapper .ant-modal-body {
    text-align: center;
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .modal-wrapper__title {
        justify-content: center;
    }

    .modal-wrapper .ant-modal-close-x {
        width: 35px;
        height: 35px;
        line-height: 30px;
    }
}

.customBtnKcsModal .ant-modal-footer {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
}

.customBtnKcsModal .ant-modal-footer .ant-btn {
    background: #1890ff !important;
    color: #fff;
}

.customBtnKcsModal .ant-modal-footer .ant-btn-primary {
    margin-right: 8px;
    background: #fff !important;
    border-color: #d9d9d9;
    color: #000;
}

.form-modal__btn {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.form-modal__btn button {
    width: 20%;
}

.form-modal__btn--close {
    text-align: center;
    text-transform: uppercase;
    font-size: 1.5rem;
    line-height: 18px;
    border-radius: 100px;
    border: 1px solid #c4c4c4;
    background-color: #fff;
    padding: 4px 15px;
    box-shadow: 0px 10px 20px rgba(177, 186, 201, 0.15);
    color: #5c5c5c;
    font-family: var(--font-medium);
    cursor: pointer;
    margin-right: 5%;
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .form-modal__btn button {
        width: 45%;
    }

    .form-modal .ant-modal-close-x {
        width: 35px;
        height: 35px;
        line-height: 30px;
    }
}

.otp-modal p {
    font-size: 1.6rem;
    color: #000;
}

.otp-modal__btn {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.otp-modal__btn button {
    width: 28%;
}

.otp-modal__btn--close {
    text-align: center;
    text-transform: uppercase;
    font-size: 1.5rem;
    line-height: 18px;
    border-radius: 100px;
    border: 1px solid #c4c4c4;
    background-color: #fff;
    padding: 4px 15px;
    box-shadow: 0px 10px 20px rgba(177, 186, 201, 0.15);
    color: #5c5c5c;
    font-family: var(--font-medium);
    cursor: pointer;
    margin-right: 5%;
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .otp-modal__btn button {
        width: 45%;
    }

    .otp-modal .ant-modal-close-x {
        width: 35px;
        height: 35px;
        line-height: 30px;
    }
}

.success-modal {
    text-align: center;
}

.success-modal h3 {
    color: #0a3977;
    font-family: var(--font-medium);
    margin: 20px 0;
    text-transform: uppercase;
    font-size: 2.4rem;
}

.success-modal__logo {
    margin: 0 auto;
    display: block;
}

.success-modal p {
    font-size: 1.6rem;
    color: #000;
    margin-bottom: 8px;
}

.success-modal p span, .success-modal p a {
    text-decoration: underline;
    color: #3aa4f6;
    font-family: var(--font-bold);
}

.success-modal__contact {
    color: #7d7d7d;
    margin-top: 20px;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-modal__contact img {
    margin-left: 5px;
}

.detail-modal h3 {
    color: #0571bc;
    font-family: var(--font-bold);
}

.detail-modal__content {
    max-height: 350px;
    overflow-y: auto;
}

.detail-modal__content::-webkit-scrollbar {
    width: 6px;
}

.detail-modal__content::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #e5e5e5;
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .detail-modal__content {
        max-height: 300px;
    }
}

.ant-notification-notice-btn {
    float: left !important;
    margin-top: 10px !important;
    margin-left: 15%;
    text-decoration: underline;
    font-size: 1.6rem;
    color: #D71925;
    font-family: var(--font-medium);
    cursor: pointer;
}

.pack-item {
    background: #ffffff;
    box-shadow: 0px 4px 30px rgba(182, 182, 182, 0.2);
    border-radius: 8px;
    margin-bottom: 30px;
    padding: 20px;
    display: flex;
    align-items: center;
}

.pack-item:hover {
    box-shadow: 0 5px 25px 1px #afafaf;
}

.pack-item__img {
    width: 20%;
    margin-right: 5%;
}

.pack-item__img img {
    width: 100%;
    max-height: 136px;
    cursor: pointer;
    aspect-ratio: 1 / 1;
}

.pack-item__content {
    width: 75%;
}

.pack-item__content .custom-btn {
    background-color: #fff;
    border: 1px solid #C4C4C4;
    color: #5C5C5C;
}

.pack-item__price h3 {
    color: #e7007f;
    font-family: var(--font-bold);
    font-size: 2.5rem;
    margin-bottom: 10px;
    cursor: pointer;
}

.pack-item__price span:first-child {
    color: #000;
    font-size: 1.8rem;
    font-family: var(--font-medium);
}

.pack-item__price span:nth-child(2) {
    color: #a0b4b6;
    text-decoration: line-through;
    font-size: 1.6rem;
    margin-left: 15px;
}

.pack-item__des {
    color: #5c5c5c;
    font-size: 1.4rem;
    margin-bottom: 20px;
    height: 40px;
    overflow-y: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.pack-item__des * {
    margin-bottom: 0;
}

.pack-item a {
    text-decoration: none !important;
    color: #40c3ff;
}

.pack-item__show-more {
    color: #40c3ff;
    font-size: 14px;
}

.pack-item__discount {
    position: absolute;
    right: 7px;
    top: 15px;
    padding: 5px 7px 12px 14px;
    color: #fff;
    font-family: var(--font-bold);
    background: url("../images/icon-km-2.svg") no-repeat center center;
    background-size: 100% 100%;
}

@media screen and (max-width: 991px) {
    .pack-item__img {
        width: 30%;
    }

    .pack-item__content {
        width: 65%;
    }
}

@media screen and (max-width: 991px) {
    .pack-item-sim {
        flex-direction: column;
    }

    .pack-item-sim__img {
        width: 50%;
    }

    .pack-item-sim__content {
        width: 100%;
    }
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .pack-item-sim__img {
        width: 0;
    }

    .pack-item-sim__content {
        width: 100%;
    }
}

.progress-turn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10000;
    background-color: rgba(255, 255, 255, 0.4);
}

.progress-turn .ant-spin-lg .ant-spin-dot {
    font-size: 45px;
}

.progress-turn .ant-spin-lg .ant-spin-dot i {
    width: 18px;
    height: 18px;
}

.quick-feature {
    position: fixed;
    top: 30vh;
    right: 0;
    cursor: pointer;
    box-shadow: 0px 0px 10px rgba(146, 146, 146, 0.25);
    background-color: #fff;
    width: 37px;
    z-index: 10000;
}

.quick-feature.hide-box {
    visibility: hidden;
    transition: all .4s;
    transform: translateX(100%);
}

.quick-feature__close {
    position: absolute;
    top: -105px;
    left: -10px;
}

.quick-feature__content {
    position: relative;
}

.quick-feature__content p {
    color: #EA3696;
    padding: 10px;
    text-transform: uppercase;
    font-family: var(--font-bold);
    font-size: 1rem;
    text-align: center;
    white-space: nowrap;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    margin-top: 97px;
}

.quick-feature__content div {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-top: 0.8px solid #D0DDDD;
}

.recharge-money {
    background: #FFFFFF;
    box-shadow: 0px 0px 10px rgba(146, 146, 146, 0.25);
    border-radius: 8px;
    padding: 30px 15px;
    text-align: center;
    height: 100%;
}

.recharge-money__radio {
    width: 50%;
    margin-bottom: 10px;
}

.recharge-money__radio span {
    color: #5C5C5C;
    font-size: 1.5rem;
}

.recharge-money .ant-radio-group {
    display: flex;
    flex-wrap: wrap;
    width: 85%;
    margin: 20px auto;
}

.recharge-money h4 {
    color: #163567;
    font-family: var(--font-medium);
    margin-bottom: 20px;
    font-size: 2rem;
}

.recharge-money button {
    color: #5C5C5C;
    background-color: #fff;
    border: 1px solid #C4C4C4;
    text-transform: uppercase;
    border-radius: 30px;
    margin: 30px auto 0;
    outline: none;
    text-align: center;
    padding: 5px 20px;
    display: block;
}

.scroll {
    visibility: visible;
    transition: all 200ms ease-out;
    position: fixed;
    bottom: 10px;
    right: 10px;
    cursor: pointer;
    background-color: #1f7ed0;
    border-radius: 100px;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    z-index: 10000;
}

.scroll__icon {
    padding: 8px;
    width: 35px !important;
    height: auto;
}

.show-button {
    visibility: visible;
    transition: all 200ms ease-in;
    bottom: 25px;
}

.select-common .custom-ant-select .ant-select-selector {
    border-radius: 6px;
    height: 48px;
    width: 100%;
}

.select-common .custom-ant-select .ant-select-selector span {
    line-height: 48px;
    font-size: 1.6rem;
    color: #000;
}

.select-common .custom-ant-select .ant-select-selector .ant-select-selection-placeholder {
    color: #7c808b;
    opacity: 1;
}

.select-common .custom-input {
    height: 48px;
    border-radius: 6px;
    position: relative;
    padding-left: 16px;
    padding-top: 16px;
}

.select-common .custom-input:focus + span, .select-common .custom-input:not(:placeholder-shown) + span {
    top: 0;
    transform: unset;
    left: 16px;
    font-size: 1.2rem;
    color: #3aa4f6;
}

.select-common__select--input {
    border-radius: 1px solid #ccc;
}

.select-common__select--option {
    height: 36px;
}

.select-common__select--option:hover {
    background-color: #5897fb;
    color: white;
}

.text-area {
    width: 100%;
}

.text-area textarea {
    width: 100%;
    box-sizing: border-box;
    line-height: 20px;
    padding: 15px 20px;
    color: #000;
    border-radius: 10px;
    outline: none;
    background-color: #fff;
    border: 1px solid #C5C5C5;
}

.text-area__title {
    color: #000;
    margin-bottom: 10px;
}

.google-map {
    width: 100%;
    height: 500px;
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .google-map {
        height: 400px;
    }
}

.gm-style .gm-style-iw table {
    border: 3px solid #ddd;
    min-width: 300px;
    padding: 10px;
}

.gm-style .gm-style-iw thead {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: center;
    background-color: #4CAF50;
    color: white;
    font-weight: bold;
}

.gm-style .gm-style-iw td {
    border: 1px solid #ddd;
    padding: 8px;
}

.gm-style .gm-style-iw td img:hover {
    transform: scale(1.2);
    transition: .3s ease-in-out;
}

.gm-style .gm-style-iw tr:nth-child(even) {
    background-color: #f2f2f2;
}

.login-account .custom-btn {
    min-width: 90%;
    font-size: 1.6rem;
    padding-top: 12px;
    padding-bottom: 12px;
}

.login-account__form {
    margin-top: 60px;
    width: 90%;
}

.login-account__forgot-password {
    color: #3AA4F6;
    text-decoration: underline;
}

.login-account__otp--get-otp {
    color: #3AA4F6;
}

.login-account__otp--get-otp span {
    text-decoration: underline;
    font-size: 1.5rem;
}

.login-account__otp--get-otp:hover {
    cursor: pointer;
}

.register__form {
    width: 90%;
}

.register__otp--get-otp {
    color: #3AA4F6;
}

.register__otp--get-otp span {
    text-decoration: underline;
    font-size: 1.5rem;
}

.register__otp--get-otp:hover {
    cursor: pointer;
}

.register p span {
    text-decoration: underline;
    font-size: 1.5rem;
    color: #3AA4F6;
}

.login .custom-btn {
    min-width: 90%;
    font-size: 1.6rem;
    padding-top: 12px;
    padding-bottom: 12px;
}

.login__step1 h4 {
    margin: 20px 30px;
    color: #a0b4b6;
}

.login__step1 .btn-3g {
    display: none;
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .login__step1 .btn-3g {
        display: block;
    }
}

.login__title div {
    font-size: 2.4rem;
    font-family: var(--font-bold);
    color: #a0b4b6;
    cursor: pointer;
}

.login__title .active {
    color: #0095d9;
    border-bottom: 3px solid #40c3ff;
}

.login__sub_title div {
    font-size: 1.8rem;
    font-family: var(--font-bold);
    color: #a0b4b6;
    cursor: pointer;
}

.login__sub_title .active {
    border-bottom: 3px solid rgba(160, 180, 182, 0.5);
}

.login__register {
    font-size: 1.5rem;
    color: #a0b4b6;
    margin-bottom: 50px;
}

.login__register img {
    height: 15px;
}

.login__register span {
    color: #3aa4f6;
    text-decoration: underline;
    font-size: 1.5rem;
    cursor: pointer;
}

.customer-support__title {
    color: #0095d9;
    text-align: center;
    font-size: 3.2rem;
    margin-top: 30px;
    font-family: var(--font-bold);
}

.customer-support__item {
    padding: 3.5%;
}

.customer-support__item--box {
    min-height: 300px;
    display: block;
    background-color: #fff;
    border-radius: 10px;
    padding-top: 20px;
    padding-left: 30px;
    position: relative;
    margin-bottom: 20px;
    height: 100%;
    box-shadow: 0px 4px 12px rgba(182, 182, 182, 0.2);
}

.customer-support__item--box:hover .customer-support__box--icon img {
    animation: ringring 1s linear;
}

.customer-support__item--box h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #163567;
    line-height: 24px;
    font-size: 1.8rem;
    font-family: var(--font-bold);
}

.customer-support__item--box a {
    color: #fff;
}

.customer-support__item--box a button {
    text-transform: initial;
}

.customer-support__item--box a:hover {
    color: #fff;
}

.customer-support__item--livechat img {
    width: 45px;
    height: 45px;
    background: #3aa4f6;
    border-radius: 50%;
    display: inline-block;
    padding: 10px;
    justify-items: center;
    align-items: center;
}

.customer-support__item--livechat span {
    padding: 8px 15px 8px 10px;
    color: #3aa4f6;
    font-family: var(--font-bold);
    font-size: 1.7rem;
    height: 33px;
}

.customer-support__item--livechat a {
    padding: 7px 10px 7px 0;
    margin-right: 25px;
    background: #dff3fe;
    border-radius: 30px;
}

.customer-support__box {
    padding-top: 5%;
}

.customer-support__box--icon {
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    align-items: center;
    justify-content: center;
    display: flex;
    box-shadow: 0px 4px 12px rgba(182, 182, 182, 0.2);
}

.customer-support__box button {
    text-transform: uppercase;
}

@media screen and (max-width: 991px) {
    .customer-support__item {
        padding: 5px;
    }

    .customer-support__item--livechat span {
        padding: 8px 10px;
    }

    .customer-support__item--livechat a {
        margin-right: 5px;
    }
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .customer-support {
        padding-top: 4px;
    }

    .customer-support__title {
        padding-top: 5px;
        font-size: 2.4rem;
        margin-bottom: 30px;
    }

    .customer-support__item {
        display: flex;
        padding: 0;
    }

    .customer-support__item--box {
        min-height: 300px;
    }

    .customer-support__item--livechat a {
        margin-right: 20px;
    }

    .customer-support__item--livechat span {
        padding: 8px 2px;
    }

    .customer-support__box {
        margin-bottom: 60px;
        position: relative;
        max-width: 100%;
    }
}

.box-news {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #dadada;
}

.box-news__img {
    width: 25%;
    border-radius: 6px;
    margin-right: 3%;
    display: inline-block;
    position: relative;
}

.box-news__img .dummy {
    margin-top: 65%;
}

.box-news__img img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    height: 100%;
    width: 100%;
    cursor: pointer;
    object-fit: cover;
}

.box-news h3 {
    max-height: 52px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 2rem;
}

.box-news__content {
    width: 72%;
}

.box-news__content a, .box-news__content h3 > div {
    color: #0e0d0d;
    font-family: var(--font-bold);
}

.box-news__content a:hover, .box-news__content h3 > div:hover {
    color: #007bff;
}

.box-news__description {
    max-height: 48px;
    height: 48px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.box-news__description * {
    line-height: 24px;
    margin: 0;
}

@media screen and (max-width: 991px) {
    .box-news__description {
        height: 46px;
    }
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .box-news__img {
        width: 50%;
        margin-right: 2%;
    }

    .box-news h3 a {
        font-size: 1.4rem;
    }

    .box-news__description {
        max-height: 24px;
        font-size: 1.4rem;
        overflow: hidden;
        -webkit-line-clamp: 1;
    }
}

.signature canvas {
    width: 100%;
    height: 300px;
}

.signature button {
    min-width: 150px;
}

.signature button:last-child {
    margin-left: 20px;
}

.signature h3 {
    font-size: 16px;
    font-family: var(--font-medium);
    background-color: #1C60B3;
    color: #fff;
    padding: 15px 20px;
}

.signature__wrapper {
    background-color: #fff;
    width: 60%;
    margin: 0 auto;
}

.signature__btn {
    margin-top: 20px;
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
}

.signature__btn .ant-form-item {
    margin-bottom: 0;
}

.sign-up {
    background: #ffffff;
    overflow-x: hidden;
    max-height: 0;
    transition: all 0.5s;
    border-bottom: 1px solid #dadada;
}

.sign-up::-webkit-scrollbar {
    width: 0;
}

.sign-up__form {
    background-color: #fff;
    width: 50%;
    border-radius: 8px;
    padding: 50px 10%;
    box-shadow: 0px 0px 10px rgba(146, 146, 146, 0.25);
}

.sign-up__cancel {
    width: calc(50% - 16px);
    background-color: #ffffff;
    color: #3aa4f6;
    border: 1.6px solid #3aa4f6;
    padding: 15px 20px;
}

.sign-up__cancel:hover {
    color: #ffffff;
    background-color: #3aa4f6;
}

.sign-up__accept {
    padding: 15px 20px;
    width: calc(50% - 16px);
}

.sign-up__accept a {
    color: #ffffff;
}

.sign-up__accept:hover {
    background-color: #ffffff;
    box-shadow: none;
    border: 1.6px solid #3aa4f6;
    color: #3aa4f6;
    text-decoration: none;
}

@media (max-width: 1199px) {
    .sign-up__form {
        background: #ffffff;
        width: 70%;
        padding: 40px 20px;
    }
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .sign-up {
        padding-left: 0;
        padding-top: 0;
        background-color: initial;
    }

    .sign-up__form {
        background: #ffffff;
        width: 100%;
        padding: 40px 10px;
    }

    .sign-up__cancel, .sign-up__accept {
        width: calc(50% - 8px);
    }
}

.customDeregisterModal .ant-modal-footer {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
}

.customDeregisterModal .ant-modal-footer .ant-btn {
    background: #1890ff !important;
    color: #fff;
}

.customDeregisterModal .ant-modal-footer .ant-btn-primary {
    margin-right: 8px;
    background: #fff !important;
    border-color: #d9d9d9;
    color: #000;
}

.search-roaming {
    overflow-x: hidden;
    max-height: 0;
    transition: all 0.5s;
    background: #fff;
    border-bottom: 1px solid #dadada;
}

.search-roaming__top {
    background: #ffffff;
}

.search-roaming::-webkit-scrollbar {
    width: 0;
}

.search-roaming__form .customClass {
    width: calc(25% - 8px);
}

.search-roaming__price, .search-roaming__info-network {
    background-color: #ffffff;
    color: #3aa4f6;
    border: 1.6px solid #3aa4f6;
}

.search-roaming__price:hover, .search-roaming__info-network:hover {
    color: #ffffff;
    background-color: #3aa4f6;
}

.search-roaming .active {
    color: #ffffff;
    background-color: #3aa4f6;
}

.search-roaming__btn {
    width: calc(25% - 8px);
    max-height: 48px;
}

.search-roaming__btn:hover {
    background-color: #ffffff;
    box-shadow: none;
    border: 1.6px solid #3aa4f6;
    color: #3aa4f6;
    text-decoration: none;
}

.search-roaming__list-price--item {
    justify-content: space-between;
    width: 85%;
}

.search-roaming__list-price--item h2 {
    color: var(--primary1);
}

.search-roaming__list-price--item > div {
    padding: 15px;
    font-size: 2rem;
    font-family: SFProBold;
    background: #f4f7fb;
}

.search-roaming__list-price--item > div:first-child {
    width: calc(70% - 8px);
    border-radius: 4px;
}

.search-roaming__list-price--item > div:last-child {
    border-radius: 4px;
    width: calc(30% - 8px);
}

.search-roaming .network-info__table .desktop {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.search-roaming .network-info__table .desktop table {
    width: 100%;
}

.search-roaming .network-info__table .desktop table tr {
    text-align: center;
}

.search-roaming .network-info__table .desktop table tr td, .search-roaming .network-info__table .desktop table tr th {
    padding: 12px;
}

.search-roaming .network-info__table .desktop table tbody {
    box-shadow: 0px 0px 10px rgba(146, 146, 146, 0.25);
    border-top: 3px solid #0095d9;
}

.search-roaming .network-info__table .mobile table {
    overflow-y: scroll;
    width: 100%;
}

.search-roaming .network-info__table .mobile table tr th {
    min-width: 150px;
    padding: 12px;
    text-align: left;
}

.search-roaming .network-info__table .mobile table tr td {
    padding: 12px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media screen and (min-width: 1000px) {
    .search-roaming .network-info .mobile {
        display: none;
    }

    .search-roaming .network-info .desktop {
        display: block;
    }
}

@media screen and (max-width: 1000px) {
    .search-roaming .network-info .mobile {
        display: block;
    }

    .search-roaming .network-info .desktop {
        display: none;
    }
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .search-roaming__form {
        flex-direction: column;
        border-bottom: 1px solid #dadada;
    }

    .search-roaming__form .customClass {
        width: 100%;
    }

    .search-roaming__btn {
        width: 100%;
        padding: 12px;
        margin-bottom: 20px;
    }

    .search-roaming__package {
        justify-content: center;
    }

    .search-roaming__price, .search-roaming__info-network {
        font-size: 1.1rem;
    }

    .search-roaming__list-price--item {
        width: 100%;
        border-radius: 8px;
    }

    .search-roaming__list-price--item > div {
        font-size: 1.6rem;
    }

    .search-roaming__list-price--item > div:first-child {
        padding-right: 0;
        width: 100%;
        border-radius: 0;
    }

    .search-roaming__list-price--item > div:last-child {
        padding-left: 0;
        width: auto;
        border-radius: 0;
    }
}

.endow-roaming {
    padding: 30px 40px 50px;
    background: #ffffff;
    border-bottom: 1px solid #dadada;
}

.endow-roaming::-webkit-scrollbar {
    width: 0;
}

.endow-roaming__btn {
    flex-wrap: wrap;
}

.endow-roaming__btn--hot, .endow-roaming__btn--data, .endow-roaming__btn--combo {
    text-transform: none;
    background-color: #ffffff;
    color: #3aa4f6;
    border: 1.6px solid #3aa4f6;
}

.endow-roaming__btn--hot:hover, .endow-roaming__btn--data:hover, .endow-roaming__btn--combo:hover {
    color: #ffffff;
    background-color: #3aa4f6;
}

.endow-roaming .active {
    color: #ffffff;
    background-color: #3aa4f6;
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .endow-roaming {
        padding: 30px 10px 50px;
    }

    .endow-roaming__btn {
        justify-content: center;
    }

    .endow-roaming__btn--hot {
        min-width: 45%;
    }
}

.intro-roaming {
    overflow-x: hidden;
    max-height: 0;
    transition: all 0.5s;
    font-size: 1.6rem;
    text-align: justify;
    background: #ffffff;
    border-bottom: 1px solid #dadada;
}

.intro-roaming p {
    margin: 0;
}

.intro-roaming::-webkit-scrollbar {
    width: 0;
}

.about-roaming {
    overflow-x: hidden;
    max-height: 0;
    transition: all 0.5s;
    font-size: 1.6rem;
    text-align: justify;
    background: #ffffff;
    border-bottom: 1px solid #dadada;
}

.about-roaming p {
    margin: 0;
}

.about-roaming::-webkit-scrollbar {
    width: 0;
}

.guide-roaming {
    border-bottom: 1px solid #dadada;
    background: #ffffff;
    overflow-x: hidden;
    max-height: 0;
    transition: all 0.5s;
    font-style: normal;
}

.guide-roaming::-webkit-scrollbar {
    width: 0;
}

.guide-roaming__btn {
    color: #7c808b;
    background-color: #eaeaea;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    padding: 9px 22px 9px 16px;
    font-size: 2rem;
    border-radius: 8px;
    margin-right: 16px;
    margin-bottom: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.guide-roaming__btn:hover {
    background-color: #3aa4f6;
    color: #ffffff;
}

.guide-roaming__btn:hover path {
    fill: #ffffff;
}

.guide-roaming__btn path {
    fill: #7c808b;
}

.guide-roaming__btn span {
    margin-left: 8px;
}

.guide-roaming .active {
    background-color: #3aa4f6;
    color: #ffffff;
}

.guide-roaming .active path {
    fill: #ffffff;
}

.guide-roaming__description {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #000;
    text-align: justify;
}

.guide-roaming__description p {
    margin: 0;
}

.guide-roaming__description table, .guide-roaming__description td, .guide-roaming__description th {
    border: 1px solid;
}

.guide-roaming__description table {
    width: 100%;
    border-collapse: collapse;
}

.guide-roaming__description tr td {
    padding-left: 4px;
    padding-right: 4px;
}

.guide-roaming__description tr td:first-child {
    width: 12%;
}

.guide-roaming__description ul.list_first {
    padding-left: 8px !important;
}

.guide-roaming__description ul.list_first li {
    list-style-type: '-' !important;
    list-style-position: outside;
    padding-left: 8px !important;
}

.guide-roaming__description ul.list_second {
    padding-left: 20px !important;
}

.guide-roaming__description ul.list_second li {
    list-style-type: '\2713' !important;
    list-style-position: outside;
    padding-left: 8px !important;
}

.guide-roaming__description ul.list_third {
    padding-left: 24px !important;
}

.guide-roaming__description ul.list_third li {
    list-style-type: disc !important;
    list-style-position: outside;
    padding-left: 8px !important;
}

.question-roaming {
    background: #ffffff !important;
    overflow-x: hidden;
    max-height: 0;
    transition: all 0.3s;
    position: relative;
}

.question-roaming::-webkit-scrollbar {
    width: 0;
}

.question-roaming__item {
    box-shadow: 0px 0px 10px rgba(146, 146, 146, 0.25);
    background: #ffffff !important;
    padding: 30px 30px 0 30px;
}

.question-roaming__item > div {
    cursor: pointer;
    line-height: 1;
}

.question-roaming__item h4 {
    font-size: 1.6rem;
    font-family: SFProBold;
    color: #5c5c5c;
}

.question-roaming__item span {
    font-size: 3rem;
}

.question-roaming__item:hover h4, .question-roaming__item:hover span {
    color: #0571bc;
}

.question-roaming__des {
    overflow-x: hidden;
    max-height: 0;
    transition: all 0.5s;
}

.question-roaming__des--content {
    font-size: 1.5rem;
    color: #5c5c5c;
    line-height: 20px;
}

.question-roaming__des::-webkit-scrollbar {
    width: 0;
}

.question-roaming .active h4, .question-roaming .active span {
    color: #0571bc;
}

.about-roaming {
    background: #ffffff !important;
    overflow-x: hidden;
    max-height: 0;
    transition: all 0.3s;
    position: relative;
}

.about-roaming::-webkit-scrollbar {
    width: 0;
}

.about-roaming__item {
    box-shadow: 0px 0px 10px rgba(146, 146, 146, 0.25);
    background: #ffffff !important;
    padding: 30px 30px 0 30px;
}

.about-roaming__item > div {
    cursor: pointer;
    line-height: 1;
}

.about-roaming__item h4 {
    font-size: 1.6rem;
    font-family: SFProBold;
    color: #5c5c5c;
}

.about-roaming__item span {
    font-size: 3rem;
}

.about-roaming__item:hover h4, .about-roaming__item:hover span {
    color: #0571bc;
}

.about-roaming__des {
    overflow-x: hidden;
    max-height: 0;
    transition: all 0.5s;
}

.about-roaming__des--content {
    font-size: 1.5rem;
    color: #5c5c5c;
    line-height: 20px;
}

.about-roaming__des::-webkit-scrollbar {
    width: 0;
}

.about-roaming .active h4, .about-roaming .active span {
    color: #0571bc;
}

.endow-package .swiper-slide {
    padding: 0 10px;
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .endow-package .swiper-slide {
        padding: 0 8px;
    }
}

.roaming-status {
    padding: 20px 5%;
}

.roaming-status__info {
    font-weight: 500;
    margin-bottom: 30px;
    font-size: 18px;
}

.roaming-status__detail .title {
    font-weight: 500;
    width: 40%;
}

.roaming-status__contact {
    color: #7d7d7d;
    margin-top: 20px;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.roaming-status__contact img {
    margin-left: 5px;
}

.roaming__list {
    box-shadow: 0px 4px 30px rgba(182, 182, 182, 0.2);
}

.roaming__item {
    background-color: #fff;
    cursor: pointer;
    border-bottom: 1px solid #dadada;
}

.roaming__item:hover {
    box-shadow: 1px 5px 25px 1px #afafaf;
}

.roaming__item:hover img {
    cursor: pointer;
    animation: ringring 1s linear;
}

.roaming__item:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.roaming__item:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.roaming__item--box-img {
    border-radius: 50%;
    min-width: 96px;
    height: 96px;
    box-shadow: 0px 4px 15px rgba(57, 57, 57, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 1px #3aa4f6;
}

.roaming__item--box-img img {
    max-width: 50px;
    max-height: 50px;
}

.roaming__item h1 {
    font-family: HelBold;
    color: #3AA4F6;
}

.roaming__item p {
    color: #7D7D7D;
}

.roaming .arrow-down {
    position: relative;
}

.roaming .arrow-down::after {
    content: '';
    width: 16px;
    height: 16px;
    background-color: #fff;
    border-left: 2px solid #dadada;
    border-bottom: 2px solid #dadada;
    position: absolute;
    bottom: -9px;
    left: 72px;
    transform: rotate(-45deg);
    z-index: 1;
}

.roaming .show__sign-up, .roaming .show__search, .roaming .show__intro, .roaming .show__about {
    max-height: 20000px;
    padding: 30px 40px 50px;
}

.roaming .show__intro {
    max-height: 100%;
    padding: 30px 40px 50px;
}

.roaming .show__guide, .roaming .show__question {
    max-height: 20000px;
    padding: 30px 40px;
}

.roaming .bg-color {
    pointer-events: none;
    width: 100%;
    height: 20%;
    max-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(208, 221, 221, 0.28) 0%, rgba(196, 196, 196, 0) 100%);
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .roaming__item--box-img {
        min-width: 60px;
        height: 60px;
    }

    .roaming__item img {
        max-width: 75%;
        max-height: 75%;
    }

    .roaming__item h1 {
        font-size: 2rem;
    }

    .roaming .arrow-down::after {
        left: 33px;
    }

    .roaming .show__sign-up {
        padding: 0;
    }

    .roaming .show__search, .roaming .show__intro, .roaming .show__search {
        padding: 30px 10px 50px;
    }

    .roaming .show__guide, .roaming .show__question {
        padding: 30px 10px;
    }
}

.notice-sign-up {
    width: 75%;
}

.notice-sign-up strong {
    color: var(--primary3);
    font-size: 2.2rem;
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .notice-sign-up {
        width: 100%;
    }
}

.table-container table {
    width: 100%;
    border-collapse: collapse;
}

.table-container table th, .table-container table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.table-container table th {
    background-color: #f2f2f2;
}

.table-container table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.table-container table td:first-child {
    white-space: nowrap;
    padding-right: 20px;
}

.table-container-detail {
    text-align: center;
}

.table-container-detail table {
    width: 100%;
    border-collapse: collapse;
}

.table-container-detail table th, .table-container-detail table td {
    border: 1px solid #ddd;
    padding: 8px;
}

.table-container-detail table th {
    background-color: #f2f2f2;
}

.table-container-detail table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.table-container-detail table td:first-child {
    white-space: nowrap;
    padding-right: 20px;
}

.filter-box {
    background: #ffffff;
    box-shadow: 0px 0px 10px rgba(146, 146, 146, 0.25);
    border-radius: 8px;
    padding: 5px 20px 30px;
}

.filter-box section {
    border-bottom: 1px solid #d0dddd;
    padding-bottom: 15px;
}

.filter-box section:last-child {
    border-bottom: none;
}

.filter-box h5 {
    color: #000;
    font-family: var(--font-bold);
    font-size: 2rem;
    margin: 20px 0;
}

.filter-box__first-numb {
    display: flex;
    flex-wrap: wrap;
}

.filter-box__first-numb > div {
    width: 48%;
}

.filter-box__first-numb > div:nth-child(odd) {
    margin-right: 4%;
}

.filter-box__commit-price {
    display: flex;
    flex-wrap: wrap;
}

.filter-box__commit-price .active {
    background-color: rgba(58, 164, 246, 0.7);
}

.filter-box__commit-price > p {
    margin-right: 10px;
}

.filter-box__select-price-title {
    font-size: 1.2rem;
    color: #8b8b8b;
}

.filter-box__input-price {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.filter-box__input-price .input-text input {
    padding: 4px 12px;
    font-size: 1.4rem;
    border-radius: 4px;
}

.filter-box .ant-radio-group {
    display: flex;
    width: 100%;
}

.filter-box .ant-radio-group .check-box {
    width: 48%;
}

.filter-box .custom-ant-radio {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    width: 100%;
}

.filter-box .custom-ant-radio__title {
    color: #000;
    font-size: 13px;
    margin-left: 25px;
}

.filter-box .custom-ant-radio .ant-radio {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.filter-box .custom-ant-radio .ant-radio-inner, .filter-box .custom-ant-radio .ant-radio-inner:after {
    width: 16px;
    height: 16px;
}

.filter-box .custom-ant-radio .ant-radio-inner:after {
    background: url("../images/radio-check.png") no-repeat center center;
    background-color: #0095d9;
    border-radius: 50%;
}

.filter-box .custom-ant-radio.color-blue .ant-radio-inner:after {
    background-color: #3aa4f6;
}

@media screen and (max-width: 1250px) and (min-width: 992px) {
    .filter-box__number-type > div {
        width: 100%;
    }

    .filter-box__number-type > div:nth-child(odd) {
        margin-right: 0;
    }
}

.order-info {
    background: #f8f8f8;
    box-shadow: 0px 0px 30px rgba(146, 146, 146, 0.4);
    border-radius: 8px;
}

.order-info h3 {
    font-family: var(--font-bold);
    font-size: 2rem;
    line-height: 26px;
    color: #fff;
    text-align: center;
    margin-bottom: 0;
    background: #3aa4f6;
    padding: 13px 0;
    border-radius: 8px 8px 0px 0px;
}

.order-info__body {
    padding: 16px 5% 40px;
}

.order-info__button {
    margin: 20px 0 30px;
}

.order-info__button button {
    padding: 12px 15%;
    display: block;
    margin: 0 auto;
}

.order-info__des {
    font-size: 1.3rem;
    color: #8b8b8b;
}

.order-info__content {
    background-color: #fff;
    border-radius: 8px;
    padding: 17px 24px 14px;
    margin-bottom: 16px;
}

.order-info__content--sum {
    font-size: 2.4rem;
    color: #196fb0;
    font-family: var(--font-bold);
}

.order-info__content p {
    font-size: 1.4rem;
    color: var(--primary3);
}

.order-info__item {
    font-size: 1.6rem;
    color: #5c5c5c;
}

.order-info__item .w-30 {
    width: 30%;
}

.order-info__item .w-70 {
    width: 70%;
}

.order-info__item .ant-input-affix-wrapper {
    width: 60%;
    height: 24px;
    border-radius: 4px;
    margin: auto;
}

.order-info__item span {
    line-height: 40px;
}

.order-info__item span:last-child {
    font-family: var(--font-bold);
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .order-info__item {
        font-size: 1.2rem;
    }

    .order-info__item .ant-input-affix-wrapper input::placeholder {
        font-size: 0.9rem;
    }
}

.check-box {
    width: 100%;
    border: 0.6px solid #eaeaea;
    border-radius: 4px;
    margin-bottom: 10px;
    padding: 7px 0 7px 5%;
    cursor: pointer;
    margin-right: 0;
}

.check-box.active {
    background-color: #f9f9f9;
}

.check-box span {
    color: #666;
}

.check-box:nth-child(odd) {
    margin-right: 8px;
}

.badge-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.badge-close {
    cursor: pointer;
    padding: 5px 20px;
    border-radius: 20px;
    color: #000;
    font-size: 1.3rem;
    background-color: #eeeeee;
    position: relative;
    margin-right: 10px;
}

.badge-close svg {
    position: absolute;
    cursor: pointer;
    top: -3px;
    right: -1px;
}

.badge-close:hover {
    background-color: #d8d6d6;
}

.first-numb {
    display: flex;
    width: 85%;
    margin: auto;
}

.first-numb .badge-number {
    padding: 5px 20px;
    border-radius: 20px;
    color: #000;
    font-size: 1.3rem;
    background-color: #eeeeee;
    position: relative;
    margin-right: 10px;
    width: fit-content;
    color: #7d7d7d;
}

.search-sim__wrap-input > div {
    width: 85%;
}

.search-sim__wrap-badge {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    margin-top: 30px;
    margin-bottom: 50px;
}

.search-sim__wrap-badge span {
    background: #f4f7fb;
    border-radius: 30px;
    color: #7d7d7d;
    margin-right: 10px;
    padding: 3px 20px;
}

.search-sim__result-text {
    text-align: right;
    color: #5c5c5c;
}

.search-sim__table-content table {
    width: 100%;
    color: #5c5c5c;
    background-color: #fff;
    border-collapse: separate !important;
    border-spacing: 0;
}

.search-sim__table-content td {
    padding: 15px 10px;
    text-align: center;
}

.search-sim__table-content thead td {
    border-bottom: 3px solid #0095d9;
    font-family: var(--font-bold);
}

.search-sim__table-content tbody tr:hover {
    box-shadow: 0px 0px 10px rgba(146, 146, 146, 0.25);
}

.search-sim__table-content tbody td {
    border-bottom: 1px solid rgba(208, 220, 221, 0.6);
}

.search-sim__table-content tbody td button {
    font-size: 1.4rem;
    padding: 7px 20px;
}

.search-sim .swiper-button-prev, .search-sim .swiper-button-next {
    width: auto;
}

.search-sim__first-pagi {
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
    border-left: 1px solid #d9d9d9;
    background-color: #fff;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.search-sim__last-pagi {
    border-top: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
    border-right: 1px solid #d9d9d9;
    background-color: #fff;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .search-sim__table-content tbody td button {
        font-size: 1.2rem;
        padding: 7px 15px;
    }
}

.sim-step2 section {
    margin-top: 30px;
}

.sim-step2 section .swiper-container {
    padding: 30px 0 40px;
}

.sim-step2 section .package-item {
    background-color: #ffffff;
    height: 100%;
    box-shadow: 0px 0px 10px rgba(146, 146, 146, 0.25);
    position: relative;
    padding: 30px 0 40px;
    cursor: pointer;
    border-radius: 8px;
    border: 1.8px solid #ffffff;
}

.sim-step2 section .package-item h1 {
    color: #196fb0;
}

.sim-step2 section .package-item__info {
    color: black;
}

.sim-step2 section .package-item__info .btn-detail span {
    position: relative;
    z-index: 1000;
    border: 1px solid #c4c4c4;
    padding: 8px 28px;
    border-radius: 30px;
}

.sim-step2 section .package-item__info .btn-detail span:hover {
    color: #3aa4f6;
    border-color: #3aa4f6;
}

.sim-step2 section .package-item__info--content {
    min-height: 140px;
}

.sim-step2 section .package-item__info > span {
    font-size: 2.5rem;
}

.sim-step2 section .package-item .custom-class {
    position: absolute;
    top: 0;
    right: 0;
    margin-right: 0;
    height: 100%;
}

.sim-step2 section .package-item .custom-class span {
    color: #196fb0;
    font-size: 2.5rem;
    top: 10%;
    right: 5%;
}

.sim-step2 section .package-item__info--content {
    height: 90px;
    overflow-y: hidden;
    position: relative;
}

.sim-step2 section .package-item__info--content:after {
    position: absolute;
    bottom: 0;
    height: 100%;
    width: 100%;
    content: '';
    background: linear-gradient(to top, white 5%, rgba(255, 255, 255, 0) 36%);
    pointer-events: none;
    /* so the text is still selectable */
}

.sim-step2 section .enter-money {
    background-color: #fff;
    width: calc(100% / 3 - 10px);
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(146, 146, 146, 0.25);
    border: 1.8px solid #ffffff;
}

.sim-step2 section .enter-money .customClass span {
    font-size: 2.4rem;
}

.sim-step2 section .active {
    border: 1.8px solid #5aaef9;
}

.sim-step2 section .active h1 {
    color: var(--accent1);
}

.sim-step2 section .search-package {
    font-size: 1.6rem;
    color: #4d4d4d;
    font-family: var(--font-bold);
}

.sim-step2 section .search-package__select {
    position: relative;
}

.sim-step2 section .search-package__select::after {
    content: '';
    position: absolute;
    background-image: url("../images/cart.svg");
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
}

.sim-step2 section .search-package__select .ant-select-selector {
    border-radius: 30px;
    padding-left: 40px;
}

.sim-step2 section .search-package__select .ant-select-selector span {
    color: var(--primary3);
}

.sim-step2 section .search-package__select--option div {
    color: var(--primary3) !important;
}

.sim-step2 section .custom-btn-pack {
    border-radius: 100px;
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .sim-step2 section .enter-money {
        width: calc(100% / 2 - 10px);
    }

    .sim-step2 section .enter-money .customClass {
        line-height: 2.6rem;
    }

    .sim-step2 section .enter-money .customClass span {
        font-size: 2rem;
    }
}

.search-input {
    display: flex;
    align-items: center;
    border: 1px solid #a0b4b6;
    box-sizing: border-box;
    box-shadow: 0px 4px 12px rgba(182, 182, 182, 0.25);
    border-radius: 8px;
    padding: 3px 0;
    color: #7d7d7d;
    margin: 0 auto;
    background-color: #fff;
}

.search-input input {
    border: none;
    font-size: 1.6rem;
    font-weight: 500;
    outline: none;
    padding: 10px 15px;
    width: 100%;
}

.search-input > svg {
    margin-right: 16px;
    cursor: pointer;
}

@media screen and (max-width: 991px) {
    .search-input input {
        font-size: 1.4rem;
        padding: 7px 8px;
    }
}

.notice-pur {
    text-align: left;
}

.notice-pur > div {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.notice-pur > div:last-child {
    margin-bottom: 0;
}

.notice-pur p {
    margin-bottom: 0;
    margin-left: 15px;
}

.notice-pur__numb span {
    color: #0a3977;
    background-color: #eff6ff;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-medium);
    width: 40px;
    height: 40px;
}

.sim-step3 .radio-custom .ant-radio {
    position: absolute;
    left: -9999px;
    overflow: hidden;
}

.sim-step3 .radio-custom .ant-radio-wrapper {
    margin-right: 0px;
}

.sim-step3 .radio-custom .ant-radio-wrapper::after {
    display: block !important;
}

.sim-step3 .radio-custom .logoVNPTPay {
    width: 70%;
    margin-bottom: 5%;
}

.sim-step3 .radio-custom img {
    display: block;
    width: 70%;
}

.sim-step3 .radio-custom span {
    text-align: center !important;
    text-align: -webkit-center !important;
}

.sim-step3 .radio-custom .ant-radio + * {
    display: block;
    padding: 0;
    overflow: hidden;
    border-radius: 8px;
    overflow: hidden;
}

.sim-step3__package-selected {
    margin-bottom: 4rem;
    max-width: 475px;
}

.sim-step3__affCode {
    background: #ffffff;
    border: 1px solid #d0dddd;
    border-radius: 4px;
    padding: 3px 7px;
    width: 30%;
    font-size: inherit;
}

.sim-step3__affCode strong {
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    /* identical to box height, or 167% */
    display: flex;
    align-items: center;
    color: #ff0000;
}

.sim-step3__help-text {
    pointer-events: none;
    color: #a0b4b6;
}

.sim-step3__title {
    font-size: 2rem;
    color: #000;
}

.sim-step3__description {
    margin-left: 22px;
    font-style: italic;
    font-size: 1.5rem;
    color: #000;
}

.sim-step3 .custom-ant-row {
    width: calc(50% - 8px);
}

.sim-step3__type-sim, .sim-step3__type-address {
    background-color: #ffffff;
    position: relative;
    width: 30%;
    height: 160px;
    border-radius: 8px;
    box-shadow: 0px 0px 15px rgba(146, 146, 146, 0.4);
    padding: 15px 45px 15px 15px;
    margin-left: 22px;
}

.sim-step3__type-sim p, .sim-step3__type-address p {
    position: absolute;
    top: 45%;
    width: 80%;
    padding-left: 12px;
}

.sim-step3__type-pay {
    background-color: #ffffff;
    position: relative;
    width: 160px;
    height: 160px;
    border-radius: 8px;
    box-shadow: 0px 0px 15px rgba(146, 146, 146, 0.4);
    padding: 15px 45px 15px 15px;
    margin-right: 5%;
    margin-bottom: 5%;
    margin-left: 22px;
}

.sim-step3__type-pay p {
    width: 100%;
    text-align: center;
    text-align: -webkit-center;
    font-weight: bold;
}

.sim-step3__list-pack strong {
    color: #4d4d4d;
}

.sim-step3__list-pack .active-packge {
    color: #0571bc;
}

.sim-step3__dropdown-pack {
    width: 75%;
    margin: 0 auto;
}

.sim-step3__dropdown-pack p {
    color: #7d7d7d;
    font-size: 1.6rem;
    font-family: SFProMedium;
}

.sim-step3__type-address {
    width: 100%;
    height: 240px !important;
}

.sim-step3__type-address img {
    max-width: 12px;
}

.sim-step3__type-address--info {
    position: absolute;
    top: 30%;
    cursor: pointer;
    pointer-events: none;
}

.sim-step3__type-address p {
    position: static;
    margin: 0;
}

.sim-step3__select {
    flex-wrap: wrap;
    flex-direction: row;
}

.sim-step3__type-recieve span {
    font-family: var(--font-bold);
    font-size: 1.6rem;
    line-height: 26px;
    color: #737373;
}

.sim-step3__delivery-method span {
    font-family: var(--font-bold);
    font-size: 1.6rem;
    line-height: 26px;
}

.sim-step3__delivery-method p {
    margin-left: 36px;
    color: #ff0000;
    font-style: italic;
}

.sim-step3 .active {
    border: 2.8px solid #5aaef9;
}

.sim-step3 .active span {
    color: #0571bc;
}

.sim-step3__text-pay {
    font-size: 1.3rem;
}

.sim-step3__text-pay span {
    color: #40c3ff;
}

.sim-step3__confirm {
    font-family: var(--font-bold);
    margin-top: 20px;
}

.sim-step3__confirm span {
    font-size: 1.6rem;
}

.sim-step3__confirm a {
    color: #40c3ff !important;
}

.sim-step3 .w-custom {
    width: 75%;
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .sim-step3 {
        flex-direction: row;
    }

    .sim-step3__notifi img {
        height: 20px;
    }

    .sim-step3__notifi p {
        font-size: 1.2rem;
    }

    .sim-step3__notifi p span:last-child {
        color: #e7007f;
        font-size: 2rem;
        display: block;
    }

    .sim-step3 .custom-ant-row {
        width: 100%;
    }

    .sim-step3__list-pack {
        overflow-x: auto;
    }

    .sim-step3__list-pack::-webkit-scrollbar {
        display: none;
    }

    .sim-step3__list-pack > div {
        flex: 0 0 35%;
    }

    .sim-step3__list-pack > div:last-child {
        flex: 0 0 50%;
    }

    .sim-step3__dropdown-pack {
        width: 100%;
    }

    .sim-step3__dropdown-pack p {
        color: #7d7d7d;
        font-size: 1.6rem;
        font-family: SFProMedium;
    }

    .sim-step3__type-sim, .sim-step3__type-address {
        width: 120px;
        height: 120px;
    }

    .sim-step3__type-sim:first-child, .sim-step3__type-address:first-child {
        margin-right: 12px;
    }

    .sim-step3__type-sim p, .sim-step3__type-address p {
        padding-left: 0px;
        width: 70%;
        top: 40%;
    }

    .sim-step3__type-pay {
        width: 160px;
        height: 160px;
        margin-left: 22px;
    }

    .sim-step3__type-pay:first-child {
        margin-right: 12px;
    }

    .sim-step3__type-pay p {
        width: 100%;
        text-align: center;
        text-align: -webkit-center;
        font-weight: bold;
    }

    .sim-step3__type-address {
        width: 100%;
        height: 200px !important;
    }

    .sim-step3__type-address:first-child {
        margin-right: 0px;
    }

    .sim-step3__type-address p {
        width: 70%;
    }

    .sim-step3 .w-custom {
        width: 100%;
    }
}

.payment label {
    border: 2px solid #fff;
    width: calc(100% / 5 - 20px);
    background-color: #fff;
    box-shadow: rgba(182, 182, 182, 0.2) 0px 4px 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

.payment label img {
    width: 100%;
}

.payment .active {
    border: 2px solid #3aa4f6;
}

@media (max-width: 1199px) {
    .payment label {
        width: calc(100% / 4 - 20px);
    }
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .payment label {
        width: calc(100% / 2 - 20px);
    }
}

.order-result {
    margin-top: 20px;
}

.order-result h2, .order-result h3 {
    font-family: HelBold;
}

.order-result h2 {
    font-size: 2.5rem;
}

.order-result h5 {
    font-size: 2rem;
}

.order-result h6 {
    font-size: 1.6rem;
}

.order-result__info {
    width: 80%;
    margin-top: 50px;
    padding: 40px 60px;
    box-shadow: 0px 0px 12px #929292;
    border-radius: 8px;
    background-color: #ffffff;
}

.order-result__info--detail {
    border-bottom: 1px solid #e0e0e0;
}

.order-result__info--detail span {
    font-size: 3rem;
    color: var(--primary3);
    font-family: HelBold;
}

.order-result__info--detail p {
    font-size: 1.6rem;
}

.order-result__info--detail .success {
    color: #0cb40c;
}

.order-result__info--detail .error {
    color: red;
}

.order-result__des {
    margin-top: 20px;
}

.order-result__des img {
    width: 20px;
}

.order-result__des h4 {
    font-size: 1.6rem;
}

.order-result__error a {
    color: #40c3ff;
    text-decoration: underline;
}

.order-result__error h4 {
    margin-top: 50px;
}

.order-result__error img {
    width: 20px;
}

.order-result__btn-done {
    background-color: #ffffff;
    color: #3aa4f6;
    border: 1.6px solid #3aa4f6;
    min-width: 15%;
    padding: 15px 20px;
}

.order-result__btn-done:hover {
    color: #ffffff;
    background-color: #3aa4f6;
}

.order-result__btn-backhome {
    min-width: 15%;
    padding: 15px 20px;
}

.order-result__btn-backhome a {
    color: #ffffff;
}

.order-result__btn-backhome:hover {
    background-color: #ffffff;
    box-shadow: none;
    border: 1.6px solid #3aa4f6;
}

.order-result__btn-backhome:hover a {
    color: #3aa4f6;
    text-decoration: none;
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .order-result__info {
        width: 100%;
        padding: 20px;
    }

    .order-result__btn-backhome, .order-result__btn-done {
        min-width: calc(50% - 15px);
    }
}

.step-order {
    position: relative;
    z-index: 1;
    width: 50%;
}

.step-order p {
    margin: auto;
    text-align: center;
    display: block;
    border-radius: 50%;
    background-color: #cbdffa;
    color: #fff;
    width: 20px;
    height: 20px;
    line-height: 20px;
}

.step-order p img {
    width: 20px;
    height: 20px;
}

.step-order .active {
    background-color: #1dde7d;
}

.step-order::after {
    content: '';
    display: block;
    position: absolute;
    height: 1px;
    width: 100%;
    top: 10px;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .step-order {
        width: 100%;
    }
}

.sim-step1__note {
    color: #3aa4f6;
}

.pack-with-sim__sim-type {
    display: flex;
    padding: 0 15px;
}

.pack-with-sim__sim-type > div {
    width: auto;
}

.pack-with-sim__sim-type > div:nth-child(odd) {
    margin-right: 1%;
}

.pack-with-sim__sim-type > div .input-radio__title {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    /* identical to box height, or 162% */
    color: #0071bc;
}

.pack-with-sim__tab {
    display: flex;
}

.pack-with-sim__tab p {
    align-self: center;
    padding: 10px 0 10px 0;
    margin: 0 10px;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    color: #4d4d4d;
    cursor: pointer;
}

.pack-with-sim__tab p:hover {
    color: #196fb0;
}

.pack-with-sim__tab .active {
    color: #196fb0;
}

.qrcode-payment__body {
    display: flex;
}

@media screen and (max-width: 1200px) {
    .qrcode-payment__body {
        display: flex;
        flex-direction: column-reverse;
    }
}

.qrcode-payment__alert {
    margin-top: 10px;
    color: red;
    line-height: 10px;
}

.qrcode-payment__alert p {
    line-height: 30px;
    font-size: 15px;
    text-align: center;
}

.qrcode-payment .scan-qrcode {
    height: 16px;
}

.qrcode-payment__instruct {
    line-height: 40px;
    font-size: 1.6rem;
}

.qrcode-payment__detail {
    padding: 16px 5% 40px;
    background: #f8f8f8;
    box-shadow: 0px 0px 30px rgba(146, 146, 146, 0.4);
    border-radius: 8px;
}

.qrcode-payment__detail h3 {
    font-family: var(--font-bold);
    font-size: 2rem;
    line-height: 26px;
    text-align: center;
}

.qrcode-payment__detail .qr_panel {
    margin-bottom: 30px;
    margin-top: 30px;
    --s: 50px;
    /* the size on the corner */
    --t: 5px;
    /* the thickness of the border */
    --g: 20px;
    /* the gap between the border and image */
    padding: calc(var(--g) + var(--t));
    outline: var(--t) solid #0095d9;
    /* the color here */
    outline-offset: calc(-1*var(--t));
    mask: conic-gradient(at var(--s) var(--s), #0000 75%, #000 0) 0 0/calc(100% - var(--s)) calc(100% - var(--s)), linear-gradient(#000 0 0) content-box;
}

.info-sim-package {
    background-color: #3aa4f6;
    border-radius: 8px;
    padding: 14px 36px 0px 36px;
    margin-bottom: 150px;
    min-height: 218px;
    color: #ffffff;
    position: relative;
    display: flex;
    font-style: normal;
    flex-direction: column;
}

.info-sim-package__sim-action {
    align-items: center;
    display: flex;
    flex-direction: column;
    margin: 0 auto 24px;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
}

.info-sim-package__sim-action .sim-action__number {
    border-radius: 50px;
    padding: 2px 32px;
    background: #ffffff;
    color: #3aa4f6;
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    margin: 12px auto 10px;
}

.info-sim-package__sim-action .sim-action__btn {
    cursor: pointer;
}

.info-sim-package__sim-action .sim-action__btn:hover {
    text-decoration: underline;
}

.info-sim-package .sim-action__random-number {
    width: 10ch;
    overflow: hidden;
}

.info-sim-package .sim-action__random-number div {
    animation: randomGen 2s steps(30) infinite;
}

@keyframes randomGen {
    100% {
        transform: translateX(-3000%);
    }
}

.info-sim-package__sim-detail {
    background: #ffffff;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 20px 24px;
    position: absolute;
    width: calc(100% - 66px);
    top: calc(50% + 28px);
}

.info-sim-package__sim-detail .sim-detail-header {
    display: flex;
    flex-direction: column;
}

.info-sim-package__sim-detail .sim-detail-header__title {
    font-weight: 700;
    font-size: 30px;
    line-height: 44px;
    text-transform: uppercase;
    color: #3aa4f6;
}

.info-sim-package__sim-detail .sim-detail-header__price {
    font-weight: 400;
    font-size: 20px;
    line-height: 40px;
    color: #000000;
}

.info-sim-package__sim-detail .sim-detail-header__price span {
    font-size: 36px;
    font-weight: 500;
}

@media screen and (min-width: 484px) {
    .info-sim-package__sim-detail .sim-detail-header {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media screen and (max-width: 484px) {
    .info-sim-package__sim-detail {
        top: 70%;
    }
}

.info-sim-package__sim-detail .sim-detail-body {
    color: #5c5c5c;
    font-weight: 400;
    font-size: 16px;
    line-height: 35px;
}

@media screen and (max-width: 991px) {
    .info-sim-package {
        margin-bottom: 190px;
    }
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .info-sim-package {
        margin-bottom: 190px;
    }
}

.sim .time-order {
    background-color: #eaeaea;
    border-radius: 4px;
    padding: 4px 15px;
}

.sim .time-order p {
    font-size: 1.6rem;
}

.sim .custom-btn-submit {
    width: 25%;
    min-width: 350px;
}

@media screen and (max-width: 1199px) and (min-width: 768px) {
    .sim .custom-btn-submit {
        width: 45%;
        min-width: auto;
    }
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .sim .time-order img {
        height: 20px;
    }

    .sim .time-order p {
        font-size: 1.2rem;
    }

    .sim .time-order p span:last-child {
        color: #e7007f;
        font-size: 2rem;
        display: block;
    }

    .sim .custom-btn-submit {
        width: 100%;
        min-width: auto;
    }
}

.sim-with-pack__title {
    display: flex;
    align-items: center;
}

.sim-with-pack__title h2 {
    font-size: 3rem;
    color: #0095d9;
    font-family: var(--font-medium);
}

.sim-with-pack__title img {
    width: 26px;
    margin-right: 10px;
}

.sim-with-pack__sub-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 0.6px solid #a0b4b6;
    padding-bottom: 10px;
    margin-top: 10px;
}

.sim-with-pack__sub-title--left {
    width: 82%;
}

.sim-with-pack__sub-title--left a {
    color: #4d4d4d;
    font-family: var(--font-medium);
    font-size: 1.6rem;
    margin-right: 3%;
    cursor: pointer;
}

.sim-with-pack__sub-title--left a:hover {
    color: #0071bc;
}

.sim-with-pack__sub-title--left a:hover {
    text-decoration: underline;
}

.sim-with-pack__sub-title--left .active a {
    color: #0071bc;
}

.sim-with-pack__filter {
    margin: 30px auto;
    text-align: center;
    width: 40%;
}

.sim-with-pack__filter h4 {
    font-size: 2rem;
    font-family: var(--font-medium);
    color: #163567;
    margin-bottom: 15px;
}

.sim-with-pack__filter--input input {
    border: 1px solid #A0B4B6;
    box-shadow: 0px 4px 12px rgba(182, 182, 182, 0.25);
    border-radius: 8px;
    padding: 13px 30px;
}

.sim-with-pack__filter button {
    margin: 30px auto;
    width: 50%;
    padding: 12px 0;
}

.sim-with-pack__select-filter {
    width: 18%;
}

.sim-with-pack__select-filter button {
    background: #FCFCFC;
    border: 1px solid #B4D9F5;
    border-radius: 30px;
    color: #0095D9;
}

.sim-with-pack__type-sim {
    display: flex;
    margin-top: 20px;
}

.sim-with-pack__type-sim .ant-radio-group {
    display: flex;
    width: 20%;
}

.sim-with-pack__type-sim .input-radio__title {
    color: #0071BC;
    font-family: var(--font-bold);
    font-size: 1.6rem;
}

@media screen and (max-width: 991px) {
    .sim-with-pack__type-sim .ant-radio-group {
        display: flex;
        width: 80%;
    }

    .sim-with-pack__sub-title-wrapper {
        width: 100%;
        overflow-x: auto;
        margin-top: 10px;
    }

    .sim-with-pack__sub-title {
        width: 100%;
    }

    .sim-with-pack__sub-title--left {
        width: 100%;
    }

    .sim-with-pack__sub-title--left a {
        font-size: 1.4rem;
    }

    .sim-with-pack__select-filter {
        width: 45%;
    }

    .sim-with-pack__select-filter button {
        font-size: 1.4rem;
        padding: 4px 15px;
    }

    .sim-with-pack__filter {
        width: 60%;
    }

    .sim-with-pack__filter button {
        margin: 20px auto;
        width: 40%;
    }
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .sim-with-pack__filter {
        width: 100%;
    }

    .sim-with-pack__title h2 {
        font-size: 2.4rem;
    }

    .sim-with-pack__sub-title {
        width: 190%;
    }
}

.recharge-info {
    background: #f8f8f8;
    box-shadow: 0px 0px 30px rgba(146, 146, 146, 0.4);
    border-radius: 8px;
}

.recharge-info h3 {
    font-family: var(--font-bold);
    font-size: 2rem;
    line-height: 26px;
    color: #fff;
    text-align: center;
    margin-bottom: 0;
    background: #3aa4f6;
    padding: 13px 0;
    border-radius: 8px 8px 0px 0px;
}

.recharge-info__body {
    padding: 16px 5% 40px;
}

.recharge-info__button {
    margin: 20px 0 30px;
}

.recharge-info__button .custom-btn {
    padding: 12px 15%;
    display: block;
    margin: 0 auto;
    width: 75%;
}

.recharge-info__des {
    font-size: 1.3rem;
    color: #8b8b8b;
}

.recharge-info__content {
    background-color: #fff;
    border-radius: 8px;
    padding: 17px 24px 14px;
    margin-bottom: 16px;
}

.recharge-info__content--sum {
    font-size: 2.4rem;
    color: #196fb0;
    font-family: var(--font-bold);
}

.recharge-info__content p {
    font-size: 1.4rem;
    color: var(--primary3);
}

.recharge-info__item {
    font-size: 1.6rem;
    color: #5c5c5c;
}

.recharge-info__item .w-30 {
    width: 30%;
}

.recharge-info__item .w-70 {
    width: 70%;
}

.recharge-info__item .ant-input-affix-wrapper {
    width: 60%;
    height: 24px;
    border-radius: 4px;
    margin: auto;
}

.recharge-info__item span {
    line-height: 40px;
}

.recharge-info__item span:last-child {
    font-family: var(--font-bold);
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .recharge-info__item {
        font-size: 1.2rem;
    }

    .recharge-info__item .ant-input-affix-wrapper input::placeholder {
        font-size: 0.9rem;
    }
}

.recharge {
    width: 100%;
    background: #fff;
    box-shadow: 0px 4px 30px rgba(182, 182, 182, 0.2);
    border-radius: 8px;
    margin-bottom: 80px;
    padding-bottom: 80px;
}

.recharge .custom-width-1, .recharge .custom-width-3 {
    width: 50%;
}

.recharge .custom-width-2 {
    width: 75%;
}

.recharge__header {
    border-bottom: 1px solid #DADADA;
    margin-bottom: 65px;
}

.recharge__header p {
    font-size: 2.4rem;
    font-family: var(--font-bold);
    color: #A0B4B6;
    cursor: pointer;
}

.recharge__header .active {
    color: #0095D9;
    border-bottom: 3px solid #40C3FF;
}

.recharge__content h4 {
    color: #000000;
    font-size: 2rem;
    font-family: var(--font-bold);
}

.recharge__content p {
    font-size: 1.6rem;
    color: #4D4D4D;
}

.recharge__content--money {
    margin-bottom: 60px;
    width: calc(100% / 4 - 20px);
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(146, 146, 146, 0.25);
}

.recharge__content--money > span {
    bottom: -50%;
    font-size: 1.6rem;
    color: #7C808B;
    left: 20px;
}

.recharge__content--money .customClass {
    padding: 25px;
}

.recharge__content--money .customClass .ant-radio {
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
}

.recharge__content .active strong {
    color: #E7007F;
}

.recharge .custom-btn {
    width: 25%;
}

@media screen and (max-width: 991px) {
    .recharge .custom-width-3 {
        width: 100%;
    }

    .recharge .custom-width-1 {
        width: 75%;
    }

    .recharge__content--money {
        margin-bottom: 50px;
        width: calc(100% / 3 - 20px);
    }

    .recharge__content--money > span {
        font-size: 1.4rem;
    }

    .recharge .custom-btn {
        width: 40%;
    }
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .recharge .custom-width-1, .recharge .custom-width-2 {
        width: 90%;
    }

    .recharge .custom-width-3 {
        width: 100%;
    }

    .recharge__header {
        margin-bottom: 35px;
    }

    .recharge__header p {
        font-size: 1.8rem;
    }

    .recharge__content--money {
        margin-bottom: 40px;
        width: calc(100% / 2 - 20px);
    }

    .recharge__content--money > span {
        font-size: 1rem;
    }

    .recharge__content--money .customClass {
        padding: 20px 10px;
    }

    .recharge .custom-btn {
        width: 90%;
    }
}

.checkorder-notfound__content {
    width: 68%;
    max-width: 98%;
    margin: 40px auto;
    padding: 46px 20px;
    background-color: #fff;
    box-shadow: 0px 4px 12px rgba(182, 182, 182, 0.2);
    border-radius: 15px;
}

.checkorder-notfound__content h3 {
    font-family: var(--font-bold);
    font-size: 2rem;
    text-align: center;
    color: #000000;
    margin: 0 auto 12px;
    max-width: 70%;
}

.checkorder-notfound__content p {
    font-size: 1.6rem;
    text-align: center;
    color: #5c5c5c;
    max-width: 70%;
    margin: 0 auto 24px;
}

.checkorder-notfound__content--icon {
    text-align: center;
    margin-bottom: 30px;
}

.checkorder-notfound__btn {
    margin-bottom: 10%;
}

.checkorder-notfound__btn--close {
    text-align: center;
    text-transform: uppercase;
    font-size: 1.5rem;
    border-radius: 100px;
    border: 1.5px solid #3aa4f6;
    background-color: #fff;
    color: #3aa4f6;
    font-family: var(--font-bold);
}

.checkorder-notfound__btn button {
    margin-right: 15px;
    margin-left: 15px;
    width: 180px;
    min-height: 50px;
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .checkorder-notfound__content {
        width: 98%;
    }

    .checkorder-notfound__content h3 {
        max-width: 90%;
    }

    .checkorder-notfound__content p {
        max-width: 90%;
    }

    .checkorder-notfound__btn button {
        min-height: 40px;
        width: 150px;
    }
}

.check-order {
    min-height: 60%;
}

.check-order__row {
    border-top: 20px solid #f4f7fb;
    border-bottom: 20px solid #f4f7fb;
}

.check-order__table {
    width: 100%;
}

.check-order__table thead {
    background-color: #fff;
    box-shadow: 0px 4px 12px rgba(182, 182, 182, 0.25);
}

.check-order__table thead th {
    text-align: center;
    padding: 25px 8px;
    color: #828282;
    font-size: 1.6rem;
}

.check-order__table tbody {
    background-color: #fff;
    box-shadow: 0px 4px 12px rgba(182, 182, 182, 0.25);
    border-top: 24px solid #f4f7fb;
}

.check-order__table tbody tr:last-child {
    border-top: 1px solid #a0b4b6;
}

.check-order__table tbody td {
    text-align: center;
    padding: 15px 10px;
    color: #5c5c5c;
    font-size: 1.6rem;
    font-family: var(--font-bold);
    line-height: 40px;
}

.check-order__table tbody td strong {
    color: #196fb0;
    font-size: 2.4rem;
}

.check-order__table tbody td .success {
    color: #11ca71;
}

.check-order__table tbody td .failure {
    color: #FE5050;
}

.check-order__form {
    width: 100%;
    display: block;
    margin-top: 10%;
}

.check-order__form--input {
    width: 40%;
}

.check-order__form--desc {
    width: 200px;
    color: #163567;
    font-family: var(--font-bold);
    font-size: 2rem;
    margin-right: 20px;
    margin-bottom: 30px;
    text-align: right;
}

.check-order__form button {
    margin: 4% auto 4%;
    width: 25%;
    min-height: 50px;
}

.check-order__btn a {
    text-decoration: none;
    cursor: pointer;
}

.check-order__btn--close {
    text-align: center;
    text-transform: uppercase;
    font-size: 1.5rem;
    border-radius: 100px;
    border: 1.5px solid #3aa4f6;
    background-color: #fff;
    color: #3aa4f6;
    font-family: var(--font-bold);
}

.check-order__btn button {
    display: inline-block;
    margin-right: 15px;
    margin-left: 15px;
    width: calc(25% - 30px);
    min-height: 50px;
}

@media screen and (max-width: 991px) {
    .check-order__table thead {
        display: none;
    }

    .check-order__table--mobile .line {
        border-bottom: 0.8px solid #F0F2F3;
    }

    .check-order__table--mobile td {
        display: table-cell;
        font-family: var(--font-family);
    }

    .check-order__table--mobile td h4 {
        text-align: left;
        font-size: 2rem;
    }

    .check-order__table--mobile td p {
        color: #828282;
        text-align: left;
        margin-bottom: 0;
    }

    .check-order__table--mobile td p span {
        color: #828282;
        float: right;
        font-family: var(--font-bold);
    }

    .check-order__btn button {
        width: calc(40% - 30px);
    }
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .check-order__form {
        width: 100%;
    }

    .check-order__form--input {
        width: 100%;
        height: 100%;
    }

    .check-order__form--desc {
        display: none;
    }

    .check-order__form button {
        margin: 60px auto 60px;
        width: 100%;
        height: 100%;
    }

    .check-order__table thead {
        display: none;
    }

    .check-order__table--mobile .line {
        border-bottom: 0.8px solid #F0F2F3;
    }

    .check-order__table--mobile td {
        display: table-cell;
        font-family: var(--font-family);
    }

    .check-order__table--mobile td h4 {
        text-align: left;
        font-size: 2rem;
    }

    .check-order__table--mobile td p {
        color: #828282;
        text-align: left;
        margin-bottom: 0;
    }

    .check-order__table--mobile td p span {
        color: #828282;
        float: right;
        font-family: var(--font-bold);
    }

    .check-order__btn button {
        margin-right: 8px;
        margin-left: 8px;
        width: calc(50% - 16px);
    }
}

.support > img {
    max-width: 100%;
    height: auto;
    width: 100%;
    min-height: 110px;
}

.support__title {
    color: #0095d9;
    text-align: center;
    font-size: 3.2rem;
    margin-top: 30px;
    font-family: var(--font-bold);
}

.support__item {
    padding: 3.5%;
}

.support__item--box {
    min-height: 300px;
    display: block;
    background-color: #fff;
    border-radius: 10px;
    padding-top: 20px;
    padding-left: 30px;
    position: relative;
    margin-bottom: 20px;
    height: 100%;
    box-shadow: 0px 4px 12px rgba(182, 182, 182, 0.2);
}

.support__item--box:hover .support__box--icon img {
    animation: ringring 1s linear;
}

.support__item--box h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #163567;
    line-height: 24px;
    font-size: 1.8rem;
    font-family: var(--font-bold);
}

.support__item--box a {
    color: #fff;
}

.support__item--box a button {
    text-transform: initial;
}

.support__item--box a:hover {
    color: #fff;
}

.support__item--livechat img {
    width: 45px;
    height: 45px;
    background: #3aa4f6;
    border-radius: 50%;
    display: inline-block;
    padding: 10px;
    justify-items: center;
    align-items: center;
}

.support__item--livechat span {
    padding: 8px 15px 8px 10px;
    color: #3aa4f6;
    font-family: var(--font-bold);
    font-size: 1.7rem;
    height: 33px;
}

.support__item--livechat a {
    padding: 7px 10px 7px 0;
    margin-right: 25px;
    background: #dff3fe;
    border-radius: 30px;
}

.support__box {
    padding-top: 5%;
}

.support__box--icon {
    position: absolute;
    background-color: #fff;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    align-items: center;
    justify-content: center;
    display: flex;
    box-shadow: 0px 4px 12px rgba(182, 182, 182, 0.2);
}

.support__box button {
    text-transform: uppercase;
}

@media screen and (max-width: 991px) {
    .support__item {
        padding: 5px;
    }

    .support__item--livechat span {
        padding: 8px 10px;
    }

    .support__item--livechat a {
        margin-right: 5px;
    }
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .support {
        padding-top: 4px;
    }

    .support__title {
        padding-top: 5px;
        font-size: 2.4rem;
        margin-bottom: 30px;
    }

    .support__item {
        display: flex;
        padding: 0;
    }

    .support__item--box {
        min-height: 300px;
    }

    .support__item--livechat a {
        margin-right: 20px;
    }

    .support__item--livechat span {
        padding: 8px 2px;
    }

    .support__box {
        margin-bottom: 60px;
        position: relative;
        max-width: 100%;
    }
}

.cart-detail tr {
    vertical-align: text-top;
}

.cart-detail tr td {
    padding-top: 28px;
    padding-bottom: 25px;
    text-align: center;
}

.cart-detail__price p {
    font-family: var(--font-bold);
    font-size: 1.6rem;
    color: #5c5c5c;
    margin-bottom: 15px;
}

.cart-detail__totalprice {
    font-family: var(--font-bold);
    font-size: 1.6rem;
    color: #5c5c5c;
    margin-bottom: 15px;
}

.cart-detail__totalprice .priceShip {
    padding-top: 35px;
}

.cart-detail__checkbox .check span {
    min-height: 26px;
    min-width: 26px;
    border-radius: 50%;
}

.cart-detail__product span {
    font-size: 2rem;
    font-family: var(--font-bold);
    line-height: 40px;
}

.cart-detail__product p {
    font-size: 1.5rem;
    color: #5c5c5c;
}

.cart-detail__product .shipcontent {
    font-family: var(--font-bold);
    font-size: 1.6rem;
    color: #5c5c5c;
}

.cart-detail__action {
    font-size: 1.6rem;
    line-height: 40px;
    color: #40c3ff;
}

.cart__checkbox {
    width: 8%;
}

.cart__product {
    width: 30%;
}

.cart__price {
    width: 20%;
}

.cart__totalprice {
    width: 20%;
}

.cart__action {
    width: 22%;
}

.cart table {
    border-radius: 6px;
}

.cart table thead {
    background-color: #fff;
}

.cart table thead tr th {
    font-size: 1.8rem;
    color: #828282;
    padding-top: 28px;
    padding-bottom: 25px;
    text-align: center;
}

.cart table tbody {
    background-color: #fff;
    border-top: 25px solid #eaeff7;
}

.cart__total {
    background: #ffffff;
    border-top: 25px solid #eaeff7;
    padding: 25px 0px;
    margin: auto;
}

.cart__total--checkall {
    width: 35%;
    text-align: center;
    margin: auto;
}

.cart__total--checkall-checkbox span {
    min-height: 26px;
    min-width: 26px;
    border-radius: 50%;
    text-align: center;
}

.cart__total--checkall-desc {
    font-family: var(--font-bold);
    font-size: 1.8rem;
    color: #3aa4f6;
    padding-left: 15px;
}

.cart__total--item {
    padding: 10px 5%;
    width: 40%;
    border-left: 1px solid #d0dcdd;
    border-right: 1px solid #d0dcdd;
}

.cart__total--item-sale {
    justify-content: space-between;
    align-items: center;
    display: flex;
}

.cart__total--item-sale input {
    height: 24px;
    background: #ffffff;
    border: 1px solid #d0dddd;
    border-radius: 4px;
    padding-left: 28px;
    font-size: 1.2rem;
    color: #333333;
    width: 100%;
}

.cart__total--item-sale img {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
}

.cart__total--item-sale p {
    font-family: var(--font-bold);
    color: #5c5c5c;
    font-size: 1.5rem;
    margin-bottom: 0;
    white-space: nowrap;
    width: 30%;
}

.cart__total--item-sale span {
    color: #c1c1c1;
    font-family: var(--font-medium);
}

.cart__total--item-sale span:hover {
    text-decoration: underline;
}

.cart__total--pay {
    width: 23%;
    padding-left: 2%;
}

.cart__total--pay-money {
    font-family: var(--font-bold);
    font-size: 2.4rem;
    color: #196fb0;
}

.cart__total--pay-note {
    font-size: 1.4rem;
    color: #0095d9;
}

.cart__total--pay-status {
    font-size: 1.5rem;
    color: #5c5c5c;
}

.cart > button {
    margin: 30px auto;
}

@media screen and (max-width: 1199px) and (min-width: 768px) {
    .cart__total--item {
        padding: 10px 1%;
    }
}

@media screen and (max-width: 991px) {
    .cart tbody tr .cart__onlymobile--desc {
        position: absolute;
        padding-left: 15px;
        padding-top: 5px;
        font-size: 1.6rem;
        color: #828282;
    }

    .cart tbody tr .cart__onlymobile--price {
        display: flex;
        color: #0095d9;
        font-family: var(--font-bold);
        font-size: 1.6rem;
    }

    .cart__total--item {
        padding: 10px 4%;
        width: 100%;
        border-left: none;
        border-right: none;
        border-bottom: 1px solid #d0dcdd;
    }

    .cart__total--item-sale {
        padding-bottom: 15px;
    }

    .cart__total--checkall {
        position: absolute;
        padding-top: 17%;
    }

    .cart__total--checkall span {
        font-size: 1.6rem;
    }

    .cart__total--pay {
        width: 50%;
        margin-left: 40%;
        margin-top: 18px;
    }

    .cart__product {
        width: 70%;
    }
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .cart__input-wrapper {
        width: 40%;
    }

    .cart__total--item {
        width: 100%;
        border-left: none;
        border-right: none;
        border-bottom: 1px solid #d0dcdd;
        padding-bottom: 10px;
    }

    .cart__total--checkall {
        position: absolute;
        padding-top: 33%;
    }

    .cart__total--checkall span {
        font-size: 1.6rem;
    }

    .cart__total--pay {
        width: 50%;
        margin-left: 45%;
        margin-top: 15px;
    }

    .cart table tbody {
        border-top: none;
        border-bottom: 10px solid #eaeff7;
        display: block;
    }

    .cart table tbody tr {
        border-bottom: 1px solid #dadada;
    }

    .cart table tbody tr .cart__onlymobile--desc {
        display: flex;
        position: absolute;
        font-size: 1.4rem;
        color: #828282;
        padding-top: 10px;
        padding-left: 23px;
        font-family: var(--font-medium);
    }

    .cart table tbody tr .cart__checkbox {
        width: 20%;
    }

    .cart table tbody tr .cart__product {
        width: 60%;
    }

    .cart table tbody tr .cart__product span {
        font-size: 1.6rem;
    }

    .cart table tbody tr .cart__product p {
        font-size: 1.4rem;
    }

    .cart table tbody tr .cart__product .cart__onlymobile--price {
        display: flex;
        color: #0095d9;
        font-family: var(--font-bold);
        font-size: 1.6rem;
    }

    .cart table tbody tr .cart__action {
        width: 20%;
    }
}

.introduce h2 {
    font-size: 3rem;
    font-family: SFProBold;
    color: #0064BF;
}

.introduce__about, .introduce__view, .introduce__news {
    background: #FFFFFF;
    box-shadow: 0px 4px 30px rgba(182, 182, 182, 0.2);
    border-radius: 8px;
    margin-bottom: 40px;
}

.introduce__about p, .introduce__view p, .introduce__news p {
    color: #232735;
    font-size: 1.6rem;
    line-height: 150%;
}

.introduce__about {
    padding-top: 50px;
    padding-bottom: 50px;
}

.introduce__about p {
    padding: 0 15%;
}

.introduce__about--slide {
    padding: 0 10%;
}

.introduce__about--slide img {
    width: 100%;
}

.introduce__about--text-slide {
    color: var(--neutral1) !important;
    font-size: 1rem !important;
}

.introduce__about strong {
    font-size: 1.6rem;
    color: #7C808B;
}

.introduce__view div {
    padding: 50px !important;
}

.introduce__view img {
    width: 80%;
}

.introduce__view p {
    padding-right: 15%;
}

.introduce__value--list > div {
    width: 20%;
}

.introduce__value--list > div img {
    width: 100%;
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .introduce__about--slide, .introduce__about p {
        padding: 0 5%;
    }

    .introduce__value--list > div {
        width: 50%;
    }

    .introduce__view div {
        padding: 30px 10px !important;
    }

    .introduce__view img {
        width: 100%;
    }

    .introduce__view p {
        padding-right: 0;
    }
}

.news {
    padding-top: 20px;
    background-color: #ffffff;
}

.news .pagination-wrapper {
    background-color: #f4f7fb;
}

.news__menu {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 15px;
}

.news__menu .active {
    background: #f9d448;
    text-decoration: none;
}

.news__menu a {
    margin: 25px 10px 0;
    font-size: 1.6rem;
    color: #4d4d4d;
    padding: 6px 15px;
    border-radius: 30px;
    font-family: var(--font-medium);
    text-decoration: none;
}

.news__menu a:hover {
    background: #f9d448;
}

.news h2 {
    width: 100%;
    color: #0064bf;
    font-family: var(--font-bold);
    position: relative;
    font-size: 3rem;
    text-align: center;
}

.news__search--not-found {
    background-color: rgba(209, 231, 255, 0.3);
    font-size: 1.6rem;
    border-radius: 6px;
}

.news__search--not-found strong {
    color: #0095D9;
}

.news h3 {
    font-size: 2rem;
    color: #0095D9;
    font-family: var(--font-bold);
}

.news h2::before {
    content: "";
    position: absolute;
    background: #a0b4b6;
    box-shadow: 0px 4px 12px rgba(57, 57, 57, 0.2);
    border-radius: 8px;
    width: 180px;
    height: 2px;
    transform: translateX(-50%);
    left: 50%;
    bottom: -15px;
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .news {
        padding-top: 20px;
    }

    .news__menu a {
        font-size: 1.4rem;
        padding: 6px 10px;
    }

    .news h2 {
        font-size: 2.1rem;
    }
}

.store {
    margin-top: 8px;
}

.store__map-wrapper {
    display: flex;
}

.store__map {
    background-color: #fff;
}

.store__map hr {
    border-top: 1px solid #ccc;
}

.store__map--left {
    margin-top: 54px;
    width: 30%;
}

.store__map--right {
    width: 67%;
    margin-left: 3%;
}

.store__btn-search {
    margin-top: 30px;
    text-align: center;
    width: 100%;
    text-transform: uppercase;
    font-size: 1.6rem;
    border-radius: 100px;
    padding: 8px 0;
    box-shadow: 0px 10px 20px rgba(177, 186, 201, 0.15);
    color: #3aa4f8;
    font-family: var(--font-medium);
    background-color: #fff;
    border: 1px solid #3aa4f8;
    cursor: pointer;
}

.store__search .input-text input {
    padding-top: 12px;
    padding-bottom: 12px;
}

.store__chanel {
    padding-left: 4px;
}

.store__chanel h2 {
    text-align: center;
    font-weight: 700;
    font-size: 3.2rem;
    line-height: 38px;
    color: #0095d9;
    margin: 39px 0 85px;
}

.store__chanel--faqs {
    margin: auto;
    width: 96%;
}

.store__chanel--faqs > div {
    margin-bottom: 30px;
}

.store__chanel--faqs .faqs__item {
    background: #ffffff;
    box-shadow: 0px 2px 18px rgba(182, 182, 182, 0.2);
    border-radius: 8px;
    padding: 50px 25px 45px;
    cursor: pointer;
}

.store__chanel--faqs .faqs__item:hover {
    box-shadow: 0 5px 12px 1px #afafaf;
}

.store__chanel--faqs .faqs__item img {
    width: 123px;
    height: 123px;
    display: block;
    margin: auto;
}

.store__chanel--faqs .faqs__item h4 {
    font-family: var(--font-bold);
    font-size: 1.8rem;
    color: #163567;
    margin-top: 25px;
    text-align: center;
}

@media screen and (max-width: 991px) {
    .store__chanel--faqs {
        width: 100%;
    }

    .store__chanel--faqs > div {
        padding-left: 0;
    }
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .store__map-wrapper {
        flex-direction: column;
    }

    .store__map--left {
        width: 100%;
    }

    .store__map--right {
        width: 100%;
        margin-left: 0;
    }

    .store__chanel--faqs {
        width: 100%;
    }

    .store__chanel--faqs > div {
        margin-bottom: 15px;
        padding: 0 5px;
    }

    .store__chanel--faqs .faqs__item {
        padding: 30px 15px 30px;
    }

    .store__chanel--faqs .faqs__item img {
        width: 100px;
        height: 100px;
    }

    .store__chanel--faqs .faqs__item h4 {
        font-size: 1.4rem;
        width: 140px;
        display: block;
    }
}

.profile {
    min-height: 70vh;
    background: #ffffff;
    padding: 40px 50px;
    box-shadow: 0px 0px 30px rgba(146, 146, 146, 0.4);
    border-radius: 8px;
}

.profile__avatar {
    width: 124px;
    height: 124px;
    border-radius: 50%;
}

.profile__title--mobile {
    font-size: 2rem;
    font-family: var(--font-bold);
    border-bottom: 1px solid #DADADA;
    padding-bottom: 15px;
}

.profile__header {
    border-bottom: 1px solid #DADADA;
}

.profile__header h3 {
    font-size: 2rem;
    font-family: var(--font-bold);
}

.profile__header p {
    color: #828282;
}

.profile__header--order {
    background: #E8F5FF;
    padding: 0 20px 0 0;
    border-radius: 20px;
    margin: 10px 0;
}

.profile__header--order:hover {
    text-decoration: none;
}

.profile__header--order img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #3aa4f6;
    padding: 10px;
}

.profile__header--order span {
    color: #3AA4F6;
    text-transform: uppercase;
    font-family: var(--font-medium);
    font-size: 1.4rem;
    padding-left: 10px;
    line-height: 2.6rem;
}

.profile__content > p {
    font-size: 1.6rem;
}

.profile__content .custom-width-1 {
    width: 30%;
}

.profile__content .custom-width-2 {
    width: calc(50% - 8px);
}

.profile__content .custom-width-3 {
    width: 70%;
}

.profile__content .custom-width-4 {
    width: 100%;
}

.profile__content .custom-btn {
    width: 25%;
}

.profile__content .custom-date-picker {
    height: 48px;
    border-radius: 6px;
}

.profile__content .custom-date-picker input {
    font-size: 1.6rem;
}

.profile__content .custom-date-picker input::placeholder {
    color: #7c808b;
    opacity: 1;
}

@media screen and (max-width: 991px) {
    .profile {
        padding: 20px 10px;
    }

    .profile__content .custom-btn {
        width: 50%;
    }
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .profile {
        padding: 20px 10px 0;
    }

    .profile__content .custom-width-2, .profile__content .custom-width-3, .profile__content .custom-width-1 {
        width: 100%;
    }

    .profile__content .custom-btn {
        width: 100%;
    }

    .profile__header--order {
        margin-bottom: 15px;
        padding: 5px 20px 5px 0;
    }
}

.pack-detail {
    margin-top: 30px;
}

.pack-detail section {
    background: #FFFFFF;
    box-shadow: 0px 0px 10px rgba(146, 146, 146, 0.25);
    border-radius: 8px;
    padding: 30px 5%;
}

.pack-detail__img {
    width: 25%;
    margin-right: 5%;
}

.pack-detail__img > img {
    width: 100%;
    max-height: 209px;
}

.pack-detail__content {
    display: flex;
    height: 100%;
}

.pack-detail__content h1 {
    font-family: var(--font-bold);
    color: #196fb0;
    font-size: 3rem;
    margin-bottom: 10px;
}

.pack-detail__info {
    width: 70%;
}

.pack-detail__info--time {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 0;
    line-height: 24px;
    font-family: HelMedium;
}

.pack-detail h5 {
    color: #163567;
    font-family: var(--font-medium);
    margin-bottom: 20px;
    font-size: 2.4rem;
}

.pack-detail__deal {
    display: flex;
    padding: 5px 10px;
    background: linear-gradient(270deg, #1a73e9 0%, #6c92f4 100%);
    color: #fff;
    margin-bottom: 15px;
}

.pack-detail__deal h4 {
    color: #fff;
    margin-left: 10px;
    font-family: var(--font-bold);
    font-size: 2.2rem;
}

.pack-detail__count-down {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    margin-left: auto;
}

.pack-detail__count-down span {
    color: #FFFFFF;
    margin-right: 15px;
}

.pack-detail__count-down p {
    background: #e7007f;
    padding: 2px;
    border-radius: 2px;
    margin-right: 5px;
    width: 22px;
    height: 22px;
    text-align: center;
    margin-bottom: 0;
}

.pack-detail__price {
    border-bottom: solid 1px #dadada;
    margin-bottom: 20px;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
}

.pack-detail__price span {
    font-family: var(--font-medium);
    font-size: 2.2rem;
}

.pack-detail__price span:first-child {
    color: #e7007f;
    margin-right: 20px;
}

.pack-detail__price span:nth-child(2) {
    text-decoration: line-through;
    color: #9a9a9a;
}

.pack-detail__price p {
    margin-left: auto;
    background: url("../images/icon-km-2.svg");
    background-size: cover;
    background-position: center;
    padding: 5px;
    padding-left: 12px;
    color: #fff;
    margin-bottom: 0;
}

.pack-detail__des {
    color: #5C5C5C;
    line-height: 28px;
}

.pack-detail__detail {
    margin-top: 20px;
    line-height: 30px;
    color: #5C5C5C;
    max-height: 240px;
    display: block;
    overflow: hidden;
    -webkit-mask: linear-gradient(360deg, rgba(0, 0, 0, 0) 90px, rgba(0, 0, 0, 0) 0.0001px, #000 10px), linear-gradient(0deg, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0) 32.8px, #000 168.8002px);
}

.pack-detail__detail.show {
    overflow-y: auto;
    max-height: 100em;
    -webkit-mask: unset;
}

.pack-detail__cycle {
    display: flex;
    margin-bottom: 30px;
    margin-top: 30px;
}

.pack-detail__button {
    display: flex;
    align-content: center;
    justify-content: space-around;
    flex-wrap: nowrap;
    flex-direction: row;
}

.pack-detail .btn-read {
    color: #424445;
    font-family: var(--font-bold);
    background-color: #fff;
    border: 1px solid #C4C4C4;
    border-radius: 3px;
    margin: 20px auto 0;
    outline: none;
    padding: 5px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pack-detail .btn-read span {
    margin-right: 10px;
}

@media screen and (max-width: 991px) {
    .pack-detail {
        background-color: #fff;
        margin-top: 15px;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .pack-detail section {
        box-shadow: none;
        padding: 0;
    }

    .pack-detail__info {
        width: 100%;
    }

    .pack-detail__info button {
        width: 100%;
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

.other-pack {
    margin-top: 40px;
}

.other-pack h2 {
    color: #0095D9;
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: var(--font-bold);
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .other-pack {
        padding-top: 20px;
        margin-top: 0;
    }

    .other-pack h2 {
        font-size: 2.4rem;
    }
}

.input-cycle {
    margin-right: 16px;
    height: 30px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #C4C4C4;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

.input-cycle.active {
    border-color: #40C3FF;
}

.input-cycle img {
    position: absolute;
    bottom: -1px;
    right: -1px;
}

.relate-pack__arrow-btn {
    width: 50px;
    height: 50px;
}

.relate-pack .swiper-button-prev {
    left: 0;
}

.relate-pack .swiper-button-next {
    right: 0;
}

.relate-pack .swiper-pagination {
    bottom: -5px;
}

.relate-pack .custom-box-internet h3 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.relate-pack .custom-box-internet .box-internet__body {
    padding-bottom: 0;
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .relate-pack__arrow-btn {
        width: 40px;
        height: 40px;
    }
}

.confirm-repack {
    width: 60%;
    margin: 0 auto;
    color: #5C5C5C;
    font-size: 1.6rem;
    text-align: left;
}

.confirm-repack__line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.confirm-repack__line span:last-child {
    color: #0571bc;
    font-family: var(--font-medium);
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .confirm-repack {
        width: 100%;
    }
}

.recharge-money {
    width: 100%;
    height: 100%;
}

.recharge-money .VNPQRCodeAffiliate {
    width: 100%;
    position: relative;
    height: fit-content;
    top: 0;
    left: 0;
}

.recharge-money .VNPQRCodeAffiliate__card {
    width: 100%;
    display: block;
    position: relative;
}

.recharge-money .VNPQRCodeAffiliate__card .background_image {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

.recharge-money .VNPQRCodeAffiliate__card .content {
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    height: fit-content;
}

.recharge-money .VNPQRCodeAffiliate__card .content .text_image {
    width: 80%;
    height: 100%;
    display: block;
    object-fit: fill;
    object-position: center;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 25px;
}

.recharge-money .VNPQRCodeAffiliate__card .content .detail {
    width: 100%;
    text-align: center;
    margin-top: 14px;
}

.recharge-money .VNPQRCodeAffiliate__card .content .detail div {
    margin-top: 11px;
    font-family: var(--font-medium);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    /* or 167% */
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
}

.recharge-money .VNPQRCodeAffiliate__card .content .detail #QRCode img {
    width: 70%;
}

.recharge-money .buttons_download {
    display: flex;
    margin-top: 8px;
    margin-bottom: -18px;
}

.recharge-money .buttons_download button {
    border: none;
    margin: 0 4px;
}

.recharge-money .buttons_download .downloadPNG {
    background-color: #40C3FF;
    color: white;
    font-style: normal;
    font-weight: 700;
    font-size: 11px;
    line-height: 10px;
    text-align: center;
}

.recharge-money .buttons_download .downloadSVG {
    background-color: #42DC64;
    color: white;
    font-style: normal;
    font-weight: 700;
    font-size: 11px;
    line-height: 10px;
    text-align: center;
}

.region-roaming {
    overflow-x: scroll;
    transition: all 0.5s;
    background: #fff;
    border-bottom: 1px solid #dadada;
}

.region-roaming__top {
    background: #ffffff;
}

.region-roaming::-webkit-scrollbar {
    width: 0;
}

.region-roaming__form .customClass {
    width: calc(25% - 8px);
}

.region-roaming__price, .region-roaming__info-network {
    background-color: #ffffff;
    color: #3aa4f6;
    border: 1.6px solid #3aa4f6;
}

.region-roaming__price:hover, .region-roaming__info-network:hover {
    color: #ffffff;
    background-color: #3aa4f6;
}

.region-roaming .active {
    color: #ffffff;
    background-color: #3aa4f6;
}

.region-roaming__btn {
    width: calc(25% - 8px);
    max-height: 48px;
}

.region-roaming__btn:hover {
    background-color: #ffffff;
    box-shadow: none;
    border: 1.6px solid #3aa4f6;
    color: #3aa4f6;
    text-decoration: none;
}

.region-roaming .network-info__table .desktop {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.region-roaming .network-info__table .desktop table {
    width: 100%;
}

.region-roaming .network-info__table .desktop table tr {
    text-align: center;
}

.region-roaming .network-info__table .desktop table tr td, .region-roaming .network-info__table .desktop table tr th {
    padding: 12px;
}

.region-roaming .network-info__table .desktop table tbody {
    box-shadow: 0px 0px 10px rgba(146, 146, 146, 0.25);
    border-top: 3px solid #0095d9;
}

.region-roaming .network-info__table .mobile table {
    overflow-y: scroll;
    width: 100%;
}

.region-roaming .network-info__table .mobile table tr th {
    min-width: 150px;
    padding: 12px;
    text-align: left;
}

.region-roaming .network-info__table .mobile table tr td {
    padding: 12px;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media screen and (min-width: 1000px) {
    .region-roaming .network-info .mobile {
        display: none;
    }

    .region-roaming .network-info .desktop {
        display: block;
    }
}

@media screen and (max-width: 1000px) {
    .region-roaming .network-info .mobile {
        display: block;
    }

    .region-roaming .network-info .desktop {
        display: none;
    }
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .region-roaming__form {
        flex-direction: column;
        border-bottom: 1px solid #dadada;
    }

    .region-roaming__form .customClass {
        width: 100%;
    }

    .region-roaming__btn {
        width: 100%;
        padding: 12px;
        margin-bottom: 20px;
    }

    .region-roaming__package {
        justify-content: center;
    }

    .region-roaming__price, .region-roaming__info-network {
        font-size: 1.1rem;
    }

    .region-roaming__list-price--item {
        width: 100%;
        border-radius: 8px;
    }

    .region-roaming__list-price--item > div {
        font-size: 1.6rem;
    }

    .region-roaming__list-price--item > div:first-child {
        padding-right: 0;
        width: 100%;
        border-radius: 0;
    }

    .region-roaming__list-price--item > div:last-child {
        padding-left: 0;
        width: auto;
        border-radius: 0;
    }
}

.not-found {
    padding-top: 60px;
    min-height: 80vh;
}

.not-found__header {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    font-family: var(--font-bold);
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .not-found__header {
        flex-direction: column;
    }

    .not-found__des {
        text-align: center;
        margin-top: 20px;
    }

    .not-found__button {
        margin: 0 auto;
    }
}

.not-found__img {
    width: 300px;
    height: 200px;
}

@media (min-width: 768px) {
    .not-found__img {
        width: 330px;
        height: 200px;
    }
}

@media (min-width: 768px) {
    .not-found__des {
        width: 40%;
        margin-left: 50px;
    }
}

.not-found__button {
    align-items: center;
    width: 260px;
    margin-top: 40px;
    font-size: 2.2rem;
    font-family: var(--font-medium);
    background-color: #D71925;
    color: #fff;
    display: flex;
    justify-content: center;
    padding: 5px;
    cursor: pointer;
}

.not-found hr {
    border: solid 1px #ccc;
    margin-top: 50px;
}

.not-found__content {
    font-size: 2rem;
    font-family: var(--font-medium);
    padding: 15px 30px;
}

.mobile__title {
    display: flex;
    align-items: center;
    margin-top: 50px;
}

.mobile__title h2 {
    font-size: 3rem;
    color: #0095d9;
    font-family: var(--font-medium);
}

.mobile__title img {
    width: 26px;
    margin-right: 10px;
}

.mobile__sub-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 0.6px solid #a0b4b6;
    padding-bottom: 10px;
    margin-top: 10px;
}

.mobile__sub-title--left {
    width: 82%;
}

.mobile__sub-title--left a {
    color: #4d4d4d;
    font-family: var(--font-medium);
    font-size: 1.6rem;
    margin-right: 3%;
    cursor: pointer;
}

.mobile__sub-title--left a:hover {
    color: #0071bc;
}

.mobile__sub-title--left a:hover {
    text-decoration: underline;
}

.mobile__sub-title--left .active a {
    color: #0071bc;
}

.mobile__filter {
    margin: 30px auto;
    text-align: center;
    width: 50%;
}

.mobile__filter h4 {
    font-size: 2rem;
    font-family: var(--font-medium);
    color: #163567;
    margin-bottom: 15px;
}

.mobile__filter--input input {
    border: 1px solid #A0B4B6;
    box-shadow: 0px 4px 12px rgba(182, 182, 182, 0.25);
    border-radius: 8px;
    padding: 13px 30px;
}

.mobile__filter button {
    margin: 30px auto;
    width: 50%;
    padding: 12px 0;
}

.mobile__select-filter {
    width: 18%;
}

.mobile__select-filter button {
    background: #FCFCFC;
    border: 1px solid #B4D9F5;
    border-radius: 30px;
    color: #0095D9;
}

.mobile__type-sim {
    display: flex;
    margin-top: 20px;
}

.mobile__type-sim .ant-radio-group {
    display: flex;
    width: 20%;
}

.mobile__type-sim .input-radio__title {
    color: #0071BC;
    font-family: var(--font-bold);
    font-size: 1.6rem;
}

@media screen and (max-width: 991px) {
    .mobile__type-sim .ant-radio-group {
        display: flex;
        width: 80%;
    }

    .mobile__sub-title-wrapper {
        width: 100%;
        overflow-x: auto;
        margin-top: 10px;
    }

    .mobile__sub-title {
        width: 100%;
    }

    .mobile__sub-title--left {
        width: 100%;
    }

    .mobile__sub-title--left a {
        font-size: 1.4rem;
    }

    .mobile__select-filter {
        width: 45%;
    }

    .mobile__select-filter button {
        font-size: 1.4rem;
        padding: 4px 15px;
    }

    .mobile__filter {
        width: 60%;
    }

    .mobile__filter button {
        margin: 20px auto;
        width: 40%;
    }
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .mobile__filter {
        width: 100%;
    }

    .mobile__title h2 {
        font-size: 2.4rem;
    }

    .mobile__sub-title {
        width: 190%;
    }
}

.maintain {
    color: #878889;
    min-height: 80vh;
    text-align: center;
    margin-top: 10vh;
}

.maintain__title {
    color: #878889;
    margin-top: 40px;
}

.maintain__content {
    margin-top: 40px;
    font-size: 20px;
}

.multi-platform {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(146, 146, 146, 0.25);
    padding-bottom: 50px;
    margin-top: 60px;
}

.multi-platform p {
    font-size: 1.6rem;
}

.multi-platform strong {
    font-size: 2rem;
}

.multi-platform__tab {
    border-bottom: 1px solid #DADADA;
}

.multi-platform__tab > div {
    width: 25%;
    text-align: center;
    cursor: pointer;
}

.multi-platform__tab span {
    display: block;
    padding: 26px 0 16px;
    color: #A0B4B6;
    font-size: 3.2rem;
    font-family: SFProBold;
    line-height: 28px;
}

.multi-platform__tab .active {
    border-bottom: 3px solid #F7951E;
}

.multi-platform__tab .active span {
    color: #F7951E;
}

.multi-platform__content h3 {
    color: #0064BF;
    font-size: 3rem;
    font-family: SFProBold;
}

.multi-platform__item {
    width: 25%;
    padding: 25px;
    text-align: center;
}

.multi-platform__item p {
    text-align: justify;
}

.multi-platform__intro > p {
    width: 60%;
    margin: auto;
    text-align: center;
}

.multi-platform__intro--des > img {
    width: 45%;
}

.multi-platform__intro--des > div {
    width: 45%;
}

.multi-platform__intro--des > div p {
    text-align: justify;
}

.multi-platform__features--item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: calc(100% / 6);
    color: #fff;
    padding: 60px 0;
    margin-bottom: 1px;
}

.multi-platform__features--item h4 {
    color: #fff;
    font-size: 2.6rem;
    line-height: 3;
}

.multi-platform__features--item:nth-child(1), .multi-platform__features--item:nth-child(4) {
    background: #F3A53C;
}

.multi-platform__features--item:nth-child(2), .multi-platform__features--item:nth-child(5) {
    background: #3783D3;
}

.multi-platform__features--item:nth-child(3) {
    background: #223E74;
}

.multi-platform__features--item:nth-child(6) {
    background: #969696;
}

.multi-platform__features .customBtn {
    padding: 15px 80px;
}

.multi-platform__tab2 img {
    max-width: 100%;
}

.multi-platform__tab2 .fl-50 {
    flex: 0 0 50%;
}

.multi-platform__tab2 .fl-40 {
    flex: 0 0 40%;
}

.multi-platform__video .customContainer {
    overflow: hidden;
}

.multi-platform__video .customContainer video {
    width: 100%;
    cursor: pointer;
}

.multi-platform__video .customContainer .swiper-slide video {
    transition: filter .7s ease;
    filter: grayscale(100%);
}

.multi-platform__video .customContainer .swiper-slide-active video {
    filter: none;
}

.multi-platform__video p {
    font-size: 2rem;
}

.multi-platform__arrow-btn {
    width: 72px;
    height: 72px;
}

.multi-platform .swiper-button-prev {
    left: 10%;
}

.multi-platform .swiper-button-next {
    right: 10%;
}

@media (max-width: 1199px) {
    .multi-platform {
        margin-top: 30px;
    }

    .multi-platform__tab > div {
        width: 50%;
    }

    .multi-platform__tab span {
        font-size: 2rem;
    }

    .multi-platform__intro--des {
        flex-direction: column;
    }

    .multi-platform__intro--des > img, .multi-platform__intro--des > div {
        width: 60%;
        margin: auto;
    }

    .multi-platform__intro--des p img {
        display: none;
    }

    .multi-platform__item {
        width: 50%;
    }

    .multi-platform__features--item {
        padding: 80px 0;
        width: calc(100% / 3);
    }
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .multi-platform {
        margin-top: 30px;
    }

    .multi-platform__tab > div {
        width: 50%;
    }

    .multi-platform__tab span {
        font-size: 2rem;
    }

    .multi-platform__content h3 {
        width: 55%;
        margin: auto;
    }

    .multi-platform__item {
        width: 100%;
    }

    .multi-platform__intro > p {
        width: calc(100% - 30px);
        text-align: justify;
    }

    .multi-platform__intro--des {
        flex-direction: column;
        padding: 25px;
    }

    .multi-platform__intro--des > img, .multi-platform__intro--des > div {
        width: 100%;
    }

    .multi-platform__intro--des p img {
        display: none;
    }

    .multi-platform__features h3 {
        width: 100%;
        margin: initial;
    }

    .multi-platform__features--item {
        padding: 30px 0;
        width: calc(100% / 2);
    }

    .multi-platform__features--item h4 {
        font-size: 1.4rem;
        line-height: 2;
        margin-top: 8px;
    }

    .multi-platform__features--item span {
        font-size: 1.3rem;
    }

    .multi-platform__features--item:nth-child(4) {
        background: #223E74;
    }

    .multi-platform__features--item:nth-child(5) {
        background: #F3A53C;
    }

    .multi-platform__video .customContainer video {
        width: 100%;
        height: auto;
    }

    .multi-platform .swiper-button-prev {
        display: none;
    }

    .multi-platform .swiper-button-next {
        display: none;
    }
}

.internet__title {
    display: flex;
    align-items: center;
}

.internet__title h2 {
    font-size: 3rem;
    color: #0095d9;
    font-family: var(--font-medium);
}

.internet__title h2.orange {
    margin-bottom: 10px;
    color: #F7951E;
}

.internet__title img {
    width: 26px;
    margin-right: 10px;
}

.internet__title h4 {
    font-size: 1.6rem;
    color: #5C5C5C;
    margin-left: 20px;
    margin-bottom: 0;
    cursor: pointer;
}

.internet__title h4:hover {
    text-decoration: underline;
}

.internet__title h4.active {
    color: #0064BF;
    font-family: var(--font-medium);
}

.internet__see-all {
    font-size: 1.5rem;
    margin-left: auto;
}

.internet__see-all a {
    color: #4D4D4D;
    margin-right: 10px;
    text-decoration: none;
}

.internet__see-all:hover a {
    color: #3aa4f6;
}

.internet__see-all:hover svg {
    color: #3aa4f6;
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .internet__title h2 {
        font-size: 2.1rem;
    }

    .internet__title h2.orange {
        margin-bottom: 0;
    }

    .internet h4 {
        font-size: 1.5rem;
        margin-top: 12px;
    }

    .internet h4:first-child {
        margin-left: 0;
    }

    .internet__see-all {
        font-size: 1.2rem;
        width: 30%;
        text-align: right;
    }

    .internet__see-all a {
        margin-right: 5px;
    }
}

.internet__listmytv .box-internet__border-top {
    height: 5px;
    border-radius: 2.5px;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    background-color: #f7951e;
}

.hot-deal .swiper-container {
    padding: 15px 0 40px;
}

.hot-deal .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: -5px;
    outline: none;
}

.hot-deal .swiper-pagination-bullet {
    background: #d0dcdd;
    width: 10px;
    height: 10px;
}

.hot-deal .swiper-pagination-bullet-active {
    background: #00a1e8;
}

.hot-deal .swiper-slide {
    padding: 0 10px;
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .hot-deal .swiper-container {
        padding-bottom: 30px;
    }
}

.sim-package {
    background: #ffffff;
    box-shadow: 0px 4px 30px rgba(149, 149, 149, 0.25);
    border-radius: 8px;
    display: flex;
    margin-top: 20px;
    height: 594px;
}

.sim-package h3 {
    font-family: var(--font-bold);
    font-size: 2.8rem;
}

.sim-package section:first-child {
    width: 25%;
}

.sim-package__box {
    position: relative;
    border-radius: 8px 0px 0px 8px;
    z-index: 1;
}

.sim-package__swiper-wrapper {
    border-radius: 8px 0px 0px 8px;
    overflow: hidden;
    display: block;
    height: 100%;
}

.sim-package__detail {
    width: 25%;
    color: #fff;
    text-align: center;
    box-shadow: 0px 4px 30px rgba(149, 149, 149, 0.5);
    background-color: #3aa4f6;
    padding: 3%;
    position: relative;
}

.sim-package__detail h3 {
    color: #fff;
    margin-top: 10%;
    margin-bottom: 10%;
}

.sim-package__detail > div {
    font-size: 1.6rem;
    line-height: 28px;
}

.sim-package__detail hr {
    width: 40%;
    height: 1px;
    background: #fff;
    border-radius: 5px;
    margin: 15% auto 0;
}

.sim-package__detail--price {
    font-size: 1.8rem;
    margin-top: 8%;
}

.sim-package__detail--price p {
    font-family: var(--font-bold);
    font-size: 3.2rem;
    margin-bottom: 0;
}

.sim-package__detail--price sup {
    font-size: 1.6rem;
    margin-left: 5px;
}

.sim-package__arrow {
    position: absolute;
    bottom: 6%;
}

.sim-package__pack-arrow {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: absolute;
    bottom: 18px;
    right: 26px;
    z-index: 10;
}

.sim-package__pack-arrow > div {
    cursor: pointer;
    height: 28px;
    width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    background-color: #c4c4c4;
    border: none;
    outline: none;
}

.sim-package__pack-arrow > div:last-child {
    margin-left: 6.5px;
}

.sim-package__pack-arrow > div:hover {
    background-color: #1d7ec9;
}

.sim-package__pack-arrow > div.active {
    background-color: #196fb0;
}

.sim-package__pack-arrow > div.disable {
    cursor: default;
    background-color: #c4c4c4;
}

.sim-package__pack-arrow > div.disable:hover {
    background-color: #c4c4c4;
}

.sim-package__pack-arrow svg {
    padding: 8px;
    width: 35px !important;
    height: auto;
}

.sim-package__box-pack {
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 10px 10px;
    border-bottom: solid 1px #eaeff7;
    height: 198px;
}

.sim-package__box-pack h3 {
    color: #40c3ff;
    width: auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sim-package__box-pack .img {
    margin-right: 15px;
    background: rgba(228, 246, 255, 0.9);
    border-radius: 50%;
}

.sim-package__box-pack .img-arrow {
    border-radius: 50%;
    width: 40px;
    color: #dadada;
    padding: 10px 11px;
    background-color: #fafafa;
    animation: 3s linear 0.1s;
}

.sim-package__box-pack .img-arrow.down {
    transform: rotate(90deg);
}

.sim-package__box-pack p {
    color: #5c5c5c;
    font-size: 1.5rem;
    margin-bottom: 0;
}

.sim-package__box-pack:hover, .sim-package__box-pack.active-pack {
    background: rgba(64, 192, 255, 0.3);
}

.sim-package__box-pack:hover h3, .sim-package__box-pack.active-pack h3 {
    color: #196fb0;
}

@media screen and (max-width: 992px) {
    .sim-package__box-pack {
        justify-content: space-between;
    }

    .sim-package__box-pack .img {
        border-radius: 8px;
        width: 40px !important;
        height: 40px;
    }

    .sim-package__box-pack h3 {
        font-weight: 700;
        font-size: 16px;
        line-height: 19px;
        letter-spacing: 0.4px;
        margin-bottom: 5px;
        color: #042c5c;
    }

    .sim-package__box-pack p {
        font-weight: 400;
        font-size: 13px;
        line-height: 16px;
        margin-bottom: 0;
    }

    .sim-package__box-pack__box-pack {
        height: 72px;
    }
}

.sim-package__search-box {
    padding: 3% 0;
    background-color: #fff;
    height: 100%;
    border-radius: 0px 8px 8px 0px;
}

.sim-package__search-box--data {
    overflow: auto;
}

.sim-package__search-box > div:not(:last-child) {
    padding: 0px 5%;
}

.sim-package__search-box table {
    width: 100%;
    font-size: 15px;
    color: #5c5c5c;
    background-color: #fff;
    border-radius: 5px;
    border-collapse: collapse !important;
    border-spacing: 0;
}

.sim-package__search-box td {
    padding: 12px;
    text-align: center;
    font-family: var(--font-bold);
}

.sim-package__search-box td:last-child {
    color: var(--neutral0);
}

.sim-package__search-box tbody tr:not(:last-child) {
    border-bottom: 1px solid rgba(208, 220, 221, 0.6);
}

.sim-package__btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.sim-package__btn-wrapper span {
    text-align: center;
    text-transform: uppercase;
    line-height: 18px;
    border-radius: 100px;
    padding: 8px 15px;
    cursor: pointer;
}

.sim-package__btn-wrapper span:first-child {
    color: #5c5c5c;
    border: 1px solid #c4c4c4;
}

.sim-package__btn-wrapper span:first-child:hover {
    background: #eaeaea;
}

.sim-package__btn-wrapper span:last-child {
    color: #fff;
    background-color: #3aa4f6;
}

.sim-package__btn-wrapper span:last-child:hover {
    background-color: rgba(58, 164, 246, 0.7);
}

.sim-package__btn-wap {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 15px;
}

.sim-package__btn-wap span {
    text-align: center;
    text-transform: uppercase;
    line-height: 18px;
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    width: 46%;
}

.sim-package__btn-wap span:first-child {
    color: #fff;
    border: 1px solid #fff;
}

.sim-package__btn-wap span:first-child:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.sim-package__btn-wap span:last-child {
    color: #0571bc;
    background-color: #dfe7f5;
}

.sim-package__btn-wap span:last-child:hover {
    background: #fff;
}

.sim-package__noti {
    height: 2.1rem;
    color: red;
}

.sim-package .swiper-container {
    height: 100%;
    max-height: 100%;
}

@media screen and (max-width: 991px) {
    .sim-package {
        flex-direction: column;
        max-height: 590px;
        height: auto;
    }

    .sim-package section {
        width: 100% !important;
    }

    .sim-package__swiper-wrapper {
        max-height: 590px;
        overflow: auto;
    }

    .sim-package__detail {
        width: 100%;
        transition: all 0.4s;
        overflow: hidden;
        max-height: 0;
        padding: 0;
    }

    .sim-package__detail h3 {
        margin-top: 3%;
        margin-bottom: 3%;
        font-size: 2.2rem;
    }

    .sim-package__detail > div {
        font-size: 1.3rem;
        line-height: 26px;
    }

    .sim-package__detail hr {
        margin-top: 5%;
    }

    .sim-package__detail--price {
        margin-top: 5%;
    }

    .sim-package__detail--price p {
        font-size: 2.6rem;
    }

    .sim-package .active-detail .sim-package__detail {
        padding: 3%;
        max-height: 1000px;
        transition: all 0.4s;
    }

    .sim-package .active-detail .sim-package__search-box {
        display: block;
    }

    .sim-package__btn-wrapper {
        border-bottom: solid 1px #eaeff7;
        padding-bottom: 30px;
    }

    .sim-package__box-pack {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .sim-package__box-pack img {
        width: 20%;
    }

    .sim-package__box-pack h3 {
        font-size: 2.2rem;
    }

    .sim-package__box-pack p {
        font-size: 1.3rem;
    }

    .sim-package__search-box {
        display: none;
    }

    .sim-package__search-box > div:not(:last-child) {
        padding: 0px 2% 10px;
    }

    .sim-package__search-box table {
        font-size: 1.2rem;
    }

    .sim-package__search-box td {
        padding: 13px 9px;
    }
}

.filter-phone {
    display: flex;
    align-items: center;
    border: 1px solid #a0b4b6;
    box-sizing: border-box;
    box-shadow: 0px 4px 12px rgba(182, 182, 182, 0.25);
    border-radius: 8px;
    padding: 3px 0;
    color: #7d7d7d;
}

.filter-phone > div:first-child {
    width: 21%;
}

.filter-phone__dropdown button {
    border: none;
    font-size: 1.6rem;
    padding-left: 13px;
    padding-right: 13px;
    color: #0571bc;
    font-family: var(--font-medium);
}

.filter-phone input {
    border: none;
    font-size: 1.6rem;
    font-weight: 500;
    outline: none;
    padding: 10px 15px;
    width: 72%;
    border-left: 1px solid #a0b4b6;
}

.filter-phone > svg {
    margin-right: 16px;
    cursor: pointer;
}

@media screen and (max-width: 991px) {
    .filter-phone > div:first-child {
        width: 38%;
    }

    .filter-phone__dropdown button {
        font-size: 1.2rem;
        padding-left: 5px;
        padding-right: 5px;
    }

    .filter-phone input {
        font-size: 1.3rem;
        padding: 7px 8px;
    }
}

.box-device {
    background: #ffffff;
    box-shadow: 0px 0px 10px rgba(146, 146, 146, 0.25);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    color: #252525;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
}

.box-device:hover {
    box-shadow: 0 5px 25px 1px #afafaf;
}

.box-device__arrow-btn {
    width: 60px;
    height: 60px;
}

.box-device__image {
    height: 65%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-device img {
    max-height: 100%;
    max-width: 100%;
}

.box-device h4 {
    padding: 15px;
    margin-top: 10px;
    text-align: center;
    font-family: var(--font-medium);
    font-size: 2.4rem;
}

.box-device p {
    margin-bottom: 0;
    line-height: 24px;
    font-size: 1.5rem;
    max-height: 70px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .box-device__arrow-btn {
        width: 45px;
        height: 45px;
    }
}

.internet .swiper-container {
    padding: 15px 0 40px;
}

.internet .swiper-slide {
    padding: 0 10px;
}

.internet .swiper-pagination {
    bottom: 0px;
}

.internet .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
}

.internet__circle {
    font-size: 1.4rem;
}

.mobile-package {
    overflow: hidden;
}

.mobile-package .col-md-3 {
    padding: 0 10px;
}

.mobile-package > div {
    display: flex;
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .mobile-package {
        overflow-x: auto;
    }

    .mobile-package .col-md-3 {
        padding: 0 5px;
    }
}

.sim-with-pack-modal__title h3 {
    font-size: 3rem;
    color: #196fb0;
}

.sim-with-pack-modal__title p {
    font-size: 1.4rem;
    top: 0;
    left: 0;
    width: 100%;
    margin-bottom: 0;
    line-height: 24px;
    font-family: HelMedium;
}

.sim-with-pack-modal__content strong {
    color: #e7007f;
    font-size: 2.4rem;
    font-family: SFProMedium;
}

.sim-with-pack-modal__content span {
    color: #9a9a9a;
    font-size: 2rem;
    font-family: SFProMedium;
}

.sim-with-pack-modal__content--title {
    border-bottom: 1px solid #dadada;
}

.sim-with-pack-modal__content--des {
    color: #5c5c5c;
    font-size: 1.5rem;
    line-height: 2.8rem;
}

.sim-with-pack-modal__content--cycle .active {
    color: #0095d9;
    border: 1px solid #40c3ff;
}

.sim-with-pack-modal__content--cycle > div {
    border: 1px solid #c4c4c4;
    font-family: SFProMedium;
}

.sim-with-pack-modal__content .custom-btn {
    width: 50%;
}

.sim-with-pack-modal__content .custom-btn span {
    color: #ffffff;
    font-size: 1.6rem;
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .sim-with-pack-modal__title h3 {
        font-size: 2.4rem;
    }

    .sim-with-pack-modal__content strong {
        font-size: 1.6rem;
    }

    .sim-with-pack-modal__content span {
        font-size: 1.2rem;
    }

    .sim-with-pack-modal--des {
        font-size: 1.3rem;
    }
}

.home {
    padding-bottom: 30px;
    color: #4d4d4d;
}

.home__sub-banner {
    padding-left: 10px;
    max-height: 384px;
}

.home__sub-banner a:not(.popupxf) {
    margin-bottom: 10px;
    display: block;
    height: 47.5%;
}

.home__sub-banner img {
    width: 100%;
    height: 100%;
    max-height: 250px;
}

.home__title {
    display: flex;
    align-items: center;
}

.home__title h2 {
    font-family: var(--font-medium);
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    /* identical to box height, or 81% */
    color: #0095d9;
}

.home__title img {
    width: 17.43px;
    margin-right: 10px;
}

.home__sub-hotdeal {
    margin-top: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.home__sub-hotdeal span {
    padding: 4px 15px;
    font-size: 1.6rem;
}

.home__sub-hotdeal span.hot-active {
    border-radius: 30px;
    background-color: #f9d448;
    text-decoration: none;
}

.home__sub-hotdeal span:hover {
    color: #0095d9;
}

.home__sub-internet {
    display: flex;
    align-items: center;
    color: #5c5c5c;
    margin-left: 20px;
}

.home__sub-internet a {
    text-decoration: none;
    color: #5c5c5c;
}

.home__sub-internet span {
    cursor: pointer;
    padding: 4px 30px;
    padding-left: 0px;
    font-size: 1.6rem;
}

.home__sub-internet span.active {
    color: #0071bc;
    font-family: var(--font-bold);
    text-decoration: none;
}

.home__sub-internet span:hover {
    text-decoration: none;
    color: #0095d9;
}

.home__title-package {
    display: flex;
}

.home__title-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home__title-wrapper > div:last-child {
    width: 15%;
}

.home__title-wrapper .custom-select-province .ant-select-selector {
    border: 1px solid #b4d9f5;
    border-radius: 30px;
}

.home__province-dropdown {
    max-height: 200px;
}

.home__province-dropdown button {
    background: #fcfcfc;
    border: 1px solid #b4d9f5;
    border-radius: 30px;
    color: #8b8b8b;
}

.home__custom-overlay ul {
    max-height: 250px;
    overflow-y: auto;
}

.home .test {
    display: flex;
    justify-content: space-between;
}

.home .test > div {
    width: 24%;
}

.home .ant-radio-group {
    width: 100%;
}

.home__banner a {
    width: 100%;
}

.home__banner a img {
    width: 100%;
    height: calc(100% - 10px);
    max-height: 384px;
}

.home__banner .swiper-container {
    height: 100%;
}

.home__banner .swiper-button-prev, .home__banner .swiper-button-next {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    margin-top: -22px !important;
    z-index: 10;
    cursor: pointer;
    background-size: 50px 50px;
    background-position: center;
    background-repeat: no-repeat;
    outline: none;
}

.home__banner .swiper-button-prev:hover, .home__banner .swiper-button-next:hover {
    transition: all 0.4s;
    transform: scale(1.1);
}

.home__banner .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.4;
}

.home__banner .swiper-pagination-bullet-active {
    background: #fff;
    opacity: 1;
}

.home__device-wrapper .swiper-container {
    padding-bottom: 40px;
    padding-top: 10px;
}

.home__device-wrapper .swiper-pagination-bullet-active {
    background: #40c0ff;
}

.home__device-wrapper .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: -5px;
    outline: none;
}

@media (min-width: 640px) {
    .home__device-wrapper .swiper-pagination-bullet {
        width: 8%;
        height: 4px;
        border-radius: 30px;
    }
}

@media screen and (max-width: 991px) {
    .home__sub-banner {
        display: flex;
        margin-top: 5px;
    }

    .home__sub-banner a {
        width: 50%;
        height: auto;
    }

    .home__sub-banner img {
        width: 100%;
        height: auto;
    }

    .home__province-dropdown button {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 1.4rem;
    }

    .home__title-package {
        flex-direction: column;
    }

    .home__title-wrapper > div:first-child {
        flex-direction: column;
    }

    .home__title-wrapper > div:last-child {
        width: 22%;
    }
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .home__banner .swiper-button-prev, .home__banner .swiper-button-next {
        width: 30px;
        height: 30px;
    }

    .home__sub-hotdeal span {
        font-size: 1.4rem;
        padding: 4px 13px;
    }

    .home__title h2 {
        font-size: 2.4rem;
    }

    .home__title-wrapper {
        display: block;
    }

    .home__title-wrapper > div:last-child {
        width: 45%;
        margin-top: 5px;
    }

    .home__sub-internet {
        margin-left: 0;
        overflow-x: scroll;
        /* Track */
        /* Handle */
        /* Handle on hover */
    }

    .home__sub-internet::-webkit-scrollbar {
        height: 4px;
    }

    .home__sub-internet::-webkit-scrollbar-track {
        background: transparent;
    }

    .home__sub-internet::-webkit-scrollbar-thumb {
        background: transparent;
    }

    .home__sub-internet::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

    .home__sub-internet span {
        padding: 4px 12px;
        font-size: 1.4rem;
        white-space: nowrap;
    }
}

.home .internet .swiper-pagination {
    display: none;
}

.feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.feature a {
    color: #4D4D4D;
    text-decoration: none;
}

.sub-feature {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.sub-feature__box-img {
    background-color: #fff;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    box-shadow: 0px 4px 15px rgba(57, 57, 57, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub-feature__box-img:hover {
    border: solid 1px #3aa4f6;
}

.sub-feature__box-img:hover img {
    animation: ringring 1s linear;
}

.sub-feature img {
    max-width: 50px;
    max-height: 50px;
}

.sub-feature p {
    margin-bottom: 0;
    margin-left: 10px;
    font-size: 1.8rem;
    font-family: var(--font-medium);
    max-width: 200px;
}

@media screen and (max-width: 991px) {
    .sub-feature {
        flex-direction: column;
    }

    .sub-feature p {
        font-size: 1.5rem;
        min-height: 48px;
        margin-left: 0;
        margin-top: 10px;
        text-align: center;
    }
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .sub-feature {
        width: 19%;
    }

    .sub-feature__box-img {
        width: 60px;
        height: 60px;
    }

    .sub-feature p {
        font-size: 1.1rem;
        min-height: 32px;
    }

    .sub-feature img {
        max-width: 75%;
        max-height: 75%;
    }
}

@keyframes ringring {
    10%, 90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%, 80% {
        transform: translate3d(2px, 0, 0);
    }

    30%, 50%, 70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%, 60% {
        transform: translate3d(4px, 0, 0);
    }
}

.internet-step2 .custom-ant-row {
    width: calc(50% - 8px);
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .internet-step2 .custom-ant-row {
        width: 100%;
    }
}

.internet-order {
    background: #f8f8f8;
    box-shadow: 0px 0px 30px rgba(146, 146, 146, 0.4);
    border-radius: 8px;
}

.internet-order h3 {
    font-family: var(--font-bold);
    font-size: 2rem;
    line-height: 26px;
    color: #fff;
    text-align: center;
    margin-bottom: 0;
    background: #3aa4f6;
    padding: 13px 0;
    border-radius: 8px 8px 0px 0px;
}

.internet-order__body {
    padding: 16px 5% 40px;
}

.internet-order__button {
    margin: 20px 0 30px;
}

.internet-order__button button {
    padding: 12px 15%;
    display: block;
    margin: 0 auto;
}

.internet-order__des {
    font-size: 1.3rem;
    color: #8b8b8b;
}

.internet-order__content {
    background-color: #fff;
    border-radius: 8px;
    padding: 17px 24px 14px;
    margin-bottom: 16px;
}

.internet-order__content--sum {
    font-size: 2.4rem;
    color: #196fb0;
    font-family: var(--font-bold);
}

.internet-order__content p {
    font-size: 1.4rem;
    color: var(--primary3);
}

.internet-order__item {
    font-size: 1.6rem;
    color: #5c5c5c;
}

.internet-order__item .w-30 {
    width: 30%;
}

.internet-order__item .w-70 {
    width: 70%;
}

.internet-order__item .ant-input-affix-wrapper {
    width: 60%;
    height: 24px;
    border-radius: 4px;
    margin: auto;
}

.internet-order__item span {
    line-height: 40px;
}

.internet-order__item span:last-child {
    font-family: var(--font-bold);
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .internet-order__item {
        font-size: 1.2rem;
    }

    .internet-order__item .ant-input-affix-wrapper input::placeholder {
        font-size: 0.9rem;
    }
}

.internet-detail .swiper-container {
    overflow-y: visible;
    overflow-x: clip;
}

.internet-detail .swiper-container .swiper-pagination {
    bottom: -25px;
}

@media screen and (max-width: 991px) {
    .view-all__title h4 {
        font-size: 1.3rem;
    }

    .view-all__title h4:first-child {
        margin-left: 0;
    }
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .view-all__title {
        flex-direction: column;
        align-items: flex-start;
    }

    .view-all__title h4 {
        font-size: 1.2rem;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .view-all__title h4:first-child {
        margin-left: 0;
    }
}

.termpolicy__content {
    background: #ffffff;
}

.termpolicy__content--item {
    padding-left: 6%;
}

.termpolicy__content--item .termpolicy__custom-term {
    width: 17%;
    background-color: #196fb0;
    border: 1px solid #196fb0;
    border-radius: 28px;
    text-align: center;
    color: #ffffff;
    font-size: 1.8rem;
    margin: 5% 0 30px;
    justify-content: center;
    box-shadow: 0px 4px 15px rgba(129, 129, 129, 0.25);
}

.termpolicy__content--item .termpolicy__custom-policy {
    width: 17%;
    background-color: #ffffff;
    color: #0095d9;
    font-size: 1.8rem;
    border-radius: 28px;
    border: 1px solid #ffffff;
    text-align: center;
    justify-content: center;
    margin: 5% 0 30px;
    margin-left: 25px;
    box-shadow: 0px 4px 15px rgba(129, 129, 129, 0.25);
}

.termpolicy__content--desc {
    text-align: justify;
    font-size: 1.6rem;
    line-height: 28px;
    color: #292929;
    padding: 20px 5%;
}

.termpolicy__content--desc h4 {
    margin-top: 20px;
    font-size: 1.6rem;
    font-family: var(--font-bold);
}

.termpolicy__content--desc h5 {
    margin: 15px 0;
    font-size: 1.6rem;
    font-family: var(--font-medium);
}

.termpolicy__content--desc .termpolicy__subcontent {
    padding-left: 25px;
}

@media screen and (max-width: 1199px) and (min-width: 768px) {
    .termpolicy__content--item .termpolicy__custom-term {
        margin-top: 30px;
        margin-bottom: 10px;
        width: 20%;
        height: 20%;
    }

    .termpolicy__content--item .termpolicy__custom-policy {
        margin-top: 30px;
        margin-bottom: 10px;
        width: 20%;
        height: 20%;
    }
}

@media screen and (max-width: 991px) {
    .termpolicy__content--item .termpolicy__custom-policy {
        width: 30%;
    }
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .termpolicy h2 {
        font-size: 2.4rem;
    }

    .termpolicy__content--item {
        padding-left: 9%;
    }

    .termpolicy__content--item .termpolicy__custom-term {
        margin-top: 30px;
        margin-bottom: 10px;
        width: 35%;
        height: 20%;
    }

    .termpolicy__content--item .termpolicy__custom-policy {
        margin-top: 30px;
        margin-bottom: 10px;
        margin-left: 2%;
        width: 54%;
        height: 20%;
    }
}

.box-share {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.box-share__view {
    align-items: center;
}

.box-share__view span {
    padding-left: 0.6rem;
    font-size: 1.4rem;
}

.box-share__view span:first-child {
    border-right: 1px solid #ababab;
    padding-right: 0.6rem;
}

.box-share__view > img {
    padding-left: 0.6rem;
    width: 2.8rem;
}

.box-share__social {
    display: flex;
}

.box-share__social--icon {
    padding: 0.4rem;
    width: 3.2rem;
    height: 3.2rem;
    border: 1px solid #959595;
    border-radius: 50%;
    margin-left: 1rem;
    text-align: center;
}

.swiper-slide .box-device-news {
    background-color: unset;
    box-shadow: unset;
}

.swiper-slide .box-device-news__image {
    display: inline-block;
    position: relative;
    width: 100%;
}

.swiper-slide .box-device-news__image .dummy {
    margin-top: 70%;
}

.swiper-slide .box-device-news__image img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    height: 100%;
    width: 100%;
}

.swiper-slide .box-device-news__info {
    display: flex;
    padding-top: 1.5rem;
    align-items: center;
}

.swiper-slide .box-device-news__info span {
    font-size: 1.6rem;
    color: #a0b4b6;
    text-transform: uppercase;
    padding-right: 10px;
    border-right: 1px solid #d0dcdd;
    max-width: 22%;
    text-align: left;
}

.swiper-slide .box-device-news__info p {
    font-size: 1.6rem;
    color: #316199;
    padding-left: 10px;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-family: var(--font-bold);
    text-align: left;
}

@media screen and (max-width: 991px) {
    .swiper-slide .box-device-news {
        padding: 0;
    }

    .swiper-slide .box-device-news__info span {
        font-size: 1.3rem;
    }

    .swiper-slide .box-device-news__info p {
        font-size: 1.3rem;
    }
}

.content-detail {
    margin-top: 7px;
}

.content-detail .box-detail {
    padding: 15px 30px 50px 30px;
    background: #fff;
}

.content-detail .box-detail a {
    text-decoration: none;
}

.content-detail .box-detail a:hover {
    color: #40c0ff;
}

.content-detail .box-detail h1 {
    margin: 10px 0 0 0;
    font-size: 24px;
    color: #0571bc;
    font-family: var(--font-bold);
}

.content-detail .box-detail__left .bread-crumb {
    border-bottom: 1px solid #dadada;
    padding-bottom: 10px;
}

.content-detail .box-detail__left .title-color {
    color: #000;
    margin-bottom: 15px;
}

.content-detail .box-detail__left .box-detail__content {
    margin-top: 2.5rem;
}

.content-detail .box-detail__left .box-detail__content--summary {
    margin-top: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #dadada;
}

.content-detail .box-detail__left .box-detail__content--summary p {
    font-size: 1.5rem;
    color: #5c5c5c;
    overflow: hidden;
}

.content-detail .box-detail__left .box-detail__content--info {
    padding-top: 15px;
    text-align: justify;
    line-height: 26px;
    color: #151011;
    font-size: 1.6rem;
}

.content-detail .box-detail__left .box-detail__content--info video, .content-detail .box-detail__left .box-detail__content--info img, .content-detail .box-detail__left .box-detail__content--info table {
    height: auto !important;
    width: 100%;
    max-width: 100%;
}

.content-detail .box-detail__left .box-detail__content--author {
    display: flex;
    align-items: center;
    padding: 15px 0;
}

.content-detail .box-detail__left .box-detail__content--author > p {
    width: 50%;
    margin: 0;
}

.content-detail .box-detail__left .box-detail__content--author > p a {
    font-weight: bolder;
}

.content-detail .box-detail__left .box-detail__content--author--name {
    width: 50%;
    justify-content: flex-end;
    display: flex;
    align-items: center;
}

.content-detail .box-detail__left .box-detail__content--author--name img {
    margin-right: 0.4rem;
}

.content-detail .box-detail__left .box-detail__content--author--name p {
    margin: 0;
    font-size: 1.4rem;
    color: #4d4d4d;
    font-weight: bolder;
}

.content-detail .box-detail__left .box-detail__content--categories {
    background: rgba(196, 196, 196, 0.2);
    border-radius: 10px;
    margin-top: 2.5rem;
    padding: 1.5rem;
}

.content-detail .box-detail__left .box-detail__content--categories h4 {
    font-size: 1.8rem;
    color: #000;
    padding: 0 0 1.5rem 0;
    border-bottom: 1px solid #dadada;
    font-family: var(--font-bold);
}

.content-detail .box-detail__left .box-detail__content--categories ul, .content-detail .box-detail__left .box-detail__content--categories li {
    list-style-type: disc;
    padding-left: inherit;
    font-size: 1.8rem;
    color: #4d4d4d;
    margin-top: 12px;
    font-family: var(--font-bold);
    font-weight: bolder;
}

.content-detail .box-detail__left .box-detail__content--categories ul:hover, .content-detail .box-detail__left .box-detail__content--categories li:hover {
    color: #40c0ff;
}

.content-detail .box-detail__left .box-detail__content--categories ul ::marker, .content-detail .box-detail__left .box-detail__content--categories li ::marker {
    color: #40c0ff;
}

.content-detail .box-detail__left .box-detail__content--list-tags {
    margin-top: 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.content-detail .box-detail__left .box-detail__content--list-tags img {
    margin-right: 0.6rem;
}

.content-detail .box-detail__left .box-detail__content--list-tags p {
    font-size: 1.2rem;
    color: #5c5c5c;
    padding: 3px 10px;
    border: 1px solid #dadada;
    text-decoration: none;
    border-radius: 4px;
    margin-right: 0.6rem;
    margin-bottom: 0;
}

.content-detail .box-detail__left .box-detail__content--list-tags p:hover {
    background-color: #9b9b9b;
    color: #fff;
}

.content-detail .box-detail__right .box-detail__same .box-news {
    padding: 15px 0;
}

.content-detail .box-detail__right .box-detail__same .box-news:last-child {
    border: none;
}

.content-detail .box-detail__right .box-detail__same .box-news__img {
    width: 40%;
    margin-right: 0;
}

.content-detail .box-detail__right .box-detail__same .box-news__img img {
    border-radius: 6px;
}

.content-detail .box-detail__right .box-detail__same .box-news__content {
    padding-left: 2rem;
    width: 60%;
}

.content-detail .box-detail__right .box-detail__same .box-news__content h3 {
    font-size: 1.6rem;
    color: #000;
    line-height: 1.4;
    font-family: var(--font-bold);
    max-height: unset;
    -webkit-line-clamp: 3;
    margin-top: 0px;
}

.content-detail .box-detail__right .box-detail__same .box-news__content p {
    display: none;
}

.content-detail .box-other h3 {
    margin: 20px 0;
    font-size: 2.4rem;
    color: #0571bc;
    font-family: var(--font-bold);
    margin-top: 30px;
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .content-detail {
        padding-bottom: 0;
        background: #fff;
    }

    .content-detail .box-detail {
        padding: 0 0 20px 0;
    }

    .content-detail .box-detail h3 {
        font-size: 2.2rem;
    }

    .content-detail .box-detail__left .box-detail__content {
        margin-bottom: 20px;
    }

    .content-detail .box-detail__left .box-detail__content--categories li {
        font-size: 1.4rem;
    }

    .content-detail .box-detail__right .box-detail__same .box-news__img {
        width: 36%;
    }

    .content-detail .box-detail__right .box-detail__same .box-news__content {
        width: 66%;
    }

    .content-detail .box-other {
        display: none;
    }
}

.question > img {
    width: 100%;
    margin-bottom: 3rem;
}

.question__content {
    text-align: center;
}

.question__content > h3 {
    font-size: 2.4rem;
    color: #0571bc;
    font-family: var(--font-bold);
    margin-bottom: 3rem;
}

.question__content .search {
    width: 50%;
    margin: 0 auto;
}

.question__content .search .input-text input {
    line-height: 3.2rem;
}

.question__list--title {
    padding: 2rem 0 2rem 0;
    margin-bottom: 2rem;
    display: flex;
    overflow-x: auto;
}

.question__list--title__name {
    border-radius: 30px;
    border: 1px solid #dadada;
    padding: 5px 30px;
    margin-right: 2rem;
    box-shadow: 0px 4px 15px rgba(129, 129, 129, 0.25);
    cursor: pointer;
}

.question__list--title__name p {
    margin-bottom: 0;
    font-family: var(--font-bold);
    font-size: 1.6rem;
    color: #0095d9;
    width: max-content;
}

.question__list--title__name:last-child {
    margin-right: 0;
}

.question__list--title .active {
    background: #0095d9;
}

.question__list--title .active > p {
    color: white;
}

.question__list .position-relative .bg-color {
    display: none;
}

.question__list .position-relative .question-roaming {
    padding: 0;
    background: none;
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .question__content .search {
        width: 100%;
    }

    .question__list--title {
        padding-top: 0;
    }
}

@media screen and (max-width: 991px) {
    .question__list--title {
        padding-top: 0;
    }
}

.order-detail > p {
    color: #7d7d7d;
    font-size: 1.8rem;
}

.order-detail__info {
    padding: 50px 16px 50px 75px;
    background-color: #ffffff;
    box-shadow: 0px 0px 30px rgba(146, 146, 146, 0.4);
    border-radius: 8px;
}

.order-detail__left {
    width: 40%;
}

.order-detail__left--label {
    font-size: 2rem;
    color: #000000;
    font-family: var(--font-bold);
}

.order-detail__left--order-name {
    font-size: 3.2rem;
    color: #0095d9;
    font-family: var(--font-bold);
}

.order-detail__right p {
    font-size: 1.6rem;
    color: #5c5c5c;
}

.order-detail__right .success {
    color: #11CA71;
}

.order-detail__right .falure {
    color: #FE5050;
}

.order-detail__table {
    box-shadow: 0px 4px 12px rgba(182, 182, 182, 0.25);
    border-radius: 8px;
}

.order-detail__footer {
    width: 100%;
    padding: 15px 10%;
    font-size: 1.6rem;
    color: #5c5c5c;
    background: rgba(232, 243, 255, 0.4);
    border-radius: 8px;
}

.order-detail__footer span {
    font-size: 2.4rem;
    color: #196fb0;
    font-family: var(--font-bold);
}

.order-detail .ant-table-footer {
    background: #fff;
}

.order-detail .table-title {
    background: #ffffff !important;
    font-size: 1.6rem;
    font-family: var(--font-bold);
    color: #828282 !important;
    text-align: center;
}

.order-detail .row-class .table-title {
    border: none !important;
}

.order-detail__btn a {
    cursor: pointer;
    text-decoration: none;
}

.order-detail__btn--close {
    text-align: center;
    text-transform: uppercase;
    font-size: 1.5rem;
    border-radius: 100px;
    border: 1.5px solid #3aa4f6;
    background-color: #fff;
    color: #3aa4f6;
    font-family: var(--font-bold);
}

.order-detail__btn button {
    display: inline-block;
    margin-right: 15px;
    margin-left: 15px;
    width: calc(25% - 30px);
    min-height: 50px;
}

@media screen and (max-width: 991px) {
    .order-detail__info {
        padding: 20px;
        flex-direction: column;
    }

    .order-detail__left {
        width: 100%;
    }

    .order-detail__table-mobile {
        background: #ffffff;
        box-shadow: 0px 4px 12px rgba(182, 182, 182, 0.25);
        border-radius: 8px;
    }

    .order-detail__table-mobile--item {
        line-height: 32px;
    }

    .order-detail__table-mobile--item span {
        font-size: 1.6rem;
    }

    .order-detail__table-mobile--item span:first-child {
        color: #828282;
    }

    .order-detail__table-mobile--item span:last-child {
        font-family: var(--font-bold);
        color: #5C5C5C;
    }

    .order-detail__table-mobile--border {
        position: relative;
    }

    .order-detail__table-mobile--border span {
        background: #d1e7ff;
        width: 2em;
        height: 2em;
        display: inline-block;
        border-radius: 50%;
        line-height: 2em;
        color: #739cc9;
        text-align: center;
        z-index: 2;
        position: relative;
    }

    .order-detail__table-mobile--border::after {
        content: "";
        width: 100%;
        height: 1px;
        border-bottom: 0.8px solid #d0dcdd;
        position: absolute;
        top: 50%;
        left: 0;
        z-index: 0;
    }

    .order-detail__table-mobile--sum {
        border-top: 0.8px solid #d0dcdd;
        color: #5c5c5c;
        margin-top: 10px;
        padding-top: 10px;
    }

    .order-detail__table-mobile--sum strong {
        color: #196FB0;
        font-size: 2.4rem;
    }

    .order-detail__btn button {
        width: calc(40% - 30px);
    }
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .order-detail__info {
        padding: 20px;
        flex-direction: column;
    }

    .order-detail__left {
        width: 100%;
    }

    .order-detail__table-mobile {
        background: #ffffff;
        box-shadow: 0px 4px 12px rgba(182, 182, 182, 0.25);
        border-radius: 8px;
    }

    .order-detail__table-mobile--item {
        line-height: 32px;
    }

    .order-detail__table-mobile--item span {
        font-size: 1.6rem;
    }

    .order-detail__table-mobile--item span:first-child {
        color: #828282;
    }

    .order-detail__table-mobile--item span:last-child {
        font-family: var(--font-bold);
        color: #5C5C5C;
    }

    .order-detail__table-mobile--border {
        position: relative;
    }

    .order-detail__table-mobile--border span {
        background: #d1e7ff;
        width: 2em;
        height: 2em;
        display: inline-block;
        border-radius: 50%;
        line-height: 2em;
        color: #739cc9;
        text-align: center;
        z-index: 2;
        position: relative;
    }

    .order-detail__table-mobile--border::after {
        content: "";
        width: 100%;
        height: 1px;
        border-bottom: 0.8px solid #d0dcdd;
        position: absolute;
        top: 50%;
        left: 0;
        z-index: 0;
    }

    .order-detail__table-mobile--sum {
        border-top: 0.8px solid #d0dcdd;
        color: #5c5c5c;
        margin-top: 10px;
        padding-top: 10px;
    }

    .order-detail__table-mobile--sum strong {
        color: #196FB0;
        font-size: 2.4rem;
    }

    .order-detail__btn button {
        margin-right: 8px;
        margin-left: 8px;
        width: calc(50% - 16px);
    }
}

.order-result__info--detail strong {
    font-family: var(--font-medium);
}

.sim-active__form {
    width: 40%;
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .sim-active__form {
        width: 90%;
    }
}

.sim-active .input-radio__title {
    font-size: 1.4rem;
    font-family: var(--font-medium);
}

.order-result-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #000000;
}

.order-result-info__ic-status {
    display: flex;
}

.order-result-info__title-status {
    display: flex;
    margin: 28px 0 12px 0;
}

.order-result-info__title-status span {
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
}

.order-result-info__info-status {
    display: flex;
    margin-bottom: 28px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #5c5c5c;
    text-align: center;
}

.order-result-info__box-info {
    display: flex;
    background: #ffffff;
    box-shadow: 0px 0px 30px rgba(146, 146, 146, 0.4);
    border-radius: 8px;
    width: 836px;
    flex-direction: column;
    align-items: center;
    padding: 40px;
}

@media screen and (max-width: 992px) {
    .order-result-info__box-info {
        width: 90%;
        padding: 40px 20px;
    }
}

.order-result-info__box-info .box-info__detail {
    width: 100%;
    display: flex;
    padding: 0 35px;
}

@media screen and (max-width: 992px) {
    .order-result-info__box-info .box-info__detail {
        flex-direction: column;
    }
}

.order-result-info__box-info .box-info__detail .detail-left {
    flex: 0 0 50%;
}

.order-result-info__box-info .box-info__detail .detail-left__title {
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 12px;
}

.order-result-info__box-info .box-info__detail .detail-left__des {
    font-weight: 700;
    font-size: 32px;
    line-height: 36px;
    color: #0095d9;
    margin-bottom: 32px;
}

.order-result-info__box-info .box-info__detail .detail-right {
    flex: 0 0 50%;
}

@media screen and (min-width: 1200px) {
    .order-result-info__box-info .box-info__detail .detail-right .payment-method {
        white-space: nowrap;
    }
}

.order-result-info__box-info .box-info__detail .detail-right__box {
    font-weight: 400;
    font-size: 16px;
    line-height: 40px;
}

.order-result-info__box-info .box-info__detail .detail-right__title {
    display: inline-block;
    margin-right: 8px;
    color: #5c5c5c;
}

.order-result-info__box-info .box-info__detail .detail-right__des {
    display: inline-block;
    color: #5C5C5C;
}

.order-result-info__box-info .box-info__detail .detail-right .hight-light {
    color: #ff0000;
}

.order-result-info__box-info .greeting {
    color: #000000;
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    text-align: center;
}

@media screen and (max-width: 992px) {
    .order-result-info__box-info .greeting {
        font-size: 16px;
    }
}

.order-result-info__box-info .greeting img {
    margin-left: 14px;
}

.order-result-info__box-info .greeting .link {
    color: #3aa4f6;
    text-decoration: underline;
    cursor: pointer;
}

.order-result-info__box-info .contact {
    text-align: center;
    position: relative;
    font-weight: 400;
    font-size: 16px;
    line-height: 40px;
    margin-bottom: 20px;
}

.order-result-info__box-info .contact img {
    position: absolute;
    top: 8px;
    right: -24px;
}

@media screen and (max-width: 992px) {
    .order-result-info__box-info .contact img {
        display: none;
    }
}

.order-result-info__box-info .btn-back-home {
    background: #3aa4f6;
    border-radius: 28px;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    color: #f9f9f9;
    padding: 12px 16px;
    cursor: pointer;
}

.order-failure {
    background: #FFFFFF;
    box-shadow: 0px 4px 30px rgba(182, 182, 182, 0.2);
    border-radius: 8px;
    position: relative;
    height: 100%;
    width: 100%;
    padding-bottom: 200px;
}

.order-failure__logo {
    padding-top: 100px;
    padding-bottom: 20px;
}

.order-failure h3 {
    font-size: 3.0rem;
    padding-bottom: 15px;
    color: #0A3977;
    font-weight: 900;
}

.order-failure p {
    color: #232735;
    font-size: 2.2rem;
    line-height: 150%;
}

.order-failure__contact {
    padding-top: 12px;
    font-size: 1.6rem;
    font-weight: lighter;
}

.order-success {
    background: #FFFFFF;
    box-shadow: 0px 4px 30px rgba(182, 182, 182, 0.2);
    border-radius: 8px;
    position: relative;
    height: 100%;
    width: 100%;
    padding-bottom: 200px;
}

.order-success__logo {
    padding-top: 100px;
    padding-bottom: 20px;
}

.order-success h3 {
    font-size: 3.0rem;
    padding-bottom: 15px;
    color: #0A3977;
    font-weight: 900;
}

.order-success p {
    color: #232735;
    font-size: 2.2rem;
    line-height: 150%;
}

.order-success__contact {
    padding-top: 12px;
    font-size: 1.6rem;
    font-weight: lighter;
}

.qr__dropdown {
    text-align: left;
}

.buttons_generate {
    display: flex;
    margin-top: 8px;
}

.buttons_generate button {
    border: none;
    margin: 0 4px;
}

.QRCode {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
}

.QRCode__card {
    width: 100%;
    display: flex;
    position: relative;
    justify-content: center;
}

.buttons_download {
    display: flex;
    margin-top: 8px;
    margin-bottom: -18px;
}

.buttons_download button {
    border: none;
    margin: 0 4px;
    text-transform: uppercase;
    border-radius: 30px;
    outline: none;
    text-align: center;
    padding: 10px 20px;
    display: block;
    min-width: 120px;
    white-space: nowrap;
}

.buttons_download .downloadPNG {
    background-color: #40c3ff;
    color: white;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 10px;
    text-align: center;
}

.buttons_download .downloadSVG {
    background-color: #42dc64;
    color: white;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 10px;
    text-align: center;
}

.multi-platform {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(146, 146, 146, 0.25);
    padding-bottom: 50px;
    margin-top: 60px;
}

.multi-platform p {
    font-size: 1.6rem;
}

.multi-platform strong {
    font-size: 2rem;
}

.multi-platform__tab {
    border-bottom: 1px solid #DADADA;
}

.multi-platform__tab > div {
    width: 25%;
    text-align: center;
    cursor: pointer;
}

.multi-platform__tab span {
    display: block;
    padding: 26px 0 16px;
    color: #A0B4B6;
    font-size: 3.2rem;
    font-family: SFProBold;
    line-height: 28px;
}

.multi-platform__tab .active {
    border-bottom: 3px solid #F7951E;
}

.multi-platform__tab .active span {
    color: #F7951E;
}

.multi-platform__content h3 {
    color: #0064BF;
    font-size: 3rem;
    font-family: SFProBold;
}

.multi-platform__item {
    width: 25%;
    padding: 25px;
    text-align: center;
}

.multi-platform__item p {
    text-align: justify;
}

.multi-platform__intro > p {
    width: 60%;
    margin: auto;
    text-align: center;
}

.multi-platform__intro--des > img {
    width: 45%;
}

.multi-platform__intro--des > div {
    width: 45%;
}

.multi-platform__intro--des > div p {
    text-align: justify;
}

.multi-platform__features--item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: calc(100% / 6);
    color: #fff;
    padding: 60px 0;
    margin-bottom: 1px;
}

.multi-platform__features--item h4 {
    color: #fff;
    font-size: 2.6rem;
    line-height: 3;
}

.multi-platform__features--item:nth-child(1), .multi-platform__features--item:nth-child(4) {
    background: #F3A53C;
}

.multi-platform__features--item:nth-child(2), .multi-platform__features--item:nth-child(5) {
    background: #3783D3;
}

.multi-platform__features--item:nth-child(3) {
    background: #223E74;
}

.multi-platform__features--item:nth-child(6) {
    background: #969696;
}

.multi-platform__features .customBtn {
    padding: 15px 80px;
}

.multi-platform__tab2 img {
    max-width: 100%;
}

.multi-platform__tab2 .fl-50 {
    flex: 0 0 50%;
}

.multi-platform__tab2 .fl-40 {
    flex: 0 0 40%;
}

.multi-platform__video .customContainer {
    overflow: hidden;
}

.multi-platform__video .customContainer video {
    width: 100%;
    cursor: pointer;
}

.multi-platform__video .customContainer .swiper-slide video {
    transition: filter .7s ease;
    filter: grayscale(100%);
}

.multi-platform__video .customContainer .swiper-slide-active video {
    filter: none;
}

.multi-platform__video p {
    font-size: 2rem;
}

.multi-platform__arrow-btn {
    width: 72px;
    height: 72px;
}

.multi-platform .swiper-button-prev {
    left: 10%;
}

.multi-platform .swiper-button-next {
    right: 10%;
}

@media (max-width: 1199px) {
    .multi-platform {
        margin-top: 30px;
    }

    .multi-platform__tab > div {
        width: 50%;
    }

    .multi-platform__tab span {
        font-size: 2rem;
    }

    .multi-platform__intro--des {
        flex-direction: column;
    }

    .multi-platform__intro--des > img, .multi-platform__intro--des > div {
        width: 60%;
        margin: auto;
    }

    .multi-platform__intro--des p img {
        display: none;
    }

    .multi-platform__item {
        width: 50%;
    }

    .multi-platform__features--item {
        padding: 80px 0;
        width: calc(100% / 3);
    }
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .multi-platform {
        margin-top: 30px;
    }

    .multi-platform__tab > div {
        width: 50%;
    }

    .multi-platform__tab span {
        font-size: 2rem;
    }

    .multi-platform__content h3 {
        width: 55%;
        margin: auto;
    }

    .multi-platform__item {
        width: 100%;
    }

    .multi-platform__intro > p {
        width: calc(100% - 30px);
        text-align: justify;
    }

    .multi-platform__intro--des {
        flex-direction: column;
        padding: 25px;
    }

    .multi-platform__intro--des > img, .multi-platform__intro--des > div {
        width: 100%;
    }

    .multi-platform__intro--des p img {
        display: none;
    }

    .multi-platform__features h3 {
        width: 100%;
        margin: initial;
    }

    .multi-platform__features--item {
        padding: 30px 0;
        width: calc(100% / 2);
    }

    .multi-platform__features--item h4 {
        font-size: 1.4rem;
        line-height: 2;
        margin-top: 8px;
    }

    .multi-platform__features--item span {
        font-size: 1.3rem;
    }

    .multi-platform__features--item:nth-child(4) {
        background: #223E74;
    }

    .multi-platform__features--item:nth-child(5) {
        background: #F3A53C;
    }

    .multi-platform__video .customContainer video {
        width: 100%;
        height: auto;
    }

    .multi-platform .swiper-button-prev {
        display: none;
    }

    .multi-platform .swiper-button-next {
        display: none;
    }
}

.kaspersky__title {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #dadada;
}

.kaspersky__title h2 {
    font-size: 3rem;
    color: #0095d9;
    font-family: var(--font-medium);
    border-bottom: 3px solid #40c3ff;
    padding: 10px 5% 10px 0;
    margin-bottom: 0;
    display: inline-block;
    margin-right: 10px;
}

.kaspersky__title img {
    width: 26px;
    margin-right: 10px;
}

.kaspersky__title--menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
}

.kaspersky__title--menu-sub {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.kaspersky__title--menu-sub a {
    color: #4d4d4d;
    font-family: var(--font-medium);
    font-size: 1.6rem;
    cursor: pointer;
    margin-right: 20px;
}

.kaspersky__title--menu-sub a:hover {
    color: #0071bc;
}

.kaspersky__title--menu-sub a:hover {
    text-decoration: underline;
}

.kaspersky__title--menu-sub .active a {
    color: #0071bc;
}

.kaspersky__see-all {
    font-size: 1.5rem;
    margin-left: auto;
}

.kaspersky__see-all a {
    color: #4D4D4D;
    margin-right: 10px;
    text-decoration: none;
}

.kaspersky__see-all:hover a {
    color: #3aa4f6;
}

.kaspersky__see-all:hover svg {
    color: #3aa4f6;
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .kaspersky__title {
        border: none;
        flex-direction: column;
        align-items: flex-start;
    }

    .kaspersky__title h2 {
        font-size: 2.1rem;
    }

    .kaspersky__title h2.orange {
        margin-bottom: 0;
    }

    .kaspersky__title--menu {
        overflow-x: scroll;
    }

    .kaspersky__title--menu-sub {
        margin-top: 10px;
        border-bottom: 1px solid #dadada !important;
        padding-bottom: 20px;
    }

    .kaspersky__title--menu-sub a {
        white-space: nowrap;
        font-size: 1.4rem;
        margin-right: 20px;
        margin-bottom: 10px;
    }

    .kaspersky h4 {
        font-size: 1.5rem;
        margin-top: 12px;
    }

    .kaspersky h4:first-child {
        margin-left: 0;
    }

    .kaspersky__see-all {
        font-size: 1.2rem;
        width: 30%;
        text-align: right;
    }

    .kaspersky__see-all a {
        margin-right: 5px;
    }
}

.kaspersky__listmytv .box-internet__border-top {
    height: 5px;
    border-radius: 2.5px;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    background-color: #f7951e;
}

.kaspersky-step2 .custom-ant-row {
    width: calc(50% - 8px);
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .kaspersky-step2 .custom-ant-row {
        width: 100%;
    }
}

.kaspersky-order {
    background: #f8f8f8;
    box-shadow: 0px 0px 30px rgba(146, 146, 146, 0.4);
    border-radius: 8px;
}

.kaspersky-order h3 {
    font-family: var(--font-bold);
    font-size: 2rem;
    line-height: 26px;
    color: #fff;
    text-align: center;
    margin-bottom: 0;
    background: #3aa4f6;
    padding: 13px 0;
    border-radius: 8px 8px 0px 0px;
}

.kaspersky-order__body {
    padding: 16px 5% 40px;
}

.kaspersky-order__button {
    margin: 20px 0 30px;
}

.kaspersky-order__button button {
    padding: 12px 15%;
    display: block;
    margin: 0 auto;
}

.kaspersky-order__des {
    font-size: 1.3rem;
    color: #8b8b8b;
}

.kaspersky-order__content {
    background-color: #fff;
    border-radius: 8px;
    padding: 17px 24px 14px;
    margin-bottom: 16px;
}

.kaspersky-order__content--sum {
    font-size: 2.4rem;
    color: #196fb0;
    font-family: var(--font-bold);
}

.kaspersky-order__content p {
    font-size: 1.4rem;
    color: var(--primary3);
}

.kaspersky-order__item {
    font-size: 1.6rem;
    color: #5c5c5c;
}

.kaspersky-order__item .w-30 {
    width: 30%;
}

.kaspersky-order__item .w-70 {
    width: 70%;
}

.kaspersky-order__item .ant-input-affix-wrapper {
    width: 60%;
    height: 24px;
    border-radius: 4px;
    margin: auto;
}

.kaspersky-order__item span {
    line-height: 40px;
}

.kaspersky-order__item span:last-child {
    font-family: var(--font-bold);
}

@media screen and (min-width: 200px) and (max-width: 767px) {
    .kaspersky-order__item {
        font-size: 1.2rem;
    }

    .kaspersky-order__item .ant-input-affix-wrapper input::placeholder {
        font-size: 0.9rem;
    }
}

.kaspersky-detail .swiper-container {
    overflow-y: visible;
    overflow-x: clip;
}

.kaspersky-detail .swiper-container .swiper-pagination {
    bottom: -25px;
}
