/**********************
       IMPORTS
***********************/
/* Colors mostly */
/**********************
       VARIBALES
***********************/
/* Reuseable bits of css to keep things consistant and easy. */
/**********************
        MIXINS
***********************/
/* Font mixins */
/* Info popups plugin */
/*
 * qTip2 - Pretty powerful tooltips - v2.2.0
 * http://qtip2.com
 *
 * Copyright (c) 2014 Craig Michael Thompson
 * Released under the MIT, GPL licenses
 * http://jquery.org/license
 *
 * Date: Wed Mar 19 2014 05:29 EDT-0400
 * Plugins: tips svg
 * Styles: basic css3
 */
.qtip {
  position: absolute;
  left: -28000px;
  top: -28000px;
  display: none;
  max-width: 320px;
  min-width: 320px;
  font-size: 12pt;
  line-height: 14pt;
  direction: ltr;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .qtip {
    min-width: 80%;
    margin: 0 5%;
    padding: 30px 5%;
    position: absolute !important;
    left: 0 !important;
  }
}
.qtip.sticky {
  left: auto !important;
  right: 2.5%;
}
.qtip-content {
  position: relative;
  padding: 12% 40px;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 500px;
  text-align: left;
  word-wrap: break-word;
  z-index: 0;
}
@media only screen and (max-width: 767px) {
  .qtip-content {
    padding: 0;
  }
}
.qtip-content p:first-child {
  margin-top: 0;
}
.qtip-content p:last-child {
  margin-bottom: 0;
}
/* Default close button class */
.qtip-close {
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
}
.qtip-titlebar .ui-icon,
.qtip-icon .ui-icon {
  display: block;
  text-indent: -1000em;
  direction: ltr;
}
.qtip-icon,
.qtip-icon .ui-icon {
  text-decoration: none;
}
.qtip-icon .ui-icon {
  padding: 10px;
  width: 15px;
  height: 15px;
  background: url('../img/icon-x.svg') no-repeat;
  background-position: 10px 10px;
  background-size: 15px 15px;
  cursor: pointer;
  position: absolute;
  top: -10px;
  right: -10px;
}
/* Default tooltip style */
.qtip-default {
  border-width: 0px;
  border-style: solid;
  border-color: transparent;
  background-color: #FFFFA3;
  color: #555;
}
.qtip-default .qtip-titlebar {
  background-color: #FFEF93;
}
.qtip-default .qtip-icon {
  color: #777;
}
.qtip-default .qtip-titlebar .qtip-close {
  border-color: #AAA;
  color: #111;
}
.qtip-arrow-bottom:after {
  content: "";
  width: 0;
  height: 0;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 6px solid #e2eefa;
  position: absolute;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  bottom: -6px;
}
.qtip-arrow-bottom-left:after {
  content: "";
  width: 0;
  height: 0;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 6px solid #e2eefa;
  position: absolute;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 12%;
  bottom: -6px;
}
/*! Blue tooltip style */
.qtip-blue {
  background-color: #e2eefa;
  border-color: #e2eefa;
  color: #58595B;
}
.qtip-blue .qtip-titlebar {
  background-color: #D0E9F5;
}
.qtip-blue .qtip-close .qtip-icon {
  background-position: -2px 0;
}
.qtip-shadow {
  -webkit-box-shadow: 0px 3px 4px 0px rgba(50, 50, 50, 0.4);
  box-shadow: 0px 3px 4px 0px rgba(50, 50, 50, 0.4);
}
.qtip-shadow.top {
  -webkit-box-shadow: -2px -2px 4px 0px rgba(50, 50, 50, 0.4);
  box-shadow: -2px -2px 4px 0px rgba(50, 50, 50, 0.4);
}
/* Add rounded corners to your tooltips in: FF3+, Chrome 2+, Opera 10.6+, IE9+, Safari 2+ */
.qtip-rounded,
.qtip-tipsy,
.qtip-bootstrap {
  border-radius: 10px;
}
/* IE9 fix - removes all filters */
.qtip:not(.ie9haxors) div.qtip-content,
.qtip:not(.ie9haxors) div.qtip-titlebar {
  -webkit-filter: none;
          filter: none;
  -ms-filter: none;
}
/* ng-animate styles for page transitions */
/* VARIABLES
============================================================================= */
/******* DEFAULT PAGES ENTER AND LEAVE *******/
.page-default.ng-enter {
  -webkit-animation: slideInRight 0.3s ease-in;
          animation: slideInRight 0.3s ease-in;
}
.page-default.ng-leave {
  -webkit-animation: slideOutLeft 0.3s ease-in;
          animation: slideOutLeft 0.3s ease-in;
}
/******* GOING BACK DEFAULT PAGES ENTER AND LEAVE *******/
.page-default.back.ng-leave {
  -webkit-animation: slideOutRight 0.3s ease-in;
          animation: slideOutRight 0.3s ease-in;
}
.page-default.back.ng-enter {
  -webkit-animation: slideInLeft 0.3s ease-in;
          animation: slideInLeft 0.3s ease-in;
}
/******* START PAGES ENTER AND LEAVE *******/
.page-start.ng-enter {
  -webkit-animation: slideInRight 0.3s ease-in;
          animation: slideInRight 0.3s ease-in;
}
.page-start.ng-enter.page-start-you {
  -webkit-animation: fadeIn 0.3s ease-in;
          animation: fadeIn 0.3s ease-in;
}
.page-start.ng-leave {
  -webkit-animation: slideOutLeft 0.3s ease-in;
          animation: slideOutLeft 0.3s ease-in;
}
.page-start.ng-leave.page-start-you {
  -webkit-animation: fadeOut 0.3s ease-in;
          animation: fadeOut 0.3s ease-in;
}
/******* GOING BACK START PAGES ENTER AND LEAVE *******/
.page-start.back.ng-leave {
  -webkit-animation: slideOutRight 0.3s ease-in;
          animation: slideOutRight 0.3s ease-in;
}
.page-start.back.ng-enter {
  -webkit-animation: slideInLeft 0.3s ease-in;
          animation: slideInLeft 0.3s ease-in;
}
.page-start.back.ng-enter.page-start-you {
  -webkit-animation: fadeIn 0.3s ease-in;
          animation: fadeIn 0.3s ease-in;
}
/******* MENU LEFT ENTER AND LEAVE *******/
#menu-left.ng-enter {
  -webkit-animation: slideInLeft 0.3s ease-in;
          animation: slideInLeft 0.3s ease-in;
}
#menu-left.ng-leave {
  -webkit-animation: slideOutLeft 0.3s ease-in;
          animation: slideOutLeft 0.3s ease-in;
}
/******* MENU RIGHT ENTER AND LEAVE *******/
#menu-right-button.ng-enter {
  -webkit-animation: fadeIn 0.3s ease-in;
          animation: fadeIn 0.3s ease-in;
}
#menu-right-button.ng-leave {
  -webkit-animation: fadeOut 0.3s ease-in;
          animation: fadeOut 0.3s ease-in;
}
/******* REGION SELECT PAGE ENTER AND LEAVE *******/
.page-region-select.ng-enter {
  -webkit-animation: fadeIn 0.3s ease-in;
          animation: fadeIn 0.3s ease-in;
}
.page-region-select.ng-leave {
  -webkit-animation: fadeOut 0.3s ease-in;
          animation: fadeOut 0.3s ease-in;
}
/******* WRINKLES PAGES ENTER AND LEAVE *******/
.page-wrinkles.ng-enter {
  -webkit-animation: fadeIn 0.3s ease-in;
          animation: fadeIn 0.3s ease-in;
}
.page-wrinkles.ng-enter.first {
  -webkit-animation: slideInRight 0.3s ease-in;
          animation: slideInRight 0.3s ease-in;
}
.page-wrinkles.ng-enter.first.review {
  -webkit-animation: fadeIn 0.3s ease-in;
          animation: fadeIn 0.3s ease-in;
}
.page-wrinkles.ng-leave {
  -webkit-animation: fadeOut 0.3s ease-in;
          animation: fadeOut 0.3s ease-in;
}
.page-wrinkles.ng-leave.last {
  -webkit-animation: slideOutLeft 0.3s ease-in;
          animation: slideOutLeft 0.3s ease-in;
}
.page-wrinkles.ng-leave.last.review {
  -webkit-animation: fadeOut 0.3s ease-in;
          animation: fadeOut 0.3s ease-in;
}
/******* GOING BACK WRINKLES PAGES ENTER AND LEAVE *******/
.page-wrinkles.back.ng-leave {
  -webkit-animation: fadeOut 0.3s ease-in;
          animation: fadeOut 0.3s ease-in;
}
.page-wrinkles.back.ng-leave.first {
  -webkit-animation: slideOutRight 0.3s ease-in;
          animation: slideOutRight 0.3s ease-in;
}
.page-wrinkles.back.ng-leave.first.review {
  -webkit-animation: fadeOut 0.3s ease-in;
          animation: fadeOut 0.3s ease-in;
}
.page-wrinkles.back.ng-enter {
  -webkit-animation: fadeIn 0.3s ease-in;
          animation: fadeIn 0.3s ease-in;
}
.page-wrinkles.back.ng-enter.last {
  -webkit-animation: slideInLeft 0.3s ease-in;
          animation: slideInLeft 0.3s ease-in;
}
.page-wrinkles.back.ng-enter.last.review {
  -webkit-animation: fadeIn 0.3s ease-in;
          animation: fadeIn 0.3s ease-in;
}
/******* REVIEW PAGES ENTER AND LEAVE *******/
.ng-enter.review {
  -webkit-animation: fadeIn 0.3s ease-in;
          animation: fadeIn 0.3s ease-in;
}
.ng-leave.review {
  -webkit-animation: fadeOut 0.3s ease-in;
          animation: fadeOut 0.3s ease-in;
}
/******* DEFAULT APP PAGES ENTER AND LEAVE *******/
.ng-enter.app-page-default {
  -webkit-animation: fadeIn 0.3s ease-in;
          animation: fadeIn 0.3s ease-in;
}
.ng-leave.app-page-default {
  -webkit-animation: fadeOut 0.3s ease-in;
          animation: fadeOut 0.3s ease-in;
}
/******* ANIMATIONS *******/
/* fade in */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* fade out */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* slide in from the right */
@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/* slide out from the right */
@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
/* slide in from the left */
@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/* slide out to the left */
@-webkit-keyframes slideOutLeft {
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes slideOutLeft {
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
/* language specific changes. */
/* LANGUAGE SPECIFIC CHANGES */
#Stage_CodeReveal_OrderBttnText {
  left: 58% !important;
  top: 977px !important;
}
.한국어,
.korean {
  /* INTRO VIDEO */
  /* FINAL VIDEO */
}
.한국어 .portal .portal-minus,
.korean .portal .portal-minus {
  left: 0;
}
.한국어 .portal .portal-plus,
.korean .portal .portal-plus {
  right: 0;
}
.한국어 .Stage_WELCOME_id,
.korean .Stage_WELCOME_id {
  top: 200px !important;
  left: 150px !important;
}
.한국어 .Stage_POSSIBLE_id,
.korean .Stage_POSSIBLE_id {
  left: 150px !important;
}
.한국어 .Stage_COMBINATIONS_id,
.korean .Stage_COMBINATIONS_id {
  left: 130px !important;
}
.한국어 .Stage_YouText_id,
.korean .Stage_YouText_id {
  left: 0px !important;
}
.한국어 .Stage_YourSkinText_id,
.korean .Stage_YourSkinText_id {
  left: -45px !important;
}
.한국어 .Stage_PreferencesText_id,
.korean .Stage_PreferencesText_id {
  left: -140px !important;
}
.한국어 #Stage_CodeReveal_OrderBttnText,
.korean #Stage_CodeReveal_OrderBttnText {
  left: 388px !important;
  top: 977px !important;
}
.china {
  display: none;
}
.简体中文,
.chinese {
  /* INTRO VIDEO */
  /* FINAL VIDEO */
}
.简体中文 h1,
.chinese h1 {
  text-transform: none;
}
.简体中文 .china,
.chinese .china {
  display: block;
}
.简体中文 .Stage_WELCOME_id,
.chinese .Stage_WELCOME_id {
  left: 50px !important;
  top: 185px !important;
}
.简体中文 .Stage_POSSIBLE_id,
.chinese .Stage_POSSIBLE_id {
  top: 165px !important;
  left: 145px !important;
}
.简体中文 .Stage_COMBINATIONS_id,
.chinese .Stage_COMBINATIONS_id {
  top: 130px !important;
  left: 160px !important;
}
.简体中文 .Stage_YouText_id,
.chinese .Stage_YouText_id {
  left: 95px !important;
}
.简体中文 .Stage_YourSkinText_id,
.chinese .Stage_YourSkinText_id {
  left: 90px !important;
}
.简体中文 .Stage_PreferencesText_id,
.chinese .Stage_PreferencesText_id {
  left: 55px !important;
}
.简体中文 #Stage_CodeReveal_OrderBttnText,
.chinese #Stage_CodeReveal_OrderBttnText {
  left: 388px !important;
  top: 977px !important;
}
.简体中文 #Stage_CodeReveal_SaveBttnText,
.chinese #Stage_CodeReveal_SaveBttnText {
  left: 57px !important;
}
.日本語,
.japanese {
  /* INTRO VIDEO */
  /* FINAL VIDEO */
}
@media only screen and (max-width: 1024px) {
  .日本語 .portal .secondLine,
  .japanese .portal .secondLine {
    letter-spacing: -4px;
    font-size: 17pt;
  }
}
.日本語 .portal .portal-minus,
.japanese .portal .portal-minus,
.日本語 .portal .portal-plus,
.japanese .portal .portal-plus {
  width: 84px;
  bottom: 21%;
  left: 0;
}
.日本語 .portal .portal-minus span,
.japanese .portal .portal-minus span,
.日本語 .portal .portal-plus span,
.japanese .portal .portal-plus span {
  font-size: 10pt;
  letter-spacing: -4px;
}
@media only screen and (max-width: 400px) {
  .日本語 .portal .portal-minus span,
  .japanese .portal .portal-minus span,
  .日本語 .portal .portal-plus span,
  .japanese .portal .portal-plus span {
    font-size: 8pt;
  }
}
@media only screen and (max-width: 1024px) {
  .日本語 .portal .portal-minus,
  .japanese .portal .portal-minus {
    left: -10px;
  }
}
.日本語 .portal .portal-plus,
.japanese .portal .portal-plus {
  left: auto;
  right: 0;
}
@media only screen and (max-width: 1024px) {
  .日本語 .portal .portal-plus,
  .japanese .portal .portal-plus {
    right: -10px;
  }
}
.日本語 .popup [type="checkbox"]:not(:checked) + label,
.japanese .popup [type="checkbox"]:not(:checked) + label,
.日本語 .popup [type="checkbox"]:checked + label,
.japanese .popup [type="checkbox"]:checked + label {
  padding-top: 0;
}
.日本語 .Stage_WELCOME_id,
.japanese .Stage_WELCOME_id {
  top: 180px !important;
  left: 95px !important;
}
.日本語 .Stage_POSSIBLE_id,
.japanese .Stage_POSSIBLE_id {
  top: 170px !important;
  left: 60px !important;
}
.日本語 .Stage_COMBINATIONS_id,
.japanese .Stage_COMBINATIONS_id {
  top: 150px !important;
  left: 100px !important;
}
.日本語 .Stage_YouText_id,
.japanese .Stage_YouText_id {
  left: 118px !important;
}
.日本語 .Stage_YourSkinText_id,
.japanese .Stage_YourSkinText_id {
  left: 82px !important;
}
.日本語 .Stage_PreferencesText_id,
.japanese .Stage_PreferencesText_id {
  left: 67px !important;
}
.日本語 #Stage_CodeReveal_OrderBttnText,
.japanese #Stage_CodeReveal_OrderBttnText {
  left: 388px !important;
  top: 977px !important;
}
.日本語 #Stage_CodeReveal_SaveBttnText,
.japanese #Stage_CodeReveal_SaveBttnText {
  left: 61px !important;
}
#menu-left {
  width: 20%;
  height: 100%;
  position: fixed;
  min-height: 768px;
  z-index: 11;
  top: 0;
  bottom: 0;
  left: 0;
  background: #ffffff;
  -webkit-box-shadow: 3px 0px 3px 0px rgba(160, 160, 160, 0.75);
  box-shadow: 3px 0px 3px 0px rgba(160, 160, 160, 0.75);
}
@media only screen and (max-width: 1200px) {
  #menu-left {
    width: 25%;
  }
}
@media only screen and (max-width: 767px) {
  #menu-left {
    display: none;
  }
}
#menu-left .menu-left-content {
  max-width: 300px;
  margin: auto;
  width: 100%;
}
@media only screen and (max-height: 730px) {
  #menu-left .menu-left-content {
    width: 80%;
  }
}
#menu-left #menu-logo {
  cursor: pointer;
  margin-top: 49px;
  position: relative;
  border: none;
}
#menu-left img {
  padding: 0;
  width: 85%;
}
#menu-left .sections {
  position: relative;
  background: #ffffff;
  margin: 40px auto 0;
  width: 75%;
  max-width: 300px;
  padding-bottom: 5px;
  z-index: 2;
}
@media only screen and (max-width: 900px) {
  #menu-left .sections {
    width: 100%;
  }
}
#menu-left .sections h5 {
  text-transform: uppercase;
}
#menu-left .sections .separator {
  width: 25%;
}
#menu-left .bottom-line {
  position: absolute;
  background: url('../img/separator-dots.svg') 50% 0 repeat-y;
  background-size: contain;
  width: 25%;
  bottom: 0;
  height: 500px;
  left: 37%;
  z-index: 1;
}
.menu-icon {
  margin: auto;
  display: block;
  width: 40%;
  height: 0;
  padding-bottom: 40%;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
}
.menu-icon.you {
  background-image: url('../img/icon_me_1.png');
}
.menu-icon.you.active {
  background-image: url('../img/icon_me_2.png');
}
.menu-icon.skin {
  background-image: url('../img/icon_myskin_1.png');
}
.menu-icon.skin.active {
  background-image: url('../img/icon_myskin_3.png');
}
.menu-icon.skin.done {
  background-image: url('../img/icon_myskin_2.png');
}
.menu-icon.pref {
  background-image: url('../img/icon_preferences_1.png');
}
.menu-icon.pref.active {
  background-image: url('../img/icon_preferences_3.png');
}
.menu-icon.pref.done {
  background-image: url('../img/icon_preferences_2.png');
}
#menu-right {
  position: fixed;
  top: 0;
  right: 0;
  width: 20%;
  height: 100%;
  overflow-y: auto;
  z-index: 0;
  background-color: #3ab0c8;
  -webkit-box-shadow: inset 3px 0px 8px 0px rgba(25, 119, 125, 0.75);
  box-shadow: inset 3px 0px 8px 0px rgba(25, 119, 125, 0.75);
}
#menu-right.you {
  background-color: #76c4d5;
}
#menu-right.skin {
  background-color: #6dabe4;
}
#menu-right.preferences {
  background-color: #8293dc;
}
@media only screen and (max-width: 1200px) {
  #menu-right {
    width: 25%;
  }
}
@media only screen and (max-width: 767px) {
  #menu-right {
    width: 100%;
  }
}
#menu-right .menu-right-cover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
  right: 0;
  z-index: 1;
  background: #ffffff;
}
#menu-right .menu-right-close {
  /*height: 20px;
      width: 20px;
      position: absolute;
      background: url('../img/icon-x-white.svg');
      background-size: cover;
      cursor: pointer;
      top: 20px;
      right: 20px;
      z-index: 1;*/
  height: 50px;
  width: 50px;
  position: absolute;
  background: url('../img/icon-x-white.svg') no-repeat;
  background-size: 20px 20px;
  cursor: pointer;
  top: 20px;
  right: 20px;
  z-index: 0;
  padding: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-position: 50% 50%;
  /* border:1px solid #000;*/
}
#menu-right .menu-right-logo {
  cursor: pointer;
  padding: 0;
  width: 65%;
  max-width: 300px;
  margin-top: 50px;
  margin-bottom: 20px;
  position: relative;
  border: none;
}
@media only screen and (max-width: 900px) {
  #menu-right .menu-right-logo {
    width: 85%;
  }
}
@media only screen and (max-height: 450px) {
  #menu-right .menu-right-logo {
    width: 30%;
  }
}
#menu-right .menu-right-link {
  font-family: 'Verlag A', 'Verlag B', Arial, Helvetica, 'Microsoft YaHei New', 'Microsoft Yahei', SimSun, STXihei, 'MS PGothic', Meiryo, 'malgun gothic', 'Dotum', sans-serif;
  font-weight: 300;
  cursor: pointer;
  font-size: 13pt;
  width: 80%;
  margin: auto;
  display: block;
  padding: 15px 0;
  text-decoration: none;
  text-transform: uppercase;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#menu-right .menu-right-link:last-child {
  border: none;
}
/* Overwrites for the edge animate files */
.intro-video {
  transform: scale(1.85, 1.85) !important;
  -webkit-transform: scale(1.85, 1.85) !important;
  -ms-transform: scale(1.85, 1.85) !important;
  top: 215px !important;
}
.intro-video .Stage_Symbol_me_Ellipse_MeCopy4_id {
  display: none;
}
@media only screen and (max-height: 1078px) {
  .intro-video {
    top: 92px !important;
    transform: scale(1.35, 1.35) !important;
    -webkit-transform: scale(1.35, 1.35) !important;
    -ms-transform: scale(1.35, 1.35) !important;
  }
}
@media only screen and (max-height: 750px) {
  .intro-video {
    top: 92px !important;
    transform: scale(1.35, 1.35) !important;
    -webkit-transform: scale(1.35, 1.35) !important;
    -ms-transform: scale(1.35, 1.35) !important;
  }
}
@media only screen and (max-height: 620px) {
  .intro-video {
    transform: scale(1, 1) !important;
    -webkit-transform: scale(1, 1) !important;
    -ms-transform: scale(1, 1) !important;
    top: -15px !important;
  }
}
#Stage_Annimation_Rectangle4 {
  height: 82px !important;
}
.Stage_dots_desktop2_id {
  -webkit-transform: scale(0.5, 0.5) !important;
      -ms-transform: scale(0.5, 0.5) !important;
          transform: scale(0.5, 0.5) !important;
  -webkit-transform-origin: -34% -25% !important;
      -ms-transform-origin: -34% -25% !important;
          transform-origin: -34% -25% !important;
  -webkit-transform: scale(0.5, 0.5) !important;
  -webkit-transform-origin: -34% -25% !important;
  -ms-transform: scale(0.5, 0.5) !important;
  -ms-transform-origin: -34% -25% !important;
}
@media only screen and (max-height: 1260px) {
  .Stage_dots_desktop2_id {
    transform-origin: -34% -15% !important;
    -webkit-transform-origin: -34% -15% !important;
    -ms-transform-origin: -34% -15% !important;
  }
}
@media only screen and (max-height: 1025px) {
  .Stage_dots_desktop2_id {
    transform-origin: -34% 0% !important;
    -webkit-transform-origin: -34% 0% !important;
    -ms-transform-origin: -34% 0% !important;
  }
}
@media only screen and (max-height: 1025px) {
  .Stage_Group_Pie_id {
    transform-origin: 50% 75% !important;
    -webkit-transform-origin: 50% 75% !important;
    -ms-transform-origin: 50% 75% !important;
  }
}
@media only screen and (max-height: 801px) {
  .Stage_Group_Pie_id {
    transform-origin: 50% 50% !important;
    -webkit-transform-origin: 50% 50% !important;
    -ms-transform-origin: 50% 50% !important;
  }
}
@media only screen and (max-height: 641px) {
  .Stage_Group_Pie_id {
    transform-origin: 50% 30% !important;
    -webkit-transform-origin: 50% 30% !important;
    -ms-transform-origin: 50% 30% !important;
  }
}
@media only screen and (max-height: 641px) {
  .Stage_Group2_id {
    transform-origin: 50% 43% !important;
    -webkit-transform-origin: 50% 43% !important;
    -ms-transform-origin: 50% 43% !important;
  }
}
@media only screen and (max-height: 641px) {
  .Stage_Symbol_preferences_id {
    transform-origin: 50% 0% !important;
    -webkit-transform-origin: 50% 0% !important;
    -ms-transform-origin: 50% 0% !important;
  }
}
@media only screen and (max-height: 641px) {
  .Stage_Symbol_myskin_id {
    transform-origin: 50% 0% !important;
    -webkit-transform-origin: 50% 0% !important;
    -ms-transform-origin: 50% 0% !important;
  }
}
@media only screen and (max-height: 641px) {
  .Stage_Symbol_me_id {
    transform-origin: 50% 0% !important;
    -webkit-transform-origin: 50% 0% !important;
    -ms-transform-origin: 50% 0% !important;
  }
}
.reveal-video {
  overflow: hidden !important;
  top: 145px !important;
  left: 20% !important;
  transform: scale(1.55, 1.55) !important;
  -webkit-transform: scale(1.55, 1.55) !important;
  -ms-transform: scale(1.55, 1.55) !important;
}
@media only screen and (max-width: 1200px) {
  .reveal-video {
    left: 25% !important;
  }
}
@media only screen and (max-height: 1078px) {
  .reveal-video {
    top: 85px !important;
    transform: scale(1.35, 1.35) !important;
    -webkit-transform: scale(1.35, 1.35) !important;
    -ms-transform: scale(1.35, 1.35) !important;
  }
}
@media only screen and (max-height: 767px) {
  .reveal-video {
    top: 31px !important;
    -webkit-transform: scale(1.15, 1.15) !important;
        -ms-transform: scale(1.15, 1.15) !important;
            transform: scale(1.15, 1.15) !important;
  }
}
@media only screen and (max-height: 767px) and (max-width: 767px) {
  .reveal-video {
    top: 31px !important;
    transform: scale(1.15, 1.15) !important;
    -webkit-transform: scale(1.15, 1.15) !important;
    -ms-transform: scale(1.15, 1.15) !important;
  }
}
@media only screen and (max-height: 620px) {
  .reveal-video {
    top: -25px !important;
    -webkit-transform: scale(0.88, 0.88) !important;
        -ms-transform: scale(0.88, 0.88) !important;
            transform: scale(0.88, 0.88) !important;
  }
}
@media only screen and (max-height: 620px) and (max-width: 767px) {
  .reveal-video {
    top: -25px !important;
    transform: scale(0.88, 0.88) !important;
    -webkit-transform: scale(0.88, 0.88) !important;
    -ms-transform: scale(0.88, 0.88) !important;
  }
}
@media only screen and (max-width: 767px) {
  .reveal-video {
    left: 0 !important;
  }
}
.reveal-video #Stage_CodeReveal_SaveBttn,
.reveal-video #Stage_CodeReveal_SaveBttnText {
  cursor: pointer;
}
/******************************
      Form Layout styles
*******************************/
.form-wrap {
  max-width: 580px;
  margin: auto;
  width: 100%;
  margin-top: 15px;
}
@media only screen and (max-width: 767px) {
  .form-wrap {
    max-width: 280px;
  }
}
.form-wrap.small {
  max-width: 280px;
}
.form-wrap p {
  margin: 0;
  line-height: 22px;
}
.form-wrap table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 5px;
}
.form-wrap td {
  text-align: left;
  padding-bottom: 10px;
}
.form-wrap td:first-child {
  width: 45%;
}
.form-wrap .select-box,
.form-wrap .input-wrap,
.form-wrap .row {
  margin-right: 0;
  margin-left: 0;
}
@media only screen and (max-width: 767px) {
  .form-wrap .select-box,
  .form-wrap .input-wrap,
  .form-wrap .row {
    margin-left: auto;
    margin-right: auto;
  }
}
.row {
  width: 280px;
  margin: auto;
  zoom: 1;
}
.row:before,
.row:after {
  content: "";
  display: table;
}
.row:after {
  clear: both;
}
.row .half {
  width: 135px !important;
  float: left !important;
}
.row .half:first-child {
  margin-right: 10px;
}
.row .two-thirds {
  width: 172px;
  float: left;
  margin-right: 12px;
}
.row .one-third {
  width: 93px;
  float: left;
}
.row button {
  position: relative;
  top: -2px;
}
/******************************
      Form element styles
*******************************/
input[type="text"],
input[type="password"],
input[type="number"],
input[type="date"] {
  border-radius: 8px;
  width: 280px;
  height: 40px;
  line-height: 40px;
  background-size: 15px 15px;
  border: 1px solid #999999;
  outline: 0;
  font-size: 20px;
  margin-bottom: 10px;
  text-align: left;
  color: #76c4d5;
  padding: 0 20px 0 10px;
  z-index: 1;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* For ie10 opacity overide */
  opacity: 1 !important;
  -webkit-box-shadow: inset 0 17px 3px -15px rgba(115, 115, 115, 0.2);
  box-shadow: inset 0 17px 3px -15px rgba(115, 115, 115, 0.2);
  /* Placeholder text color if available */
}
input[type="text"]::-webkit-input-placeholder,
input[type="password"]::-webkit-input-placeholder,
input[type="number"]::-webkit-input-placeholder,
input[type="date"]::-webkit-input-placeholder {
  color: #76c4d5;
  opacity: 0.5;
}
input[type="text"]:-moz-placeholder,
input[type="password"]:-moz-placeholder,
input[type="number"]:-moz-placeholder,
input[type="date"]:-moz-placeholder {
  color: #76c4d5;
  opacity: 0.5;
}
input[type="text"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="date"]::-moz-placeholder {
  color: #76c4d5;
  opacity: 0.5;
}
input[type="text"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="date"]:-ms-input-placeholder {
  color: #76c4d5;
  opacity: 0.5;
}
@media only screen and (max-width: 767px) {
  input[type="text"],
  input[type="password"],
  input[type="number"],
  input[type="date"] {
    width: 280px;
  }
}
input[type="text"].last,
input[type="password"].last,
input[type="number"].last,
input[type="date"].last {
  margin-bottom: 0;
}
input[type="text"].qty,
input[type="password"].qty,
input[type="number"].qty,
input[type="date"].qty {
  text-align: center;
  width: 45px;
  padding: 0 10px;
  margin-bottom: 0;
  color: #3ab0c8;
}
input::-moz-focus-inner {
  border: 0;
}
input::-ms-clear {
  display: none;
}
/* hides the spin-button for firefox */
input[type=number] {
  -moz-appearance: textfield;
}
/* hides the spin-button for chrome*/
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* CUSTOM CHECKBOX STYLES */
p.checkbox {
  margin: 5px 0 10px;
  padding-left: 1.5em;
  text-indent: -1.5em;
  position: relative;
  text-align: center;
}
/*[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label {
  position: relative;
  padding-left: 25px;
  font-size: 11pt;
  cursor: pointer;
}*/
/* checkbox aspect */
/*[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before {
  content: '';
  position: absolute;
  left: 0; 
  top: 1px;
  width: 13px; height: 13px;
  border: 1px solid #aaa;
  background: #f8f8f8;
  box-shadow: inset 0 1px 3px rgba(0,0,0,.3)
}*/
/* checked mark aspect */
/*[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after {
  content: '';
  position: absolute;
  top: 3px; left: 2px;
  font-size: 14px;
  color: #09ad7e;
  transition: opacity .2s;
  background-image: url('../img/checkbox.png');
  background-size: contain;
  height: 11px;
  width: 11px;
}
[type="checkbox"]:not(:checked) + label:after {
	left: 7px;
}*/
/* checked mark aspect changes */
/*[type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
[type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}*/
/* CUSTOM RADIO SETTINGS */
.radio-wrap {
  display: block;
  width: 100%;
  text-align: left;
  margin: 10px 0;
}
.radio-wrap p.radio {
  display: inline;
  padding-left: 0;
  text-indent: 0;
  margin-right: 20px;
}
p.radio {
  margin: 0;
  padding-left: 1.5em;
  text-indent: -1.5em;
  position: relative;
  color: #5b5b5b;
  font-size: 12pt;
  padding-top: 8px;
}
[type="radio"]:not(:checked),
[type="radio"]:checked {
  position: absolute;
  left: -9999px;
}
[type="radio"]:not(:checked) + label,
[type="radio"]:checked + label {
  position: relative;
  padding-left: 25px;
  cursor: pointer;
}
/* radio aspect */
[type="radio"]:not(:checked) + label:before,
[type="radio"]:checked + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 13px;
  height: 13px;
  background: #d0d2d3;
  border-radius: 6px;
  -webkit-transition: background .2s;
          transition: background .2s;
}
[type="radio"]:checked + label:before {
  background: #76c4d5;
}
/* checked mark aspect */
[type="radio"]:not(:checked) + label:after,
[type="radio"]:checked + label:after {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 3px;
  top: 5px;
  left: 3px;
  border: 1px solid #5b5b5b;
  background: #ffffff;
  -webkit-transition: opacity .2s;
          transition: opacity .2s;
}
[type="radio"]:not(:checked) + label:after {
  left: 7px;
}
/* checked mark aspect changes */
[type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}
[type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.tangram-suggestion-main {
  z-index: 11;
  text-align: left;
}
.portal {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  background: #ffffff;
  z-index: 0;
  margin-top: -30px;
  background: transparent;
}
@media only screen and (max-height: 730px) {
  .portal {
    width: 80%;
  }
}
@media only screen and (max-height: 450px) {
  .portal {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .portal {
    width: 100%;
  }
}
.portal.input-above {
  margin-top: 0;
}
.portal .portal-cover {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 10;
  border: 2px solid white;
}
.portal .slide {
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  padding-bottom: 20px;
  position: absolute;
  top: 0;
}
.portal .slide .scroll-helper {
  position: absolute;
  z-index: 100;
  width: 100%;
  height: 77%;
}
.portal .portal-content {
  position: relative;
  width: 50%;
  height: 0;
  padding-bottom: 50%;
  margin: auto;
  background-size: contain;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1200px) {
  .portal .portal-content {
    width: 60%;
    padding-bottom: 60%;
  }
}
@media only screen and (max-width: 1023px) {
  .portal .portal-content {
    width: 350px;
    padding-bottom: 350px;
  }
}
@media only screen and (max-width: 767px) {
  .portal .portal-content {
    width: 100%;
    padding-bottom: 100%;
  }
}
.portal .portal-content.color-square {
  background: #76c4d5;
}
.portal .portal-content.environment {
  background-image: url('../img/sun1.png');
}
.portal .portal-content.age-spots {
  background-image: url('../img/ageSpotsBase.jpg');
}
.portal .portal-content.wrinkles-eye {
  background-image: url('../img/eyeWrinklesBase.jpg');
  background-size: cover;
}
.portal .portal-content.wrinkles-nose {
  background-image: url('../img/noseWrinklesBase.jpg');
  background-size: cover;
}
.portal .portal-content.wrinkles-fore {
  background-image: url('../img/foreWrinklesBase.jpg');
  background-size: cover;
}
.portal .portal-content.pores {
  background-image: url('../img/poreBase.jpg');
  background-size: cover;
}
.portal .portal-content img {
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.portal .portal-content .halo {
  width: 100%;
  height: 100%;
  background-image: url('../img/halo.png');
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  display: none;
}
.portal .portal-content .map {
  padding: 0;
  position: absolute !important;
  top: 2px;
  left: 2px;
  width: 98%;
  height: 98%;
}
.portal .portal-content .cover {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('../img/sun2.png') no-repeat;
  background-size: cover;
  opacity: 0;
}
.portal .portal-content .cover.sun {
  opacity: 1;
}
.portal .portal-content .cover.spots {
  background-image: url('../img/ageSpotsOpacity.jpg');
  width: 100%;
}
.portal .portal-content .cover.eye-wrinkle {
  background: url('../img/eyeWrinklesOpacity.jpg');
}
.portal .portal-content .cover.nose-wrinkle {
  background: url('../img/noseWrinklesOpacity.jpg');
}
.portal .portal-content .cover.fore-wrinkle {
  background: url('../img/foreWrinklesOpacity.jpg');
}
.portal .portal-content .cover.pore {
  background: url('../img/poreOpacity.jpg');
}
.portal .twoLine-text {
  position: absolute;
  left: 0;
  font-size: 22pt;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
  -webkit-font-smoothing: subpixel-antialiased;
  z-index: 101;
}
@media only screen and (max-width: 1023px) {
  .portal .twoLine-text {
    font-size: 20pt;
  }
}
@media only screen and (max-width: 767px) {
  .portal .twoLine-text {
    font-size: 19pt;
  }
}
.portal .threeLine-text {
  position: absolute;
  left: 0;
  font-size: 22pt;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
  -webkit-font-smoothing: subpixel-antialiased;
  z-index: 101;
  /* Dont know if we use this any more*/
}
@media only screen and (max-width: 1023px) {
  .portal .threeLine-text {
    font-size: 20pt;
  }
}
@media only screen and (max-width: 767px) {
  .portal .threeLine-text {
    font-size: 19pt;
  }
}
.portal .threeLine-text.gray {
  color: #5b5b5b;
}
.portal .threeLine-text .currentLevel {
  font-size: 11pt;
}
@media only screen and (max-width: 767px) {
  .portal .threeLine-text .currentLevel {
    font-size: 10pt;
  }
}
@media only screen and (max-width: 400px) {
  .portal .threeLine-text .currentLevel {
    font-size: 9pt;
  }
}
.portal .threeLine-text .firstLine {
  font-size: 20pt;
}
@media only screen and (max-width: 767px) {
  .portal .threeLine-text .firstLine {
    font-size: 18pt;
  }
}
@media only screen and (max-width: 450px) {
  .portal .threeLine-text .firstLine {
    font-size: 12pt;
  }
}
.portal .blue {
  color: #1e4072;
}
.portal .portal-minus,
.portal .portal-plus {
  position: absolute;
  width: 70px;
  bottom: 22%;
  left: 10px;
}
.portal .portal-minus img,
.portal .portal-plus img {
  position: relative;
  margin: auto;
  display: block;
  width: 25px;
  padding-bottom: 5px;
}
.portal .portal-minus span,
.portal .portal-plus span {
  display: block;
}
@media only screen and (max-width: 1023px) {
  .portal .portal-minus span,
  .portal .portal-plus span {
    font-size: 11pt;
  }
}
@media only screen and (max-width: 767px) {
  .portal .portal-minus span,
  .portal .portal-plus span {
    font-size: 10pt;
  }
}
.portal .portal-plus {
  right: 10px;
  left: auto;
}
.portal .portal-plus span {
  text-align: right;
}
.wrinkles-submenu {
  position: relative;
  z-index: 5;
  margin-bottom: -40px;
}
@media only screen and (max-width: 767px) {
  .wrinkles-submenu {
    margin-bottom: 0;
  }
}
.wrinkles-submenu .circle {
  position: relative;
  display: inline-block;
  width: 75px;
  height: 70px;
  background-size: contain;
  background-repeat: no-repeat;
}
.wrinkles-submenu .circle:nth-child(2) {
  margin: 0 10%;
}
@media only screen and (max-width: 767px) {
  .wrinkles-submenu .circle:nth-child(2) {
    margin: 0 5%;
  }
}
.wrinkles-submenu .circle img {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
  height: 70px;
  border: none;
  outline: none;
}
.wrinkles-submenu .circle .outline {
  height: 80px;
  top: -6px;
  left: -3px;
}
.wrinkles-submenu .circle .check {
  height: 30px;
  top: 22px;
  left: 18px;
}
.bespokeButton {
  border-radius: 8px;
  -webkit-transition: background-color 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s, z-index 0.2s;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s, z-index 0.2s;
  width: 280px;
  padding: 9px 10px;
  height: auto;
  background: #ffffff;
  border: 1px solid #999999;
  color: #999999;
  outline: 0;
  font-size: 18px;
  margin-bottom: 10px;
  cursor: pointer;
  text-align: center;
  z-index: 1;
}
.bespokeButton:hover {
  background: #76c4d5;
  color: #ffffff;
}
@media only screen and (max-width: 767px) and (max-height: 600px) {
  .bespokeButton:hover {
    background: #ffffff;
    color: #999999;
  }
}
.bespokeButton.blue {
  border: 1px solid #3ab0c8;
  color: #3ab0c8;
}
.bespokeButton.blue:hover {
  background: #3ab0c8;
  color: #ffffff;
}
.bespokeButton.skin:hover {
  background: #6dabe4;
}
.bespokeButton.prefs:hover {
  background: #8293dc;
}
.bespokeButton.review {
  background: #3ab0c8;
  color: #ffffff;
  border: none;
}
.bespokeButton.review.active {
  background: #3ab0c8;
  color: #ffffff;
  border: none;
}
.bespokeButton.review:hover {
  background: #3ab0c8;
  color: #ffffff;
  border: none;
}
.bespokeButton.new-code {
  position: relative;
  top: -1px;
  float: right;
  width: 185px;
}
.bespokeButton.reviewYou {
  background: #76c4d5;
  color: #ffffff;
  border: none;
}
.bespokeButton.reviewYou:hover {
  color: #d0d2d3;
}
.bespokeButton.reviewSkin {
  background: #6dabe4;
  color: #ffffff;
  border: none;
  width: 280px;
}
.bespokeButton.reviewSkin:hover {
  color: #d0d2d3;
}
.bespokeButton.reviewPrefs {
  background: #8293dc;
  color: #ffffff;
  border: none;
  width: 280px;
}
.bespokeButton.reviewPrefs:hover {
  color: #d0d2d3;
}
.bespokeButton.accept,
.bespokeButton.done {
  float: left;
  width: 280px;
}
@media only screen and (max-width: 767px) {
  .bespokeButton.accept,
  .bespokeButton.done {
    width: 135px;
  }
}
.bespokeButton.decline,
.bespokeButton.share {
  width: 280px;
  float: right;
}
@media only screen and (max-width: 767px) {
  .bespokeButton.decline,
  .bespokeButton.share {
    width: 135px;
  }
}
.bespokeButton.small {
  width: 135px;
}
.bespokeButton.share:hover {
  background: #ffffff;
  color: #3ab0c8;
}
@media only screen and (max-width: 767px) {
  .bespokeButton.small-mobile {
    float: right;
    max-width: 280px;
    width: 100%;
  }
}
.getMachineId {
  /*width: 40px;
  height: 40px;
  background: url(../img/scan_btn.png) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  right: 0;
  top: 0;*/
  /*branch*/
  width: 35px;
  height: 40px;
  background: url(../img/scan_btn.png) no-repeat;
  background-size: 32px 32px;
  position: absolute;
  right: 35px;
  top: 0;
  z-index: 1;
  background-position: center;
  padding-right: 3px;
  display: none;
}
.getMachineId.show {
  display: block !important;
}
.getMachineId-wrap.phoneGap {
  padding-right: 45px;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.getMachineId-wrap.phoneGap .getMachineId {
  display: block !important;
}
.getMachineId-wrap.phoneGap .machineId {
  width: 100% !important;
}
.getMachineId-wrap.phoneGap .machineId-help-input {
  right: 41px !important;
}
.submitButton,
.nextStepButton {
  border-radius: 8px;
  -webkit-transition: background-color 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s, z-index 0.2s;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s, z-index 0.2s;
  width: 280px;
  padding: 9px 10px;
  height: auto;
  background: #3ab0c8;
  color: #ffffff;
  outline: 0;
  font-size: 18px;
  border: none;
  cursor: pointer;
  text-align: center;
  z-index: 1;
}
.nextStepButton {
  color: #999999;
}
.get-verify-code {
  border-radius: 8px;
  -webkit-transition: background-color 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s, z-index 0.2s;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s, z-index 0.2s;
  width: 120px;
  padding: 9px 10px;
  background: #ffffff;
  height: auto;
  outline: 0;
  font-size: 14px;
  border: none;
  cursor: pointer;
  text-align: center;
  z-index: 1;
  text-decoration: underline;
}
/**
* fixd by Sunny.ge 2015/07/24
* 获取机器码按钮样式
*/
.get-machineId {
  border-radius: 8px;
  -webkit-transition: background-color 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s, z-index 0.2s;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s, z-index 0.2s;
  width: 40px;
  height: 40px;
  outline: 0;
  border: none;
  cursor: pointer;
  z-index: 1;
  position: absolute;
  left: 210px;
  top: 0;
  background: #ffffff url('../img/file-download-338-left.png') no-repeat;
}
/**
* fixd by Sunny.ge 2015/08/07
*  此按钮只做占位使用
*/
.space-hide {
  width: 45px;
  visibility: hidden;
  text-decoration: none;
}
.buttonSelected {
  background: #76c4d5;
  color: #ffffff;
  border: 1px solid #76c4d5;
}
.buttonSelected:hover {
  background: #76c4d5;
  color: #ffffff;
  border: 1px solid #76c4d5;
}
.buttonSelected.blue {
  background: #3ab0c8;
  color: #ffffff;
}
.buttonSelected.skin {
  background: #6dabe4;
}
.buttonSelected.skin:hover {
  background: #6dabe4;
  border: 1px solid #6dabe4;
}
.buttonSelected.prefs {
  background: #8293dc;
}
.buttonSelected.prefs:hover {
  background: #8293dc;
  border: 1px solid #8293dc;
}
.continueButton {
  border-radius: 8px;
  -webkit-transition: background-color 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s, z-index 0.2s;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s, z-index 0.2s;
  padding: 9px 10px;
  height: auto;
  background: #ffffff;
  border: 1px solid #999999;
  color: #999999;
  outline: 0;
  font-size: 18px;
  margin-bottom: 10px;
  cursor: pointer;
  text-align: center;
  z-index: 1;
  border: 0px;
  width: 280px;
  color: #76c4d5;
}
.continueButton:hover {
  background: #76c4d5;
  color: #ffffff;
}
@media only screen and (max-width: 767px) and (max-height: 600px) {
  .continueButton:hover {
    background: #ffffff;
    color: #999999;
  }
}
.continueButton.blue {
  border: 1px solid #3ab0c8;
  color: #3ab0c8;
}
.continueButton.blue:hover {
  background: #3ab0c8;
  color: #ffffff;
}
.continueButton.skin:hover {
  background: #6dabe4;
}
.continueButton.prefs:hover {
  background: #8293dc;
}
.continueButton.review {
  background: #3ab0c8;
  color: #ffffff;
  border: none;
}
.continueButton.review.active {
  background: #3ab0c8;
  color: #ffffff;
  border: none;
}
.continueButton.review:hover {
  background: #3ab0c8;
  color: #ffffff;
  border: none;
}
.continueButton.new-code {
  position: relative;
  top: -1px;
  float: right;
  width: 185px;
}
.continueButton.reviewYou {
  background: #76c4d5;
  color: #ffffff;
  border: none;
}
.continueButton.reviewYou:hover {
  color: #d0d2d3;
}
.continueButton.reviewSkin {
  background: #6dabe4;
  color: #ffffff;
  border: none;
  width: 280px;
}
.continueButton.reviewSkin:hover {
  color: #d0d2d3;
}
.continueButton.reviewPrefs {
  background: #8293dc;
  color: #ffffff;
  border: none;
  width: 280px;
}
.continueButton.reviewPrefs:hover {
  color: #d0d2d3;
}
.continueButton.accept,
.continueButton.done {
  float: left;
  width: 280px;
}
@media only screen and (max-width: 767px) {
  .continueButton.accept,
  .continueButton.done {
    width: 135px;
  }
}
.continueButton.decline,
.continueButton.share {
  width: 280px;
  float: right;
}
@media only screen and (max-width: 767px) {
  .continueButton.decline,
  .continueButton.share {
    width: 135px;
  }
}
.continueButton.small {
  width: 135px;
}
.continueButton.share:hover {
  background: #ffffff;
  color: #3ab0c8;
}
@media only screen and (max-width: 767px) {
  .continueButton.small-mobile {
    float: right;
    max-width: 280px;
    width: 100%;
  }
}
.continueButton.region {
  margin: 0 auto 20px auto;
  border: 1px solid #76c4d5;
}
.continueButton.main {
  margin: 0 0 20px;
  border: 1px solid #3ab0c8;
  color: #3ab0c8;
  display: block;
}
@media only screen and (max-width: 767px) {
  .continueButton.main {
    margin: 0 auto 20px;
  }
}
.continueButton.main.active {
  background: #3ab0c8;
  color: #ffffff;
}
.continueButton.main:hover {
  background: #3ab0c8;
  color: #ffffff;
}
.continueButton:hover {
  background: #ffffff;
  color: #999999;
}
.continueButton.skin {
  color: #6dabe4;
}
.continueButton.skin:hover {
  background: #ffffff;
  color: #999999;
}
.continueButton.prefs {
  color: #8293dc;
}
.continueButton.prefs:hover {
  background: #ffffff;
  color: #999999;
}
.backButton,
.nextButton {
  border-radius: 8px;
  -webkit-transition: background-color 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s, z-index 0.2s;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s, z-index 0.2s;
  width: 90px;
  background: #ffffff url('../img/nav-back-blue.svg') 50% no-repeat;
  background-size: 10px 18px;
  border: 1px solid #76c4d5;
  color: #76c4d5;
  font-size: 0px;
  height: 42px;
  margin-bottom: 7px;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.backButton.skin,
.nextButton.skin {
  background: #ffffff url('../img/nav-back-skin.svg') 50% no-repeat;
  background-size: 10px 18px;
  border: 1px solid #6dabe4;
  color: #6dabe4;
}
.backButton.prefs,
.nextButton.prefs {
  background: #ffffff url('../img/nav-back-prefs.svg') 50% no-repeat;
  background-size: 10px 18px;
  border: 1px solid #8293dc;
  color: #8293dc;
}
.backButton.review,
.nextButton.review {
  background: #ffffff url('../img/nav-back-review.svg') 50% no-repeat;
  background-size: 10px 18px;
  border: 1px solid #3ab0c8;
  color: #3ab0c8;
}
@media only screen and (max-width: 767px) {
  .backButton.small-mobile,
  .nextButton.small-mobile {
    width: 100%;
  }
}
.backButton {
  float: left;
}
.backButton.assessment:after {
  display: none;
}
.backButton:after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  right: -22px;
  top: 35%;
  background: #ffffff;
}
.nextButton {
  background: #ffffff url('../img/nav-next-blue.svg') 50% no-repeat;
  background-size: 10px 18px;
  float: right;
}
.nextButton:before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  left: -22px;
  top: 35%;
  background: #ffffff;
}
.nextButton.active {
  background: #76c4d5 url('../img/nav-next-white.svg') 50% no-repeat;
  background-size: 10px 18px;
}
.nextButton.skin {
  background: #ffffff url('../img/nav-next-skin.svg') 50% no-repeat;
  background-size: 10px 18px;
}
.nextButton.skin.active {
  background: #6dabe4 url('../img/nav-next-white.svg') 50% no-repeat;
  background-size: 10px 18px;
}
.nextButton.prefs {
  background: #ffffff url('../img/nav-next-prefs.svg') 50% no-repeat;
  background-size: 10px 18px;
}
.nextButton.prefs.active {
  background: #8293dc url('../img/nav-next-white.svg') 50% no-repeat;
  background-size: 10px 18px;
}
.orderButton {
  border-radius: 8px;
  -webkit-transition: background-color 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s, z-index 0.2s;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s, z-index 0.2s;
  width: 280px;
  padding: 9px 10px;
  height: auto;
  background: #ffffff;
  border: 1px solid #999999;
  color: #999999;
  outline: 0;
  font-size: 18px;
  margin-bottom: 10px;
  cursor: pointer;
  text-align: center;
  z-index: 1;
  border: 0px;
  width: 60px;
  color: #76c4d5;
  margin-bottom: 0px;
  padding: 7px 7px;
}
.orderButton:hover {
  background: #76c4d5;
  color: #ffffff;
}
@media only screen and (max-width: 767px) and (max-height: 600px) {
  .orderButton:hover {
    background: #ffffff;
    color: #999999;
  }
}
.orderButton.blue {
  border: 1px solid #3ab0c8;
  color: #3ab0c8;
}
.orderButton.blue:hover {
  background: #3ab0c8;
  color: #ffffff;
}
.orderButton.skin:hover {
  background: #6dabe4;
}
.orderButton.prefs:hover {
  background: #8293dc;
}
.orderButton.review {
  background: #3ab0c8;
  color: #ffffff;
  border: none;
}
.orderButton.review.active {
  background: #3ab0c8;
  color: #ffffff;
  border: none;
}
.orderButton.review:hover {
  background: #3ab0c8;
  color: #ffffff;
  border: none;
}
.orderButton.new-code {
  position: relative;
  top: -1px;
  float: right;
  width: 185px;
}
.orderButton.reviewYou {
  background: #76c4d5;
  color: #ffffff;
  border: none;
}
.orderButton.reviewYou:hover {
  color: #d0d2d3;
}
.orderButton.reviewSkin {
  background: #6dabe4;
  color: #ffffff;
  border: none;
  width: 280px;
}
.orderButton.reviewSkin:hover {
  color: #d0d2d3;
}
.orderButton.reviewPrefs {
  background: #8293dc;
  color: #ffffff;
  border: none;
  width: 280px;
}
.orderButton.reviewPrefs:hover {
  color: #d0d2d3;
}
.orderButton.accept,
.orderButton.done {
  float: left;
  width: 280px;
}
@media only screen and (max-width: 767px) {
  .orderButton.accept,
  .orderButton.done {
    width: 135px;
  }
}
.orderButton.decline,
.orderButton.share {
  width: 280px;
  float: right;
}
@media only screen and (max-width: 767px) {
  .orderButton.decline,
  .orderButton.share {
    width: 135px;
  }
}
.orderButton.small {
  width: 135px;
}
.orderButton.share:hover {
  background: #ffffff;
  color: #3ab0c8;
}
@media only screen and (max-width: 767px) {
  .orderButton.small-mobile {
    float: right;
    max-width: 280px;
    width: 100%;
  }
}
.orderButton.region {
  border: 1px solid #76c4d5;
}
.orderButton.main {
  border: 1px solid #3ab0c8;
  color: #3ab0c8;
  display: block;
}
.orderButton.main.active {
  background: #3ab0c8;
  color: #ffffff;
}
.orderButton.main:hover {
  background: #3ab0c8;
  color: #ffffff;
}
.orderButton:hover {
  background: #ffffff;
  color: #999999;
}
.orderButton.skin {
  color: #6dabe4;
}
.orderButton.skin:hover {
  background: #ffffff;
  color: #999999;
}
.orderButton.prefs {
  color: #8293dc;
}
.orderButton.prefs:hover {
  background: #ffffff;
  color: #999999;
}
.Stage_CodeReveal_OrderBttn_id {
  cursor: pointer;
}
.Stage_CodeReveal_OrderBttnText_id {
  cursor: pointer;
}
/******************************
    	Popup box styles
*******************************/
.skin-test,
.alert-cover,
.night-alert-cover,
.popup-cover,
.login-cover {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 16000;
  background: rgba(255, 255, 255, 0.5);
  display: none;
}
.skin-test .alert-wrap,
.alert-cover .alert-wrap,
.night-alert-cover .alert-wrap,
.popup-cover .alert-wrap,
.login-cover .alert-wrap,
.skin-test .night-alert-wrap,
.alert-cover .night-alert-wrap,
.night-alert-cover .night-alert-wrap,
.popup-cover .night-alert-wrap,
.login-cover .night-alert-wrap,
.skin-test .popup-wrap,
.alert-cover .popup-wrap,
.night-alert-cover .popup-wrap,
.popup-cover .popup-wrap,
.login-cover .popup-wrap {
  width: 100%;
  height: 100%;
}
.skin-test .alert-wrap.off-center,
.alert-cover .alert-wrap.off-center,
.night-alert-cover .alert-wrap.off-center,
.popup-cover .alert-wrap.off-center,
.login-cover .alert-wrap.off-center,
.skin-test .night-alert-wrap.off-center,
.alert-cover .night-alert-wrap.off-center,
.night-alert-cover .night-alert-wrap.off-center,
.popup-cover .night-alert-wrap.off-center,
.login-cover .night-alert-wrap.off-center,
.skin-test .popup-wrap.off-center,
.alert-cover .popup-wrap.off-center,
.night-alert-cover .popup-wrap.off-center,
.popup-cover .popup-wrap.off-center,
.login-cover .popup-wrap.off-center {
  width: 80%;
  float: right;
  zoom: 1;
}
.skin-test .alert-wrap.off-center:before,
.alert-cover .alert-wrap.off-center:before,
.night-alert-cover .alert-wrap.off-center:before,
.popup-cover .alert-wrap.off-center:before,
.login-cover .alert-wrap.off-center:before,
.skin-test .night-alert-wrap.off-center:before,
.alert-cover .night-alert-wrap.off-center:before,
.night-alert-cover .night-alert-wrap.off-center:before,
.popup-cover .night-alert-wrap.off-center:before,
.login-cover .night-alert-wrap.off-center:before,
.skin-test .popup-wrap.off-center:before,
.alert-cover .popup-wrap.off-center:before,
.night-alert-cover .popup-wrap.off-center:before,
.popup-cover .popup-wrap.off-center:before,
.login-cover .popup-wrap.off-center:before,
.skin-test .alert-wrap.off-center:after,
.alert-cover .alert-wrap.off-center:after,
.night-alert-cover .alert-wrap.off-center:after,
.popup-cover .alert-wrap.off-center:after,
.login-cover .alert-wrap.off-center:after,
.skin-test .night-alert-wrap.off-center:after,
.alert-cover .night-alert-wrap.off-center:after,
.night-alert-cover .night-alert-wrap.off-center:after,
.popup-cover .night-alert-wrap.off-center:after,
.login-cover .night-alert-wrap.off-center:after,
.skin-test .popup-wrap.off-center:after,
.alert-cover .popup-wrap.off-center:after,
.night-alert-cover .popup-wrap.off-center:after,
.popup-cover .popup-wrap.off-center:after,
.login-cover .popup-wrap.off-center:after {
  content: "";
  display: table;
}
.skin-test .alert-wrap.off-center:after,
.alert-cover .alert-wrap.off-center:after,
.night-alert-cover .alert-wrap.off-center:after,
.popup-cover .alert-wrap.off-center:after,
.login-cover .alert-wrap.off-center:after,
.skin-test .night-alert-wrap.off-center:after,
.alert-cover .night-alert-wrap.off-center:after,
.night-alert-cover .night-alert-wrap.off-center:after,
.popup-cover .night-alert-wrap.off-center:after,
.login-cover .night-alert-wrap.off-center:after,
.skin-test .popup-wrap.off-center:after,
.alert-cover .popup-wrap.off-center:after,
.night-alert-cover .popup-wrap.off-center:after,
.popup-cover .popup-wrap.off-center:after,
.login-cover .popup-wrap.off-center:after {
  clear: both;
}
@media only screen and (max-width: 1200px) {
  .skin-test .alert-wrap.off-center,
  .alert-cover .alert-wrap.off-center,
  .night-alert-cover .alert-wrap.off-center,
  .popup-cover .alert-wrap.off-center,
  .login-cover .alert-wrap.off-center,
  .skin-test .night-alert-wrap.off-center,
  .alert-cover .night-alert-wrap.off-center,
  .night-alert-cover .night-alert-wrap.off-center,
  .popup-cover .night-alert-wrap.off-center,
  .login-cover .night-alert-wrap.off-center,
  .skin-test .popup-wrap.off-center,
  .alert-cover .popup-wrap.off-center,
  .night-alert-cover .popup-wrap.off-center,
  .popup-cover .popup-wrap.off-center,
  .login-cover .popup-wrap.off-center {
    width: 75%;
  }
}
@media only screen and (max-width: 767px) {
  .skin-test .alert-wrap.off-center,
  .alert-cover .alert-wrap.off-center,
  .night-alert-cover .alert-wrap.off-center,
  .popup-cover .alert-wrap.off-center,
  .login-cover .alert-wrap.off-center,
  .skin-test .night-alert-wrap.off-center,
  .alert-cover .night-alert-wrap.off-center,
  .night-alert-cover .night-alert-wrap.off-center,
  .popup-cover .night-alert-wrap.off-center,
  .login-cover .night-alert-wrap.off-center,
  .skin-test .popup-wrap.off-center,
  .alert-cover .popup-wrap.off-center,
  .night-alert-cover .popup-wrap.off-center,
  .popup-cover .popup-wrap.off-center,
  .login-cover .popup-wrap.off-center {
    width: 100%;
    float: none;
  }
}
.skin-test .alert,
.alert-cover .alert,
.night-alert-cover .alert,
.popup-cover .alert,
.login-cover .alert,
.skin-test .night-alert,
.alert-cover .night-alert,
.night-alert-cover .night-alert,
.popup-cover .night-alert,
.login-cover .night-alert,
.skin-test .popup,
.alert-cover .popup,
.night-alert-cover .popup,
.popup-cover .popup,
.login-cover .popup {
  padding: 20px;
  position: relative;
  width: 280px;
  height: auto;
  margin: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #e2eefa;
  border-radius: 10px;
  zoom: 1;
}
@media only screen and (max-width: 360px) {
  .skin-test .alert,
  .alert-cover .alert,
  .night-alert-cover .alert,
  .popup-cover .alert,
  .login-cover .alert,
  .skin-test .night-alert,
  .alert-cover .night-alert,
  .night-alert-cover .night-alert,
  .popup-cover .night-alert,
  .login-cover .night-alert,
  .skin-test .popup,
  .alert-cover .popup,
  .night-alert-cover .popup,
  .popup-cover .popup,
  .login-cover .popup {
    width: 85%;
    padding: 20px;
    top: 30%;
  }
}
.skin-test .alert p,
.alert-cover .alert p,
.night-alert-cover .alert p,
.popup-cover .alert p,
.login-cover .alert p,
.skin-test .night-alert p,
.alert-cover .night-alert p,
.night-alert-cover .night-alert p,
.popup-cover .night-alert p,
.login-cover .night-alert p,
.skin-test .popup p,
.alert-cover .popup p,
.night-alert-cover .popup p,
.popup-cover .popup p,
.login-cover .popup p {
  text-align: left;
  margin: 0;
}
.skin-test .alert a,
.alert-cover .alert a,
.night-alert-cover .alert a,
.popup-cover .alert a,
.login-cover .alert a,
.skin-test .night-alert a,
.alert-cover .night-alert a,
.night-alert-cover .night-alert a,
.popup-cover .night-alert a,
.login-cover .night-alert a,
.skin-test .popup a,
.alert-cover .popup a,
.night-alert-cover .popup a,
.popup-cover .popup a,
.login-cover .popup a {
  font-size: 16pt;
  background-color: #8293dc;
  color: #ffffff;
  border-radius: 10px;
  position: relative;
  width: 100%;
  display: block;
}
.skin-test .alert a.text-link,
.alert-cover .alert a.text-link,
.night-alert-cover .alert a.text-link,
.popup-cover .alert a.text-link,
.login-cover .alert a.text-link,
.skin-test .night-alert a.text-link,
.alert-cover .night-alert a.text-link,
.night-alert-cover .night-alert a.text-link,
.popup-cover .night-alert a.text-link,
.login-cover .night-alert a.text-link,
.skin-test .popup a.text-link,
.alert-cover .popup a.text-link,
.night-alert-cover .popup a.text-link,
.popup-cover .popup a.text-link,
.login-cover .popup a.text-link {
  font-size: 12pt;
  background: none;
  color: #8293dc;
}
.skin-test .alert a:first-child,
.alert-cover .alert a:first-child,
.night-alert-cover .alert a:first-child,
.popup-cover .alert a:first-child,
.login-cover .alert a:first-child,
.skin-test .night-alert a:first-child,
.alert-cover .night-alert a:first-child,
.night-alert-cover .night-alert a:first-child,
.popup-cover .night-alert a:first-child,
.login-cover .night-alert a:first-child,
.skin-test .popup a:first-child,
.alert-cover .popup a:first-child,
.night-alert-cover .popup a:first-child,
.popup-cover .popup a:first-child,
.login-cover .popup a:first-child {
  margin-bottom: 20px;
}
.skin-test .alert .alert-options,
.alert-cover .alert .alert-options,
.night-alert-cover .alert .alert-options,
.popup-cover .alert .alert-options,
.login-cover .alert .alert-options,
.skin-test .night-alert .alert-options,
.alert-cover .night-alert .alert-options,
.night-alert-cover .night-alert .alert-options,
.popup-cover .night-alert .alert-options,
.login-cover .night-alert .alert-options,
.skin-test .popup .alert-options,
.alert-cover .popup .alert-options,
.night-alert-cover .popup .alert-options,
.popup-cover .popup .alert-options,
.login-cover .popup .alert-options,
.skin-test .alert .night-alert-options,
.alert-cover .alert .night-alert-options,
.night-alert-cover .alert .night-alert-options,
.popup-cover .alert .night-alert-options,
.login-cover .alert .night-alert-options,
.skin-test .night-alert .night-alert-options,
.alert-cover .night-alert .night-alert-options,
.night-alert-cover .night-alert .night-alert-options,
.popup-cover .night-alert .night-alert-options,
.login-cover .night-alert .night-alert-options,
.skin-test .popup .night-alert-options,
.alert-cover .popup .night-alert-options,
.night-alert-cover .popup .night-alert-options,
.popup-cover .popup .night-alert-options,
.login-cover .popup .night-alert-options,
.skin-test .alert .login-inputs,
.alert-cover .alert .login-inputs,
.night-alert-cover .alert .login-inputs,
.popup-cover .alert .login-inputs,
.login-cover .alert .login-inputs,
.skin-test .night-alert .login-inputs,
.alert-cover .night-alert .login-inputs,
.night-alert-cover .night-alert .login-inputs,
.popup-cover .night-alert .login-inputs,
.login-cover .night-alert .login-inputs,
.skin-test .popup .login-inputs,
.alert-cover .popup .login-inputs,
.night-alert-cover .popup .login-inputs,
.popup-cover .popup .login-inputs,
.login-cover .popup .login-inputs {
  margin-top: 20px;
}
.skin-test .alert .login-links,
.alert-cover .alert .login-links,
.night-alert-cover .alert .login-links,
.popup-cover .alert .login-links,
.login-cover .alert .login-links,
.skin-test .night-alert .login-links,
.alert-cover .night-alert .login-links,
.night-alert-cover .night-alert .login-links,
.popup-cover .night-alert .login-links,
.login-cover .night-alert .login-links,
.skin-test .popup .login-links,
.alert-cover .popup .login-links,
.night-alert-cover .popup .login-links,
.popup-cover .popup .login-links,
.login-cover .popup .login-links {
  margin: 20px 0 30px;
}
.skin-test .alert:before,
.alert-cover .alert:before,
.night-alert-cover .alert:before,
.popup-cover .alert:before,
.login-cover .alert:before,
.skin-test .night-alert:before,
.alert-cover .night-alert:before,
.night-alert-cover .night-alert:before,
.popup-cover .night-alert:before,
.login-cover .night-alert:before,
.skin-test .popup:before,
.alert-cover .popup:before,
.night-alert-cover .popup:before,
.popup-cover .popup:before,
.login-cover .popup:before,
.skin-test .alert:after,
.alert-cover .alert:after,
.night-alert-cover .alert:after,
.popup-cover .alert:after,
.login-cover .alert:after,
.skin-test .night-alert:after,
.alert-cover .night-alert:after,
.night-alert-cover .night-alert:after,
.popup-cover .night-alert:after,
.login-cover .night-alert:after,
.skin-test .popup:after,
.alert-cover .popup:after,
.night-alert-cover .popup:after,
.popup-cover .popup:after,
.login-cover .popup:after {
  content: "";
  display: table;
}
.skin-test .alert:after,
.alert-cover .alert:after,
.night-alert-cover .alert:after,
.popup-cover .alert:after,
.login-cover .alert:after,
.skin-test .night-alert:after,
.alert-cover .night-alert:after,
.night-alert-cover .night-alert:after,
.popup-cover .night-alert:after,
.login-cover .night-alert:after,
.skin-test .popup:after,
.alert-cover .popup:after,
.night-alert-cover .popup:after,
.popup-cover .popup:after,
.login-cover .popup:after {
  clear: both;
}
.login-cover {
  display: block;
}
.popup {
  position: relative;
  top: 50% !important;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.popup h2 {
  text-transform: uppercase;
  text-align: left;
}
.popup h2.sub {
  font-size: 13pt;
  margin-bottom: 10px;
}
.popup p {
  margin-bottom: 10px !important;
}
.popup button {
  border-radius: 8px;
  -webkit-transition: background-color 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s, z-index 0.2s;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s, z-index 0.2s;
  width: 280px;
  padding: 9px 10px;
  height: auto;
  background: none;
  border: 1px solid #3ab0c8;
  color: #3ab0c8;
  outline: 0;
  font-size: 18px;
  margin-bottom: 10px;
  cursor: pointer;
  text-align: center;
  z-index: 1;
}
.popup button.last {
  margin-bottom: 0;
}
.popup button:hover {
  background: #3ab0c8;
  color: #ffffff;
}
.popup button.active {
  background: #3ab0c8;
  color: #ffffff;
}
.popup button.inactive {
  cursor: default;
}
.popup button.inactive:hover {
  background: none;
  color: #3ab0c8;
}
.popup .popup-close {
  display: block;
  position: absolute;
  padding: 5px;
  width: 13px;
  height: 13px;
  top: 15px;
  right: 15px;
  background-image: url('../img/icon-x.svg');
  background-size: 13px 13px;
  background-position: 5px 5px;
  background-repeat: no-repeat;
  cursor: pointer;
}
.popup-checkboxes h2 {
  font-weight: bold;
}
.popup-checkboxes h3 {
  text-align: left;
  font-weight: normal;
}
.popup-checkboxes p span {
  font-weight: bold;
}
.selectADR table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 10px;
}
.selectADR tr {
  cursor: pointer;
}
.selectADR tr:last-child {
  border-bottom: 1px solid #999999;
}
.selectADR tr.blue {
  color: #3ab0c8;
}
.selectADR td {
  text-align: left;
  padding: 10px 0;
  border-top: 1px solid #999999;
}
.selectADR td:nth-child(1) {
  width: 95px;
}
.selectADR td .icon-plus {
  display: block;
  height: 15px;
  width: 15px;
  background-image: url('../img/icon-plus.svg');
}
.selectADR td .icon-check {
  display: block;
  height: 12px;
  width: 15px;
  background-image: url('../img/icon-check.svg');
}
.replaceADR table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 10px;
}
.replaceADR tr {
  cursor: pointer;
}
.replaceADR tr:last-child {
  border-bottom: 1px solid #999999;
}
.replaceADR tr.selected {
  background: #3ab0c8;
  color: #ffffff;
}
.replaceADR td {
  text-align: left;
  padding: 10px 10px;
  border-top: 1px solid #999999;
}
.replaceADR td p {
  margin-bottom: 0 !important;
}
.replaceADR td p.bold {
  font-weight: bold;
}
.replaceADR td:nth-child(1) {
  width: 160px;
}
.replaceADR td .icon-pages {
  display: block;
  height: 18px;
  width: 18px;
  background-image: url('../img/icon-pages.svg');
}
.login-popup h2 {
  font-size: 16pt;
  font-weight: bold;
}
.login-popup a.blue {
  margin-top: 0;
  background: none;
  color: #3ab0c8;
  font-size: 12pt;
}
.popup-cover .popup-wrap .popup-share a {
  margin-bottom: 0;
  width: auto;
  display: inline-block;
  background: none;
  padding: 0;
  border-radius: 0;
  margin-right: 15px;
  margin-bottom: 15px;
}
.popup-cover .popup-wrap .popup-share ul {
  text-align: left;
  margin: 15px 0 -15px;
  padding: 0;
  zoom: 1;
}
.popup-cover .popup-wrap .popup-share ul:before,
.popup-cover .popup-wrap .popup-share ul:after {
  content: "";
  display: table;
}
.popup-cover .popup-wrap .popup-share ul:after {
  clear: both;
}
/* Social icon list inside share popup */
.social-icon {
  width: 40px;
  height: 40px;
  background-size: contain;
  display: block;
  -webkit-transition: -webkit-transform 0.2s;
          transition: transform 0.2s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.social-icon.facebook {
  background-image: url('../img/social-icons/facebook.png');
}
.social-icon.twitter {
  background-image: url('../img/social-icons/twitter.png');
}
.social-icon.stumble {
  background-image: url('../img/social-icons/stumbleupon.png');
}
.social-icon.pinterest {
  background-image: url('../img/social-icons/pinterest.png');
}
.social-icon.digg {
  background-image: url('../img/social-icons/digg.png');
}
.social-icon.reddit {
  background-image: url('../img/social-icons/reddit.png');
}
.social-icon.delicious {
  background-image: url('../img/social-icons/delicious.png');
}
.social-icon:hover {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
/* CUSTOM CHECKBOX STYLES */
.popup .options {
  margin: 15px 0;
}
.popup p.checkbox {
  height: 40px;
  position: relative;
  text-align: left;
  color: #3ab0c8;
  /* checkbox aspect */
  /* checked mark aspect */
  /* checked mark aspect changes */
}
.popup p.checkbox [type="checkbox"]:not(:checked),
.popup p.checkbox [type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
.popup p.checkbox [type="checkbox"]:not(:checked) + label,
.popup p.checkbox [type="checkbox"]:checked + label {
  position: relative;
  padding-left: 47px;
  text-indent: 0.1em;
  cursor: pointer;
  font-size: 14pt;
  display: inline-block;
  width: 90%;
  padding-top: 10px;
}
.popup p.checkbox [type="checkbox"]:not(:checked) + label:before,
.popup p.checkbox [type="checkbox"]:checked + label:before {
  content: '';
  position: absolute;
  left: 0;
  width: 40px;
  height: 40px;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 8px;
  -webkit-transition: background-color 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s, z-index 0.2s;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s, z-index 0.2s;
}
.popup p.checkbox [type="checkbox"]:checked + label:before {
  background: #3ab0c8;
}
.popup p.checkbox [type="checkbox"]:not(:checked) + label:before {
  background: #ffffff;
}
.popup p.checkbox [type="checkbox"]:not(:checked) + label:after,
.popup p.checkbox [type="checkbox"]:checked + label:after {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 14px;
  color: #09ad7e;
  -webkit-transition: opacity .2s;
          transition: opacity .2s;
  background-image: url('../img/checkmark.png');
  background-size: cover;
  height: 21px;
  width: 23px;
}
.popup p.checkbox [type="checkbox"]:not(:checked) + label:after {
  left: 7px;
}
.popup p.checkbox [type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}
.popup p.checkbox [type="checkbox"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.terms-wrap {
  position: relative;
}
.terms-expand {
  width: 20px;
  height: 20px;
  background-image: url('../img/icon-x-circle.svg');
  background-size: cover;
  position: absolute;
  right: -5px;
  top: 30px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.terms-expand.expanded {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
      transform: rotate(0deg);
}
.popup-scroll-text {
  background: white;
  overflow: auto;
  max-height: 250px;
  padding: 10px;
  margin-bottom: 10px;
  width: 240px;
}
.popup-scroll-text h3,
.popup-scroll-text h4 {
  text-align: left;
}
.popup-scroll-text p {
  font-size: 10pt;
}
.popup-scroll-text a {
  background: none !important;
  color: blue !important;
  font-size: 10pt !important;
}
.popup-scroll-text.full {
  width: auto;
}
.popup-scroll-text.collapsed {
  max-height: 50px;
}
/*dialog styles*/
.dialog-cover,
.remarkDia-cover {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: rgba(255, 255, 255, 0.5);
  display: none;
}
.dialog-cover .dialog-wrap,
.remarkDia-cover .dialog-wrap {
  width: 100%;
  height: 100%;
}
.dialog-cover .dialog,
.remarkDia-cover .dialog,
.dialog-cover .remarkDia,
.remarkDia-cover .remarkDia {
  padding: 10px;
  position: relative;
  width: 280px;
  min-height: 180px;
  max-height: 300px;
  margin: auto;
  -webkit-transform: translateY(50%);
      -ms-transform: translateY(50%);
          transform: translateY(50%);
  background-color: #e2eefa;
  border-radius: 10px;
}
@media only screen and (max-width: 360px) {
  .dialog-cover .dialog,
  .remarkDia-cover .dialog,
  .dialog-cover .remarkDia,
  .remarkDia-cover .remarkDia {
    width: 85%;
    padding: 10px;
    top: 30%;
  }
}
.dialog-cover .remarkDia,
.remarkDia-cover .remarkDia {
  width: 260px;
  height: 160px;
}
.dialog-cover .dialog-top,
.remarkDia-cover .dialog-top {
  /**
  * fixd by luek.li 2015/07/24
  * 修改了dialog弹出层的样式
  *
  */
  height: 30px;
  text-align: right;
}
.dialog-cover .dialog-top .dialog-close,
.remarkDia-cover .dialog-top .dialog-close {
  display: block;
  position: absolute;
  padding: 5px;
  width: 13px;
  height: 13px;
  top: 15px;
  right: 15px;
  background-image: url('../img/icon-x.svg');
  background-size: 13px 13px;
  background-position: 5px 5px;
  background-repeat: no-repeat;
  cursor: pointer;
}
.dialog-cover .dialog-content,
.remarkDia-cover .dialog-content {
  height: 85%;
  margin-top: 10px;
  text-align: center;
}
.dialog-cover .remarkText,
.remarkDia-cover .remarkText {
  width: 240px;
  height: 120px;
  overflow: auto;
  word-break: break-all;
}
.dialog-cover .remarkDia-footer,
.remarkDia-cover .remarkDia-footer {
  margin-top: 5px;
}
.dialog-cover .remarkDia-footer .remarkBtn,
.remarkDia-cover .remarkDia-footer .remarkBtn {
  border-radius: 8px;
  -webkit-transition: background-color 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s, z-index 0.2s;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s, z-index 0.2s;
  width: 70px;
  height: 30px;
  background: #3ab0c8;
  color: #ffffff;
  outline: 0;
  border: none;
  cursor: pointer;
  text-align: center;
}
.ceng {
  z-index: 1000;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #000;
  opacity: 0.5;
  display: none;
}
.wait_modal {
  z-index: 1001;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
}
.wait_tips {
  color: #fff;
  font-size: 24px;
  top: 50%;
  position: absolute;
  left: 50%;
  width: 124px;
  text-align: center;
  height: 124px;
  line-height: 40px;
  margin: -20px 0 0 -62px;
  background-image: url('../img/loader.gif');
}
/**********************
  	Main Page Styles
***********************/
html,
body {
  margin: 0px;
  padding: 0px;
}
.shopping-cart-main {
  width: 100%;
  text-align: center;
}
.shopping-cart-demo {
  width: 90%;
  display: inline-block;
}
.shopping-cart-return {
  border-radius: 8px;
  -webkit-transition: background-color 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s, z-index 0.2s;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s, z-index 0.2s;
  width: 280px;
  padding: 9px 10px;
  height: auto;
  border: 1px solid #999999;
  outline: 0;
  font-size: 18px;
  cursor: pointer;
  text-align: center;
  z-index: 1;
  background: #3ab0c8;
  color: #ffffff;
  margin: 20px auto 10px;
}
body {
  background: #ffffff;
  color: #5b5b5b;
  text-align: center;
  position: relative;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* I removed this for qtips to not move. Hopefully we don't need it. */
  -webkit-text-size-adjust: none;
      -ms-text-size-adjust: none;
          text-size-adjust: none;
  font-family: "Microsoft Yahei" !important;
}
menu {
  margin: 0;
  padding: 0;
}
/* Keeps the content above other stuff. */
.content {
  position: relative;
  z-index: 2;
  zoom: 1;
}
.content:before,
.content:after {
  content: "";
  display: table;
}
.content:after {
  clear: both;
}
.nation-return-btn {
  font-size: 25pt;
  text-align: right;
  text-transform: uppercase;
  color: #76c4d5;
  font-family: 'Verlag A', 'Verlag B', Arial, Helvetica, 'Microsoft YaHei New', 'Microsoft Yahei', SimSun, STXihei, 'MS PGothic', Meiryo, 'malgun gothic', 'Dotum', sans-serif;
  font-weight: 300;
  cursor: pointer;
  position: relative;
  text-align: center;
  margin-left: -15px;
}
/******************************
         Typography
*******************************/
h1 {
  font-size: 25pt;
  text-align: left;
  text-transform: uppercase;
  color: #76c4d5;
  padding-top: 30px;
  padding-right: 25px;
  margin-bottom: 20px;
  font-family: 'Verlag A', 'Verlag B', Arial, Helvetica, 'Microsoft YaHei New', 'Microsoft Yahei', SimSun, STXihei, 'MS PGothic', Meiryo, 'malgun gothic', 'Dotum', sans-serif;
  font-weight: 300;
}
@media only screen and (max-width: 767px) {
  h1 {
    padding-top: 0;
    padding-right: 25px;
    margin-bottom: 10px;
    font-size: 20pt;
  }
}
@media only screen and (max-width: 400px) {
  h1 {
    margin-bottom: 5px;
  }
}
h1 span {
  font-size: 19pt;
}
h1.small {
  margin-top: 0px;
  font-size: 19pt;
}
@media only screen and (max-width: 767px) {
  h1.small {
    font-size: 12pt;
    color: #5b5b5b;
    text-align: center;
    font-weight: normal;
    line-height: 30px;
    display: none;
  }
}
h1.skin {
  color: #6dabe4;
}
h1.prefs {
  color: #8293dc;
}
h1.review {
  color: #3ab0c8;
}
h1.assessment {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
h1.back {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 30px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  h1.back {
    padding-left: 20px;
  }
}
h1.back .back-arrow {
  height: 27px;
  width: 15px;
  display: block;
  left: 0;
  top: 20px;
  background-image: url('../img/nav-back-blue.svg');
  background-size: contain;
  position: absolute;
}
@media only screen and (max-width: 767px) {
  h1.back .back-arrow {
    height: 19px;
    width: 11px;
    top: 20px;
  }
}
h1.icon-title {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 40px;
  position: relative;
  margin-top: 0;
  padding-top: 20px;
  padding-right: 0;
  font-size: 17pt;
  color: #3ab0c8;
}
h1.icon-title.border {
  border-top: 1px solid #d0d2d3;
}
h1.icon-title.no-icon {
  padding-left: 0;
}
h1.icon-title i {
  height: 30px;
  width: 30px;
  display: block;
  left: 0;
  top: 18px;
  background-size: contain;
  position: absolute;
}
h1.icon-title .personalize {
  background-image: url('../img/icon-pie-chart.svg');
}
h1.icon-title .purchase {
  background-image: url('../img/icon_me.svg');
}
h1.icon-title .support {
  background-image: url('../img/icon-support-blue.svg');
}
h2 {
  font-size: 14pt;
  margin-top: 0;
  font-family: 'Gotham Narrow SSm A', 'Gotham Narrow SSm B', Arial, Helvetica, 'Microsoft YaHei New', 'Microsoft Yahei', SimSun, STXihei, 'MS PGothic', Meiryo, 'malgun gothic', 'Dotum', sans-serif;
  font-weight: 400;
  font-style: normal;
}
h2.large {
  font-size: 21pt;
  margin-bottom: -15px;
}
h2.form-label {
  font-weight: bold;
  text-align: left;
  margin-top: 10px;
}
h2.label {
  font-size: 12pt;
  text-align: left;
  margin: 20px 0;
}
h3 {
  font-size: 14pt;
  margin-top: 5px;
  margin-bottom: 10px;
  font-family: 'Gotham Narrow SSm A', 'Gotham Narrow SSm B', Arial, Helvetica, 'Microsoft YaHei New', 'Microsoft Yahei', SimSun, STXihei, 'MS PGothic', Meiryo, 'malgun gothic', 'Dotum', sans-serif;
  font-weight: 400;
  font-style: normal;
}
h3.small {
  font-size: 11pt;
}
h4 {
  font-size: 12pt;
  margin-top: 5px;
  margin-bottom: 10px;
  font-family: 'Gotham Narrow SSm A', 'Gotham Narrow SSm B', Arial, Helvetica, 'Microsoft YaHei New', 'Microsoft Yahei', SimSun, STXihei, 'MS PGothic', Meiryo, 'malgun gothic', 'Dotum', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: bold;
  text-align: left;
}
h4 {
  font-size: 12pt;
  margin-top: 5px;
  margin-bottom: 10px;
  font-family: 'Gotham Narrow SSm A', 'Gotham Narrow SSm B', Arial, Helvetica, 'Microsoft YaHei New', 'Microsoft Yahei', SimSun, STXihei, 'MS PGothic', Meiryo, 'malgun gothic', 'Dotum', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: bold;
  text-align: left;
}
h5 {
  margin-top: 5px;
  margin-bottom: 10px;
  font-family: 'Gotham Narrow SSm A', 'Gotham Narrow SSm B', Arial, Helvetica, 'Microsoft YaHei New', 'Microsoft Yahei', SimSun, STXihei, 'MS PGothic', Meiryo, 'malgun gothic', 'Dotum', sans-serif;
  font-weight: 400;
  font-style: normal;
}
.blueText {
  color: #76c4d5;
}
/******************************
      Main element styles
*******************************/
p,
span,
input,
button {
  font-family: 'Gotham Narrow SSm A', 'Gotham Narrow SSm B', Arial, Helvetica, 'Microsoft YaHei New', 'Microsoft Yahei', SimSun, STXihei, 'MS PGothic', Meiryo, 'malgun gothic', 'Dotum', sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: left;
}
p {
  margin: 0;
}
p.spacer {
  margin-top: 20px;
  margin-bottom: 100px;
  padding-right: 25px;
}
@media only screen and (max-width: 767px) {
  p.spacer {
    margin-bottom: 10px;
  }
}
sup {
  font-size: 0.6em;
}
button,
a {
  outline: none;
}
a {
  font-family: 'Gotham Narrow SSm A', 'Gotham Narrow SSm B', Arial, Helvetica, 'Microsoft YaHei New', 'Microsoft Yahei', SimSun, STXihei, 'MS PGothic', Meiryo, 'malgun gothic', 'Dotum', sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #5b5b5b;
  text-decoration: none;
}
a.blue {
  display: block;
  color: #76c4d5;
  text-align: left;
  font-size: 10pt;
  width: 280px;
  margin: 15px auto;
}
/* Text list with bullets */
ul {
  list-style: none outside none;
  margin: 0;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
  -webkit-padding-start: 0;
}
/* Using list markup to make a list of selectable buttons */
ul.button-list {
  max-width: 320px;
  width: 100%;
  margin: 0 auto 20px;
  padding-left: 0;
}
ul.button-list.border {
  margin-bottom: 50px;
}
ul.button-list.border li:last-child {
  border-bottom: 1px solid #d0d2d3;
}
ul.button-list li {
  -webkit-transition: background-color 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s, z-index 0.2s;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s, z-index 0.2s;
  background-color: #ffffff;
  border-bottom: 1px solid #d0d2d3;
  font-size: 18px;
  height: 35px;
  line-height: 35px;
  cursor: pointer;
  color: #999999;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: 'Gotham Narrow SSm A', 'Gotham Narrow SSm B', Arial, Helvetica, 'Microsoft YaHei New', 'Microsoft Yahei', SimSun, STXihei, 'MS PGothic', Meiryo, 'malgun gothic', 'Dotum', sans-serif;
  font-weight: 400;
  font-style: normal;
}
ul.button-list li:last-child {
  border-bottom: 1px solid #ffffff;
}
ul.button-list li.selected {
  color: #3ab0c8;
}
ul.button-list li.selectedItem {
  color: #76c4d5;
}
/******************************
        Table styles
*******************************/
table {
  font-family: 'Gotham Narrow SSm A', 'Gotham Narrow SSm B', Arial, Helvetica, 'Microsoft YaHei New', 'Microsoft Yahei', SimSun, STXihei, 'MS PGothic', Meiryo, 'malgun gothic', 'Dotum', sans-serif;
  font-weight: 400;
  font-style: normal;
  border-collapse: collapse;
  width: 100%;
}
table.order-table th {
  color: #3ab0c8;
  font-weight: normal;
  border-bottom: 1px solid #d0d2d3;
  padding: 6px 0 5px;
}
table.order-table th:nth-child(1) {
  text-align: left;
}
table.order-table th:nth-child(2) {
  width: 50px;
}
table.order-table th:nth-child(3) {
  width: 120px;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  table.order-table th:nth-child(3) {
    display: none;
  }
}
table.order-table th:nth-child(4) {
  width: 50px;
}
table.order-table tr:last-child td {
  padding-bottom: 30px;
  border-bottom: none;
}
table.order-table td {
  padding: 11px 0 9px;
  border-bottom: 1px solid #d0d2d3;
  position: relative;
}
table.order-table td .extras {
  width: 100%;
  display: block;
  clear: left;
}
table.order-table td p {
  float: left;
  margin-right: 8px;
}
table.order-table td p:first-child {
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media only screen and (max-width: 767px) {
  table.order-table td p:first-child {
    max-width: 183px;
  }
}
table.order-table td p.price {
  display: none;
}
@media only screen and (max-width: 767px) {
  table.order-table td p.price {
    display: inline-block;
  }
}
table.order-table td p.psv {
  display: inline-block;
}
table.order-table td p span {
  font-weight: bold;
}
table.order-table td:nth-child(1) {
  text-align: left;
}
table.order-table td:nth-child(3) {
  font-size: 14pt;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  table.order-table td:nth-child(3) {
    display: none;
  }
}
.assessment-table {
  margin-bottom: 20px;
}
.assessment-table .adr-icon,
.assessment-table .icon-edit,
.assessment-table .icon-plus,
.assessment-table .icon-arrow {
  position: absolute;
  top: 12px;
  right: 30px;
  height: 20px;
  width: 20px;
}
.assessment-table .adr-icon {
  position: absolute;
  left: 0;
  height: 20px;
  width: 20px;
  background-image: url('../img/icon-adr.svg');
  display: none;
}
.assessment-table .icon-edit {
  position: absolute;
  left: 0;
  top: 15px;
  height: 17px;
  width: 17px;
  background-image: url('../img/icon-edit.svg');
}
.assessment-table .icon-delete {
  position: absolute;
  left: 0;
  top: 15px;
  height: 20px;
  width: 20px;
  background-image: url('../img/icon-trash.svg');
  margin-left: 3px;
}
.assessment-table .icon-plus {
  right: 0;
  background-image: url('../img/icon-plus.svg');
}
.assessment-table .icon-arrow {
  right: 0;
  height: 21px;
  width: 12px;
  background-image: url('../img/nav-next-prefs.svg');
  background-size: contain;
}
.assessment-table .openCamera {
  height: 30px;
  width: 30px;
  background-image: url('../img/camera.png');
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 10%;
  margin-top: 5px;
}
.assessment-table .openPhotoList {
  height: 30px;
  width: 30px;
  background-image: url('../img/picture.png') !important;
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 10%;
  margin-top: 5px;
}
.assessment-table .icon-ifread {
  height: 30px;
  width: 30px;
  background-image: url('../img/comments.png');
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 7px;
  margin-top: 5px;
}
.assessment-table .icon-ifread-empty {
  height: 26px;
  width: 26px;
  background-image: url('../img/noComment.png') !important;
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 5px;
}
.assessment-table .input-wrap {
  float: left;
}
.assessment-table .name-input {
  margin-bottom: 0;
}
.assessment-table tr {
  cursor: pointer;
  position: relative;
}
.assessment-table td {
  vertical-align: top;
  padding: 15px 0 15px;
  position: relative;
  border-bottom: 1px solid #d0d2d3;
}
.assessment-table td.input {
  display: none;
}
.assessment-table td.adr.name {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 30px;
}
.assessment-table td p {
  margin-bottom: 5px;
}
.assessment-table td p:last-child {
  margin-bottom: 0;
}
.assessment-table td.name {
  overflow: hidden;
  max-width: 170px;
}
.assessment-table td.name p {
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.assessment-table td.code {
  width: 60px;
}
.assessment-table td.code p {
  font-weight: bold;
  text-align: left;
}
.assessment-table td.blue p {
  color: #3ab0c8;
  text-transform: uppercase;
}
.assessment-table td.edit {
  width: 90px;
  min-width: 90px;
}
@media only screen and (max-width: 767px) {
  .assessment-table td.edit {
    display: none;
  }
}
.assessment-table td.order {
  width: 70px;
  min-width: 70px;
}
@media only screen and (max-width: 767px) {
  .assessment-table td.order {
    display: none;
  }
}
.assessment-table td.purblank {
  width: 120px;
  min-width: 120px;
}
@media only screen and (max-width: 767px) {
  .assessment-table td.purblank {
    display: none;
  }
}
.assessment-table td.review {
  width: 90px;
  min-width: 90px;
}
@media only screen and (max-width: 767px) {
  .assessment-table td.review {
    /**
        *
        *fixed by luke.li 2015/8/4 使我的账户在手机端显示时隐藏掉第四列
        */
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .assessment-table td.review p {
    display: none;
  }
}
.purchase-table {
  margin-bottom: 20px;
}
.purchase-table .adr-icon,
.purchase-table .icon-edit,
.purchase-table .icon-plus,
.purchase-table .icon-arrow {
  position: absolute;
  top: 12px;
  right: 30px;
  height: 20px;
  width: 20px;
}
.purchase-table .adr-icon {
  position: absolute;
  left: 0;
  height: 20px;
  width: 20px;
  background-image: url('../img/icon-adr.svg');
  display: none;
}
.purchase-table .icon-edit {
  position: absolute;
  left: 0;
  top: 15px;
  height: 17px;
  width: 17px;
  background-image: url('../img/icon-edit.svg');
}
.purchase-table .icon-delete {
  position: absolute;
  left: 0;
  top: 15px;
  height: 20px;
  width: 20px;
  background-image: url('../img/icon-trash.svg');
  margin-left: 3px;
}
.purchase-table .icon-plus {
  right: 0;
  background-image: url('../img/icon-plus.svg');
}
.purchase-table .icon-arrow {
  right: 0;
  height: 21px;
  width: 12px;
  background-image: url('../img/nav-next-prefs.svg');
  background-size: contain;
}
.purchase-table .openCamera {
  height: 30px;
  width: 30px;
  background-image: url('../img/camera.png');
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 10%;
  margin-top: 5px;
}
.purchase-table .openPhotoList {
  height: 30px;
  width: 30px;
  background-image: url('../img/picture.png') !important;
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 10%;
  margin-top: 5px;
}
.purchase-table .icon-ifread {
  height: 30px;
  width: 30px;
  background-image: url('../img/comments.png');
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 7px;
  margin-top: 5px;
}
.purchase-table .icon-ifread-empty {
  height: 26px;
  width: 26px;
  background-image: url('../img/noComment.png') !important;
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 5px;
}
.purchase-table .input-wrap {
  float: left;
}
.purchase-table .name-input {
  margin-bottom: 0;
}
.purchase-table tr {
  cursor: pointer;
  position: relative;
}
.purchase-table td {
  vertical-align: top;
  padding: 15px 0 15px;
  position: relative;
  border-bottom: 1px solid #d0d2d3;
}
.purchase-table td.input {
  display: none;
}
.purchase-table td.adr.name {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 30px;
}
.purchase-table td p {
  margin-bottom: 5px;
}
.purchase-table td p:last-child {
  margin-bottom: 0;
}
.purchase-table td.name {
  overflow: hidden;
  max-width: 170px;
}
.purchase-table td.name p {
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.purchase-table td.code {
  width: 60px;
}
.purchase-table td.code p {
  font-weight: bold;
  text-align: left;
}
.purchase-table td.blue p {
  color: #3ab0c8;
  text-transform: uppercase;
}
.purchase-table td.edit {
  width: 90px;
  min-width: 90px;
}
@media only screen and (max-width: 767px) {
  .purchase-table td.edit {
    display: none;
  }
}
.purchase-table td.order {
  width: 70px;
  min-width: 70px;
}
@media only screen and (max-width: 767px) {
  .purchase-table td.order {
    display: none;
  }
}
.purchase-table td.purblank {
  width: 120px;
  min-width: 120px;
}
@media only screen and (max-width: 767px) {
  .purchase-table td.purblank {
    display: none;
  }
}
.purchase-table td.review {
  width: 90px;
  min-width: 90px;
}
@media only screen and (max-width: 767px) {
  .purchase-table td.review {
    /**
        *
        *fixed by luke.li 2015/8/4 使我的账户在手机端显示时隐藏掉第四列
        */
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .purchase-table td.review p {
    display: none;
  }
}
.purchase-table i {
  right: 0;
}
.purchase-table td.order {
  width: 90px;
  min-width: 90px;
}
.order-table-footer {
  padding: 10px 0;
  border-top: 1px solid #d0d2d3;
  border-bottom: 1px solid #d0d2d3;
  zoom: 1;
}
.order-table-footer:before,
.order-table-footer:after {
  content: "";
  display: table;
}
.order-table-footer:after {
  clear: both;
}
.order-table-footer p {
  float: right;
}
.order-table-footer p:first-child {
  margin-right: 50px;
  font-size: 18pt;
}
.order-table-footer p:last-child {
  padding-top: 5px;
  margin-right: 40px;
}
.show-more {
  border-bottom: 1px solid #d0d2d3;
  margin-bottom: 30px;
  cursor: pointer;
  padding-top: 15px;
  margin-top: -20px;
  position: relative;
}
.show-more:after {
  content: '';
  position: absolute;
  right: 0;
  top: 20px;
  height: 12px;
  width: 21px;
  background-image: url('../img/arrow-up-blue.svg');
  background-size: contain;
  -webkit-transition: -webkit-transform 0.2s;
          transition: transform 0.2s;
}
.show-more.down:after {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}
.show-more h2 {
  color: #3ab0c8;
  text-align: left;
  margin-bottom: 15px;
}
.more-list {
  margin: 0 auto 30px;
  padding-left: 0;
}
@media only screen and (max-width: 767px) {
  .more-list {
    width: 100%;
  }
}
.more-list.arrow li:after {
  content: '';
  position: absolute;
  right: 9px;
  bottom: 13px;
  height: 21px;
  width: 12px;
  background-image: url('../img/nav-next-prefs.svg');
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  .more-list.moreListUl {
    margin-top: 60px;
  }
}
.more-list.doc li:after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 9px;
  height: 30px;
  width: 30px;
  background-image: url('../img/icon-doc.png');
  background-size: contain;
}
.more-list li {
  position: relative;
  padding: 15px 0 9px;
  text-align: left;
  border-bottom: 1px solid #d0d2d3;
}
.more-list li .location-icon {
  position: absolute;
  bottom: 9px;
  height: 30px;
  width: 30px;
  background-image: url('../img/icon-location.svg');
  display: none;
}
.more-list li p {
  position: relative;
  margin: 0;
  display: inline-block;
  line-height: 20px;
}
.more-list li p.more {
  padding-top: 4px;
  font-size: 16pt;
  color: #5b5b5b;
}
.more-list li.show-more {
  cursor: pointer;
}
.more-list li.show-more:after {
  content: "";
  height: 11px;
  width: 20px;
  background-image: url('../img/arrow-up-blue.svg');
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 16px;
}
.more-list li.show-more p {
  text-transform: none;
  color: #3ab0c8;
}
.more-list li.location {
  min-height: 25px;
}
.more-list li.location .location-icon {
  display: inline-block;
}
.more-list li.location p.more {
  padding-top: 6px;
  padding-left: 40px;
}
/* add by zuoyong begin on 20160302 */
.survey-list {
  margin: 0 auto;
  padding-left: 0;
}
@media only screen and (max-width: 767px) {
  .survey-list {
    width: 100%;
  }
}
.survey-list .survey-item {
  text-align: left;
  padding-top: 5px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d0d2d3;
}
.survey-list .survey-item .title {
  color: #76c4d5;
}
.survey-list .survey-item .answer {
  margin: 5px 0;
}
.survey-list .survey-item .answer input {
  display: none;
}
.survey-list .survey-item .answer .answer-checkbox-radio {
  position: absolute;
  left: 2px;
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url('../img/icon-unchecked-radio.png');
  background-repeat: no-repeat;
  background-size: contain;
  padding-left: 0;
}
.survey-list .survey-item .answer .answer-checkbox-radio:before,
.survey-list .survey-item .answer .answer-checkbox-radio:after {
  display: none !important;
}
.survey-list .survey-item .answer .answer-checkbox {
  position: absolute;
  left: 2px;
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url('../img/icon-unchecked.png');
  background-repeat: no-repeat;
  background-size: contain;
  padding-left: 0;
}
.survey-list .survey-item .answer .answer-checkbox:before,
.survey-list .survey-item .answer .answer-checkbox:after {
  display: none !important;
}
.survey-list .survey-item .answer .answer-content {
  width: 100%;
  display: inline-block;
  padding-left: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.survey-list .survey-item .answer .answer-other {
  width: 100%;
  height: 20px;
  line-height: 20px;
  display: inline-block;
  margin-bottom: 0;
  color: #5b5b5b;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  font-size: 14px;
  vertical-align: top;
  outline: none;
}
.survey-list .survey-item .other-content {
  border-bottom: 1px solid #d0d2d3;
  width: 100%;
}
.survey-list .survey-item:last-child {
  border-bottom: 0;
}
.survey-list textarea {
  padding: 10px;
  width: 100%;
  height: 100px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 14px;
  border: 1px solid #d0d2d3;
  border-radius: 10px;
  outline: none;
  resize: none;
}
.survey-list .answer input:checked ~ .answer-checkbox-radio {
  background-image: url('../img/icon-checked-radio.png');
}
.survey-list .answer input:checked ~ .answer-checkbox {
  background-image: url('../img/icon-checked.png');
}
.survey-submit {
  text-align: center;
  width: 100%;
  height: 50px;
  line-height: 0;
  margin-bottom: 10px;
  font-size: 16pt;
  color: #fff;
  background-color: #2aaac5;
  border-radius: 10px;
  border: 0;
}
@media only screen and (max-width: 767px) {
  .survey-submit {
    height: 40px;
    font-size: 12pt;
    margin-bottom: 0;
  }
}
/* add by zuoyong end on 20160302 */
/******************************
      Utility Classes
*******************************/
.secStepSubTitle {
  text-align: left;
  margin: 20px 0 20px 5%;
}
.noUserId {
  text-align: left;
}
.noUserId span {
  display: inline-block;
  margin-bottom: 10px;
}
.noUserId a {
  text-decoration: underline;
}
.applyInternetAccount {
  text-align: left;
}
.applyInternetAccount span {
  display: inline-block;
  margin-bottom: 10px;
}
.applyInternetAccount a {
  text-decoration: underline;
}
.forgetPsd {
  text-align: left;
}
.forgetPsd span {
  display: inline-block;
  margin-bottom: 10px;
}
.forgetPsd a {
  text-decoration: underline;
}
.get-customer-service {
  text-align: left;
}
.skipReg {
  width: 100%;
  overflow: hidden;
  margin-top: 10px;
  margin-bottom: 15px;
}
.selectedItem {
  color: #76c4d5;
}
.nuskin-logo {
  height: 40px;
  margin-bottom: 10px;
  display: block;
  float: left;
}
.error {
  width: 280px;
  margin: 0 auto 10px;
  color: red;
  text-align: left;
  display: none;
}
.err {
  width: 280px;
  margin: 0 auto 10px;
  color: red;
  text-align: left;
  display: none;
  text-decoration: none;
}
#background {
  background-color: #ffffff;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
.icon-close {
  text-align: right;
  display: block;
  height: 15px;
  width: 15px;
  margin-left: 35px;
  background-image: url('../img/icon-x-gray.svg');
  background-size: contain;
  cursor: pointer;
}
.input-wrap {
  width: 280px;
  margin: auto;
  position: relative;
}
.top-spacer {
  margin-top: 15px;
}
.bottom-spacer {
  margin-bottom: 15px;
}
.clear-input {
  height: 25px;
  width: 35px;
  padding: 5px 0 7px 0;
  position: absolute;
  background-image: url('../img/input-clear.png');
  background-repeat: no-repeat;
  background-position: 0px 5px;
  top: 3px;
  right: 1px;
  cursor: pointer;
  z-index: 1;
}
.clear-input.order {
  width: 15px;
  height: 15px;
  padding: 0;
  right: -10px;
  top: 13px;
  background-image: url('../img/icon-x-gray.svg');
  background-size: contain;
  background-position: 0 0;
}
.clear-input.search {
  width: 45px;
  background-image: url('../img/input-search.png');
}
.help-input,
.verifcode-help-input,
.machineId-help-input,
.re-machineId-help-input {
  width: 35px;
  height: 25px;
  padding: 5px 0px 7px;
  position: absolute;
  background-image: url('../img/icon-info.svg');
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: 0px 5px;
  top: 4px;
  right: 1px;
  cursor: pointer;
  z-index: 1;
}
.verifcode-help-input {
  right: 160px;
}
.mobileprefix,
.userIDprefix {
  width: 40px;
  height: 25px;
  border-right: 1px solid;
  padding: 5px 0px 7px;
  position: absolute;
  top: 1px;
  text-align: center;
  z-index: 2;
  /**
  * fixd by Sunny.ge 2015/07/22
  * 修改注册页面手机号的前缀，使样式与Nuskin其他站点风格保持一致
  *
  */
  line-height: 25px;
  color: #76c4d5;
  font-size: 20px;
}
.save-input {
  height: 25px;
  width: 35px;
  padding: 5px 0 7px 0;
  position: absolute;
  background-image: url('../img/input-clear.png');
  background-repeat: no-repeat;
  background-position: 0px 5px;
  top: 3px;
  right: 1px;
  cursor: pointer;
  z-index: 1;
  background-image: url('../img/input-save.png');
}
.save-input.order {
  width: 15px;
  height: 15px;
  padding: 0;
  right: -10px;
  top: 13px;
  background-image: url('../img/icon-x-gray.svg');
  background-size: contain;
  background-position: 0 0;
}
.save-input.search {
  width: 45px;
  background-image: url('../img/input-search.png');
}
.icon-share {
  width: 20px;
  height: 15px;
  background-image: url('../img/icon-share.svg');
  background-size: contain;
  display: inline-block;
  position: relative;
  top: 0px;
  margin-right: 5px;
}
.center {
  text-align: center;
}
.defaultCursor {
  cursor: default;
}
.info-text {
  width: 100%;
  max-width: 280px;
  text-align: center;
  margin: 40px auto auto auto;
  cursor: pointer;
}
.small-bespokeTextBox {
  border-radius: 8px;
  width: 120px !important;
  height: 40px;
  border: 1px solid #999;
  outline: 0px none;
  font-size: 20px;
  margin-left: -35px;
  color: #76C4D5;
  padding: 0px 20px 0px 10px;
  z-index: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: none repeat scroll 0% 0% #FFF;
  opacity: 1 !important;
  -webkit-box-shadow: 0px 17px 3px -15px rgba(115, 115, 115, 0.2) inset;
          box-shadow: 0px 17px 3px -15px rgba(115, 115, 115, 0.2) inset;
}
.customerService {
  /**
  * fixd by luek.li 2015/07/24
  * 去掉了直接写在注册页面和重置密码页面上面的style属性，归纳为这个类
  *
  */
  margin-top: 10px;
  margin-bottom: 20px;
  text-align: left;
}
/******************************
 Assessment page layout styles
*******************************/
.page-title {
  position: relative;
  float: right;
  padding-left: 2.5%;
  margin-right: 2.5%;
  z-index: 10;
  width: 75%;
  background: #ffffff;
  zoom: 1;
}
.page-title:before,
.page-title:after {
  content: "";
  display: table;
}
.page-title:after {
  clear: both;
}
.page-title:before {
  content: "";
  width: 100%;
  height: 10px;
  background: url('../img/white-fade-down.png');
  position: absolute;
  bottom: -10px;
  left: 0;
}
@media only screen and (max-width: 1200px) {
  .page-title {
    width: 70%;
  }
}
@media only screen and (max-width: 767px) {
  .page-title {
    width: 90%;
    float: none;
    padding: 0 5%;
    margin-right: 0;
  }
}
.page-title.full {
  width: 95%;
  padding: 0 2.5%;
  margin: auto;
  max-width: 768px;
  float: none;
}
.page-title.full .menu-right-button {
  top: 25px;
}
.page-title .logo {
  margin-top: 30px;
  width: 150px;
}
.page-title .logo.full {
  margin: 50px auto auto auto;
  width: 50%;
  max-width: 340px;
  min-width: 300px;
}
@media only screen and (max-height: 670px) {
  .page-title .logo.full img {
    width: 80%;
    margin-bottom: 0;
  }
}
.page-title .logo img {
  width: 100%;
  padding: 0;
  margin-bottom: 5px;
}
@media only screen and (max-width: 767px) {
  .hide-md {
    display: none !important;
  }
}
.menu-right-button {
  position: absolute;
  padding: 10px 0;
  top: 50px;
  right: 0;
  z-index: 15010;
  cursor: pointer;
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  .menu-right-button {
    padding: 0 0 15px 20px;
    top: 7px;
    margin-right: 5%;
  }
}
@media only screen and (max-width: 400px) {
  .menu-right-button {
    top: 5px;
  }
}
.menu-right-button.final {
  right: 2.5%;
  display: none;
}
.menu-right-button.final.show {
  display: block;
}
@media only screen and (max-width: 767px) {
  .menu-right-button.final {
    top: 25px;
  }
}
.menu-right-button img {
  width: 20px;
  height: 20px;
}
.menu-right-button h5 {
  display: inline-block;
  padding-right: 10px;
  margin: 0;
  position: relative;
  bottom: 4px;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .menu-right-button h5 {
    display: none;
  }
}
.menu-right-button img {
  padding: 0;
}
.subtitle {
  width: 100%;
  padding: 0 0 15px 0;
  text-align: left;
  border-bottom: 1px solid #d0d2d3;
  position: relative;
  z-index: 1;
}
.subtitle.margin {
  margin-bottom: 15px;
}
.subtitle.blue {
  margin-top: 15px;
}
.subtitle.blue h2 {
  color: #3ab0c8;
}
.subtitle.empty {
  padding-bottom: 0;
}
.subtitle h2 {
  display: inline;
  margin-bottom: 0px;
}
@media only screen and (max-width: 767px) {
  .subtitle h2 {
    font-size: 12pt;
    line-height: 14pt;
  }
}
.subtitle h2 span {
  font-weight: bold;
}
.subtitle h2.no-break {
  white-space: nowrap;
}
#page-wrap-you {
  background-color: #76c4d5;
}
#page-wrap-skin {
  background-color: #6dabe4;
}
#page-wrap-prefs {
  background-color: #8293dc;
}
.page-wrap {
  width: 100%;
  position: absolute;
  background: #ffffff;
}
.page-wrap.wrap-you .footer {
  background-color: #76c4d5;
}
.page-wrap.wrap-skin {
  background-color: #6dabe4;
}
.page-wrap.wrap-skin .footer {
  background-color: #6dabe4;
}
.page-wrap.wrap-prefs {
  background-color: #8293dc;
}
.page-wrap.wrap-prefs .footer {
  background-color: #8293dc;
}
.page {
  background: #ffffff;
  float: right;
  width: 75%;
  position: relative;
  z-index: 2;
  padding: 0 2.5%;
  text-align: center;
  overflow: auto;
  zoom: 1;
}
.page:before,
.page:after {
  content: "";
  display: table;
}
.page:after {
  clear: both;
}
@media only screen and (max-width: 1200px) {
  .page {
    width: 70%;
  }
}
@media only screen and (max-width: 767px) {
  .page {
    width: 100%;
    float: none;
    padding: 0;
  }
}
.page canvas {
  cursor: pointer;
}
.page.full {
  float: none;
  width: 95%;
  margin: auto;
  max-width: 768px;
  padding-bottom: 60px;
  zoom: 1;
}
@media only screen and (max-width: 767px) {
  .page.full {
    width: 100%;
  }
}
.page.full .logo {
  width: 45%;
  margin: auto;
  position: relative;
  left: 2.5%;
}
.page.full .logo img {
  width: 100%;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .page.full .logo {
    width: 90%;
  }
}
.page.full .columns {
  zoom: 1;
}
.page.full .columns:before,
.page.full .columns:after {
  content: "";
  display: table;
}
.page.full .columns:after {
  clear: both;
}
.page.full .col1,
.page.full .col2 {
  width: 34%;
}
.page.full .col1 h2,
.page.full .col2 h2 {
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .page.full .col1,
  .page.full .col2 {
    width: 100%;
  }
}
.page.full .col1 {
  float: left;
  margin-left: 14%;
}
@media only screen and (max-width: 767px) {
  .page.full .col1 {
    margin-left: 0;
    float: none;
    margin-bottom: 20px;
  }
}
.page.full .col2 {
  margin-right: 14%;
  float: right;
}
@media only screen and (max-width: 767px) {
  .page.full .col2 {
    margin-right: 0;
    float: none;
    padding-bottom: 40px;
  }
}
.page.full .col-left {
  width: 48.5%;
  margin-right: 3%;
  float: left;
}
.page.full .col-right {
  width: 48.5%;
  float: left;
}
.page.full .col-right img {
  width: 100%;
}
.page.full .page-content {
  max-width: none;
}
.page.full:before,
.page.full:after {
  content: "";
  display: table;
}
.page.full:after {
  clear: both;
}
.page .page-content {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  max-width: 960px;
  margin: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.page .page-content::webkit-scrollbar {
  display: none;
}
.page .page-content.padding-top {
  padding-top: 30px;
}
.page .page-content.plaintext {
  max-width: none;
  margin: 0;
  padding-right: 20px;
  padding-bottom: 70px;
}
.page .page-content.plaintext p {
  margin: 0 0 20px 0;
}
.page .page-content.plaintext p.title {
  font-weight: bold;
  margin-bottom: 5px;
}
@media only screen and (max-width: 767px) {
  .page .page-content {
    width: 90%;
    padding-left: 5%;
    padding-right: 5%;
  }
}
.final-video-static {
  background-image: url('../img/final-static.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
}
@media only screen and (max-height: 670px) {
  .final-video-static {
    background-size: 320px;
  }
}
.final-video-static .static-code {
  color: #3ab0c8;
  font-size: 40pt;
  font-family: 'Gotham Narrow', 'Gotham Narrow SSm A', 'Gotham Narrow SSm B';
  text-align: center;
  padding-right: 0;
  margin-bottom: 30px;
  letter-spacing: 15px;
}
@media only screen and (max-height: 670px) {
  .final-video-static .static-code {
    font-size: 30pt;
    margin-bottom: 10px;
  }
}
.final-video-static h2 {
  margin-top: 25px;
  font-family: Verlag, 'Verlag A', 'Verlag B';
  font-size: 17pt;
  letter-spacing: 3px;
  color: #999999;
}
@media only screen and (max-height: 670px) {
  .final-video-static h2 {
    letter-spacing: 1px;
    margin-bottom: 10px;
  }
}
.final-video-static h3 {
  font-family: Verlag, 'Verlag A', 'Verlag B';
  font-size: 12pt;
  line-height: 24pt;
  color: #999999;
}
@media only screen and (max-height: 670px) {
  .final-video-static h3 {
    line-height: 17pt;
  }
}
.final-video-static .static-content {
  position: relative;
  width: 260px;
  height: 235px;
  margin: auto;
  margin-top: 95px;
}
@media only screen and (max-height: 670px) {
  .final-video-static .static-content {
    width: 210px;
    height: 175px;
    margin-top: 70px;
  }
}
.final-video-static .static-button {
  cursor: pointer;
  position: absolute;
  background-color: rgba(232, 242, 245, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-box-shadow: rgba(66, 66, 66, 0.65098) 3px 3px 3px 0px;
  box-shadow: rgba(66, 66, 66, 0.65098) 3px 3px 3px 0px;
}
.final-video-static .static-button:after {
  content: '';
  width: 30px;
  height: 30px;
  margin-top: 5px;
  margin-left: 5px;
  background-image: url('../img/i_info_logo2.png');
  background-size: cover;
  display: block;
}
.final-video-static .static-button.info-top-left {
  top: 0;
  left: 20px;
}
.final-video-static .static-button.info-top-right {
  top: 0;
  right: 20px;
}
.final-video-static .static-button.info-bottom {
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.intro-video-static {
  margin-top: 50px;
}
@media only screen and (max-height: 650px) {
  .intro-video-static {
    margin-top: 10px;
  }
}
.intro-video-static .intro-static-content {
  width: 100%;
  margin: auto;
}
.intro-video-static .intro-static-content .intro-outer-circle {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px dotted #d8d9d9;
  margin: auto;
}
@media only screen and (max-height: 610px) {
  .intro-video-static .intro-static-content .intro-outer-circle {
    width: 100px;
    height: 100px;
  }
}
.intro-video-static .intro-static-content .intro-inner-circle {
  width: 80%;
  height: 80%;
  border-radius: 50%;
  position: absolute;
  margin: auto;
  top: 10%;
  left: 10%;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 1s ease-out;
  transition: transform 1s ease-out;
}
.intro-video-static .intro-static-content .intro-inner-circle.you {
  z-index: 10;
  background: #76c4d5;
}
.intro-video-static .intro-static-content .intro-inner-circle.you img {
  position: relative;
  top: 25%;
  height: 50%;
  opacity: 1;
}
.intro-video-static .intro-static-content .intro-inner-circle.you.animate {
  -webkit-transform: scale(30);
      -ms-transform: scale(30);
          transform: scale(30);
}
.intro-video-static .intro-static-content .intro-inner-circle.you.animate img {
  opacity: 0;
}
.intro-video-static .intro-static-content .intro-inner-circle.skin {
  background: #6dabe4;
}
.intro-video-static .intro-static-content .intro-inner-circle.skin img {
  position: relative;
  top: 35%;
  width: 65%;
}
.intro-video-static .intro-static-content .intro-inner-circle.prefs {
  background: #8293dc;
}
.intro-video-static .intro-static-content .intro-inner-circle.prefs img {
  position: relative;
  top: 35%;
  width: 65%;
}
.intro-video-static .intro-static-content .spacer {
  background-image: url('../img/separator-dots.svg');
  padding-bottom: 30px;
  background-repeat: no-repeat;
  background-position: 50%;
}
.intro-video-static .intro-static-content .spacer.you {
  color: #76c4d5;
}
.intro-video-static .intro-static-content .spacer.skin {
  color: #6dabe4;
}
.intro-video-static .intro-static-content .spacer.prefs {
  color: #8293dc;
}
.intro-video-static .intro-static-content .spacer h3 {
  text-transform: uppercase;
  font-family: Verlag, 'Verlag A', 'Verlag B';
  background: white;
  padding-bottom: 0;
  font-size: 15pt;
  line-height: 12pt;
}
.footer {
  background-color: #ffffff;
  position: absolute;
  bottom: 0 !important;
  right: 0;
  width: 75%;
  margin: auto;
  padding: 5px 2.5% 20px 2.5%;
  z-index: 5;
  -webkit-transition: background-color 0.5s;
  transition: background-color 0.5s;
}
@media only screen and (max-width: 1200px) {
  .footer {
    width: 70%;
  }
}
@media only screen and (max-width: 767px) {
  .footer {
    width: 90%;
    padding: 0 5% 10px;
  }
}
.footer:before {
  content: "";
  width: 100%;
  height: 10px;
  background: url('../img/white-fade-up.png');
  position: absolute;
  top: -10px;
  left: 0;
}
.footer.start:before {
  display: none;
}
.footer.start-page {
  width: 95%;
}
.footer.start-page .continueButton {
  margin: 0 0 20px 0;
}
@media only screen and (max-width: 767px) {
  .footer.start-page {
    width: 90%;
  }
}
.footer.full {
  width: 95%;
  max-width: 768px;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .footer.full {
    width: 90%;
  }
}
.footer p {
  margin: 5px 0;
}
.footer p.blue {
  color: #76c4d5;
}
.footer img {
  float: left;
  padding: 0;
}
.pagination {
  width: 70%;
  margin: 0 15%;
  display: inline;
  position: absolute;
  top: 40%;
  left: 0;
  z-index: 1;
  border-top: 1px solid rgba(208, 210, 211, 0.5);
}
@media only screen and (max-width: 767px) {
  .pagination {
    border: none;
    top: 40%;
  }
}
.pagination.arrow:before {
  content: "";
  width: 10px;
  height: 6px;
  background-image: url('../img/arrow-down.svg');
  background-size: cover;
  position: absolute;
  top: -25px;
  left: 50%;
  margin-left: -5px;
}
@media only screen and (max-width: 767px) {
  .pagination.arrow:before {
    top: -18px;
  }
}
.pagination span {
  background: #ffffff;
  position: relative;
  bottom: 9px;
  padding: 0 10%;
  font-size: 11pt;
}
/******************************
   	Google Autocomplete styles
*******************************/
.pac-item {
  font-size: 16px;
  color: #999999;
}
.pac-item:hover {
  background-color: #f1f1f1;
}
.pac-item-query {
  font-size: 16px;
  color: #999999;
}
/******************************
    	Start pages styles
*******************************/
/* The start pages for each section of the assessment need some specific stuff becuase their layout is so different. */
.youStart,
.skinStart,
.prefStart {
  background: none;
  width: 80%;
  padding: 0;
}
@media only screen and (max-width: 1200px) {
  .youStart,
  .skinStart,
  .prefStart {
    width: 75%;
  }
}
@media only screen and (max-width: 767px) {
  .youStart,
  .skinStart,
  .prefStart {
    width: 100%;
    float: none;
  }
}
.youStart .page-content,
.skinStart .page-content,
.prefStart .page-content {
  padding-top: 0;
  max-width: 100%;
}
@media only screen and (max-width: 767px) {
  .youStart .page-content,
  .skinStart .page-content,
  .prefStart .page-content {
    padding: 20px 5% 0;
  }
}
.youStart h1,
.skinStart h1,
.prefStart h1,
.youStart h2,
.skinStart h2,
.prefStart h2 {
  color: #ffffff;
  margin: auto;
  text-align: center;
  padding-top: 35px;
  padding-right: 0;
}
.youStart h1,
.skinStart h1,
.prefStart h1 {
  width: 100%;
}
.youStart h2,
.skinStart h2,
.prefStart h2 {
  padding-top: 85px;
  letter-spacing: 1px;
  width: 100%;
  max-width: 325px;
}
@media only screen and (max-height: 730px) {
  .youStart h2,
  .skinStart h2,
  .prefStart h2 {
    padding-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .youStart h2,
  .skinStart h2,
  .prefStart h2 {
    padding-top: 35px;
    font-size: 12pt;
  }
}
@media only screen and (max-width: 767px) and (max-height: 480px) {
  .youStart h2,
  .skinStart h2,
  .prefStart h2 {
    padding-top: 17px;
  }
}
.youStart .logo,
.skinStart .logo,
.prefStart .logo {
  padding-top: 85px;
}
@media only screen and (max-height: 730px) {
  .youStart .logo,
  .skinStart .logo,
  .prefStart .logo {
    padding-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .youStart .logo,
  .skinStart .logo,
  .prefStart .logo {
    padding-top: 30px;
  }
}
@media only screen and (max-height: 600px) {
  .youStart .logo,
  .skinStart .logo,
  .prefStart .logo {
    padding-top: 20px;
  }
}
.youStart .logo img,
.skinStart .logo img,
.prefStart .logo img {
  position: relative;
  width: 300px;
  max-width: 100%;
  margin: 0;
  padding: 0;
}
.youStart .iconPerson,
.skinStart .iconPerson,
.prefStart .iconPerson,
.youStart .iconSkin,
.skinStart .iconSkin,
.prefStart .iconSkin,
.youStart .iconPref,
.skinStart .iconPref,
.prefStart .iconPref {
  padding-top: 85px;
}
@media only screen and (max-height: 730px) {
  .youStart .iconPerson,
  .skinStart .iconPerson,
  .prefStart .iconPerson,
  .youStart .iconSkin,
  .skinStart .iconSkin,
  .prefStart .iconSkin,
  .youStart .iconPref,
  .skinStart .iconPref,
  .prefStart .iconPref {
    padding-top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .youStart .iconPerson,
  .skinStart .iconPerson,
  .prefStart .iconPerson,
  .youStart .iconSkin,
  .skinStart .iconSkin,
  .prefStart .iconSkin,
  .youStart .iconPref,
  .skinStart .iconPref,
  .prefStart .iconPref {
    padding-top: 50px;
  }
}
@media only screen and (max-width: 400px) {
  .youStart .iconPerson,
  .skinStart .iconPerson,
  .prefStart .iconPerson,
  .youStart .iconSkin,
  .skinStart .iconSkin,
  .prefStart .iconSkin,
  .youStart .iconPref,
  .skinStart .iconPref,
  .prefStart .iconPref {
    padding-top: 30px;
  }
}
@media only screen and (max-width: 767px) and (max-height: 480px) {
  .youStart .iconPerson,
  .skinStart .iconPerson,
  .prefStart .iconPerson,
  .youStart .iconSkin,
  .skinStart .iconSkin,
  .prefStart .iconSkin,
  .youStart .iconPref,
  .skinStart .iconPref,
  .prefStart .iconPref {
    padding-top: 20px;
  }
}
.youStart .iconPerson img,
.skinStart .iconPerson img,
.prefStart .iconPerson img,
.youStart .iconSkin img,
.skinStart .iconSkin img,
.prefStart .iconSkin img,
.youStart .iconPref img,
.skinStart .iconPref img,
.prefStart .iconPref img {
  width: 55px;
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 767px) and (max-height: 480px) {
  .youStart .iconPerson img,
  .skinStart .iconPerson img,
  .prefStart .iconPerson img,
  .youStart .iconSkin img,
  .skinStart .iconSkin img,
  .prefStart .iconSkin img,
  .youStart .iconPref img,
  .skinStart .iconPref img,
  .prefStart .iconPref img {
    width: 40px;
  }
}
.youStart .iconSkin,
.skinStart .iconSkin,
.prefStart .iconSkin {
  padding-top: 85px;
}
@media only screen and (max-height: 730px) {
  .youStart .iconSkin,
  .skinStart .iconSkin,
  .prefStart .iconSkin {
    padding-top: 40px;
  }
}
@media only screen and (max-width: 767px) and (max-height: 480px) {
  .youStart .iconSkin,
  .skinStart .iconSkin,
  .prefStart .iconSkin {
    padding-top: 20px;
  }
}
.youStart .iconSkin img,
.skinStart .iconSkin img,
.prefStart .iconSkin img {
  width: 90px;
}
@media only screen and (max-width: 767px) and (max-height: 480px) {
  .youStart .iconSkin img,
  .skinStart .iconSkin img,
  .prefStart .iconSkin img {
    width: 80px;
    margin-bottom: 0;
  }
}
.youStart .iconPref,
.skinStart .iconPref,
.prefStart .iconPref {
  padding-top: 85px;
}
@media only screen and (max-height: 730px) {
  .youStart .iconPref,
  .skinStart .iconPref,
  .prefStart .iconPref {
    padding-top: 40px;
  }
}
@media only screen and (max-width: 767px) and (max-height: 480px) {
  .youStart .iconPref,
  .skinStart .iconPref,
  .prefStart .iconPref {
    padding-top: 20px;
  }
}
.youStart .iconPref img,
.skinStart .iconPref img,
.prefStart .iconPref img {
  width: 80px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) and (max-height: 480px) {
  .youStart .iconPref img,
  .skinStart .iconPref img,
  .prefStart .iconPref img {
    width: 80px;
    margin-bottom: 0;
  }
}
.youStart {
  width: 100%;
  padding: 0;
  margin: auto;
  float: none;
}
/******************************
      Info Button Styles
*******************************/
.info-answer {
  position: relative;
}
.info-container,
.review-info {
  display: inline;
  position: relative;
  width: 25px;
  height: 25px;
  margin-right: 25px;
  margin-left: 10px;
}
.info-container.inside-portal,
.review-info.inside-portal {
  display: block;
  margin: 1px auto -7px auto;
  z-index: 10;
}
.info-container.review,
.review-info.review {
  position: absolute;
  right: -30px;
  margin-right: 5px;
  margin-left: 0;
  width: 20px;
  height: 20px;
  top: -3px;
}
.info-container.review .icon-info,
.review-info.review .icon-info {
  width: 20px;
  height: 20px;
}
.info-container .info-arrow,
.review-info .info-arrow {
  content: "";
  width: 0;
  height: 0;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-bottom: 6px solid #e2eefa;
  position: absolute;
  bottom: -13px;
  right: 7px;
  display: none;
}
.info-container .info-arrow.top,
.review-info .info-arrow.top {
  border-top: 6px solid #e2eefa;
  border-bottom: none;
  top: -10px;
}
.info-container .info-arrow.review,
.review-info .info-arrow.review {
  bottom: auto;
  top: -6px;
  border-bottom: none;
  border-top: 6px solid #e2eefa;
  z-index: 10;
  display: none !important;
}
.info-container .icon-info,
.review-info .icon-info {
  cursor: pointer;
  width: 25px;
  height: 25px;
  padding: 0;
  position: relative;
  top: 8px;
  margin-top: -10px;
}
.info-container .icon-info.circle,
.review-info .icon-info.circle {
  margin-top: 0;
  width: 25px;
}
.info-container .icon-info:hover + .info,
.review-info .icon-info:hover + .info {
  opacity: 1;
  z-index: 1;
}
/******************************
      Review Page Styles
*******************************/
/* This page is pretty unique so it has it's own styles. */
.review-section {
  text-align: left;
  display: block;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #d0d2d3;
  zoom: 1;
}
.review-section:before,
.review-section:after {
  content: "";
  display: table;
}
.review-section:after {
  clear: both;
}
.review-section:last-child {
  border: none;
}
.review-section .sectionHeader {
  margin-bottom: 8px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .review-section .sectionHeader {
    margin-bottom: 0;
  }
}
.review-section .sectionHeader img {
  width: 30px;
  display: inline-block;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .review-section .sectionHeader img {
    position: absolute;
    top: 5px;
    bottom: 5px;
  }
}
.review-section .sectionHeader h2 {
  margin: 0;
  margin-left: 15px;
  position: relative;
  bottom: 8px;
  display: inline-block;
  text-transform: uppercase;
  font-size: 12pt;
}
@media only screen and (max-width: 767px) {
  .review-section .sectionHeader h2 {
    font-size: 13pt;
    bottom: 0;
    width: 76%;
    margin-left: 40px;
    padding: 10px 0;
  }
}
.review-section .sectionHeader .review-button {
  display: none;
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.review-section .sectionHeader .review-button:after {
  content: "";
  height: 11px;
  width: 20px;
  background-image: url('../img/arrow-down.svg');
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 16px;
  -webkit-transition: -webkit-transform 0.2s;
          transition: transform 0.2s;
}
.review-section .sectionHeader .review-button.open:after {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}
@media only screen and (max-width: 767px) {
  .review-section .sectionHeader .review-button {
    top: -3px;
    display: block;
  }
}
.review-section .answers {
  background: #ffffff;
  display: block;
}
@media only screen and (max-width: 767px) {
  .review-section .answers {
    width: 96.5%;
    padding-left: 2%;
  }
}
.review-section .review-col {
  width: 45.7%;
  float: left;
}
@media only screen and (max-width: 767px) {
  .review-section .review-col {
    width: 100%;
    padding: 0;
    float: none;
  }
}
.review-section .review-col.left {
  margin-left: 1.8%;
  margin-right: 5%;
}
@media only screen and (max-width: 767px) {
  .review-section .review-col.left {
    margin: 10px 0 15px 0;
  }
}
.review-section .review-col a {
  width: 97%;
  display: block;
  position: relative;
  padding-left: 20px;
  font-size: 12pt;
  padding-bottom: 8px;
  min-height: 18px;
}
@media only screen and (max-width: 767px) {
  .review-section .review-col a {
    width: 91%;
  }
}
.review-section .review-col a:last-child {
  padding-bottom: 0;
}
.review-section .review-col a:before {
  content: "";
  height: 15px;
  width: 9px;
  background: url('../img/arrow.svg');
  background-size: cover;
  position: absolute;
  left: 0;
}
/******************************
    Custom Drop down styles
*******************************/
.select-box {
  margin: auto;
  margin-bottom: 15px;
  width: 280px;
  position: relative;
}
.select-box.half {
  margin-bottom: 0;
}
.select-box.half .select-value {
  padding-left: 10px;
  text-align: left;
  min-height: 25px;
}
.select-box.margin {
  margin-bottom: 15px;
}
.select-value {
  text-align: center;
  font-size: 20px;
  background: #ffffff;
  display: block;
  color: #76c4d5;
  border: 1px solid #76c4d5;
  padding: 7px 0px;
  border-radius: 8px;
  position: relative;
  z-index: 5;
  cursor: pointer;
  min-height: 25px;
}
.select-value.text-left {
  text-align: left;
  padding: 7px 10px;
}
.select-value.gray {
  border: 1px solid #999999;
}
.select-value:after {
  content: "";
  width: 15px;
  height: 9px;
  position: absolute;
  top: 14px;
  right: 15px;
  background: url('../img/arrow-down-blue.svg') no-repeat;
  background-size: cover;
  -webkit-transition: -webkit-transform 0.2s;
          transition: transform 0.2s;
}
.select-value.higher {
  z-index: 7;
}
.select-value.open:after {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}
.select-list {
  display: none;
  width: 100%;
  max-width: 10000px;
  position: absolute;
  background: #ffffff;
  z-index: 1;
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 45px 0 10px 0;
  top: 0;
  z-index: 4;
  margin-bottom: 80px;
  border-radius: 8px;
  -webkit-box-shadow: 0px 5px 5px 0px rgba(50, 50, 50, 0.3);
  box-shadow: 0px 5px 5px 0px rgba(50, 50, 50, 0.3);
}
.select-list.higher {
  z-index: 6;
}
.select-list.text-left {
  text-align: left;
}
.select-list.text-left li {
  padding: 3px 10px;
}
.select-list li {
  background: none;
  border: none !important;
  cursor: pointer;
  padding: 3px 0;
  font-family: 'Gotham Narrow SSm A', 'Gotham Narrow SSm B', Arial, Helvetica, 'Microsoft YaHei New', 'Microsoft Yahei', SimSun, STXihei, 'MS PGothic', Meiryo, 'malgun gothic', 'Dotum', sans-serif;
  font-weight: 400;
  font-style: normal;
}
/* add by zuoyong begin on 20160308 */
.select-range {
  position: relative;
  width: 100%;
}
.select-range .select-box {
  width: 48.5%;
}
.select-range .select-box.left {
  position: absolute;
  top: 0;
  left: 0;
}
.select-range .select-box.right {
  position: absolute;
  top: 0;
  right: 0;
}
.select-range .select-value {
  font-size: 12pt;
  text-align: left;
  padding: 5px 10px;
  line-height: 25px;
}
.select-range .select-value:after {
  right: 10px;
}
.select-range ul.select-list {
  padding: 37px 0 5px;
  margin: 0 auto;
  max-width: none;
}
.select-range ul.select-list li {
  height: 25px;
  line-height: 25px;
  font-size: 12pt;
}
.select-range ul.select-list li:first-child {
  color: #76c4d5;
}
.market-detail-list {
  width: 100%;
}
.market-detail-list .list-header {
  width: 100%;
  height: 35px;
  line-height: 30px;
  border-bottom: 1px solid #d0d2d3;
  margin-top: 50px;
  color: #a9a9a9;
}
.market-detail-list .list-header .left {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
  width: 30%;
}
.market-detail-list .list-header .center {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
  width: 40%;
}
.market-detail-list .list-header .right {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  width: 30%;
}
.market-detail-list .list-line {
  width: 100%;
  min-height: 20px;
  line-height: 20px;
  padding: 8px 0;
  border-bottom: 1px solid #d0d2d3;
}
.market-detail-list .list-line .left {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
  width: 30%;
}
.market-detail-list .list-line .center {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
  width: 40%;
}
.market-detail-list .list-line .right {
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  width: 30%;
}
/* add by zuoyong end on 20160308 */
/******************************
    Main Page Layout Styles
*******************************/
.app-wrap {
  max-width: 1024px;
  margin: 0 auto;
  width: 90%;
}
.app-wrap .app-wrap-title {
  border-bottom: 1px solid #D0D2D3;
}
.app-wrap .app-wrap-title .left-title {
  display: inline-block;
  float: left;
}
.app-wrap .app-wrap-title .right-title {
  display: inline-block;
  float: right;
  cursor: pointer;
}
#linkSkipReg {
  display: inline-block;
  float: right;
  right: 0;
  cursor: pointer;
}
.app-header {
  max-width: 1024px;
  width: 90%;
  margin: 0 auto;
  z-index: 15002;
  height: auto;
  padding-bottom: 10px;
  padding-top: 20px;
  background-color: #ffffff;
  border-bottom: 1px solid #d0d2d3;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  zoom: 1;
}
.app-header:before,
.app-header:after {
  content: "";
  display: table;
}
.app-header:after {
  clear: both;
}
@media only screen and (max-width: 640px) {
  .app-header {
    margin: 0 5%;
  }
}
.app-header:before {
  content: "";
  width: 100%;
  height: 10px;
  background: url('../img/white-fade-down.png');
  position: absolute;
  bottom: -11px;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .app-header.no-mobile {
    height: 0;
    margin: 0;
    padding: 0;
    border: none;
  }
  .app-header.no-mobile:before {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .app-header.no-mobile .logo {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .app-header.no-border {
    border: none;
  }
}
@media only screen and (max-width: 767px) {
  .app-header.no-fade:before {
    bottom: -10px;
  }
}
.app-header .logo {
  cursor: pointer;
  width: 196px;
  height: 40px;
  background-image: url('../img/logo.svg');
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  .app-header .logo {
    margin: auto;
    float: none;
    margin-top: 10px;
    height: 40px;
    width: 220px;
    background-image: url('../img/ageLoc_logo_hk.png');
  }
}
.app-header .logo_cn {
  cursor: pointer;
  width: 196px;
  height: 40px;
  background-image: url('../img/ageLoc_logo_cn.png');
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  .app-header .logo_cn {
    margin: auto;
    float: none;
    margin-top: 10px;
    height: 40px;
    width: 220px;
    background-image: url('../img/ageLoc_logo_cn.png');
  }
}
.app-header .logo_hk {
  cursor: pointer;
  width: 196px;
  height: 40px;
  background-image: url('../img/ageLoc_logo_hk.png');
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  .app-header .logo_hk {
    margin: auto;
    float: none;
    margin-top: 10px;
    height: 40px;
    width: 220px;
    background-image: url('../img/ageLoc_logo_hk.png');
  }
}
.app-header .menu-right-button {
  position: absolute;
  top: 17px;
  right: 0;
  margin-right: 0;
}
@media only screen and (max-width: 767px) {
  .app-header .menu-right-button.no-mobile {
    display: none;
  }
}
.app-title {
  max-width: 1024px;
  width: 100%;
  min-height: 10px;
  margin: 71px auto 0;
  position: relative;
  background-color: #ffffff;
  zoom: 1;
  /* add by zuoyong begin on 20160303 */
  /* add by zuoyong end on 20160303 */
}
.app-title:before,
.app-title:after {
  content: "";
  display: table;
}
.app-title:after {
  clear: both;
}
@media only screen and (max-width: 767px) {
  .app-title {
    width: 90%;
    margin: 0 5%;
    top: 0;
    left: 0;
    right: 0;
    position: fixed;
    z-index: 15002;
  }
}
@media only screen and (max-width: 767px) {
  .app-title:before {
    content: "";
    width: 100%;
    height: 10px;
    background: url('../img/white-fade-down.png');
    position: absolute;
    bottom: -10px;
    left: 0;
  }
}
.app-title h1 {
  margin-top: 0px;
  padding-top: 15px;
  margin-bottom: 11px;
}
.app-title .menu-right-button {
  position: absolute;
  padding: 10px 0;
  top: 7px;
  right: 0;
  z-index: 11;
  cursor: pointer;
  display: none;
  margin-right: 0;
}
@media only screen and (max-width: 767px) {
  .app-title .menu-right-button {
    display: block;
  }
}
.app-title.survey-title h1 {
  margin-bottom: 5px;
}
.app-title .survey-subtitle {
  text-align: center;
  font-size: 16pt;
  margin-bottom: 10px;
  color: #76c4d5;
}
@media only screen and (max-width: 767px) {
  .app-title .survey-subtitle {
    font-size: 14pt;
    margin-bottom: 5px;
  }
}
.app-title .survey-goBackHome,
.app-title .market-order-submit {
  text-align: center;
  width: 100%;
  height: 50px;
  line-height: 0;
  margin-bottom: 10px;
  font-size: 16pt;
  color: #fff;
  background-color: #2aaac5;
  border-radius: 10px;
  border: 0;
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .app-title .survey-goBackHome,
  .app-title .market-order-submit {
    height: 40px;
    font-size: 12pt;
    margin-bottom: 0;
  }
}
.app-title .market-order-submit {
  width: 280px;
}
.app-title .market-header-borderline {
  width: 100%;
  margin-bottom: 30px;
  border-bottom: 1px solid #d0d2d3;
  position: relative;
  z-index: 1;
}
.app-title .market-header-borderline.detail {
  margin-bottom: 10px;
}
.app-title button[disabled] {
  background-color: #ccc;
}
.app-title-extra {
  position: absolute;
  right: 0;
  top: 22px;
  text-align: left;
  width: 310px;
}
@media only screen and (max-width: 740px) {
  .app-title-extra {
    display: none;
  }
}
.app-title-extra img {
  width: 44px;
  float: left;
}
.app-title-extra h1 {
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .mar-t-100-sm {
    margin-top: 100px !important;
  }
}
.app-page {
  max-width: 1024px;
  width: 90%;
  margin: 0 auto;
  position: relative;
  padding-bottom: 80px;
  zoom: 1;
  /* add by zuoyong begin on 20160303 */
  /* add by zuoyong end on 20160303 */
}
.app-page:before,
.app-page:after {
  content: "";
  display: table;
}
.app-page:after {
  clear: both;
}
@media only screen and (max-height: 450px) {
  .app-page {
    min-height: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .app-page {
    padding-top: 0;
  }
}
.app-page.no-padding {
  padding-bottom: 0;
}
@media only screen and (max-width: 543px) {
  .app-page.extra-padding {
    padding-top: 107px;
  }
}
@media only screen and (max-width: 767px) {
  .app-page.full-title {
    padding-top: 80px;
  }
}
.app-page .col1,
.app-page .col2 {
  width: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  float: left;
}
@media only screen and (max-width: 767px) {
  .app-page .col1,
  .app-page .col2 {
    width: 100%;
    float: none;
    padding: 0;
  }
}
.app-page .col1 img,
.app-page .col2 img {
  margin: 10px 0;
  max-height: 70vh;
}
.app-page .col1 p,
.app-page .col2 p {
  margin: 10px 0;
}
.app-page .col1 {
  padding-right: 1.5%;
}
@media only screen and (max-width: 767px) {
  .app-page .col1 {
    padding-right: 0;
  }
}
.app-page .col2 {
  padding-left: 1.5%;
}
@media only screen and (max-width: 767px) {
  .app-page .col2 {
    margin-top: 20px;
    padding-left: 0;
    display: none;
  }
}
.app-page.plaintext p {
  margin: 15px 0;
}
@media only screen and (max-width: 767px) {
  .app-page.more-content {
    padding-top: 65px;
  }
}
.app-page.more-content p {
  margin: 15px 0;
}
.app-page.survey-page {
  word-wrap: break-word;
}
@media only screen and (max-width: 767px) {
  .app-page.survey-page {
    margin-top: 60px;
    padding-bottom: 60px;
  }
}
.app-page.survey-page .survey-page-head {
  width: 100%;
  padding: 0 0 15px 0;
  text-align: left;
  border-bottom: 1px solid #d0d2d3;
  position: relative;
  z-index: 1;
}
.app-page.survey-page .survey-page-head .survey-page-title {
  text-align: center;
  font-size: 16pt;
  margin-bottom: 10px;
  color: #76c4d5;
}
@media only screen and (max-width: 767px) {
  .app-page.survey-page .survey-page-head .survey-page-title {
    font-size: 14pt;
    margin-bottom: 5px;
  }
}
.app-page.survey-page .survey-page-head h2 {
  display: inline;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .app-page.survey-page .survey-page-head h2 {
    font-size: 12pt;
    line-height: 14pt;
  }
}
.app-page.market-detail-page {
  width: 100%;
  padding-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .app-page.market-detail-page {
    margin-top: 148px;
  }
}
/* landing page navigation list */
#home-list {
  margin: 0 auto 30px;
  padding-left: 0;
  width: 100%;
}
#home-list li {
  position: relative;
  padding: 25px 0;
  text-align: left;
  border-bottom: 1px solid #d0d2d3;
  cursor: pointer;
  /* add by zuoyong begin on 20160229 */
  /* add by zuoyong end on 20160229 */
}
@media only screen and (max-width: 767px) {
  #home-list li {
    padding: 25px 0;
  }
}
#home-list li:after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 18px;
  width: 10px;
  background-image: url('../img/nav-next-review.svg');
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  #home-list li:after {
    bottom: 28px;
  }
}
#home-list li i.icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 55px;
  width: 55px;
  background-size: cover;
  /* add by zuoyong begin on 20160229 */
  /* mod by zuoyong end on 20160308 */
}
@media only screen and (max-width: 767px) {
  #home-list li i.icon {
    bottom: 12px;
  }
}
#home-list li i.icon.new {
  background-image: url('../img/icon-new.svg');
}
#home-list li i.icon.pie {
  background-image: url('../img/icon-pie.svg');
}
#home-list li i.icon.cart {
  background-image: url('../img/icon-cart.svg');
}
#home-list li i.icon.bag {
  background-image: url('../img/icon-bag.svg');
  width: 40px;
  height: 40px;
  left: 8px;
}
#home-list li i.icon.write {
  background-image: url('../img/icon-write.svg');
  width: 40px;
  height: 40px;
  left: 8px;
}
#home-list li i.icon.device {
  background-image: url('../img/icon-question.svg');
}
#home-list li i.icon.more {
  background-image: url('../img/icon-more.svg');
}
#home-list li h2 {
  font-weight: normal;
  text-transform: uppercase;
  color: #a1a3a6;
  padding-left: 70px;
  position: relative;
  margin: 0;
  display: inline-block;
  font-size: 16pt;
  padding-right: 15px;
  word-break: break-word;
}
#home-list li .survey-circle-mark {
  position: relative;
  top: -1px;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #4db8ce;
}
.app-footer {
  max-width: 1024px;
  width: 90%;
  margin: 0 auto;
  left: 0;
  right: 0;
  padding-bottom: 10px;
  position: fixed;
  bottom: 0;
  background-color: #ffffff;
  z-index: 11;
  zoom: 1;
  /* add by zuoyong begin on 20160303 */
  /* add by zuoyong end on 20160303 */
}
.app-footer:before,
.app-footer:after {
  content: "";
  display: table;
}
.app-footer:after {
  clear: both;
}
@media only screen and (max-width: 640px) {
  .app-footer {
    margin: 0 5%;
  }
}
.app-footer:before {
  content: "";
  width: 100%;
  height: 10px;
  background: url('../img/white-fade-up.png');
  position: absolute;
  top: -10px;
}
@media only screen and (max-width: 767px) {
  .app-footer.mobile-hide {
    display: none;
  }
}
.app-footer .col1,
.app-footer .col2 {
  width: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  float: left;
}
.app-footer .col1 {
  padding-right: 0.5%;
}
.app-footer .col2 {
  padding-left: 0.5%;
}
.app-footer a img {
  border: none;
}
.app-footer p {
  text-align: center;
  margin-bottom: 10px;
}
.app-footer p.text-left {
  text-align: left;
  width: 280px;
  margin: 0 auto 10px auto;
}
.app-footer p.blue {
  color: #3ab0c8;
}
.app-footer p.checkbox.right {
  float: right;
}
.app-footer button[disabled] {
  background-color: #ccc;
}
/******************************
    Phase 2 page elements
*******************************/
.steps {
  padding-top: 30px;
  text-align: left;
  margin: 0 5%;
  zoom: 1;
}
@media only screen and (max-width: 767px) {
  .steps {
    margin: 0;
  }
}
.steps:before,
.steps:after {
  content: "";
  display: table;
}
.steps:after {
  clear: both;
}
.steps .steps-wrap {
  zoom: 1;
}
.steps .steps-wrap:before,
.steps .steps-wrap:after {
  content: "";
  display: table;
}
.steps .steps-wrap:after {
  clear: both;
}
.steps .step {
  margin-bottom: 50px;
  width: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  float: left;
  zoom: 1;
}
@media only screen and (max-width: 767px) {
  .steps .step {
    float: none;
    width: 100%;
    padding: 0;
  }
}
.steps .step img {
  height: 200px;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  .steps .step img {
    float: left;
    height: auto;
    width: 25%;
  }
}
.steps .step img.desktop {
  dispaly: block;
}
@media only screen and (max-width: 767px) {
  .steps .step img.desktop {
    display: none;
  }
}
.steps .step img.mobile {
  display: none;
}
@media only screen and (max-width: 767px) {
  .steps .step img.mobile {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .steps .step .step-info {
    margin-top: 30px;
    float: left;
    width: 65%;
    margin-left: 10%;
  }
}
.steps .step:nth-child(1) {
  padding-right: 1.5%;
}
.steps .step:nth-child(2) {
  padding-left: 1.5%;
}
.steps .step:before,
.steps .step:after {
  content: "";
  display: table;
}
.steps .step:after {
  clear: both;
}
.steps .step h1 {
  margin-top: 0;
}
.steps .step p {
  margin: 10px 0 20px 0;
}
.steps .steps-footer .backButton:after {
  display: none;
}
.steps .steps-footer .step {
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .steps .steps-footer .step:nth-child(1) {
    float: left;
    width: 25%;
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .steps .steps-footer .step:nth-child(2) {
    float: right;
    padding: 0;
    width: 70%;
  }
}
.content-title {
  margin-top: 30px;
  margin-bottom: 0;
  padding-bottom: 15px;
  text-align: left;
  border-bottom: 1px solid #d0d2d3;
}
.content-title.no-border {
  border: none;
}
.content-title.bold {
  font-weight: bold;
}
.content-title h2 {
  display: inline-block;
  color: #76c4d5;
  font-size: 14pt;
  margin-bottom: 0;
}
.content-title h2:first-child {
  width: 70%;
}
.content-title h2:last-child {
  margin-left: 6%;
}
.content-title.estimate h2 {
  color: #5b5b5b;
}
.content-title.estimate h2:last-child {
  font-size: 18pt;
  margin-left: 0;
}
.supplementary {
  text-align: left;
  padding: 10px 0 0 0;
  border-bottom: 1px solid #d0d2d3;
  margin-bottom: 30px;
}
.supplementary .sup-title {
  margin-bottom: 10px;
}
.supplementary .sup-title h2 {
  font-size: 14pt;
  font-weight: bold;
  margin: 0;
  margin-bottom: 5px;
}
.supplementary .sup-title p {
  margin: 0;
}
.supplementary .sup-info {
  max-width: 300px;
  padding: 10px 0;
  zoom: 1;
}
.supplementary .sup-info:before,
.supplementary .sup-info:after {
  content: "";
  display: table;
}
.supplementary .sup-info:after {
  clear: both;
}
.supplementary .sup-info img {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 34%;
  max-width: 109px;
  float: left;
  padding: 0 10px 0 0;
}
.supplementary .sup-info .info {
  width: 66%;
  float: right;
}
.supplementary .sup-info .info tr:nth-child(5) {
  color: #3ab0c8;
}
.supplementary .sup-info .info td {
  padding-bottom: 5px;
}
.supplementary .sup-info .info td:first-child {
  width: 60%;
}
.supplementary .sup-info .info td.bold {
  font-weight: bold;
}
.add-adr,
.summary-adr {
  text-align: left;
  padding: 10px 0 0 0;
  border-bottom: 1px solid #d0d2d3;
  margin-bottom: 30px;
  position: relative;
  zoom: 1;
}
.add-adr .edit-adr,
.summary-adr .edit-adr {
  text-transform: uppercase;
  color: #3ab0c8;
  width: 60px;
  position: absolute;
  right: 5px;
  top: 16px;
  cursor: pointer;
}
.add-adr .icon-edit,
.summary-adr .icon-edit {
  position: absolute;
  right: 0;
  bottom: 3px;
  height: 15px;
  width: 15px;
  cursor: pointer;
  background-image: url('../img/icon-edit.svg');
}
.add-adr:before,
.summary-adr:before,
.add-adr:after,
.summary-adr:after {
  content: "";
  display: table;
}
.add-adr:after,
.summary-adr:after {
  clear: both;
}
.add-adr .adr-title,
.summary-adr .adr-title {
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  margin-right: 20px;
}
.add-adr .adr-title .adr-icon,
.summary-adr .adr-title .adr-icon {
  width: 30px;
  height: 30px;
  background-image: url('../img/icon-adr.svg');
  position: absolute;
}
.add-adr .adr-title h2,
.summary-adr .adr-title h2 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  display: inline-block;
  font-size: 12pt;
  color: #3ab0c8;
  margin: 6px 0;
  padding-left: 40px;
}
.add-adr .adr-title p,
.summary-adr .adr-title p {
  font-size: 10pt;
  margin: 0;
}
.add-adr .adr-info,
.summary-adr .adr-info {
  display: block;
  padding: 0 0 10px 0;
}
.add-adr .adr-info.inline,
.summary-adr .adr-info.inline {
  display: inline-block;
}
.add-adr .adr-info p,
.summary-adr .adr-info p {
  margin: 0;
  line-height: 20px;
}
.add-adr .adr-info p.large,
.summary-adr .adr-info p.large {
  font-size: 14pt;
}
.summary-adr {
  margin-bottom: 0;
  border-bottom: none;
}
.summary-item {
  padding: 12px 0 10px;
  border-bottom: 1px solid #d0d2d3;
  zoom: 1;
}
.summary-item:before,
.summary-item:after {
  content: "";
  display: table;
}
.summary-item:after {
  clear: both;
}
.summary-item:first-child {
  padding-top: 0;
}
.summary-item p {
  margin: 0;
}
.summary-item .summary-info {
  width: 75%;
  float: left;
}
.summary-item .summary-info p.code {
  margin-top: 5px;
  font-weight: bold;
}
.summary-item .price {
  font-size: 14pt;
}
.summary-calc {
  padding-top: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #999999;
  padding-right: 50px;
}
.summary-calc table {
  width: 100%;
}
.summary-calc td {
  float: right;
  padding-bottom: 10px;
  text-align: right;
  position: relative;
}
.summary-calc td:first-child {
  width: 100px;
}
.summary-calc td .info-container {
  margin-right: 5px;
}
.summary-calc td .info-container .icon-info {
  top: 3px;
  width: 20px;
  height: 20px;
}
.complete-calc {
  padding-top: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #999999;
  padding-right: 50px;
  padding-bottom: 20px;
}
.complete-calc table {
  width: 100%;
}
.complete-calc td {
  float: right;
  padding-bottom: 10px;
  text-align: right;
  position: relative;
}
.complete-calc td:first-child {
  width: 100px;
}
.complete-calc td .info-container {
  margin-right: 5px;
}
.complete-calc td .info-container .icon-info {
  top: 3px;
  width: 20px;
  height: 20px;
}
.complete-calc td {
  float: left;
  text-align: left;
  padding-bottom: 5px;
}
.complete-calc td:last-child {
  width: 100px;
  text-align: right;
}
.summary-info {
  padding: 10px 0;
}
.summary-info ul.summary-list.no-border li {
  border: none;
}
.summary-info ul.summary-list li {
  cursor: pointer;
  padding: 15px 0;
  border-top: 1px solid #d0d2d3;
  border-bottom: 1px solid #d0d2d3;
  width: 31%;
  margin-right: 3.5%;
  float: left;
  position: relative;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .summary-info ul.summary-list li {
    width: 100%;
    float: none;
    margin-right: 0;
    border-bottom: none;
  }
}
.summary-info ul.summary-list li:last-child {
  margin-right: 0;
}
.summary-info ul.summary-list li p {
  margin: 2px 0;
}
.summary-info ul.summary-list li p:first-child {
  font-weight: bold;
}
.summary-info ul.summary-list li .arrow {
  content: "";
  height: 20px;
  width: 11px;
  background-image: url('../img/nav-next-review.svg');
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 15px;
}
/******************************
    Support/Search Styles
*******************************/
.support-search {
  margin-top: 10px;
  border-bottom: 1px solid #d0d2d3;
  zoom: 1;
}
.support-search:before,
.support-search:after {
  content: "";
  display: table;
}
.support-search:after {
  clear: both;
}
.support-search .phone {
  text-align: left;
  width: 276px;
  margin: auto auto 10px auto;
  display: none;
}
@media only screen and (max-width: 740px) {
  .support-search .phone {
    display: block;
  }
}
.support-search .phone img {
  position: relative;
  top: -6px;
  width: 48px;
  float: left;
}
.support-search .phone h1 {
  font-size: 21pt;
  font-weight: bold;
  padding: 0;
  margin: 0;
}
.support-search .input-wrap {
  float: left;
}
@media only screen and (max-width: 740px) {
  .support-search .input-wrap {
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
}
.searchAndSortWrap {
  border-bottom: 1px solid #d0d2d3;
}
@media only screen and (max-width: 767px) {
  .searchAndSortWrap {
    margin-top: 100px;
  }
}
.searchAndSortWrap .input-wrap {
  margin-top: 15px;
  height: 40px;
  float: left;
}
@media only screen and (max-width: 767px) {
  .searchAndSortWrap .input-wrap {
    width: 55%;
    margin-left: auto;
    margin-right: auto;
  }
}
.searchAndSortWrap .input-wrap .bespokeTextBox {
  float: left;
}
@media only screen and (max-width: 767px) {
  .searchAndSortWrap .input-wrap .bespokeTextBox {
    width: 100%;
  }
}
.searchAndSortWrap .select-box {
  margin-top: 14px;
  float: right;
}
@media only screen and (max-width: 767px) {
  .searchAndSortWrap .select-box {
    width: 35%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 767px) {
  .searchAndSortWrap .select-box .select-value {
    width: 100%;
    display: inline-block;
    float: right;
  }
}
@media only screen and (max-width: 767px) {
  .searchAndSortWrap .select-box .select-list {
    width: 100%;
  }
}
.searchAndSortWrap2 {
  border-bottom: 1px solid #d0d2d3;
}
@media only screen and (max-width: 767px) {
  .searchAndSortWrap2 {
    margin-top: 110px;
  }
}
.searchAndSortWrap2 .input-wrap {
  margin-top: 15px;
  height: 40px;
  float: left;
}
@media only screen and (max-width: 767px) {
  .searchAndSortWrap2 .input-wrap {
    width: 55%;
    margin-left: auto;
    margin-right: auto;
  }
}
.searchAndSortWrap2 .input-wrap .bespokeTextBox {
  float: left;
}
@media only screen and (max-width: 767px) {
  .searchAndSortWrap2 .input-wrap .bespokeTextBox {
    width: 100%;
  }
}
.searchAndSortWrap2 .select-box {
  margin-top: 14px;
  float: right;
}
@media only screen and (max-width: 767px) {
  .searchAndSortWrap2 .select-box {
    width: 35%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 767px) {
  .searchAndSortWrap2 .select-box .select-value {
    width: 100%;
    display: inline-block;
    float: right;
  }
}
@media only screen and (max-width: 767px) {
  .searchAndSortWrap2 .select-box .select-list {
    width: 100%;
  }
}
.usermobilebox,
.userIDbox {
  /**
  * fixd by luke.li 2015/07/24
  * 修改注册页面手机号的前缀及输入框样式。
  *
  */
  border-radius: 8px;
  width: 280px;
  height: 40px;
  border: 1px solid #999;
  outline: 0 none;
  font-size: 20px;
  text-align: left;
  color: #76C4D5;
  margin-bottom: 10px;
  z-index: 1;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: none repeat scroll 0% 0% #FFF;
  opacity: 1 !important;
  -webkit-box-shadow: 0px 17px 3px -15px rgba(115, 115, 115, 0.2) inset;
          box-shadow: 0px 17px 3px -15px rgba(115, 115, 115, 0.2) inset;
}
.userID,
.usermobile {
  /**
  * fixd by luke.li 2015/07/24
  * 修改注册页面手机号的前缀及输入框样式。
  *
  */
  border: none !important;
  width: 232px !important;
  height: 38px !important;
  outline: 0 none;
  font-size: 20px;
  text-align: left;
  margin-left: 35px;
  color: #76C4D5;
  padding: 0 20px 0 10px;
  z-index: 1;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: none repeat scroll 0 0 #FFF;
  opacity: 1 !important;
}
.support-item {
  padding: 15px 0;
  border-bottom: 1px solid #d0d2d3;
  position: relative;
  cursor: pointer;
}
.support-item.support-code p {
  color: #76c4d5;
}
.support-item.support-code .expand p {
  color: #5b5b5b;
}
.support-item .code-search p {
  color: #5b5b5b;
}
.support-item .arrow {
  height: 11px;
  width: 20px;
  background-image: url('../img/arrow-up-blue.svg');
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 5px;
  -webkit-transition: -webkit-transform 0.2s;
          transition: transform 0.2s;
}
.support-item .arrow.down {
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}
.support-item .open {
  position: relative;
}
.support-item .open i {
  width: 25px;
  height: 25px;
  display: block;
  position: absolute;
  top: -3px;
  background-size: contain;
}
.support-item .open .icon-service {
  background-image: url('../img/icon-service.svg');
}
.support-item .open .icon-support {
  background-image: url('../img/icon-support-white.svg');
}
.support-item p {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 40px;
  margin: 0;
  text-align: left;
}
.support-item .expand {
  display: none;
  margin-top: 20px;
  zoom: 1;
}
.support-item .expand:before,
.support-item .expand:after {
  content: "";
  display: table;
}
.support-item .expand:after {
  clear: both;
}
.support-item .expand h2 {
  color: #76c4d5;
  text-align: left;
  margin-bottom: 5px;
}
.support-item .expand p {
  margin-bottom: 15px;
  padding-left: 0;
}
.spinner {
  /* Size and position */
  font-size: 100px;
  /* 1em */
  width: 1em;
  height: 1em;
  margin: 100px auto;
  position: relative;
  top: 75px;
  /* Styles */
  list-style: none;
}
.spinner li {
  width: .3em;
  height: .2em;
  position: absolute;
  border-radius: 45%;
}
.spinner li:nth-child(1) {
  background: #76c4d5;
  top: 0;
  left: 50%;
  margin-left: -0.1em;
  /* Width/2 */
  -webkit-transform-origin: 50% 250%;
      -ms-transform-origin: 50% 250%;
          transform-origin: 50% 250%;
  -webkit-animation: rota 1.13s linear infinite, opa 3.67s ease-in-out infinite alternate;
          animation: rota 1.13s linear infinite, opa 3.67s ease-in-out infinite alternate;
}
.spinner li:nth-child(2) {
  background: #6dabe4;
  /* Skin */
  top: 50%;
  right: 0;
  width: .2em;
  height: .3em;
  margin-top: -0.1em;
  /* Height/2 */
  -webkit-transform-origin: -150% 50%;
      -ms-transform-origin: -150% 50%;
          transform-origin: -150% 50%;
  -webkit-animation: rota 1.86s linear infinite, opa 4.29s ease-in-out infinite alternate;
          animation: rota 1.86s linear infinite, opa 4.29s ease-in-out infinite alternate;
}
.spinner li:nth-child(3) {
  background: #8293dc;
  /* Pref */
  bottom: 0;
  left: 50%;
  margin-left: -0.1em;
  /* Width/2 */
  -webkit-transform-origin: 50% -150%;
      -ms-transform-origin: 50% -150%;
          transform-origin: 50% -150%;
  -webkit-animation: rota 1.45s linear infinite, opa 5.12s ease-in-out infinite alternate;
          animation: rota 1.45s linear infinite, opa 5.12s ease-in-out infinite alternate;
}
.spinner-text {
  display: inline;
  top: -82px;
  position: relative;
  font-size: smaller;
  left: 3px;
}
.purchasetipstext {
  font-weight: 400;
  font-style: normal;
  color: #5b5b5b;
  text-decoration: none;
  text-align: left;
}
.manchineInputStyle {
  font-size: 18px !important;
}
#alinknocustom {
  cursor: pointer;
}
#applyInterAcc {
  cursor: pointer;
}
#forgetPassword {
  cursor: pointer;
}
@-webkit-keyframes rota {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rota {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes opa {
  12.0% {
    opacity: 0.80;
  }
  19.5% {
    opacity: 0.88;
  }
  37.2% {
    opacity: 0.64;
  }
  40.5% {
    opacity: 0.52;
  }
  52.7% {
    opacity: 0.69;
  }
  60.2% {
    opacity: 0.60;
  }
  66.6% {
    opacity: 0.52;
  }
  70.0% {
    opacity: 0.63;
  }
  79.9% {
    opacity: 0.60;
  }
  84.2% {
    opacity: 0.75;
  }
  91.0% {
    opacity: 0.87;
  }
}
@keyframes opa {
  12.0% {
    opacity: 0.80;
  }
  19.5% {
    opacity: 0.88;
  }
  37.2% {
    opacity: 0.64;
  }
  40.5% {
    opacity: 0.52;
  }
  52.7% {
    opacity: 0.69;
  }
  60.2% {
    opacity: 0.60;
  }
  66.6% {
    opacity: 0.52;
  }
  70.0% {
    opacity: 0.63;
  }
  79.9% {
    opacity: 0.60;
  }
  84.2% {
    opacity: 0.75;
  }
  91.0% {
    opacity: 0.87;
  }
}
/* add by zuoyong begin on 20160315 */
.confirm-dialog {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5);
  z-index: 20000;
}
.confirm-dialog .dialog {
  width: 100%;
  height: 100%;
}
.confirm-dialog .dialog .dialog_main {
  padding: 20px;
  position: relative;
  width: 280px;
  height: auto;
  margin: auto;
  top: 20%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #3ab0c8;
  color: #fff;
  border-radius: 10px;
  zoom: 1;
  text-align: center;
}
.confirm-dialog .dialog .dialog_main p {
  text-align: center;
  font-size: 16px;
}
.confirm-dialog .dialog .dialog_main .close {
  background: #fff;
  width: 80px;
  height: 30px;
  text-align: center;
  border: 0;
  border-radius: 4px;
  font-size: 16px;
  margin-top: 20px;
  cursor: pointer;
  color: #3ab0c8;
}
/* add by zuoyong begin on 20160315 */
.lightLine {
  border-bottom: 1px solid #f8f8f7;
  width: 88%;
  margin-left: 4%;
  margin-right: 8%;
  clear: both;
}
.lightLineNum2 {
  border-bottom: 1px solid #f8f8f7;
  width: 100%;
  clear: both;
}
.smallDot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background-color: #00b1c4;
  top: 15px;
  left: 90px;
}
.smallDotNum2 {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background-color: #00b1c4;
  top: 15px;
  left: 160px;
}
.fontColor {
  color: #76c4d5;
  margin: 10px auto 10px 21px;
}
.defaultFontColor {
  color: #5b5b5b;
  margin: 10px auto 10px 0px;
}
.showLook {
  visibility: visible;
  text-align: right;
}
.hideLook {
  visibility: hidden;
  text-align: right;
}
.personalInforBox {
  -webkit-box-shadow: 0px 3px 0px #ebefef;
          box-shadow: 0px 3px 0px #ebefef;
  margin-top: 8px;
}
.messageCenterDate {
  clear: both;
}
@media only screen and (max-width: 767px) {
  .messageCenterDate {
    float: right;
    margin-left: auto;
    clear: none;
  }
}
.messageCenterDate #MCDate {
  padding-left: 0px;
  margin: 15px auto 0;
  font-size: 10pt;
}
@media only screen and (max-width: 767px) {
  .messageCenterDate #MCDate {
    margin: 10px 0 auto 0;
    padding-left: 0px;
    font-size: 10pt;
  }
}
.messageCenterBox {
  font-size: 15px;
  float: left;
  width: 30%;
  text-align: right;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .messageCenterBox {
    clear: both;
    position: relative;
    height: 41px;
    width: 100%;
    text-align: right;
    font-size: 15px;
  }
}
.messageCenterSonBox1 {
  position: absolute;
  right: 70px;
}
.messageCenterSonBox1 p {
  text-align: right;
}
.messageCenterSonBox2 {
  width: 70px;
  right: 0;
  position: absolute;
}
.messageCenterSonBox2 p {
  text-align: right;
}
.messageCenterContent {
  float: left;
  width: 70%;
}
@media only screen and (max-width: 767px) {
  .messageCenterContent {
    clear: both;
    width: 100%;
  }
}
.messageCenterContentP {
  width: 100%;
}
.messageCenterP {
  font-size: 11pt;
  margin: 10px auto;
}
@media only screen and (max-width: 767px) {
  .messageCenterP {
    font-size: 11pt;
    margin: 0;
  }
}
@media only screen and (max-width: 767px) {
  .messageCenterBody {
    padding-top: 65px;
  }
}
.survey-circle-mark {
  position: relative;
  top: -1px;
  left: 15px;
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #4db8ce;
}
.icon-personalize-remark {
  height: 30px;
  width: 30px;
  background-image: url('../img/comments.png');
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 7px;
  margin-top: 5px;
  display: block;
}
@media only screen and (max-width: 767px) {
  .icon-personalize-remark {
    display: none;
  }
}
.icon-personalize-remark-empty {
  height: 26px;
  width: 26px;
  background-image: url('../img/noComment.png') !important;
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 5px;
  display: block;
}
@media only screen and (max-width: 767px) {
  .icon-personalize-remark-empty {
    display: none;
  }
}
.icon-personalize-share {
  height: 23px;
  width: 30px;
  background-image: url('../img/share@2x.png');
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 7px;
  margin-top: 5px;
  display: none;
}
@media only screen and (max-width: 767px) {
  .icon-personalize-share {
    display: block;
  }
}
.photoListBox {
  height: 100px;
  padding: 8px;
  margin-bottom: 15px;
  position: relative;
  -webkit-box-shadow: 2px 2px 8px #bcbcbc;
          box-shadow: 2px 2px 8px #bcbcbc;
}
.photoListTextarea {
  color: black;
  border: none;
  resize: none;
  height: 94%;
  width: 98%;
  background: #f4f3f2;
}
.photoListPen {
  width: 15px;
  height: 15px;
  right: 25px;
  bottom: 18px;
  position: absolute;
}
.addRemark {
  position: absolute;
  right: 0;
  background: #00b3c6;
  padding: 3px 10px;
  border-radius: 15px;
  color: white;
  font-size: 11pt;
}
.boxShadow {
  -webkit-box-shadow: 2px 2px 8px #bcbcbc;
          box-shadow: 2px 2px 8px #bcbcbc;
}
.back-arrow-info {
  height: 27px;
  width: 15px;
  display: block;
  left: 0px;
  top: 40px;
  background-image: url('../img/nav-back-blue.svg');
  background-size: contain;
  position: absolute;
}
@media only screen and (max-width: 767px) {
  .back-arrow-info {
    height: 19px;
    width: 11px;
    left: 0px;
    top: 10px;
  }
}
.hide-test {
  position: absolute;
  top: -10px;
  right: 0;
  width: 20px;
  height: 20px;
  background: url("../img/icon-x-white.svg") no-repeat;
  background-size: contain;
}
.bindCode {
  text-align: left;
  margin-bottom: 10px;
}
.sortStartSuit {
  font-size: 17px;
  text-align: left;
}
.start-name {
  overflow: hidden;
  max-width: 230px;
}
.version {
  position: relative;
  padding: 15px 0 9px;
  text-align: left;
  border-bottom: 1px solid #d0d2d3;
}
.version .location-icon {
  position: absolute;
  bottom: 9px;
  height: 30px;
  width: 30px;
  background-image: url('../img/icon-location.svg');
  display: none;
}
.version p {
  position: relative;
  margin: 0;
  display: inline-block;
  line-height: 20px;
}
.version p.more {
  padding-top: 4px;
  font-size: 16pt;
  color: #5b5b5b;
}
.version.show-more {
  cursor: pointer;
}
.version.show-more:after {
  content: "";
  height: 11px;
  width: 20px;
  background-image: url('../img/arrow-up-blue.svg');
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 16px;
}
.version.show-more p {
  text-transform: none;
  color: #3ab0c8;
}
.version.location {
  min-height: 25px;
}
.version.location .location-icon {
  display: inline-block;
}
.version.location p.more {
  padding-top: 6px;
  padding-left: 40px;
}
.Home {
  /*width:80%;*/
  width: 1170px;
  left: 50%;
  -webkit-transform: translate(-50%);
      -ms-transform: translate(-50%);
          transform: translate(-50%);
}
.Home .Home-container .img {
  width: 570px;
  height: 570px;
  display: inline-block;
  float: left;
  margin-top: 30px;
}
.Home .Home-container .home_right {
  float: left;
  margin-top: 101px;
  width: 600px;
}
.Home .Home-container .home_right .Home-logo {
  text-align: left;
}
.Home .Home-container .home_right .Home-logo img {
  display: inline-block;
  width: 194px;
  height: 33px;
}
.Home .Home-container .home_right .home_ageloc {
  width: 188px;
  height: 38px;
  margin-top: 22px;
  margin-bottom: 65px;
}
.Home .Home-container .home_right .home_ageloc p {
  font-family: PingFang-SC-Regular;
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 24px;
  letter-spacing: 0px;
  color: #333333;
}
.Home .Home-container .home_right .home_ageloc p a {
  font-family: PingFang-SC-Regular;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0px;
  color: #0089af;
}
.Home .Home-container .home_right .Home-content-table {
  width: 600px;
  height: 40px;
  background-color: #F5F5F5;
  text-replace: none;
}
.Home .Home-container .home_right .Home-content-table .tr {
  border-bottom: 1px solid #e5e5e5;
}
.Home .Home-container .home_right .Home-content-table tr th {
  text-align: left;
  /*border-bottom:1px solid black;*/
  height: 40px;
  font-family: PingFang-SC-Regular;
  font-size: 14px;
  /*font-weight: bold;*/
  font-stretch: normal;
  line-height: 0px;
  letter-spacing: 0px;
  color: #333333;
}
.Home .Home-container .home_right .Home-content-table tr td {
  text-align: left;
  height: 48px;
  font-family: PingFang-SC-Regular;
  font-size: 12px;
  font-weight: normal;
  font-stretch: normal;
  line-height: 0px;
  letter-spacing: 0px;
  color: #333333;
}
.Home .Home-container .home_right .Home-content-table tr td .buy_btn {
  text-align: center;
  color: #0089af;
  cursor: pointer;
  width: 66px;
  height: 28px;
  background-color: #ffffff;
  border-radius: 14px;
  border: solid 1px #0089af;
  -moz-border-radius: 14px;
  -ms-border-radius: 14px;
  behavior: url('img/Home/PIE.htc');
}
.Home .Home-container .home_right .Home-content-table tr td .delete_btn,
.Home .Home-container .home_right .Home-content-table tr td .update_btn {
  border: none;
  background: none;
  cursor: pointer;
}
