*,
*::before,
*::after {
    box-sizing: border-box;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}


/* Font */


/* 中文 */

@font-face {
    font-family: custom;
    src: local("Noto Sans TC Thin"), local("NotoSansTC-Thin"), url(https://fonts.gstatic.com/s/notosanstc/v9/-nFlOG829Oofr2wohFbTp9i9WyEKIfVZ15Ls5XOFrksA2xrfz7uqxBF_ije-Lcrp9hfGsGeZ-W5oyw.27.woff2) format("woff2");
    unicode-range: U+4E00-9FFF;
}


/* 英文 */

@font-face {
    font-family: custom;
    src: url("//cdn.gogoro.com/fonts/graphik/Graphik-Extralight.eot?#iefix") format("embedded-opentype"), url("//cdn.gogoro.com/fonts/graphik/Graphik-Extralight.woff") format("woff"), url("//cdn.gogoro.com/fonts/graphik/Graphik-Extralight.ttf") format("truetype"), url("//cdn.gogoro.com/fonts/graphik/Graphik-Extralight.svg#Graphik-Extralight") format("svg");
    unicode-range: U+00-024F;
}

* {
    font-family: custom;
    line-height: 1.5;
}


/* Utilities */

.hidden {
    display: none !important;
}

.op0 {
    opacity: 0 !important;
    visibility: hidden !important;
}

.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

.flex-col {
    flex-direction: column !important;
}

.flex-row {
    flex-direction: row !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.overflow-y {
    overflow-y: auto !important;
}

.w-100 {
    width: 100% !important;
}

.w-fullscreen {
    width: 100vw !important;
}

.h-fullscreen {
    height: 100vh !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.pos-fixed-bottom {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 90;
    padding: 0 30px;
}

.maxW-400 {
    max-width: 400px !important;
}

.text-red {
    color: #ff1923;
}

.text-grey {
    color: grey;
}


/* Components */

.divider {
    width: 100%;
    height: 1px;
    background-color: #b6b6b6;
    margin: 30px 0;
}

.link {
    text-decoration: underline;
    color: #0069d2;
}

.page {
    width: 100%;
    min-height: 100vh;
    position: relative;
}

.btn-group {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-group2 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.btn-group3 {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.btn {
    border-radius: 50px;
    /*padding: 8px 16px;*/
    padding: 5.9px 25px;
    user-select: none;
    border: none;
    box-shadow: none;
    background: none;
    color: white;
    text-align: center;
    line-height: 1.5;
    font-size: 14px;
    width: auto;
    text-decoration: none;
    outline: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    /* min-width: 180px !important; */
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}

.btn-primary {
    background-color: #0069d2;
    border: 2px solid #0069d2;
}

.btn-primary:hover,
.btn-primary:focus {
    color: #0069d2;
    background-color: #ffffff;
    background-image: none;
    -webkit-tap-highlight-color: transparent;
}

.btn-secondary {
    background-color: #737d82;
    border: 2px solid #737d82;
}

.btn-secondary:hover,
.btn-secondary:focus {
    color: #737d82;
    background-color: #ffffff;
}

.btn-tertiary {
    background-color: #D24557;
    border: 2px solid #D24557;
}

.btn-tertiary:hover,
.btn-tertiary:focus {
    color: #D24557;
    background-color: #ffffff;
}

.btn-go {
    font: normal normal medium 12px/16px Graphik;
    padding: 11px 20px;
}

.text-primary {
    color: #0069d2 !important;
}

.text-secondary {
    color: #737D82 !important;
}

.text-tertiary {
    color: #D24557 !important;
}

.btn-normal {
    min-width: 180px;
}

.btn-l {
    margin-right: 1rem;
}

.form_ctrl {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 15px;
    position: relative;
}

.flex-start {
    justify-content: flex-start !important;
}

.space-evenly {
    justify-content: space-evenly !important;
}

.form_ctrl.last {
    margin-bottom: 0;
}

.form_input {
    width: 100%;
    padding: 8px 12px;
    font-size: 14px;
    color: #323237;
    border: 1px solid #f1f3f3;
    position: relative;
    outline: none;
    box-shadow: none;
    border-radius: 0;
    -webkit-border-radius: ;
    -moz-border-radius: ;
    -ms-border-radius: ;
    -o-border-radius: ;
    background-color: #ffffff;
    font-weight: lighter;
    background-image: none;
}

.form_input_multi {
    width: 20%;
    margin-left: 7px;
    margin-right: 7px;
    margin-bottom: 10px;
}

.form_input:active,
.form_input:focus {
    border-color: #323237;
    border-width: 2px;
    background-color: #ffffff;
}

.form_input::placeholder {
    color: #bec1c5;
}

.form_input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #bec1c5;
}

.form_input::-webkit-input-placeholder {
    /* Edge */
    color: #bec1c5;
}

.form_input:-webkit-autofill,
.form_input:-webkit-autofill:hover,
.form_input:-webkit-autofill:focus {
    -webkit-text-fill-color: #323237;
    -webkit-box-shadow: 0 0 0px 1000px #ffffff inset;
    transition: background-color 5000s ease-in-out 0s;
    -webkit-transition: background-color 5000s ease-in-out 0s;
    -moz-transition: background-color 5000s ease-in-out 0s;
    -ms-transition: background-color 5000s ease-in-out 0s;
    -o-transition: background-color 5000s ease-in-out 0s;
}

.form_ctrl.readonly::before {
    display: block;
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.form_ctrl.readonly .form_input {
    background-color: #f1f3f3;
}

.half {
    display: block;
    width: calc(50% - 15px);
}

.half-input {
    display: block;
    width: calc(50% - 15px);
}

.half-mobile {
    display: block;
    min-width: 180px;
}

.half-left {
    margin-right: 30px;
}

.error_hint {
    position: absolute;
    bottom: -25px;
    left: 0;
    z-index: 1;
    color: #0069D2;
    font-size: 12px;
}

.lightbox_container {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
}

.lightbox_mask {
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0.4;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 91;
}

.op1 {
    opacity: 1;
}

.lightbox {
    position: absolute;
    top: 30%;
    left: 30px;
    z-index: 91;
    background-color: #fff;
    box-shadow: 10px 18px 60px 0 rgba(0, 0, 0, 0.16);
    max-width: 570px;
    width: calc(100% - 60px);
    padding: 30px 20px;
}

.lightbox.maxW-400 {
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.lightbox-full {
    top: 0;
    left: 0;
    background-color: #fff;
    max-width: initial;
    width: 100%;
    padding: 30px;
    padding-top: 0;
}

.content {
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
}

.light_title {
    font-size: 24px;
    color: #323237;
    margin-bottom: 15px;
}

.lightbox_text {
    text-align: center;
    font-size: 14px;
    color: #323237;
    line-height: 1.5;
}

.banner {
    width: 100%;
    height: 150px;
    overflow: hidden;
}

.banner_img {
    display: block;
    position: relative;
    left: calc(-1 * (375px - 100vw) / 2);
    width: 375px;
    height: 150px;
    margin: 0 auto;
}

.main {
    width: 100%;
    padding: 38px 12px;
}

.title {
    display: block;
    margin: 0;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 24px;
    color: #323237;
    line-height: 1.5;
    font-weight: bold;
}

.title-mb-30 {
    margin-bottom: 30px;
}

.prize_img {
    min-width: 315px;
    min-height: 200px;
    max-width: 640px;
    max-height: 360px;
    width: 64vw;
    height: 48vw;
    display: block;
    background-color: #b5b5b5;
    margin-bottom: 30px;
}

.warning_hint {
    display: block;
    width: 100%;
    font-size: 14px;
    color: #0069D2;
    margin: 30px auto;
    text-align: center;
}

.gift_hint {
    display: block;
    width: 100%;
    font-size: 14px;
    color: #0069D2;
    margin: 30px auto;
    text-align: center;
}

.platform_web {
    display: none;
}

.platform_mobile {
    display: block;
}

.example_hint {
    display: block;
    width: 100%;
    font-size: 14px;
    margin: 10px auto;
    text-align: center;
}

.make_sure_lightbox .lightbox_text {
    line-height: 2 !important;
}

.welcome {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
}

.gift {
    margin-top: 24px;
    margin-bottom: 12px;
}

.text-default {
    font: normal normal 14px/19px Noto Sans;
    letter-spacing: 0px;
    color: #323237;
    opacity: 1;
}

.text-blue {
    color: #0069D2;
}

.text-default sub,
.text-default sup {
    font-size: 0.6em;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

.text-default sub {
    bottom: 0em !important;
}

.text-default sup {
    top: 0em !important;
}

.gift-img {
    display: flex;
    align-items: center;
    align-content: center;
    width: 322;
    height: 181px;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 24px;
}

.gift-img img {
    width: 100%;
    height: auto;
}

.mobile-mr-top {
    margin-top: 50px;
}

.close {
    margin-top: 6rem;
    margin-bottom: 1rem;
}

.close strong {
    font-size: 22px;
    font-weight: bold;
}

@media (min-width: 400px) {
    .gift {
        margin-top: 45px;
        margin-bottom: 35px;
    }
    .gift-img {
        margin-top: 33px;
        margin-bottom: 43px;
    }
    .btn-go {
        font: normal normal medium 18px/24px Graphik;
        padding: 11px 40px;
    }
}

@media (min-width: 480px) {
    .btn-group2 {
        flex-direction: row;
        justify-content: center;
    }
    .btn-l {
        margin-right: 1rem;
    }
    .half-mobile {
        width: calc(50% - 15px);
    }
    .mobile-mr-top {
        margin-top: 0px;
    }
    .btn {
        padding: 9.9px 35px;
    }
    .gift-img {
        min-height: 360px
    }
}

@media (min-width: 640px) {
    .sm-hidden {
        display: none !important;
    }
    .sm-block {
        display: block !important;
    }
    .sm-flex {
        display: flex !important;
    }
    .btn {
        /* padding: 10px 20px; */
        font-size: 16px;
    }
    .form_input {
        max-height: 40px;
        padding: 10p8 20px;
        font-size: 16px;
    }
    .lightbox {
        width: 100%;
    }
    .content {
        font-size: 18px;
        line-height: 2;
    }
    .lightbox_text {
        font-size: 18px;
        line-height: 2;
    }
    .title {
        font-size: 30px;
        margin-bottom: 30px;
    }
    .pos-fixed-bottom {
        bottom: 45px;
    }
    .login_dash {
        top: 18px;
    }
    .half-mobile {
        width: auto;
    }
    .half {
        width: auto;
    }
    .warning_hint {
        font-size: 16px;
    }
    .gift_hint {
        font-size: 18px;
    }
    .platform_web {
        display: block;
    }
    .platform_mobile {
        display: none;
    }
    .example_hint {
        font-size: 16px;
    }
    .btn-group3 {
        flex-direction: row;
        justify-content: center;
    }
    .text-default {
        font: normal normal 25px/35px Noto Sans;
    }
    .gift-img {
        width: 640px;
        height: 360px;
    }
    .close strong {
        font-size: 44px;
    }
}

@media (min-width: 376px) {
    .md2-hidden {
        display: none !important;
    }
    .md2-block {
        display: block !important;
    }
    .form_ctrl {
        margin-bottom: 20px;
    }
    .light_title {
        font-size: 24px;
    }
    .main {
        max-width: 760px;
        margin: 0 auto;
    }
    .title-mb-30 {
        margin-bottom: 45px;
    }
    .divider {
        margin: 45px 0;
    }
    .banner {
        width: 100%;
        height: 250px;
    }
    .banner_img {
        position: relative;
        left: calc(-1 * (480px - 100vw) / 2) !important;
        width: 480px;
        height: 250px;
    }
}

@media (min-width: 481px) {
    .md-hidden {
        display: none !important;
    }
    .md-block {
        display: block !important;
    }
    .banner {
        width: 100%;
        height: 250px;
    }
    .banner_img {
        position: relative;
        left: calc(-1 * (990px - 100vw) / 2) !important;
        width: 990px;
        height: 250px;
    }
}

@media (min-width: 991px) {
    .lg-hidden {
        display: none !important;
    }
    .lg-block {
        display: block !important;
    }
    .main {
        padding-top: 80px;
    }
    .btn {
        /* padding: 15px 80px; */
        font-size: 18px;
    }
    .form_input {
        padding: 20px 25px;
        font-size: 18px;
    }
    .title {
        font-size: 36px;
    }
    .prize_img {
        margin-bottom: 37px;
    }
    .title-mb-30 {
        margin-bottom: 60px;
    }
    .divider {
        margin: 60px 0;
    }
    .banner {
        width: 100%;
        height: 350px;
    }
    .banner_img {
        position: relative;
        left: calc(-1 * (1920px - 100vw) / 2) !important;
        width: 1920px;
        height: 350px;
    }
}

@media (min-width: 1921px) {
    .banner_img {
        left: 0px !important;
    }
}


/*
@media (min-width: 375px) {}
@media (min-width: 480px) {}
@media (min-width: 640px) {}
@media (min-width: 768px) {}
@media (min-width: 991px) {}
@media (min-width: 1024px) {}
@media (min-width: 1200px) {}
@media (min-width: 1350px) {}
*/