/*
    @Name: reset | @Author: Cherry.liu
====================================================================================== */
/* Reset */
* {
    padding: 0;
    margin: 0;
    border: none;
    outline: none;
    box-shadow: none;
    list-style: none;
    box-sizing: border-box;
}
a, a:hover, a:focus, a:active, a:visited {
    text-decoration: none;
}
body {
    font-family: Open Sans, Roboto, Helvetica, Arial, "Helvetica Neue", Tahoma, sans-serif;
    font-size: 18px;
    color: #303030;
    line-height: 1.4;
    background: #fff;
}


/* Placeholder */
input::-o-input-placeholder ,
textarea::-o-input-placeholder {
    color: #a3a3a3;
}
input:-ms-input-placeholder ,
textarea:-ms-input-placeholder {
    color: #a3a3a3;
}
input::-moz-placeholder ,
textarea::-moz-placeholder {
    color: #a3a3a3;
}
input::-webkit-input-placeholder ,
textarea::-webkit-input-placeholder {
    color: #a3a3a3;
}
input:-webkit-autofill ,
textarea:-webkit-autofill ,
select:-webkit-autofill {
    background-color: transparent!important;
    background-image: none;
    color: #a3a3a3;
}


/* Gird */
.container {
    width: 1060px;
    margin-left: auto;
    margin-right: auto;
}
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -1em;
    margin-right: -1em;
}
.col, .col-sm, .col-md,
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8,.col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12,
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8,.col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
    position: relative;
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 1em;
    padding-right: 1em;
}
.col {
    flex: 1 0 0%;
}
@media(min-width: 1024px) {
    .col-md {
        flex: 1 0 0%;
    }
}
@media(min-width: 768px) {
    .col-sm {
        flex: 1 0 0%;
    }
    .col-sm-1 {
        flex: 0 0 8.33333333%
        max-width: 8.33333333%;
    }
    .col-sm-2 {
        flex: 0 0 19.666667%;
        max-width: 19.666667%;
    }
    .col-sm-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-sm-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-sm-5 {
        flex: 0 0 41.66666667%;
        max-width: 41.66666667%;
    }
    .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-sm-7 {
        flex: 0 0 58.33333333%;
        max-width: 58.33333333%;
    }
    .col-sm-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .col-sm-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-sm-10 {
        flex: 0 0 83.33333333%;
        max-width: 83.33333333%;
    }
    .col-sm-11 {
        flex: 0 0 91.66666667%;
        max-width: 91.66666667%;
    }
    .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
@media(max-width: 767px){
    .col-xs-1 {
        flex: 0 0 8.33333333%
        max-width: 8.33333333%;
    }
    .col-xs-2 {
        flex: 0 0 19.666667%;
        max-width: 19.666667%;
    }
    .col-xs-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    .col-xs-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .col-xs-5 {
        flex: 0 0 41.66666667%;
        max-width: 41.66666667%;
    }
    .col-xs-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-xs-7 {
        flex: 0 0 58.33333333%;
        max-width: 58.33333333%;
    }
    .col-xs-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    .col-xs-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .col-xs-10 {
        flex: 0 0 83.33333333%;
        max-width: 83.33333333%;
    }
    .col-xs-11 {
        flex: 0 0 91.66666667%;
        max-width: 91.66666667%;
    }
    .col-xs-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .order-xs-last{
        order: 13;
    }
}


/* Align */
.d-flex {
    display: flex;
}
.align-items-start {
    align-items: start!important;
}
.align-items-center {
    align-items: center!important;
}
.align-items-end {
    align-items: flex-end!important;
}
.align-self-start {
    align-self: flex-start!important;
}
.align-self-center {
    align-self: center!important;
}
.align-self-end {
    align-self: flex-end!important;
}
.visible-xs {
    display: none;
}
.w-100 {
    width: 100%!important;
}
@media (max-width: 1199px) {
    .container {
        width: 100%;
        padding-left: 2em;
        padding-right: 2em;
    }
}
@media (max-width: 767px) {
    body {
        font-size: 14px;
        line-height: 1.5;
    }
    select {
        background: #fff url(../images/arrowdown.png) no-repeat 95% center;
        padding-right: 3em;
    }
    .container {
        width: 100%;
        padding-left: 1em;
        padding-right: 1em;
    }
    .text-xs-center {
        text-align: center;
    }
    .hidden-xs {
        display: none!important;
    }
    .visible-xs {
        display: block!important;
    }
    .justify-content-xs-end {
        justify-content: flex-end!important;
    }
}


/* Text */
.text-left {
    text-align: left;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.uppercase {
    text-transform: uppercase;
}
.font-bold {
    font-weight: 700;
}
.text-gray-light {
    color: #CCCCCC;
}
.bg-gray-light {
    background: var(--BgGrayLight, #F7F7F7);
}
@media(max-width: 767px) {
    .text-xs-center {
        text-align: center;
    }
}


/* Form */
.form-group {
    margin-bottom: 1.2em;
}
.form-label {
    display: block;
    margin-bottom: 0.4em;
    font-size: 16px;
}
.form-control {
    padding: 0.8em;
    width: 100%;
    font-size: 16px;
    line-height: 20px;
    border-radius: 0.4em;
    border: 1px solid #e0e0e0;
}
.form-control:focus {
    border-color: var(--BrandPrimary, #5B8633);
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    background: #fff url(../images/arrowdown.png) no-repeat 97% center;
    padding-right: 3em;
}
.btn,
a.btn ,
button.btn {
    display: inline-block;
    padding: 0.8em;
    font-size: 16px;
    line-height: 20px;
    border-radius: 0.4em;
    text-align: center;
    cursor: pointer;
}
.btn-primary,
a.btn-primary,
button.btn-primary {
    color: #fff;
    background: var(--BtnBg-primary, #E1950A);
}
.btn-primary:hover,
a.btn-primary:hover,
button.btn-primary:hover {
    background: var(--BtnBg-hover, #E49F0B);
}
.btn-primary:active,
a.btn-primary:active,
button.btn-primary:active {
    background: var(--BtnBg-active, #DD8A08);
}
.btn-block {
    display: block;
    width: 100%!important;
}


/* radio  */
.radio input[type=radio]{
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid transparent;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}
.radio {
  position: relative;
  display: inline-block;
  line-height: 22px;
  min-height: 22px;
  padding-left: 28px;
  font-size: 16px;
}
.radio.block {
    width: 100%;
}
.radio .control-icon,
.radio .control-border {
  display: block;
  position: absolute;
  top: 1px;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid transparent;
}
.radio .control-icon:after {
    display: block;
    content: " ";
    width: 10px;
    height: 10px;
    margin: 3px;
    border-radius: 50%;
}
.radio .control-icon {
    position: absolute;
    margin-top: 2px;
    width: 18px;
    height: 18px;
    border-color: #e0e0e0;
    border-radius: 50%;
}
.radio-btn {
    padding: 0.8em 0.8em 0.8em 2.6em;
}
.radio-btn .control-icon {
    top: 0.8em;
    left: 0.8em;
}
.radio-btn .control-border {
    border: 1px solid #e0e0e0;
    border-radius: 0.4em;
}
.radio input[type=radio]:checked + .control-icon {
  border-color: var(--BrandPrimary, #5B8633);
}
.radio input[type=radio]:checked + .control-icon:after {
  background: var(--BrandPrimary, #5B8633);
}
.radio.radio-btn input[type=radio]:checked + .control-icon + .control-border {
    border: 1px solid var(--BrandPrimary, #5B8633);
}


/* input-group */
.input-group {
    position: relative;
    display: table;
    border-collapse: separate;
}
.input-group .form-control, .input-group-addon, .input-group-btn {
    display: table-cell;
}
.input-group-addon, .input-group-btn {
    width: 1%;
    white-space: nowrap;
    vertical-align: middle;
}
.input-group-addon:first-child {
    border-right: 0;
    border-radius: 0.4em 0 0 0.4em;
}
.input-group .form-control:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.input-group-addon {
    padding: 0.8em;
    color: #666;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    text-align: center;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 0.4em;
    cursor: default;
}
.input-group .form-control {
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0;
}


/* margin */
.mb-xs {
    margin-bottom: 0.6em;
}
.mb-sm {
    margin-bottom: 0.8em;
}
.mb-md {
    margin-bottom: 1.8em;
}


/* header */
.track-img {
    position: absolute;
    opacity: 0;
}
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1em 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2em;
    font-weight: 700;
    text-align: center;
    background: var(--HeaderBg-default, rgba(0,0,0,0.32));
}
.header .row .col-sm:first-child {
     flex-grow: 2;
}
.header .tel {
    display: inline-block;
    font-size: 16px;
    padding: 0.3em 0.6em;
    color: #fff;
    border-radius: 0.4em;
    cursor: pointer;
    background: var(--HearderTelBg, #5B8633);
}
.header .slogan span {
    color: var(--HeaderSloganColor, #FFB310);
}

.header.p-0 {
    padding: 0;
}
.header-top {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 0.6em 0;
    background: rgba(0, 0, 0, 0.4);
}
.header-bottom {
    padding: 0.6em;
}
.header-nav,
.header-nav .item {
    height: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
}
.text-right .header-nav,
.text-right.header-nav .item {
    justify-content: right;
}
.header-nav .item {
    padding: 0.2em 0;
    height: 100%;
    color: rgba(255, 255, 255, 0.6);
    font-weight: normal;
}
.header-nav .item:hover {
    color: rgba(255, 255, 255, 0.8);
}
.header-nav .item.active {
    color: var(--HeaderNavColor-active, #E1950A);
    font-weight: 600;
}
.header-nav .item +.item{
    margin-left: 1.6em;
}
.header .navbar-header,
.header .navbar-header .logo {
    display: inline-block;
    float: left;
}
.header .navbar-header .logo img {
    height: 1.5em;
    float: left;
    margin-right: 0.8em;
}
.header .navbar-collapse {
    display: flex;
    width: auto;
    justify-content: space-between;
    align-items: center;
}
.header .navbar-collapse .navbar-nav {
    display: inline-flex;
    align-items: center;
    flex-grow: 1;
    justify-content: flex-end;
}
.modular-img ,
.modular .img ,
.mask .slogan .img,
.header .slogan .img,
.form-box .other-info img {
    max-width: 100%;
}
@media (max-width: 767px) {
    .header .row>div + div .tel {
        margin-top: 0.4em;
    }
    .header .row>.hidden-xs + div .tel {
        margin-top: 0
    }
    .fixed-header-xs {
        position: fixed;
        z-index: 999;
        background: rgba(0,0,0,0.8);
    }
    .header-nav,
    .header-nav .item {
        justify-content: center;
    }
}


/* banner */
.banner .mask {
    padding: var(--BannerPt-default, 5.5em) 0 1.5em 0;
    background: var(--BannerMaskBg, rgba(18, 42, 61, 0.75));
}
.banner .slogan {
    color: #fff;
}
.banner .slogan .title {
    font-size: var(--BannerSloganTitleFontSize-default, 52px);
    line-height: 1.3;
    font-weight: 700;
}
.banner .slogan .content {
    margin-top: 20px;
    font-size: var(--BannerSloganContentFontSize-default, 26px);
    line-height: 1.5;
}
.banner .slogan a ,
.banner .slogan span {
    color: #FFFFFF;
    padding: 0 0.4em;
    margin: 0 0.2em;
    background: var(--BannerSloganTextBg, #E1950A);
    font-weight: 700;
}
.banner.full-page{
    position: absolute;
    width: 100%;
    height: 100%;
}
.banner.full-page .mask {
    display: flex;
    height: 100%;
    align-items: center!important;
}
.header.p-0 + .banner .mask {
    padding-top: var(--NavBannerPt-default, 8.4em);
}
.banner.detail-page .mask,
.header.p-0 + .banner.detail-page .mask {
    padding-top: 9em;
    padding-bottom: 4em;
}
@media (max-width: 767px) {
    .banner .mask {
        padding-top: var(--BannerPt-xs, 6.5em);
    }
    .banner .slogan {
        margin-bottom: 20px;
    }
    .banner .slogan .title {
        font-size: var(--BannerSloganTitleFontSize-xs, 24px);
        line-height: 1.2;
    }
    .banner .slogan .content {
        margin-top: 8px;
        font-size: var(--BannerSloganFontSize-xs, 14px);
    }
    .header.p-0 + .banner .mask {
        padding-top: 11em;
    }
    .banner.detail-page .mask,
    .header.p-0 + .banner.detail-page .mask {
        padding-top: 12em;
        padding-bottom: 2em;
    }
    .banner.full-page .mask {
        padding: 0 0 3em 0;
    }
}



/* Footer */
.footer {
    padding: 1.2em 0 1.4em 0;
    color: #666;
    font-size: 0.7em;
    text-align: center;
    background: #f7f7f7;
    border-top: 1px solid #e0e0e0;
}
.footer .text-gray-light {
    margin: 0 0.6em;
}


/* link */
.link {
    color: var(--LinkColor-default, #5B8633);
    text-decoration: underline;
    cursor: pointer;
}
.link:hover {
    color: var(--LinkColor-hover, #75a34b);
}
.link:active {
    color: var(--LinkColor-active, #4d7528);
}



/* Form */
.form-box .form {
    margin-bottom: 1.4em;
}
.form-box .form-head {
    padding: 1em 1.6em;
    color: #fff;
    text-align: center;
    background: var(--FormHeadBg, #5B8633);
    border-radius: 0.6em 0.6em 0 0;
}
.form-box .form-head .title {
    font-weight: 700;
    font-size: 1.6em;
    color: #FFFFFF;
    text-align: center;
}
.form-content {
    padding: 1.6em;
    background: #FFFFFF;
    border-radius: 0 0 0.6em 0.6em;
}
.form-box .row {
    margin-left: -0.6em;
    margin-right: -0.6em;
}
.form-box .col,
.form-box .col-sm {
    padding-left: 0.6em;
    padding-right: 0.6em;
}
.form-box .other-info {
    font-size: 12px;
    text-align: center;
    opacity: 0.8;
}



/* How it works */
.list-step {
    text-align: center;
}
.list-step .num-box {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 12px auto;
    width: 80px;
    height: 80px;
    color: #666;
    font-size: 32px;
    border: 2px solid #E0E0E0;
    border-radius: 50%;
}
.list-step .step-img {
    width: 80px;
    margin-bottom: 12px;
}
.list-step .h3.font-bold {
    margin-bottom: 8px;
    font-size: var(--ListStepTitleFontSize, 1.2em);
}
@media (max-width: 767px) {
    .list-step .col-sm + .col-sm {
        margin-top: 20px;
    }
}


/* List */
.list-dot .item,
.cancer-list .item {
    position: relative;
    padding-left: 1.8em;
    margin: 0.4em 0;
}
.list-dot .item:after,
.cancer-list .item:after {
    display: block;
    content: " ";
    position: absolute;
    top: 0.5em;
    left: 0.4em;
    width: 0.4em;
    height: 0.4em;
    background: #666666;
    border-radius: 50%
}


/* FAQ */
.faq-list .item + .item {
    margin-top: 1em;
}
.faq-list .faq-title {
    position: relative;
    font-size: 1.1em;
    padding: 1em 3em 1em 1em;
    background: var(--FaqTitleBg, #EEEEEE);
    border-radius: 0.4em;
    cursor: pointer;
}
.faq-title .icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    margin-top: -12px;
    right: 1.2em;
    width: 24px;
    height: 24px;
    background: url(../images/arrowright.png) no-repeat center center;
    transition: transform 0.15s ease-out
}
.faq-list .active .icon {
    transform: rotate(90deg);
}
.faq-list .faq-content {
    font-size: .9em;
    padding: 1em;
    display: none;
}
.faq-list .active .faq-content {
    display: block;
}


/* List Update */ 
.bg-gray-light {
    --FaqTitleBg: #FFFFFF;
    --UpdatesItemBg: #FFFFFF;
}
.updates-list .list-item {
    position: relative;
    padding: 24px;
    background: var(--UpdatesItemBg, #F7F7F7);
    border-radius: 16px;
    min-height: 105px; 
}
.updates-list .list-item + .list-item {
    margin-top: 1.4em;
}
.updates-list .cell-date {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 70px;
    padding-right: 20px;
    color: var(--BrandPrimary);
    border-right: 1px solid #e0e0e0;
    text-align: center;
}
.updates-list .day {
    font-size: 2em;
    font-weight: 800;
    line-height: 0.8em;
}
.updates-list .year {
    font-size: 12px;
}
.updates-list .cell-content {
    padding-left: 90px;
}
.updates-list .title {
    margin-bottom: 12px;
    font-size: 1.2em;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.updates-list .title + .content {
    font-size: 14px;
    line-height: 20px;
}
.updates-list .content {
    margin-bottom: 4px;
    font-size: 16px;
    color: #666666;
}
.updates-list .cell-content .date {
    display: none;
    margin-bottom: 0.4rem;
    padding: 0.2rem 0.6rem;
    color: #fff;
    font-size: 12px;
    background: var(--BrandPrimary);
    border-radius: 0.2rem;
}
.updates-list .link {
    font-size: 14px;
    color: var(--LinkColor-default);
}
@media (max-width: 541px){
    .updates-list .cell-date {
        display: none;
    }
    .updates-list .cell-content {
        padding: 0;
    }
    .updates-list .cell-content .date {
        display: inline-block;
    }
}



/* Modal */
.modular {
    padding: 3em 0;
}
.modular-title {
    font-family: Roboto-Bold, sans-serif;
    font-weight: 700;
    font-size: 1.8em;
    line-height: 1.2;
    margin-bottom: 0.5em;
}
.modular .btn {
    min-width: 280px;
}
.modular .link {
    color: #303030;
    font-weight: 600;
}
.bg-primary {
    background: var(--BrandPrimary);
    color: rgba(255, 255, 255, 0.8);
}
.bg-primary .list-dot .item:after {
    background: rgba(255, 255, 255, 0.8);
}
.bg-primary .modular-title,
.bg-primary .link {
    color: #fff;
}
.modular .link-primary {
    color: var(--LinkColor-default);
}
.modular .link-primary:hover {
    color: var(--LinkColor-hover);
}
.modular .link-active:active {
    color: var(--LinkColor-active);
}


/* Congratulations */
.congratulations-box {
    color: #303030;
    padding: 3.5em 2em 3em 2em;
    text-align: center;
    background: #fff;
    border-radius: 0.6em; 
    margin: 0 auto;
}
.congratulations-title {
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 0.4em;
    text-align: center;
}
.privacy-box {
    color: #a3a3a3;
    font-size: 0.8em;
    border-top: 1px solid #e0e0e0;
    padding-top: 0.8em;
}
.congratulations-box.call-box {
    padding: 2.4em 2em 4em 2em;
    width: 680px;
}
.call-box .congratulations-title {
    margin: 0;
}
.call-box .title-dividing {
    margin: 0.2em 0 0.8em 0;
}
.call-box .btn {
    font-size: 20px;
    padding: 1em;
    width: 220px;
    font-weight: 700;
}
.title-dividing {
    width: 100%;
    height: 10px;
    border-top: 4px solid var(--DividingBorderColor, #E1950A);
    border-bottom: 2px solid var(--DividingBorderColor, #E1950A);
}


/* Contact & Policy */
.contact-tel {
    display: block;
    margin-bottom: 0.2em;
    color: var(--ContactTeLColor, #E1950A);
    font-size: 2em;
}
.contact-mail {
    display: block;
    color: #303030;
    font-size: 1.2em;
    font-weight: 500;
    text-decoration: underline;
    margin-bottom: 1em;
}
.img-contact {
    max-width: 100%;
    border-radius: 1.4em;
}

.title-paragraph {
    font-size: 1.4em;
    padding-left: 16px;
    border-left: 4px solid var(--TitleParagraphBorder, #E1950A);
    font-weight: 600;
}
.policy .module {
    margin-bottom: 4em;
}
.policy .list {
    padding-left: 0.6em;
}
.policy .list .item+.item {
    margin-top: 0.8em;
}
.policy .icon-correct {
    display: inline-block;
    float: left;
    padding-top: 2px;
    margin-right: 0.6em;
}




/* Mobile */
@media (max-width: 767px) {
    .modular {
        padding: 2em 0;
    }
    .modular .btn {
        min-width: auto;
        width: 100%;
    }
    .congratulations-box.call-box {
        width: 100%;
    }
    
}
