/***** 
    ANIMATION
 *****/
/*
    LIVE CHAT
*/
@keyframes shake {
    0% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }

    10% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    20% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }

    30% {
        -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
    }

    40% {
        -webkit-transform: rotate(25deg) scale(1) skew(1deg);
    }

    50% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }

    100% {
        -webkit-transform: rotate(0) scale(1) skew(1deg);
    }
}

@keyframes zoom {
    0% {
        transform: scale(.9);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px transparent;
    }

    100% {
        transform: scale(.9);
        box-shadow: 0 0 0 0 transparent;
    }
}
/*
    LIVE CHAT
*/
/*
    CONTENT TILTE
*/
@keyframes slide{
    0% {
        color: #337C9D;
    }
    50% {
        color: #ffffff;
    }
}

@keyframes changeBorderRadius {
    0% {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border-bottom-left-radius: .3rem;
        border-bottom-right-radius: .3rem;
    }

    100% {
        border-top-left-radius: .1rem;
        border-top-right-radius: .1rem;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }
}


@keyframes changeBorderRadius1 {
    0% {
        border-top-left-radius: .1rem;
        border-top-right-radius: .1rem;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;        
    }

    100% {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border-bottom-left-radius: .3rem;
        border-bottom-right-radius: .3rem;
    }
}
/*
    CONTENT TILTE
*/
/***** 
    ANIMATION 
*****/
:root {
    --skin-accent: linear-gradient(to top, #113565, #3da4f3);
    --skin__border: #2A68A1;
    --skin-bg: #69bdfa;
    --lobby__rem-unit: 100;
    --lobby__max-width: 100vw;
    --margin-top : .1rem;
}

html[data-ui-contain="1"] {
    max-width: var(--lobby__max-width);
    margin: 0 auto;
    font-size: calc(var(--lobby__max-width) / (750 / var(--lobby__rem-unit))) !important;
}

html[data-device=mobile] {
    font-size: calc(100vw / (750 / 100));
}

img {
    width: 100%;
    height: 100%;
}

a{
    text-decoration: none;
}

body {
    margin: 0;
    padding: 0;
    height: 100vh;
    font-family: Arial, sans-serif;
    font-size: 18px !important;
    background-color: var(--skin-bg);
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.company-name {
    font-weight: bold !important;
    color: #edcc16 !important;
}
/***** 
    TOP BANNER
 *****/
.container {
    width: 100%;
}

    .container .top-banner {
        display: flex;
        height: .8rem;
        background: var(--skin-bg);
    }

        .container .top-banner .top-logo {
            width: 20%;
            height: 100%;
            margin: .1rem auto;
            position: relative;
            z-index: 1;
        }

        .container .top-banner .menu-top {
            position: absolute;
            right: .3rem;
            top: .2rem;
            width: 20vw;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-align: center;
            align-items: center;
            gap: .1rem;
        }

            .container .top-banner .menu-top button {
                width: 100%;
                height: .2rem;
                font-size: .07rem;
                font-weight: bold;
                border-radius: 17px;
                border: none;
                text-transform: uppercase;
                cursor: pointer;
            }

                .container .top-banner .menu-top button:hover {
                    text-decoration: none !important;
                    -webkit-transform: translateY(-5px);
                    transform: translateY(-5px);
                }

                .container .top-banner .menu-top button.button-login {
                    color: #fff;
                    background: linear-gradient(to top, #2a68a1, #01278a);
                }

                .container .top-banner .menu-top button.button-register {
                    color: #2a68a1;
                    background: #fff;
                }

    .container .slider {
        width: 100%;
        height: 1.5rem;
        display: flex;
        justify-content: space-between;
    }

        .container .slider .slide-wrap {
            filter: drop-shadow(-1px 6px 10px rgba(50, 50, 0, 0.5));
            width: 45%;
            height: 100%;
        }


    .container .slider .slideshow {
        width: 100%;
        height: 100%;
        position: relative;
        overflow: hidden;
        background: #fff;
    }

        .container .slider .slideshow img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: fill;
        }

        .container .slider #slideshow-left {
            clip-path: polygon(0% 0%, 100% 15%, 100% 85%, 0% 100%);
        }

        .container .slider #slideshow-right {
            right: 0;
            clip-path: polygon(0% 15%, 100% 0%, 100% 100%, 0% 85%);
        }

    .container .mainpage-slogan {
        position: relative;
        margin-top: -.11rem;
        width: 50%;
    }
/***** 
    TOP BANNER
 *****/
/***** 
    HEADER TITLE
 *****/
.mainpage-slogan {
    position: relative;
    margin-top: var(--margin-top);
    width: 80%;
    margin: .1rem auto 0;
}

    .mainpage-slogan span {
        background: linear-gradient(to top, #113565, #3da4f3);
        margin: auto;
        width: 100%;
        height: max-content;
        display: flex;
        justify-content: center;
        text-align: center;
        border-bottom-left-radius: .3rem;
        border-bottom-right-radius: .3rem;
        color: #FFF;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        padding: 10px 0px;
        font-size: 22px;
        font-weight: 500;
        stroke-width: 2px;
        text-decoration: none;
        text-transform: uppercase;
    }

    .mainpage-slogan img {
        position: absolute;
        width: .15rem;
        height: .1rem;
        filter: brightness(15);
        right: .15rem;
    }

        .mainpage-slogan img.active {
            transform: rotate(180deg);
        }

/***** 
    HEADER TITLE
 *****/
/***** 
    CONTENT
 *****/
.content-container {
    width: 80vw;
    margin: 0 auto;
}

.panel {
    width: 80%;
    height: auto;
    background: #FFF;
    display: none;
    margin: 0 auto;
    filter: drop-shadow(-1px 6px 10px rgba(50, 50, 0, 0.5));
}

/* VIDEO */
.box-legit {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: .2rem;
}

    .box-legit .item {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: .1rem;
    }

        .box-legit .item img {
            height: .4rem;
            width: .4rem;
        }

        .box-legit .item span {
            color: #FFF;
            font-size: .1rem;
            font-weight: bold;
            text-transform: uppercase;
            width: 1rem;
            animation: slide 2s infinite;
        }

.ambassador-video {
    margin-top: var(--margin-top);
    width: 100%;
    display: flex;
    justify-content: center;
}

.ambassador-video video {
    width: 90%;
    border-radius: .1rem;
}
/* VIDEO */
/* VENDOR BENEFIT */
.list-benefit {
    display: flex;
    align-items: flex-start;
    width: 100%;
    padding: .1rem;
    gap: .05rem;
}

    .list-benefit .item-benefit {
        align-items: center;
        width: 25%;
    }

        .list-benefit .item-benefit .item-hearder {
            align-items: center;
            width: 100%;
            display: flex;
            gap: .05rem;
            justify-content: center;
            color: #28a9ff;
        }

        .list-benefit .item-benefit img {
            height: .2rem;
            width: .2rem;
        }

        .list-benefit .item-benefit span {
            color: #000000;
            line-height: normal;
            font-size: .08rem;
            margin-top: .1rem;
            text-align: left;
        }
/* VENDOR BENEFIT */
/* VENDOR POLICY */
.vendor-policy {
    padding: .1rem;
}

    .vendor-policy p {
        color: #0B0B0B;
        font-family: Roboto;
        font-size: .08rem;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        padding: 5px 0px 0px;
        margin: 5px 0px;
        line-height: 1.4;
    }

        .vendor-policy p a {
            color: #000;
            font-weight: 700;
        }

    .vendor-policy h1 {
        color: #28a9ff;
        font-family: Roboto;
        font-size: .1rem;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        padding: 0px;
        padding: 15px 0px 0px;
        margin: 5px 0px;
    }    

.vendor-policy table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
    margin: 10px auto;
}

    .vendor-policy table td {
        border: 1px solid #FFF;
        text-align: left;
        padding: 10px;
        background: #28a9ff;
        color: #FFF;
        font-family: Roboto;
        font-size: .08rem;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        text-transform: uppercase;
        text-align: center;
    }

    .vendor-policy table th {
        border: 1px solid #FFF;
        text-align: left;
        padding: 15px;
        background: #28a9ff;
        color: #fff;
        font-family: Roboto;
        font-size: .08rem;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        text-transform: uppercase;
        text-align: center;
    }
/* VENDOR POLICY */
/* VENDOR CONDUCT */
.vendor-conduct {
    width: 100%;
}

    .vendor-conduct .conduct-header {
        width: 100%;
        text-align: center;
        color: #28a9ff;
        font-size: .08rem;
    }

    .vendor-conduct .list-conduct {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items:center;
        gap: .05rem;
    }

        .vendor-conduct .list-conduct .item-conduct {
            width: 30%;
            height: 100%;
        }        

            .vendor-conduct .list-conduct .item-conduct .item-conduct-header {
                display: flex;
                justify-content: center;
                height: .3rem;
                gap: 5px;
            }

                .vendor-conduct .list-conduct .item-conduct .item-conduct-header img {
                    height: .3rem;
                    width: .3rem;
                }

            .vendor-conduct .list-conduct .item-conduct span {
                line-height: normal;
                font-size: .08rem;
                text-align: left;
            }

    .vendor-conduct .list-conduct-span {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: .1rem;
        gap: .05rem;
    }

        .vendor-conduct .list-conduct-span .item-conduct-span {
            width: 30%;
            height: 1rem;
        }

            .vendor-conduct .list-conduct-span .item-conduct-span a {
                color: #28a9ff;
                font-weight: bold;
            }
/* VENDOR CONDUCT */
/***** 
    CONTENT
 *****/
/***** 
    FOOTER
 *****/
footer {
    width: 100%;
    background-color: #FFF;
    margin-top: var(--margin-top);
}

    footer .contact-wrap {
        width: 50%;
        margin: .1rem auto 0;
        text-align: center;
        padding-top: var(--margin-top);
    }

        footer .contact-wrap span{
            font-size: .1rem;
            font-weight: 400;
            text-transform: uppercase;            
        }

    footer .box-contact {
        margin: .1rem auto;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: .04rem;
        padding: 0 0 var(--margin-top) 0;
    }

        footer .box-contact img {
            width: .2rem;
            height: .2rem;
        }
/***** 
    FOOTER
 *****/
/***** 
    LIVE CHAT
 *****/
.br_right_bar {
    position: fixed;
    top: 85%;
    transform: translateY(-50%);
    right: 24px;
    z-index: 1111;
    transition: .3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4.5px;
    animation: zoom 1.3s infinite;
}

    .br_right_bar .right-item {
        width: 100px;
        height: 100px;
        gap: 4px;
        position: relative;
        cursor: pointer;
        border-radius: 50%;
        border: 1px solid #97d2fe;
        background: linear-gradient(180deg, #019efb, #0176dc);
        box-shadow: inset 0 -3.55px 4.733px 0 rgba(0, 0, 0, .25);
        animation: shake 1.3s infinite;
    }

        .br_right_bar .right-item .LIVECHAT {
            width: 33px;
            height: 38px;
        }


        .br_right_bar .right-item .rightbat-box .rightbar_title {
            color: #fff;
            text-align: center;
            font-size: 10px;
            font-weight: 600;
        }

    .br_right_bar a {
        text-decoration: none;
    }

    .br_right_bar .right-item, .br_right_bar .right-item .rightbat-box {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        background: url(../images/CSKH.png) no-repeat 50%;
        background-size: contain;
    }

@media screen and (max-width: 900px) {
    .br_right_bar {
        top: 30%;
    }

        .br_right_bar .right-item {
            width: 100px !important;
            height: 100px !important;
        }
}

@media screen and (max-width: 767px) {
    .br_right_bar {
        top: 30%;
    }

        .br_right_bar .right-item {
            width: 60px !important;
            height: 60px !important;
        }
}
/***** 
    LIVE CHAT
 *****/