@charset "UTF-8";
/* @import url(../../fonts/font-awesome-4.5.0/css/font-awesome.min.css); */
@import url('https://storage.googleapis.com/tada-cdn-asia/All-In-One/production/css/font-awesome.min.css');

.loading-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #fff;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    animation: spin 1s linear infinite;
}

html,
body {
    scroll-behavior: smooth;
    position: relative;
    background-color: #111;
}

a {
    text-decoration: none;
}

.wrapper {
    background-color: #111;
    position: relative;
}

.navbar {
    background: initial;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background-image: radial-gradient(circle, rgba(20, 20, 20, 0.9), rgba(40, 40, 40, 0.8), rgba(53, 53, 53, 0.9));
    color: #fff;
    border: 0;
    border-bottom: 1px solid;
    border-image-source: linear-gradient(to right, rgba(173, 173, 173, 0), rgba(71, 71, 71, 0.7529411765), rgba(0, 0, 0, 0));
    border-image-slice: 1;
    height: 48px;
    border-radius: 0;
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    visibility: hidden;
    align-items: center;
    -webkit-box-shadow: -1px 0px 12px rgba(0, 0, 0, 0.2);
    box-shadow: -1px 0px 12px rgba(0, 0, 0, 0.2);
    -webkit-transition: 0.1s;
    transition: 0.1s;
}

.swiper-wrapper {
    user-select: none;
}

.button {
    user-select: none;
}

@media only screen and (min-width: 1279px) {
    .navbar {
        height: 70px;
    }
}

.navbar.scroll {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.navbar .container {
    width: 100%;
    height: 100%;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (min-width: 1279px) {
    .navbar .container {
        padding: 0 15px;
    }
}

.navbar__logo {
    display: block;
    height: 2.2rem;
    margin-left: 1%;
}

.navbar__logo img {
    height: 100%;
    width: auto;
}

.navbar__main {
    width: calc(100% - 100px);
    height: 100%;
    background: transparent;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-size: 1rem;
    line-height: 1.5em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media only screen and (min-width: 1279px) {
    .navbar__main {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.navbar__main--list {
    position: absolute;
    top: 48px;
    left: 100%;
    width: 100%;
    height: calc(100vh - 48px);
    -webkit-transition: -webkit-transform .3s ease-out;
    transition: -webkit-transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out, -webkit-transform .3s ease-out;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    background: rgba(20, 20, 20, 0.8);
    /* overflow-y: auto; */
}

@media only screen and (min-width: 1279px) {
    .navbar__main--list {
        width: calc(100% - 70px);
        height: 100%;
        background: transparent;
        position: relative;
        top: inherit;
        left: inherit;
    }
}

.navbar__main--list.active {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

@media only screen and (min-width: 1279px) {
    .navbar__main--list.active {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.navbar__main--list ul {
    list-style: none;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media only screen and (min-width: 1279px) {
    .navbar__main--list ul {
        width: 100%;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        height: 100%;
    }
}

.navbar__main--list ul li {
    margin: 16px 0;
    text-align: center;
    display: inline-block;
    color: rgb(215, 221, 224);
    text-transform: uppercase;
    font-weight: bolder;
}

@media only screen and (min-width: 1279px) {
    .navbar__main--list ul li {
        margin: 0 1.5625%;
    }
}

.navbar__main--list ul li a {
    display: inline-block;
    color: #FFF;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 500;
}

.navbar__main--list ul li a:hover,
.navbar__main--list ul li a:focus,
.navbar__main--list ul li a:active {
    text-decoration: none;
    cursor: pointer;
    color: #ffcd4f;
}

@media only screen and (min-width: 1279px) {
    .navbar__main--list ul li a {
        color: #FFF;
    }
}

.navbar__main__user-selector {
    width: 100%;
    position: relative;
    z-index: 999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (min-width: 1279px) {
    .navbar__main__user-selector {
        width: 70px;
    }
}

.navbar__main__user-selector .playGames {
    display: inline-block;
    font-size: 1rem;
    font-family: "Calibri", "Microsoft JhengHei", Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
    line-height: 1.25em;
    padding: 4px;
}

@media only screen and (min-width: 1279px) {
    .navbar__main__user-selector .playGames {
        display: none;
    }
}

.navbar__main__user-selector .playGames a {
    padding: 4px 8px;
    background: #ffcd4f;
    border-radius: 30px;
    color: #000;
}

.navbar__main__user-selector .language {
    outline: none;
    position: relative;
    width: 48px;
    height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 30px;
}

@media only screen and (min-width: 1279px) {
    .navbar__main__user-selector .language {
        width: 70px;
        height: 70px;
    }
}

.navbar__main__user-selector .language__button {
    vertical-align: middle;
    cursor: pointer;
    display: inline-block;
    height: 1.8rem;
    width: 1.8rem;
    /* -webkit-mask-image: url(../../img/tadaPlusPlayer/world_white.svg);
    mask-image: url(../../img/tadaPlusPlayer/world_white.svg); */
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 100%;
    mask-size: 100%;
    background: rgb(215, 221, 224);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

@media (hover: hover) {
    .navbar__main__user-selector .language__button:hover {
        background: #ffcd4f
    }
}

.navbar__main__user-selector .language.active .language__list {
    visibility: visible;
    opacity: 1;
    right: 50%;
    -webkit-transform: translateY(0) translateX(50%);
    transform: translateY(0) translateX(50%);
    margin-right: 51px;
}

@media only screen and (min-width: 1279px) {
    .navbar__main__user-selector .language.active .language__list {
        right: -70px;
        -webkit-transform: translateY(10px) translateX(0);
        transform: translateY(10px) translateX(0);
    }
}

.navbar__main__user-selector .language__list {
    position: absolute;
    top: 52px;
    right: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #fff;
    padding: 10px 0;
    border-radius: 6px;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(10px) translateX(50%);
    transform: translateY(10px) translateX(50%);
    -webkit-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
    -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.25);
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.25);
}

@media only screen and (min-width: 1279px) {
    .navbar__main__user-selector .language__list {
        top: 65px;
        right: -36px;
        -webkit-transform: translateY(10px) translateX(0);
        transform: translateY(10px) translateX(0);
    }
}

.navbar__main__user-selector .language__list:before {
    content: "";
    position: absolute;
    top: -6px;
    /* right: calc(50% - 6px); */
    right: 35px;
    -webkit-transform: translateY(10px) translateX(50%);
    transform: translateY(10px) translateX(50%);
    margin: auto;
    width: 12px;
    height: 12px;
    background: #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media only screen and (min-width: 1279px) {
    .navbar__main__user-selector .language__list:before {
        right: 30px;
    }
}

.navbar__main__user-selector .language__list a {
    display: block;
    height: 30px;
    padding: 2px 0px;
    color: #7c7c7c;
    white-space: nowrap;
    font-size: 0.88rem;
}

.navbar__main__user-selector .language__list a span {
    /* display: block; */
    color: #7c7c7c;
    text-align: left;
}

.navbar__main__user-selector .language__list a span:hover {
    color: #ff8200;
}

.navbar__main__user-selector .language__list a span img {
    display: inline-block;
    width: 1.5em;
    border: 1px solid #fff;
}

.navbar__main__user-selector .hamburger {
    display: inline-block;
    width: 48px;
    height: 48px;
}

@media only screen and (min-width: 1279px) {
    .navbar__main__user-selector .hamburger {
        display: none;
    }
}

.navbar__main__user-selector .hamburger a {
    display: block;
    height: 100%;
    width: 100%;
    /* -webkit-mask-image: url(../../img/tadaPlusPlayer/hamburger_gray.svg);
    mask-image: url(../../img/tadaPlusPlayer/hamburger_gray.svg); */
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 80%;
    mask-size: 80%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background: #351A07;
}

/* .navbar__main__user-selector .hamburger-close a {
    -webkit-mask-image: url(../../img/tadaPlusPlayer/hamburger_close_gray.svg);
    mask-image: url(../../img/tadaPlusPlayer/hamburger_close_gray.svg);
} */

.slide {
    position: fixed;
    right: 4px;
    bottom: 6vh;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media only screen and (min-width: 1023px) {
    .slide {
        display: none;
    }
}

@media only screen and (min-width: 420px) {
    .slide {
        right: 10px;
    }
}

.slide__skype {
    font-size: 1rem;
    font-family: 'Calibri', 'Microsoft JhengHei', Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
    line-height: 1.25em;
    font-weight: bold;
    color: #fff;
    text-align: center;
    border: 2px solid #B0E5FF;
    color: #039BE5;
    background-color: #fff;
    border-radius: 40px;
    padding: 0 4px;
    cursor: pointer;
    margin-right: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (min-width: 420px) {
    .slide__skype {
        padding: 0 12px;
    }
}

.slide__skype::before {
    content: '\f17e';
    display: inline-block;
    font-family: "Calibri", "Microsoft JhengHei", Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
    color: #039BE5;
    font-size: 1.25rem;
    line-height: 1em;
    margin-right: 4px;
}

.slide__skype a {
    color: #039BE5;
}

.slide__gotop a {
    display: block;
    width: 30px;
    height: 30px;
    background: #646464;
    border-radius: 50%;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.slide__gotop a::before {
    content: '\f077';
    display: inline-block;
    font-family: "Calibri", "Microsoft JhengHei", Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1em;
}

.QRcodeSlide {
    display: none;
    user-select: none;
}

@media only screen and (min-width: 1023px) {
    .QRcodeSlide {
        display: block;
        position: fixed;
        right: 0;
        bottom: 360px;
        z-index: 9;
    }
}

.QRcodeSlide .switch {
    font-size: 28px;
    font-family: "Calibri", "Microsoft JhengHei", Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
    font-weight: bold;
    color: #fff;
    text-align: center;
    line-height: 40px;
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    top: 0;
    left: -40px;
    background-color: #00aff0;
    border-radius: 5px 0 0 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.QRcodeSlide .switch::before {
    content: ' ';
    width: 100%;
    height: 100%;
    background: url(../../img/tadaPlusPlayer/contact-skype.svg);
}

.QRcodeSlide .switch img {
    display: block;
    width: 70%;
    margin: 0 auto;
}

.QRcodeSlide .switch.action {
    left: -170px;
    -webkit-animation: open_switch 0.3s;
    animation: open_switch 0.3s;
}

.QRcodeSlide .switch.action::before {
    content: '\f054';
    font-family: "Calibri", "Microsoft JhengHei", Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
    background: none;
    color: #fff;
    font-size: 1.25rem;
    line-height: 1em;
    font-weight: inherit;
    height: auto;
}

.QRcodeSlide .content {
    padding: 0;
    text-align: center;
    position: absolute;
    right: -130px;
    width: 130px;
    background: #00aff0;
    padding: 10px;
    border-radius: 0 5px 5px 5px;
    font-size: 1rem;
    line-height: 1.5em;
    color: #fff;
}

.QRcodeSlide .content.action {
    right: 0;
    -webkit-animation: open 0.3s;
    animation: open 0.3s;
}

.QRcodeSlide .title {
    font-weight: bold;
    margin-bottom: 3px;
}

.QRcodeSlide .image {
    width: 100%;
}

.QRcodeSlide .image img {
    display: block;
    width: 100%;
}

.QRcodeSlide .skype {
    width: 100%;
    margin: 10px 0 5px;
}

.QRcodeSlide .skype a {
    font-size: 1rem;
    font-family: 'Calibri', 'Microsoft JhengHei', Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
    line-height: 1.25em;
    font-weight: bold;
    color: #fff;
    text-align: center;
    border: 2px solid #B0E5FF;
    color: #039BE5;
    background-color: #fff;
    border-radius: 40px;
    padding: 0 12px;
    cursor: pointer;
    margin-right: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.QRcodeSlide .skype a::before {
    content: '\f17e';
    display: inline-block;
    font-family: "Calibri", "Microsoft JhengHei", Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
    color: #039BE5;
    font-size: 1rem;
    line-height: 1em;
    margin-right: 4px;
}

.content_index {
    padding-top: 0;
}

.content_index .container {
    color: #111;
    position: relative;
    padding-top: 40px;
    padding-bottom: 60px;
}

@media only screen and (min-width: 812px) {
    .content_index .container {
        padding-top: 10px;
        /* padding-bottom: 140px; */
    }
}

.content_index .container .content {
    width: 100%;
    max-width: 1230px;
    position: relative;
    margin: 0 auto;
    padding: 0 15px;
}

.content_index .container .title {
    width: 100%;
    font-size: 1.75rem;
    line-height: 1em;
    font-family: 'Calibri', 'Microsoft JhengHei', Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
    font-weight: bold;
    margin-bottom: 10px;
}

@media only screen and (min-width: 812px) {
    .content_index .container .title {
        font-size: 2rem;
    }
}

@media only screen and (min-width: 1279px) {
    .content_index .container .title {
        font-size: 2.625rem;
        line-height: 1em;
    }
}

.content_index .container .subtitle {
    font-family: 'Calibri', 'Microsoft JhengHei', Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
}

.content_index .container .txt {
    color: #fff;
    font-size: 1rem;
    font-family: 'Calibri', 'Microsoft JhengHei', Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
    line-height: 1.25em;
}

@media only screen and (min-width: 812px) {
    .content_index .container .txt {
        font-size: 1rem;
        line-height: 1.75em;
    }
}

.content_index .container .txt-prompt {
    font-size: 0.8rem;
    font-family: 'Calibri', 'Microsoft JhengHei', Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
    line-height: 1.5em;
    color: #fff;
}

.content_index .container .button {
    font-size: 1rem;
    line-height: 1.25em;
    text-align: center;
    font-size: 1rem;
}

@media only screen and (min-width: 812px) {
    .content_index .container .button {
        font-size: 1rem;
    }
}

.content_index .container .button a {
    display: inline-block;
    margin: 0 auto;
    padding: 10px 18px;
    background-color: #ffcd4f;
    font-weight: 500;
    color: #000;
    border-radius: 25px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.content_index .container .button a:hover {
    color: #000;
    background-color: #ffcd4f;
}

.content_index .container ul {
    padding-left: 1em;
}

.content_index .container ul li {
    color: #fff;
    font-size: 1rem;
    font-family: 'Calibri', 'Microsoft JhengHei', Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
    line-height: 1.25em;
}

@media only screen and (min-width: 812px) {
    .content_index .container ul li {
        font-size: 1rem;
        line-height: 1.75em;
    }
}

.content_index .container ul li a {
    color: #ffcd4f;
}

.content_index .container.exclusive {
    width: 100%;
    background-color: #000;
    padding: 0;
    padding-bottom: 70px;
}

.content_index .container.exclusive .content {
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 812px) {
    .content_index .container.exclusive .content {
        width: 95%;
    }
}

.content_index .container.exclusive .content>.title {
    font-weight: bold;
    letter-spacing: 3px;
    color: #ffcd4f;
    text-align: center;
    margin-bottom: 10px;
}

.content_index .container.exclusive .content .item {
    width: 95%;
    margin: 0 auto;
}

.content_index .container.exclusive .content .item ul {
    width: 100%;
    color: #ffcd4f;
    list-style: none;
    padding-left: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-gap: 10px;
}

@media only screen and (min-width: 812px) {
    .content_index .container.exclusive .content .item ul {
        grid-template-columns: repeat(3, auto);
        grid-gap: 20px;
    }
}

.content_index .container.exclusive .content .item ul li {
    width: 96%;
    padding-bottom: calc(170px + 1.5rem);
    position: relative;
    min-width: 170px;
    border-radius: 0;
}

@media only screen and (min-width: 812px) {
    .content_index .container.exclusive .content .item ul li {
        padding-bottom: calc(240px + 1.5rem);
        min-width: 250px;
    }
}

@media only screen and (min-width: 1023px) {
    .content_index .container.exclusive .content .item ul li {
        padding-bottom: calc(270px + 1.5rem);
        min-width: 280px;
    }
}

.content_index .container.exclusive .content .item ul li:nth-child(1).animate {
    -webkit-animation: delay 0.35s, flipInY 0.35s 0.35s;
    animation: delay 0.35s, flipInY 0.35s 0.35s;
}

.content_index .container.exclusive .content .item ul li:nth-child(2).animate {
    -webkit-animation: delay 0.7s, flipInY 0.35s 0.7s;
    animation: delay 0.7s, flipInY 0.35s 0.7s;
}

.content_index .container.exclusive .content .item ul li:nth-child(3).animate {
    -webkit-animation: delay 1.05s, flipInY 0.35s 1.05s;
    animation: delay 1.05s, flipInY 0.35s 1.05s;
}

.content_index .container.exclusive .content .item ul li:nth-child(4).animate {
    -webkit-animation: delay 1.4s, flipInY 0.35s 1.4s;
    animation: delay 1.4s, flipInY 0.35s 1.4s;
}

.content_index .container.exclusive .content .item ul li:nth-child(5).animate {
    -webkit-animation: delay 1.75s, flipInY 0.35s 1.75s;
    animation: delay 1.75s, flipInY 0.35s 1.75s;
}

.content_index .container.exclusive .content .item ul li:nth-child(6).animate {
    -webkit-animation: delay 2.1s, flipInY 0.35s 2.1s;
    animation: delay 2.1s, flipInY 0.35s 2.1s;
}

.content_index .container.exclusive .content .item ul li .icon {
    width: 100%;
    margin: 10px auto;
}

.content_index .container.exclusive .content .item ul li .icon img {
    display: block;
    max-width: 100%;
    max-height: 110px;
    margin: 0 auto;
}

@media only screen and (min-width: 812px) {
    .content_index .container.exclusive .content .item ul li .icon img {
        max-height: 150px;
    }
}

.content_index .container.exclusive .content .item ul li .textContent {
    width: 95%;
    margin: 0 auto 20px auto;
    text-align: center;
}

.content_index .container.exclusive .content .item ul li .textContent .title {
    font-weight: bold;
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.content_index .container.exclusive .content .item .front,
.content_index .container.exclusive .content .item .back {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    text-align: center;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    border-radius: 16px;
}

.content_index .container.exclusive .content .item .front {
    z-index: 1;
    -webkit-transform: rotateX(0deg) rotateY(0deg);
    transform: rotateX(0deg) rotateY(0deg);
    background: initial;
    border: initial;
    background-color: #000;
    filter: Alpha(opacity=60);
    border: 1px solid #ffcd4f;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.content_index .container.exclusive .content .item .back {
    z-index: 2;
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    background: -webkit-gradient(linear, left bottom, left top, from(#ffcd4f), to(#ffdc00));
    background: linear-gradient(to top, #ffcd4f 0%, #ffdc00 100%);
    color: #000;
    border: 1px solid #ffdc00;
    border-radius: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 15px;
}

.content_index .container.exclusive .content .item .back .desc {
    font-size: 0.65rem;
}

@media only screen and (min-width: 812px) {
    .content_index .container.exclusive .content .item .back .desc {
        font-size: 0.85rem;
    }
}

.content_index .container.exclusive .content .item .panel.flip .front {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.content_index .container.exclusive .content .item .panel.flip .back {
    -webkit-transform: rotateX(0deg) rotateY(0deg);
    transform: rotateX(0deg) rotateY(0deg);
}

.content_index .contact,
.content_index {
    background: transparent !important;
    color: #ffcd4f;
    text-align: center;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1em;
    padding: 20px 3vw !important;  /*對齊官網*/
}

.partner {
    background: transparent !important;
    color: #ffcd4f;
    text-align: center;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1em;
    padding: calc(10vw + 20px) 3vw !important;  /*對齊官網*/
}

.content_index .contact img,
.content_index .contact .form {
    user-select: none;
}

.content_index .contact .content {
    width: 90%;
}

.content_index .contact .title {
    color: #ffcd4f;
    text-align: center;
    font-weight: bold;
    margin-bottom: 1rem;
}

.content_index .contact .subtitle {
    font-weight: bold;
    font-family: 'Calibri', 'Microsoft JhengHei', Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
    font-size: 1.3rem;
    text-align: center;
}

.content_index .contact p.txt {
    padding-top: 12px;
    line-height: 1.5em;
    text-align: center;
}

@media only screen and (min-width: 812px) {
    .content_index .contact p.txt {
        line-height: 1em;
    }
}

.content_index .contact .role {
    width: 210px;
    position: absolute;
    bottom: -60px;
    right: -6%;
}

@media only screen and (min-width: 812px) {
    .content_index .contact .role {
        width: 20%;
        max-width: initial;
        min-width: 246px;
        bottom: -64px;
        left: initial;
        right: -5%;
    }
}

@media only screen and (min-width: 1023px) {
    .content_index .contact .role {
        /* right: 0;    */
        right: -5%;

    }
}

.content_index .contact .role img {
    width: 100%;
    display: block;
}

.content_index .contact .form {
    width: 100%;
    margin-top: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media only screen and (min-width: 812px) {
    .content_index .contact .form {
        margin-top: 40px;
        width: 76%;
    }
}

.content_index .contact .form select,
.content_index .contact .form input,
.content_index .contact .form textarea {
    width: 100%;
    font-size: 1rem;
    margin-bottom: 8px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: white;
    padding: 8px 10px;
}

.content_index .contact .form input[name="Name"],
.content_index .contact .form input[name="Company"] {
    width: 100%;
}

@media only screen and (min-width: 1023px) {

    .content_index .contact .form input[name="Name"],
    .content_index .contact .form input[name="Company"] {
        width: calc(50% - 4px);
    }
}

.content_index .contact .form textarea {
    margin-bottom: 24px;
}


.content_index .contact .button {
    width: 100%;
    margin: 0;
}

@media only screen and (min-width: 812px) {
    .content_index .contact .button {
        width: 76%;
    }
}

.content_index .contact__other {
    width: 100%;
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media only screen and (min-width: 1023px) {
    .content_index .contact__other {
        /* width: 76%; */
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.content_index .contact__mail {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 18px;
}

@media only screen and (min-width: 812px) {
    .content_index .contact__mail {
        /* width: 76%; */
        font-size: 18px;
    }
}

.content_index .contact__mail a {
    color: #fff;
}

.content_index .contact__mail img {
    width: 32px;
    margin-right: 8px;
}

@media only screen and (min-width: 812px) {
    .content_index .contact__mail img {
        width: 42px;
    }
}

.content_index .contact__skype {
    width: 120px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 76px;
    margin-left: calc(45% - 120px);
}

@media only screen and (min-width: 812px) {
    .content_index .contact__skype {
        width: calc(100% - 28%);
        margin-top: 24px;
        margin-left: initial;
    }
}

.content_index .contact__skype p {
    display: none;
}

@media only screen and (min-width: 812px) {
    .content_index .contact__skype p {
        display: block;
        width: 100%;
        margin-bottom: 16px;
        text-align: center;
    }
}

.content_index .contact__skype .QRCode {
    width: 100%;
    margin-bottom: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media only screen and (min-width: 812px) {
    .content_index .contact__skype .QRCode {
        width: calc((100% - 58px) / 2 - 16px);
        max-width: 120px;
        margin-right: 24px;
        margin-bottom: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.content_index .contact__skype .QRCode:last-child {
    margin-right: 0;
}

.content_index .contact__skype .QRCode a {
    display: block;
    width: 100%;
    max-width: 120px;
    text-align: center;
    line-height: 1em;
    font-weight: bold;
    color: #fff;
}

.content_index .contact__skype .QRCode img {
    width: 100%;
}

.content_index .footer {
    width: 100%;
    background: #111;
    padding-bottom: 80px;
    user-select: none;
}

.content_index .footer .content {
    width: 96%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* -webkit-box-pack: center; */
    /* -ms-flex-pack: center; */
    /* justify-content: center; */
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media only screen and (min-width: 812px) {
    .content_index .footer .content {
        /* padding-top: 80px; */
    }
}

.content_index .footer .subtitle {
    font-size: 1.3rem;
    font-weight: bold;
    color: #fff;
    line-height: 1em;
    margin-bottom: 16px;
}

.content_index .footer__logo {
    /* width: 80%; */
    /* padding-bottom: 40px; */
}

@media only screen and (min-width: 1279px) {
    .content_index .footer__logo {
        width: 20%;
        max-width: 100px;
        margin-right: 8%;
    }
}

.content_index .footer__logo img {
    display: block;
    /* width: 25%; */
    max-width: 150px;
    margin: 0 auto;
}

@media only screen and (min-width: 812px) {
    .content_index .footer__logo {
        /* padding-bottom: 60px; */
    }

    .content_index .footer__logo img {
        width: 100%;
        /* width: 80%; */
    }
}

@media only screen and (max-width: 719px) {
    .content_index .footer__logo {
        padding-bottom: 20px;
    }
}
/* 
.content_index .footer__discover {
    width: 50%;
    margin-bottom: 42px;
}

@media only screen and (min-width: 812px) {
    .content_index .footer__discover {
        width: initial;
        margin-right: 8%;
        margin-bottom: 0;
    }
} 
*/

.content_index .footer__LC {
    width: 50%;
    img{
        max-width: 150px;
    }
    ul{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }
}

@media only screen and (min-width: 812px) {
    .content_index .footer__LC {
        width: initial;
        width: 30%;
        ul {
            flex-direction: row;
        }
    }

    .content_index .footer__LC .subtitle {
        margin-bottom: 8px;
    }
}

@media only screen and (min-width: 1279px) {
    .content_index .footer__LC {
        width: 30%;
        max-width: 280px;
        flex-direction: row;

        /* margin-right: 8%; */
    }

    .content_index .footer__LC .subtitle {
        max-width: initial;
    }
}

.content_index .footer__legal {
    width: 100%;
}

@media only screen and (min-width: 812px) {
    .content_index .footer__legal {
        width: initial;
    }
}

@media only screen and (min-width: 1279px) {
    .content_index .footer__legal {
        width: 30%;
        max-width: 270px;
    }
}

.content_index .footer__corp {
    width: 100%;
    /* margin-top: 60px; */
    padding-top: 10px;
    text-align: center;
    font-size: 0.75em;
    color: #fff;
    border-top: 1px solid;
    border-image-source: linear-gradient(to right, rgba(143, 65, 233, 0), rgba(239, 158, 87, 0.5647058824), rgba(0, 0, 0, 0));
    border-image-slice: 1;
}

.content_index .footer .socialize__icon-container {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content_index .footer .socialize__icon {
    /* width: 50%; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 40px;
    /* margin: 16px auto; */
}

@media only screen and (min-width: 812px) {
    .content_index .footer .socialize__icon {
        width: 100%;
    }
}

.contact__telegram{
    margin:0 auto;
    margin-top: 40px;
    display: flex;
    gap:30px;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    img{
        max-width: 150px;
        height: 150px;
        width:150px;
    }
}

.content_index .footer .socialize__icon a {
    display: block;
    margin: 12px;
}
.footer .content{
    display: flex;
    justify-content: space-around;
}
.content_index .footer .socialize__icon img {
    width: 33px;
    height: 33px;
    /* width: 100%; */
    display: block;
    /* max-width: 100% !important; */
}

@media only screen and (min-width: 812px) {
    .content_index .footer .socialize__icon img {
        /* width: 100%; */
        width: 33px;
        height: 33px;
        /* max-width: 100% !important; */
    }
}

.content_index .footer__discover ul,
.content_index .footer__LC ul,
.content_index .footer__legal ul {
    list-style: none;
}

.content_index .footer__discover ul li,
.content_index .footer__LC ul li,
.content_index .footer__legal ul li {
    color: #7A7A7D;
    padding: 0 3px;
}

.content_index .footer__discover ul li a,
.content_index .footer__LC ul li a,
.content_index .footer__legal ul li a {
    color: #7A7A7D;
    text-decoration: none;
}

.content_index .footer__discover ul li a:hover,
.content_index .footer__LC ul li a:hover,
.content_index .footer__legal ul li a:hover {
    color: #ffcd4f;
}

@media only screen and (min-width: 812px) {
   .footer__LC ul{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    }

}

.cookie-consent {
    background-color: hsla(0deg, 0%, 7%, 0.8);
    color: #fff;
    padding: 8px 0 12px 0;
    position: fixed;
    z-index: 2;
    bottom: 0;
    width: 100%;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    opacity: 1;
    text-align: center;
}

.cookie-consent-text {
    text-align: left;
    padding: 0 2% 4px 2%;
    font-weight: normal;
    font-size: 0.78rem;
    line-height: 1.75em;
    font-family: 'Calibri', 'Microsoft JhengHei', Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
}

.cookie-consent-button {
    border: 2px solid #000;
    padding: 6px 16px;
    font-size: 0.88rem;
    display: inline-block;
    background-color: #000;
    cursor: pointer;
}

.cookie-consent-button:hover {
    border: 2px solid #ffcd4f;
    background-color: #ffcd4f;
}

.prompt {
    position: fixed;
    height: 100vh;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(18, 18, 18, 0.8);
    z-index: 4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.prompt .content {
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    min-height: 60vh;
    background: #fff;
    border-radius: 12px;
    position: relative;
    padding: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: auto;
}

@media only screen and (min-width: 812px) {
    .prompt .content {
        padding: 60px;
    }
}

@media only screen and (max-height: 560px) {
    .prompt .content {
        padding: 15px;
    }
}

.prompt .content::-webkit-scrollbar {
    width: 10px;
    margin: 2px;
    background: #fff;
    border-radius: 5px;
}

.prompt .content::-webkit-scrollbar-thumb {
    width: 8px;
    padding: 2px;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 5px;
}

.prompt__logo {
    width: 100%;
    margin: 0 auto 24px auto;
}

.prompt__logo img {
    display: block;
    max-width: 334px;
    width: 50%;
    margin: 0 auto;
}

@media only screen and (max-height: 560px) {
    .prompt__logo img {
        width: 40%;
    }
}

.prompt__title {
    width: 100%;
    text-align: center;
    font-size: 1.56rem;
    font-family: 'Calibri', 'Microsoft JhengHei', Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
    font-weight: bold;
}

@media only screen and (min-width: 812px) {
    .prompt__title {
        font-size: 1.75rem;
    }
}

.prompt__main {
    margin: 16px auto;
    width: 100%;
    text-align: center;
    font-size: 1rem;
    font-size: 1rem;
    line-height: 1.25em;
}

.prompt__button {
    margin: 6vh auto;
    font-size: 1rem;
    line-height: 1.25em;
    text-align: center;
    font-size: 1rem;
    display: inline-block;
    margin: 0 auto;
    padding: 10px 32px;
    background-color: #ffcd4f;
    font-weight: 500;
    color: #000;
    border-radius: 12px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
}

.prompt__button:hover {
    color: #000;
    background-color: #ffcd4f;
}

@media only screen and (min-width: 812px) {
    .prompt__button {
        font-size: 1rem;
    }
}

@media only screen and (max-height: 560px) {
    .prompt__button {
        margin: 16px auto;
    }
}

.prompt__notes {
    margin: 16px auto;
    width: 100%;
    text-align: center;
    font-size: 0.88rem;
    line-height: 1.25em;
}

@-webkit-keyframes delay {

    0%,
    100% {
        opacity: 0;
    }
}

@keyframes delay {

    0%,
    100% {
        opacity: 0;
    }
}

.box_go_top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 99;
    width: 2.5em;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media only screen and (max-width: 812px) {
    .box_go_top {
        width: 180px;
    }
}

.box_go_top .telegram a:hover,
.box_go_top .btn_go_top:hover {
    opacity: 1;
    -webkit-transform: scale(1.175);
    transform: scale(1.175);
}

.box_go_top .telegram {
    margin: 10px 10px;
    display: none;
}

@media only screen and (max-width: 812px) {
    .box_go_top .telegram {
        display: block;
    }
}

.box_go_top .telegram a {
    width: 100%;
    display: block;
    padding: 10px;
    background: #fff;
    border-radius: 20px;
    color: #039be5;
    -webkit-box-shadow: 0 -2px 0 1px #b0e5ff inset;
    box-shadow: 0 -2px 0 1px #b0e5ff inset;
    font-weight: bold;
}

.box_go_top .telegram a::before {
    content: '\f1d8';
    font-family: "Calibri", "Microsoft JhengHei", Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-right: 3px;
    color: #039be5;
}

.box_go_top .btn_go_top {
    display: block;
    width: 2.5em;
    height: 2.5em;
    background-color: #646464;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
    border-radius: 55%;
    opacity: 0.7;
}

.box_go_top .btn_go_top:before {
    content: "";
    position: absolute;
    display: block;
    width: 2.5em;
    height: 2.5em;
    background-image: url(../../img/plusplayerV2/arrow_up.svg);
    display: inline-block;
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
}

.box_go_top.hide {
    opacity: 0;
    visibility: hidden;
}

.contactus_role {
    width: 100%;
    margin: 0 auto;
    margin-top: 20px;
    img {
        max-width: 360px;
        min-width: 100px;
        width: 25vw;
        height: auto;
        aspect-ratio: 1;
    }
}

.footer__corp {
    p{
        font-weight: normal;
        img{
            width: 150px;
            height: auto;
            margin-top: 10px;
        }
    }
}

@media only screen and (max-width: 500px) {
    .contact__telegram{
        gap:20px;
        img{
            max-width: 150px;
            height: 30vw;
            width: 30vw;
        }
        a{
            font-size: 11px;
        }
    }
    .contactus_role {
        img{
            max-width: 240px;
            width: 40vw;
            height: auto;
            aspect-ratio: 1;
        }
    }
    .footer__corp {
        p{
            font-size: 0.6875rem;
            img{
                width: 29vw;
                height: auto;
                margin-top: 10px;
            }
        }
    }
}