body {
    position: relative;
}

.icon-tele {
    z-index: 9999;
    font-size: 2rem;
    position: fixed;
    bottom: 20px;
    right: 30px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    animation: at-ripple-blue 1s linear infinite;
}

@keyframes at-ripple-blue {

    0%,
    100% {
        bottom: 20px;
    }

    50% {
        bottom: 35px;
    }
}

.btn-login {
    border-radius: 25px;
    padding: 10px 30px;
    margin: 10px;
    background-color: unset;
    border: 3px solid #FEEAEA !important;
    color: white;
    -webkit-box-shadow: 0px 0px 5px 2px rgba(163, 163, 163, 0.5);
    -moz-box-shadow: 0px 0px 5px 2px rgba(163, 163, 163, 0.5);
    box-shadow: 0px 0px 5px 2px rgba(163, 163, 163, 0.5);
    font-weight: 700;
}

.btn-register {
    border-radius: 60px;
    border: 1px solid #FFF;
    background: linear-gradient(90deg, #C34029 0%, #FF7214 24%, #DD600F 48.5%, #FF7214 74%, #C34029 100%);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25), 0px 0px 8px 0px rgba(27, 26, 25, 0.80) inset;
    padding: 10px 35px;
    gap: 10px;
    color: white;
    font-weight: 700;
}

.section-notification {
    height: 53px;
    background: linear-gradient(180deg, #FF9300, #FF9300, #FF9300);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-notification marquee {
    color: white;
}

.mainpage-slogan a {
    background: linear-gradient(0deg, #FF531A 0%, #FE9600 100%);
    margin: auto;
    width: 60%;
    height: max-content;
    display: flex;
    justify-content: center;
    text-align: center;
    border-bottom-left-radius: 70px;
    border-bottom-right-radius: 70px;
    color: #FFF;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 10px 0px;
    font-size: 22px;
    font-weight: 500;
    animation: slide 2s infinite;
    box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.25) inset;
    stroke-width: 2px;
    cursor: pointer;
}

@keyframes slide {

    0%,
    100% {
        color: #FFE161;
    }

    50% {
        color: #FFF;
    }
}

.benefit-session {
    width: 100%;
    height: max-content;
}

.benefit-session-container {
    width: 100%;
    margin-top: 20px;
}

.benefit-session-title {
    background: linear-gradient(0deg, #FF531A 0%, #FE9600 100%);
    font-family: Roboto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    height: auto;
    width: fit-content;
    flex-shrink: 0;
    border-top-right-radius: 75px;
    padding: 8px 50px 8px 20px !important;
}


.benefit-session-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 20px;
}

.benefit-content-item {
    padding: 0px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: justify;
}

.benefit-content-item-img {
    background: url(/assets/images/benefit-content-item-bg.png);
    background-position: 100% 100%;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefit-content-item-title {
    color: #000;
    text-align: center;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    padding-bottom: 15px;
}

.benefit-content-item-content {
    color: #050505;
    text-align: center;
    font-family: Roboto;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: justify;
    padding: 0px 40px;
    line-height: 1.4;
}

.ambassador-content {
    width: 100%;
    height: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin-bottom: 20px;
}

.ambassador-video {
    width: 95%;
    border-radius: 20px;
}

.ambassador-video video {
    border-radius: 30px;
}

.ambassador-image {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex: 1;
    max-height: 280px;
    width: 50%;
    padding-left: 20px;
}

.ambassador-image .ambassador-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    height: 100%;
}


.ambassador-image-sign img,
.ambassador-image-person img {
    width: 80% !important;
}

.ambassador-info {
    padding-left: 20px;
}

.ambassador-info p {
    margin-bottom: 0px;
    color: #000;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.ambassador-info span {
    color: #FEAD00;
    font-family: Roboto;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
    text-transform: capitalize;
}

.brand-item {
    flex: 1 1 calc(100% / 6 - 16px);
    /* Each item takes up 1/6th of the row minus gap */
    max-width: calc(100% / 6 - 16px);
    /* Prevent items from growing beyond 1/6th */
    text-align: center;
    /* Optional: Center-align the content */
}

.brand-item img {
    width: 100%;
    /* Make images responsive */
    height: auto;
    /* Maintain aspect ratio */
}

.make-money-slogan {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.make-money-slogan p {
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-align: center;
    color: #3f3e3e;
    padding-top: 15px;
}

.make-money-content {
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 0px;
    margin: auto
}

.make-money-item-group {
    padding: 0px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: justify;
    background: url(/assets/images/make-money-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding-bottom: 50px;
    background-position: center;
}

.make-money-item {
    padding: 0px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: justify;
}

.make-money-item-img {
    background: url(/assets/images/benefit-content-item-bg.png);
    background-position: cover;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    width: 100%;
}

.make-money-item-img img {
    width: 30%;
    height: auto;
    /* Maintain aspect ratio */
}


.make-money-item-title {
    color: #000;
    text-align: center;
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    padding-bottom: 15px;
    height: 50px;
}

.make-money-item-content {
    color: #050505;
    text-align: center;
    font-family: Roboto;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: justify;
    padding: 0px 40px;
    line-height: 1.4;
}

.charity-content {
    width: 100%;
    padding-top: 10px 0px;
    height: max-content;
    margin-top: 15px;
}

.charity-video-main {
    display: flex;
    justify-content: center;
    align-items: center;
}

.charity-video-main .ytb-player {
    cursor: pointer;
    width: 100% !important;
    padding-bottom: 0px;
    /* max-height: 500px; */
    aspect-ratio: 16/9;
    position: relative;
}

.charity-video-main .ytb-player .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
}

.charity-video-main .ytb-player iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border: 5px solid #FFAC00;
    box-shadow: 2px 6.01px 0px 0px #F90, 0px 1.503px 1.503px 0px rgba(0, 0, 0, 0.25);
}

.charity-video-main .ytb-player img {
    border: unset;
    box-shadow: unset;
    width: 100%;
    height: 100%;
}

.charity-video-main img {
    border-radius: 5px;
    border: 5.635px solid #FFAC00;
    box-shadow: 5.635px 6.01px 0px 0px #F90;
    width: 100%;
}

.charity-video-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0px;
    align-items: flex-start;
}

.charity-video-item {
    width: 100%;
    gap: 15px;
    display: flex !important;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
}


.charity-video-item-video {
    width: 50%;
    border-radius: 5px;
    position: relative;
}


.charity-video-item-video img {
    width: 100%;
    border-radius: 5px;
    border: 2px solid #FFAC00;
    box-shadow: 2px 6.01px 0px 0px #F90, 0px 1.503px 1.503px 0px rgba(0, 0, 0, 0.25);
}

.charity-video-item-video .ytb-player {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    border: unset;
    box-shadow: unset;
    width: 50px;
}

.charity-video-item-video .ytb-player img {
    border: unset;
    box-shadow: unset;
    width: 40px;
    height: 40px;
}

.slick-vertical .slick-slide {
    padding: 0px 0px 20px 0px;
}

.charity-video-item-content {
    background: linear-gradient(109deg, #FFF4EF 3.34%, #FFF 95.78%);
    background-size: 100% 100%;
    width: 45%;
    padding: 5px 10px 0px;
    border-radius: 10px;
}

.charity-video-item-content p {
    height: 100%;
    text-align: justify;
    font-family: Roboto;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #070707;
    border-radius: 2px;
}

.agent-mode-content p {
    color: #0B0B0B;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 5px 0px 0px;
    margin: 5px 0px;
    line-height: 1.4;
}

.agent-mode-content h1 {
    color: var(--Color-4, #FF6812);
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    padding: 0px;
    padding: 15px 0px 0px;
    margin: 5px 0px;
}

table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
    margin: 10px auto;
}

td {
    border: 1px solid #FFF;
    text-align: left;
    padding: 10px;
    background: #FEF0EB;
    color: var(--Color-4, #000);
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    text-align: center;
}

th {
    border: 1px solid #FFF;
    text-align: left;
    padding: 15px;
    background: #F6D1C4;
    color: var(--Color-4, #FF6812);
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
    text-align: center;
}

.footer-ok {
    background-color: #202f46;
}


.footer {
    max-width: 843px;
    margin: 0 auto;
    height: max-content;
    padding: 40px 0;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.footer-logo-1 {
    width: 170px;
    height: 80px;
}

.footer-logo-2 {
    width: 78px;
    height: 34px;
}

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

.text-lienhe {
    color: #fff;
    font-size: 18px;
    font-weight: 700px;
    padding-bottom: 10px;
}

.lienhe {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.all-lienhe {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 75%;
}

.lienhe-list {
    padding-left: 0;
    list-style-type: none;
}

.lienhe-list li a {
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 10px;
}

i {
    background: #fff;
    color: #000;
    padding: 5px;
    border: 1px solid #fff;
    border-radius: 20px;
}

.mxh {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 35px;
}

.fb {
    width: 109px;
    height: 54px;
}

.yt {
    width: 109px;
    height: 30px;
}

.qr {
    padding-bottom: 40px;
}

.qr-img {
    width: 128px;
    height: 128px;
}

.idol {
    width: 25%;
    position: absolute;
    top: -160px;
    right: -20px;
}

.idol-img-hidden {
    display: none;

}

.mxh-fix {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 120px;

}

.idol-img {
    width: 228px;
    height: 308px;
}

.modal-body {
    padding: 0px;
    width: 1280px;
    height: 720px;
}

.modal-body iframe {
    width: 100%;
    height: 100%;
}

.img-fluid {
    display: block;
    height: 100vh;
    width: 100vw;
    border: none;
    object-fit: fill;
}

@media screen and (max-width: 1400px) {
    .benefit-content-item-content {
        padding: 0px 10px;
    }

    .benefit-content-item {
        margin-bottom: 10px;
    }

    .make-money-item-content {
        padding: 0px 30px;
    }

    .charity-content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .charity-video-main {
        width: 100%;
        margin-bottom: 20px;
    }

    .charity-video-list {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
    }

    .charity-video-main {
        max-height: unset;
    }

    .charity-video-item {
        width: 30%;
        padding: 0px 12px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .charity-video-item-video {
        width: 100%;
        border-radius: 5px;
    }

    .charity-video-item-content {
        width: 100%;
        padding: 5px 10px 0px;
        border-radius: 10px;
    }

    .idol-img-hidden {
        display: none;

    }

    .idol {
        right: 0;
    }

    .idol-img {
        width: 200px;
    }

    .content {
        padding: 0 20px;
    }
}

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

    .make-money-item-content {
        padding: 0px 20px;
    }
}

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

    .make-money-content {
        width: 100%;
    }

    .make-money-item-content {
        padding: 0px;
        font-size: 12px;
    }

    .navbar-login-btn {
        display: flex;
        justify-content: flex-end;
        flex-direction: column;
    }
}