.container {
    width: 100%;
    height: 100%
}

/* Set side wrapper for all container */
.wrapper {
    padding: 0 0.3rem;
}

/* Standardized Header */
.header-section {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 1rem;
    font-size: 0.32rem;
    top: 0;
    display: flex;
    flex-direction: row;
}

.headerBack {
    z-index: 999;
    background-image: url("../image/arrow_left_white.webp");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 0.5rem;
    height: 0.5rem;
    position: relative;
    top: 0.15rem;
    left: 0.3rem;
}

.headerTitle {
    height: 100%;
    z-index: 999;
    font-weight: 900;
    position: relative;
    top: 0.15rem;
    bottom: 0;
    left: 0.7rem;
    font-size: 0.35rem;
    color: rgb(255, 255, 255);
    font-family: CenturyGothic-Regular;
    display: flex;
    justify-content: center;
    justify-items: center;
}

/* Standardized all button row */
.action-section {
    width: 100%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    position: fixed;
    justify-content: center;
    bottom: 0;
    right: 0;
    left: 0;
}

.action-section2 {
    width: 100%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    bottom: 0;
    right: 0;
    left: 0;
}

.submitBtn,
.payBtn {
    width: calc(100% - 0.5rem * 2);
    background-color: rgb(62, 173, 255);
    border: 1px solid rgb(44, 53, 83);
    color: rgb(255, 255, 255) !important;
    font-family: CenturyGothic-SemiBold !important;
    color: rgb(119, 126, 149);
    border-radius: 0.3rem;
    text-align: center;
    align-items: center;
    font-size: 0.32rem;
    transition: ease all .3s;
    margin: 0.8rem 0;
}

.submitBtn2 {
    width: 100%;
    background-color: rgb(62, 173, 255);
    border: 1px solid rgb(44, 53, 83);
    color: rgb(255, 255, 255) !important;
    font-family: CenturyGothic-SemiBold !important;
    color: rgb(119, 126, 149);
    border-radius: 0.3rem;
    text-align: center;
    align-items: center;
    font-size: 0.32rem;
    transition: ease all .3s;
}

.modal-border-button {
    width: 2.5rem;
    height: 0.7rem;
    background-color: transparent;
    border: 1px solid rgb(62, 173, 255);
    color: rgb(62, 173, 255) !important;
    font-family: CenturyGothic-SemiBold !important;
    border-radius: 0.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.32rem;
    transition: ease all .3s;
}

.modal-button {
    width: 2.5rem;
    height: 0.7rem;
    background-color: rgb(62, 173, 255);
    border: 1px solid rgb(44, 53, 83);
    color: rgb(255, 255, 255) !important;
    font-family: CenturyGothic-SemiBold !important;
    color: rgb(119, 126, 149);
    border-radius: 0.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.32rem;
    transition: ease all .3s;
}

.button {
    width: calc(100% - 0.5rem * 2);
    height: 1rem;
    text-align: center;
    color: rgb(119, 126, 149);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.32rem;
    border-radius: 0.3rem;
    font-family: CenturyGothic-Regular;
}

.button:active {
    filter: drop-shadow(0 0 0 #15111a);
    transform: translate(0, 5px);
}

.actionBtn:active {
    filter: drop-shadow(0 0 0 #15111a);
    transform: translate(0, 5px);
}

.border-grey {
    border: 1px solid rgb(119, 126, 149) !important;
}

.border-blue {
    border: 1px solid rgb(62, 173, 255) !important;
}

.border-dark {
    border: 1px solid rgb(44, 53, 83);
}

.border-red {
    border: 1px solid rgb(255, 0, 0) !important;
}

.btn-selected {
    background-color: rgb(62, 173, 255);
    color: rgb(255, 255, 255) !important;
}

/* Standardized for all input  */
.input-field {
    width: 100%;
    height: 1rem;
    border: 1px solid rgb(44, 53, 83);
    background-color: rgb(14, 19, 36);
    color: rgb(255, 255, 255);
    font-size: 0.37rem;
    border-radius: 0.25rem;
    padding: 0 0.3rem;
    box-sizing: border-box;
}

.input-field2 {
    height: 1rem;
    border: none;
    background-color: rgb(14, 19, 36);
    padding: 0 0.3rem;
    font-size: 0.25rem;
    color: rgb(255, 255, 255);
    box-sizing: border-box;
    border-radius: 0.35rem;
}
input {
    transition: all ease-in-out 0.25s;
}
input::placeholder, .input-field::placeholder {
    font-size: 0.3rem;
}


.textspan {
    font-size: 0.28rem;
    height: 0.4rem;
    margin-top: -0.15rem;
    left: 0.6rem;
    background: rgb(14, 19, 36);
    padding: 0rem 0.1rem;
    width: fit-content;
    opacity: 1;
}

/* Color CSS */
.text-grey {
    color: rgb(119, 126, 149);
}

.text-color-grey {
    color: rgb(170, 170, 175);
}

.text-blue {
    color: rgb(62, 173, 255);
}

.text-white {
    color: rgb(255, 255, 255);
}

.text-green {
    color: rgb(7, 204, 164);
}

.text-red {
    color: rgb(226, 49, 98);
}

.text-error {
    color: rgb(242, 24, 82);
}

.dark-wrap {
    background-color: rgb(27, 36, 59);
    border-radius: 0.35rem;
}

.back-green {
    background-color: rgb(7, 204, 164);
}

.back-blue {
    background-color: rgb(62, 173, 255);
}

.hr {
    border-color: rgba(224, 224, 224, 0.1);
}

/* Common CSS */
.input-form-row {
    width: 100%;
    height: 1rem;
    border: 1px solid rgb(44, 53, 83);
    border-radius: 0.35rem
}

.container-cover {
    margin-top: -2.5rem;
    margin-right: 1rem;
    background-image: url(../../common/image/mainbg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 5rem;
    width: 100%;
}

.container-title {
    width: 100%;
    text-align: center;
    font-size: 0.39rem;
    font-family: CenturyGothic-SemiBold;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.relative {
    position: relative;
}

.w-90 {
    width: 90%;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.h-1 {
    height: 1rem;
}

.h-90vh {
    height: 90vh;
}

a {
    color: rgb(62, 173, 255);
    text-decoration: underline;
}

.hidden {
    display: hidden !important;
    visibility: hidden;
}

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

.flex-center {
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
}

.flex-self-center {
    align-items: center;
}

.flex-between {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
}

.flex-end {
    display: flex;
    display: -webkit-flex;
    justify-content: flex-end;
}

.flex-around {
    display: flex;
    display: -webkit-flex;
    justify-content: space-around;
}

.row {
    display: flex;
    display: -webkit-flex;
    flex-direction: row;
}

.column {
    display: flex;
    display: -webkit-flex;
    flex-direction: column;
}

.nav-active {
    border-bottom: 0.04rem solid rgb(62, 173, 255);
}

.divider {
    width: 100%;
    border: 0.01rem solid rgb(44, 53, 83);
}

.s-divider {
    height: 70%;
    border: 0.0000000000001rem solid rgb(44, 53, 83);
}

.tickBox {
    height: 0.4rem;
    width: 0.4rem;
}

/* Font Size */
.font-10 {
    font-size: 0.2rem;
}

.font-12 {
    font-size: 0.24rem;
}

.font-13 {
    font-size: 0.25rem;
}

.font-14 {
    font-size: 0.28rem;
}

.font-15 {
    font-size: 0.3rem;
}

.font-16 {
    font-size: 0.32rem;
}

.font-18 {
    font-size: 0.35rem;
}

.font-20 {
    font-size: 0.4rem;
}

.font-22 {
    font-size: 0.44rem;
}

.font-24 {
    font-size: 0.48rem;
}

.font-26 {
    font-size: 0.52rem;
}

.font-28 {
    font-size: 0.56rem;
}

.font-30 {
    font-size: 0.6rem;
}

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

/* Height CSS */
.h100 {
    height: 100%;
}

/* Width CSS */
.w100 {
    width: 100%;
}

/* Margin CSS */
.mt-10 {
    margin-top: 1rem;
}

.mb-10 {
    margin-bottom: 1rem;
}

.ml-10 {
    margin-left: 1rem;
}

.mr-10 {
    margin-right: 1rem;
}

.mt-20 {
    margin-top: 2rem;
}

.mb-20 {
    margin-bottom: 2rem;
}

.ml-20 {
    margin-left: 2rem;
}

.mr-20 {
    margin-right: 2rem;
}

.mb-20-5 {
    margin-bottom: 2.5rem;
}

.mt-1 {
    margin-top: 0.1rem;
}

.mb-1 {
    margin-bottom: 0.1rem;
}

.ml-1 {
    margin-left: 0.1rem;
}

.mr-1 {
    margin-right: 0.1rem;
}

.mt-2 {
    margin-top: 0.2rem;
}

.mb-2 {
    margin-bottom: 0.2rem;
}

.ml-2 {
    margin-left: 0.2rem;
}

.mr-2 {
    margin-right: 0.2rem;
}

.mt-3 {
    margin-top: 0.3rem;
}

.mb-3 {
    margin-bottom: 0.3rem;
}

.ml-3 {
    margin-left: 0.3rem;
}

.mr-3 {
    margin-right: 0.3rem;
}

.mt-4 {
    margin-top: 0.4rem;
}

.mb-4 {
    margin-bottom: 0.4rem;
}

.ml-4 {
    margin-left: 0.4rem;
}

.mr-4 {
    margin-right: 0.4rem;
}

.mt-5 {
    margin-top: 0.5rem;
}

.mb-5 {
    margin-bottom: 0.5rem;
}

.ml-5 {
    margin-left: 0.5rem;
}

.mr-5 {
    margin-right: 0.5rem;
}

.mt-1-5 {
    margin-top: 0.15rem;
}

.mb-1-5 {
    margin-bottom: 0.15rem;
}

.mt-20-5 {
    margin-top: 2.5rem;
}

.mb-20-5 {
    margin-bottom: 2.5rem;
}

/* Padding */
.pt-1 {
    padding-top: 0.1rem;
}

.pb-1 {
    padding-bottom: 0.1rem;
}

.pt-2 {
    padding-top: 0.2rem;
}

.pb-2 {
    padding-bottom: 0.2rem;
}

.pl-2 {
    padding-left: 0.2rem;
}

.pr-2 {
    padding-right: 0.2rem;
}

.pl-3 {
    padding-left: 0.3rem;
}

.pr-3 {
    padding-right: 0.3rem;
}

.pt-4 {
    padding-top: 0.4rem;
}

.pb-4 {
    padding-bottom: 0.4rem;
}

.pl-4 {
    padding-left: 0.4rem;
}

.pr-4 {
    padding-right: 0.4rem;
}

.pt-6 {
    padding-top: 0.6rem;
}

.pb-6 {
    padding-bottom: 0.6rem;
}

.pl-6 {
    padding-left: 0.6rem;
}

.pr-6 {
    padding-right: 0.6rem;
}

.pt-10 {
    padding-top: 1rem;
}

.pb-10 {
    padding-bottom: 1rem;
}

.pl-10 {
    padding-left: 1rem;
}

.pr-10 {
    padding-right: 1rem;
}

.pt-1-2 {
    padding-top: 1.2rem;
}

.pb-1-2 {
    padding-bottom: 1.2rem;
}

.pl-1-2 {
    padding-left: 1.2rem;
}

.pr-1-2 {
    padding-right: 1.2rem;
}

.pt-2-5 {
    padding-top: 2.5rem;
}

.pb-2-5 {
    padding-bottom: 2.5rem;
}

.pl-2-5 {
    padding-left: 2.5rem;
}

.pr-2-5 {
    padding-right: 2.5rem;
}

/* Flex CSS */
.flex20 {
    flex: 20%
}

.flex25 {
    flex: 25%
}

.flex30 {
    flex: 30%
}

.flex40 {
    flex: 40%
}

.flex50 {
    flex: 50%
}

.flex60 {
    flex: 60%
}

.flex65 {
    flex: 65%
}

.flex80 {
    flex: 80%
}

.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    background-color: rgba(0, 0, 0, 0.45);
    display: none;
}

.loading div {
    width: 100%;
    height: 100%;
}

.loading div>img {
    width: 3rem;
}


/** modal **/
.backdrop {
    position: fixed;
    z-index: 998;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgb(0, 0, 0, 0.4);
    display: none;
}

.modal-btn {
    padding: 0.2rem 0rem 0.15rem 0rem;
    line-height: 1;
}

.btn-border {
    background-color: inherit;
    border: 1px solid rgb(62, 173, 255);
    color: rgb(62, 173, 255) !important;
}

.bottom-btn {
    bottom: 1rem;
    width: calc(100% - 0.6rem);
    position: fixed;
}

.d-none {
    display: none;
}


.header-banner {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 1rem;
    background: rgb(14, 19, 36);
    font-size: 0.32rem;
}

.bannerImage {
    background-image: url('../../common/image/back.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 0.4rem;
    height: 0.4rem;
    position: relative;
    top: 0.33rem;
    left: 0.3rem;
    z-index: 999;
}

.bannerTitle {
    height: 100%;
    position: relative;
    bottom: 0.4rem;
    color: #FFFFFF;
}

.pt-1-2 {
    padding-top: 1.2rem;
}