/* Layout */
/* Fonts */
/* Colors */
/* Sizes */
/* Misc */
/* Partials */
/* ==========================================================================
   Normalize.scss settings
   ========================================================================== */
/**
 * Includes legacy browser support IE6/7
 *
 * Set to false if you want to drop support for IE6 and IE7
 */
/* Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 * 3. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using
 *  `em` units.
 */
html {
    font-family: sans-serif;
    /* 1 */
    -ms-text-size-adjust: 100%;
    /* 2 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
}

/**
 * Remove default margin.
 */
body {
    margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
    display: inline-block;
    /* 1 */
    vertical-align: baseline;
    /* 2 */
}

/**
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
    display: none;
    height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
    display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
    background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active, a:hover {
    outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
    border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
    font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
    font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

/**
 * Addresses styling not present in IE 8/9.
 */
mark {
    background: #ff0;
    color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
    font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 8/9/10.
 * 2. Improves image quality when scaled in IE 7.
 */
img {
    border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
    overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
    margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
    box-sizing: content-box;
    height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
    overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *  Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 * 4. Improves appearance and consistency in all browsers.
 */
button,
input,
optgroup,
select,
textarea {
    color: inherit;
    /* 1 */
    font: inherit;
    /* 2 */
    margin: 0;
    /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
    overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
    text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *  and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *  `input` and others.
 * 4. Removes inner spacing in IE 7 without affecting normal text inputs.
 *  Known issue: inner spacing remains in IE 6.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    /* 2 */
    cursor: pointer;
    /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
    cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
    line-height: normal;
}

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 *  Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    /* 1 */
    padding: 0;
    /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
    -webkit-appearance: textfield;
    /* 1 */
    box-sizing: content-box;
    /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Corrects text not wrapping in Firefox 3.
 * 4. Corrects alignment displayed oddly in IE 6/7.
 */
legend {
    border: 0;
    /* 1 */
    padding: 0;
    /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
    overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
    font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}

/*** VARIABLES (colors, layout, spacing & typography) ***/
/* Colors from http://clrs.cc/ */
/* Sizes */
/* Fonts */
/* Misc */
/* Responsive */
/* Partials */
/*** MIXINS & PARTIALS ***/
@media (max-width: 640px) {
    html {
        font-size: 57%;
    }
}

@media (min-width: 641px) {
    html {
        font-size: 59%;
    }
}

@media (min-width: 1025px) {
    html {
        font-size: 62.5%;
    }
}

body {
    background: #FFF;
    color: #000;
    font-family: "Gotham", Helvetica, Arial, PingFangSC-Regular, "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
    font-size: 14px;
    font-size: 1.4rem;
    font-size: 14px;
    font-weight: normal;
    line-height: 160%;
}

a {
    cursor: pointer;
    color: #0074D9;
    text-decoration: none;
}

a:hover {
    color: #0068c3;
    text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
    font-family: "Gotham", Helvetica, Arial, PingFangSC-Regular, "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
    font-weight: bold;
    line-height: 120%;
    margin: 0 0 24px;
}

h1 {
    font-size: 26px;
    font-size: 2.6rem;
}

h2 {
    font-size: 22px;
    font-size: 2.2rem;
}

h3,
h4,
h5,
h6 {
    font-size: 17px;
    font-size: 1.7rem;
}

p,
pre {
    margin: 0 0 24px;
}

ul,
ol {
    margin: 0 0 24px 24px;
    padding: 0;
}

ul li,
ol li {
    margin: 0 0 6px;
    padding: 0;
}

ul ul,
ul ol,
ol ul,
ol ol {
    margin-bottom: 0;
}

ul ul li,
ul ol li,
ol ul li,
ol ol li {
    margin: 6px 0 0;
}

small {
    font-size: 12px;
    font-size: 1.2rem;
}

blockquote {
    border-left: 6px solid #EEE;
    color: #666666;
    margin: 0 24px 24px;
    padding-left: 24px;
}

blockquote > *:last-child {
    margin-bottom: 0;
}

img {
    max-width: 100%;
}

/* Code */
code,
.code {
    background: #EEE;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 2px;
    display: inline-block;
    font-family: "Lucida Sans Typewriter", "Lucida Console", monaco, "Bitstream Vera Sans Mono", monospace;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 140%;
    padding: 0 6px;
}

pre code,
pre .code {
    display: block;
    padding: 6px 12px;
    white-space: pre-wrap;
}

/* Tables */
table {
    border: 1px solid rgba(0, 0, 0, 0.12);
    margin: 0 0 24px;
    text-align: left;
}

table th,
table td {
    border-right: 1px solid #EEE;
    padding: 6px 12px;
}

table th:last-child,
table td:last-child {
    border-right: 0;
}

table td {
    padding: 12px 12px;
}

table thead {
    background: #EEE;
    color: #333333;
    font-size: 12px;
    font-size: 1.2rem;
}

table thead th {
    font-weight: normal;
    white-space: nowrap;
}

table tbody tr {
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    transition-property: border;
    transition-duration: 0.1s;
}

/* Slider */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
}

.slick-track:before, .slick-track:after {
    content: "";
    display: table;
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none;
}

[dir="rtl"] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

/*** FONTS ***/
@font-face {
    font-family: "Gotham";
    src: url("fonts/gotham-bold.eot");
    src: url("fonts/gotham-bold.eot?#iefix") format("embedded-opentype"), url("fonts/gotham-bold.woff") format("woff"), url("fonts/gotham-bold.ttf") format("truetype"), url("fonts/gotham-bold.svg#Icons") format("svg");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Gotham";
    src: url("fonts/gotham-medium.eot");
    src: url("fonts/gotham-medium.eot?#iefix") format("embedded-opentype"), url("fonts/gotham-medium.woff") format("woff"), url("fonts/gotham-medium.ttf") format("truetype"), url("fonts/gotham-medium.svg#Icons") format("svg");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Gotham";
    src: url("fonts/gotham-book.eot");
    src: url("fonts/gotham-book.eot?#iefix") format("embedded-opentype"), url("fonts/gotham-book.woff") format("woff"), url("fonts/gotham-book.ttf") format("truetype"), url("fonts/gotham-book.svg#Icons") format("svg");
    font-weight: 400;
    font-style: normal;
}

/*** CUSTOM ***/
@keyframes pop {
    0% {
        transform: scale(0.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 1;
    }
    20% {
        transform: scale(25, 25);
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(40, 40);
    }
}

.loading {
    animation: 1.5s cubic-bezier(0.75, 0, 0.5, 1) infinite loading;
    background: #00A862;
    border-radius: 4px;
    box-shadow: 0 1px 5px rgba(0, 168, 98, 0.5);
    content: '';
    display: block;
    height: 4px;
    opacity: 0;
    position: fixed;
    transform: translateX(-100%);
    top: 0;
    transition-duration: 0.1s;
    transition-property: opacity, transform, visibility, width;
    visibility: hidden;
    width: 50%;
    z-index: 1100;
}

.loading.active {
    opacity: 1;
    visibility: visible;
}

@-webkit-keyframes loading {
    0% {
        transform: translateX(-150%);
    }
    to {
        transform: translateX(200%);
    }
}

.waiting {
    display: inline-block;
    text-align: center;
}

.waiting:before,
.waiting span, .waiting:after {
    animation: waiting 0.3s infinite alternate;
    background: #00A862;
    border-radius: 50%;
    content: '';
    float: left;
    height: 8px;
    margin: 0 3px;
    vertical-align: middle;
    width: 8px;
}

.waiting span {
    animation-delay: 0.1s;
}

.waiting:after {
    animation-delay: 0.2s;
}

@keyframes waiting {
    0% {
        opacity: 1;
        transform: scale(1.5);
    }
    100% {
        opacity: 0.4;
        transform: scale(1);
    }
}

body {
    color: rgba(0, 0, 0, 0.87);
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 400;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.4px;
}

b,
strong {
    font-weight: 700;
}

.caption {
    color: rgba(0, 0, 0, 0.56);
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 1;
    text-transform: uppercase;
}

body,
b,
strong,
.caption {
    line-height: 160%;
}

.display-1 {
    font-size: 26px;
    font-size: 2.6rem;
    font-weight: 700;
}

@media (max-width: 640px) {
    .display-1 {
        font-size: 22px;
        font-size: 2.2rem;
    }
}

h1,
.h1,
.display-2 {
    font-size: 32px;
    font-size: 3.2rem;
    font-weight: 400;
}

@media (max-width: 640px) {
    h1,
    .h1,
    .display-2 {
        font-size: 24px;
        font-size: 2.4rem;
    }
}

h2,
.h2,
.headline {
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: 400;
}

@media (max-width: 640px) {
    h2,
    .h2,
    .headline {
        font-size: 20px;
        font-size: 2rem;
    }
}

h3,
.h3,
.title-1 {
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 400;
}

h4,
h5,
h6,
.h4,
.subhead-1 {
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 400;
}

.title-2 {
    font-size: 20px;
    font-size: 2rem;
    font-weight: 400;
}

.subhead-2 {
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.56);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.display-1,
.display-2,
.headline,
.title-1,
.title-2,
.subhead-1,
.subhead-2 {
    line-height: 140%;
}

.color-gold {
    color: #C2A661;
}

.color-green {
    color: #00A862;
}

*:focus {
    outline: none;
}

html {
    font-size: 62.5% !important;
    -webkit-tap-highlight-color: transparent;
    height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 18px;
}

@media (max-width: 640px) {
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin-bottom: 12px;
    }
}

body {
    height: 100%;
    background: #f7f7f7;
}

@media (max-width: 640px) {
    body {
        padding-bottom: 55px;
    }
}

body.with-overlay, body.with-overlay-nav {
    overflow: hidden;
}

@media (min-width: 1025px) {
    body.with-overlay-nav {
        overflow: auto;
    }
}

body.with-loyalty-notification #content {
    padding-bottom: 96px;
}

@media (min-width: 1025px) {
    body.with-loyalty-notification #content {
        padding-bottom: 48px;
    }
}

code,
.code {
    border-radius: 0;
    border: 0;
    color: rgba(0, 0, 0, 0.87);
}

a {
    color: #00A862;
}

a:hover {
    color: #009758;
    text-decoration: none;
}

.link {
    appearance: none;
    background: transparent;
    border: 0;
    color: #00A862;
    display: inline-block;
    padding: 0;
}

.link img {
    display: block;
}

.link:hover {
    color: #009758;
}

.link[disabled=disabled], .link[disabled=true], .link[disabled], .link.disabled {
    color: rgba(0, 0, 0, 0.26);
    cursor: not-allowed;
}

p {
    word-wrap: break-word;
    word-break: normal;
}

blockquote {
    border: 0;
    color: inherit;
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: 400;
    font-style: italic;
    line-height: 140%;
    padding: 0;
    margin: 0 36px 24px;
}

@media (max-width: 640px) {
    blockquote {
        font-size: 20px;
        font-size: 2rem;
    }
}

.zoom {
    background: #FFF;
    border-radius: 2px;
    box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.12);
    display: block;
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 140%;
    padding: 18px;
}

.zoom > *:last-child {
    margin-bottom: 0;
}

@media (max-width: 640px) {
    .zoom {
        font-size: 20px;
        font-size: 2rem;
    }
}

hr {
    background: rgba(0, 0, 0, 0.12);
    border: 0;
    height: 1px;
    margin-bottom: 0;
    margin-top: 0;
}

hr::after {
    clear: both;
    content: "";
    display: table;
}

hr.separator {
    clear: both;
    margin: 36px auto;
}

hr.separator::after {
    clear: both;
    content: "";
    display: table;
}

figure {
    margin: 0;
    margin-bottom: 24px;
    text-align: center;
}

figure img {
    width: 100%;
}

figure figcaption {
    color: rgba(0, 0, 0, 0.56);
    font-size: 12px;
    font-size: 1.2rem;
    margin-top: 6px;
}

figure.default img {
    width: auto !important;
}

figure.left {
    float: left;
    margin-right: 24px;
    width: 50%;
}

figure.right {
    float: right;
    margin-left: 24px;
    width: 50%;
}

.left-align {
    text-align: left;
}

.right-align {
    text-align: right;
}

.wrapper {
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    max-width: 768px;
    width: 100%;
}

@media (min-width: 1025px) {
    .wrapper {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 1024px) {
    .wrapper {
        padding-left: 16px;
        padding-right: 16px;
    }
}

.wrapper.fluid {
    max-width: 100%;
}

.wrapper.small {
    max-width: 480px;
}

@media (max-width: 1024px) {
    .wrapper-mobile {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.margin,
.margin-1 {
    margin-bottom: 24px !important;
}

.margin-2 {
    margin-bottom: 48px;
}

.margin2 {
    margin-bottom: 18px;
}

.margin3 {
    margin-bottom: 12px;
}

.margin4 {
    margin-bottom: 6px;
}

.margin-t {
    margin-top: 24px;
}

.margin-t-2 {
    margin-top: 18px;
}

.padded-r-3 {
    padding-right: 8px;
}

.padded-r2 {
    padding-right: 48px;
}

.padded-t-2 {
    padding-top: 12px;
}

.padded-t1 {
    padding-top: 24px;
}

.padded-t2 {
    padding-top: 48px !important;
}

.padded-t3 {
    padding-top: 72px;
}

.padded-t4 {
    padding-top: 96px;
}

.padded-x-3 {
    padding: 0 8px;
}

.padded-x0 {
    padding-left: 0;
    padding-right: 0;
}

.padded-mobile {
    padding-left: 24px;
    padding-right: 24px;
}

.margin-b0 {
    margin-bottom: 0;
}

.margin-r-4 {
    margin-right: 6px;
}

.margin-r-3 {
    margin-right: 8px;
}

.margin-r-2 {
    margin-right: 12px;
}

.banner {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    height: 0;
    padding-top: 30%;
    position: relative;
    width: 100%;
    margin-top: -24px;
}

@media (max-width: 640px) {
    .banner {
        padding-top: 40%;
    }
}

.list {
    list-style: none;
    margin: 0;
}

.list li {
    margin: 0 0 24px;
    padding: 0;
}

.list li:last-child {
    margin-bottom: 0;
}

.controls {
    float: right;
}

.collapsible .header {
    cursor: pointer;
}

.collapsible .header h2,
.collapsible .header h3 {
    margin-bottom: 0;
    padding-right: 30px;
}

.collapsible .header:before {
    background: url(../banner/icon-chevron-down.svg) no-repeat center center;
    content: '';
    float: right;
    height: 24px;
    transition-duration: 0.2s;
    transition-property: transform;
    width: 24px;
}

.collapsible .body {
    overflow: hidden;
    transition-duration: 0.2s;
    transition-property: max-height;
    cursor: pointer;
}

.collapsible .body .container {
    padding-top: 24px;
}

.collapsible .body .container > *:last-child {
    margin-bottom: 0;
}

.collapsible.teasing .body {
    position: relative;
}

.collapsible.teasing .body:after {
    background: linear-gradient(rgba(255, 255, 255, 0) 24px, #FFF);
    content: '';
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition-duration: 0.1s;
    transition-property: opacity;
    width: 100%;
    display: none;
}

.collapsible.collapsed .body {
    max-height: 0;
}

.collapsible.collapsed.teasing .body {
    max-height: 48px;
}

.collapsible.collapsed.teasing .body:after {
    opacity: 1;
    display: block;
}

.collapsible.expanded .header:before {
    transform: rotate(-180deg);
}

.collapsible.expanded .body {
    max-height: 10000px;
}

.overlay .collapsible .header, #content .overlay .collapsible .body {
    padding: 0px;
}

.icon {
    background: none;
    border: 0;
    outline: none;
}

.icon img {
    height: 24px;
    opacity: 0.8;
    transition-duration: 0.1s;
    transition-property: opacity;
}

.icon span {
    display: none;
}

.icon:hover img {
    opacity: 1;
}

.icon:active svg {
    opacity: 1;
}

.circle {
    border-radius: 50%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    width: 100%;
    z-index: 2;
}

.circle:before {
    content: '';
    display: block;
    padding-top: 100%;
}

.scroll {
    -webkit-overflow-scrolling: touch;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    width: 100%;
}

.scroll::-webkit-scrollbar {
    display: none;
}

.scroll > .wrapper .thumbnail {
    margin-right: 16px;
}

@media (max-width: 640px) {
    .scroll > .wrapper {
        display: table;
        padding-right: 0px;
    }
}

.scroll-wrapper {
    overflow: hidden;
}

.scroll-wrapper > * {
    margin-bottom: -24px;
    padding-bottom: 24px;
}

.scroll-wrapper .scroll-arrow-left {
    left: 24px;
}

.scroll-wrapper .scroll-arrow-right {
    right: 24px;
}

.scroll-wrapper .scroll-arrow {
    border-radius: 50%;
    box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
    background: white;
    cursor: pointer;
    height: 28.8px;
    margin-top: -16px;
    position: absolute;
    padding: 2px 0px;
    text-align: center;
    top: 50%;
    width: 28.8px;
    z-index: 1;
}

.scroll-wrapper .scroll-arrow img {
    margin: 3px auto;
    width: 18px;
}

.scroll-wrapper .scroll-arrow:hover {
    box-shadow: 0 1px 3px 2px rgba(0, 0, 0, 0.12);
    background: white;
}

.scroll-wrapper .scroll-arrow:hover.scroll-arrow-left {
    left: 20px;
}

.scroll-wrapper .scroll-arrow:hover.scroll-arrow-right {
    right: 20px;
}

.scroll-wrapper .scroll-arrow:active {
    box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.12);
    background: white;
}

.scroll-wrapper .scroll-arrow:active.scroll-arrow-left {
    left: 18px;
}

.scroll-wrapper .scroll-arrow:active.scroll-arrow-right {
    right: 18px;
}

.thumbnail {
    color: inherit;
    display: inline-block;
    text-align: center;
    margin-right: 16px;
    vertical-align: top;
}

.thumbnail .preview {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    display: inline-block;
    margin: 0 auto 6px;
}

.thumbnail .preview.circle {
    max-width: 150px;
}

.thumbnail strong {
    display: block;
    white-space: normal;
    width: 100%;
}

.thumbnail:hover {
    color: inherit;
    -ms-transform: translate3d(0, -4px, 0);
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
}

@media (max-width: 640px) {
    .thumbnail:hover {
        -ms-transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

table {
    border: 0;
    font-size: inherit;
    margin: 0;
}

table td,
table th {
    border: 0;
    padding: 12px;
}

table td:first-child,
table th:first-child {
    padding-left: 0;
}

table td:last-child,
table th:last-child {
    padding-right: 0;
}

table thead {
    background: none;
    color: inherit;
    font-size: inherit;
}

table thead th {
    font-weight: bold;
}

table tbody tr {
    border-top: 1px solid rgba(0, 0, 0, 0.12);
}

table tbody tr:first-child {
    border-top-width: 4px;
}

.meta {
    color: rgba(0, 0, 0, 0.56);
    font-size: 12px;
    font-size: 1.2rem;
}

.slide {
    background: #FFF;
    border-radius: 2px;
    box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.12);
    display: block;
}

.slide > *:last-child {
    margin-bottom: 0;
}

@media (max-width: 640px) {
    .slide .content {
        padding: 18px;
    }
}

@media (min-width: 641px) {
    .slide {
        display: table;
        width: 100%;
    }

    .slide > * {
        box-sizing: border-box;
        display: table-cell;
        padding: 18px;
        vertical-align: middle;
    }

    .slide .visual {
        width: 33.33%;
    }
}

.hero {
    margin-top: -24px;
}

.message {
    background: no-repeat left center;
    padding-left: 27px;
}

.message.ok {
    background-image: url(./icons/icon-checked-green.svg);
}

.message.error {
    background-image: url(./icons/icon-cross-red.svg);
}

footer.account .sign-in {
    float: left;
    margin-right: 24px;
    padding: 3px 0;
}

footer.account .sign-in img {
    margin-right: 4px;
    margin-top: -3px;
    vertical-align: middle;
}

.bg-white {
    background-color: #FFF;
}

.bg-light {
    background-image: linear-gradient(-180deg, #FCFCFC 0%, #FFF 100%);
}

.bg-silver {
    background: #e0e0e0;
}

.bg-natural-grey {
    background-color: #f7f7f7;
}

.bg-cream {
    background-color: #F3F1E7;
}

.bg-black-2 {
    background-color: rgba(0, 0, 0, 0.87);
}

.bg-apron-green {
    background-color: #00A862;
}

.bg-gold {
    background-color: #C2A661;
}

.black-2 {
    color: rgba(0, 0, 0, 0.87);
}

.black-3 {
    color: rgba(0, 0, 0, 0.56);
}

.white {
    color: #FFF;
}

.gold {
    color: #C2A661;
}

.grey {
    color: #2D2926;
}

.green {
    color: #00653E;
}

.apron-green {
    color: #00A862;
}

.light {
    color: rgba(0, 0, 0, 0.56);
}

.white-2 {
    color: rgba(255, 255, 255, 0.7);
}

.center {
    text-align: center;
}

.left {
    text-align: left;
}

.regular {
    font-weight: 400;
}

.bold {
    font-weight: 700;
}

.z-1 {
    z-index: -1;
}

.z0 {
    z-index: 0;
}

.z1 {
    z-index: 1;
}

.z2 {
    z-index: 1;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.visible {
    visibility: visible !important;
}

.invisible {
    visibility: hidden !important;
}

.block {
    display: block;
}

.hidden {
    display: none !important;
}

.desktop-button img,
.mobile-button img {
    border-radius: 26px;
    display: block;
    height: 52px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.38);
}

.desktop-button {
    display: none;
}

@media (min-width: 1025px) {
    .desktop-button {
        display: block;
    }

    .mobile-button {
        display: none;
    }
}

@media (max-width: 640px) {
    .mobile-block {
        display: block !important;
    }

    .mobile-hidden {
        display: none !important;
    }
}

@media (min-width: 641px) {
    .tablet-block {
        display: block !important;
    }

    .tablet-hidden {
        display: none !important;
    }
}

@media (min-width: 1025px) {
    .desktop-block {
        display: block !important;
    }

    .desktop-hidden {
        display: none !important;
    }
}

.ease, .scroll-wrapper .scroll-arrow, .field.checkbox span:before, .field.checkbox label:after, .field.radios span:before, .field.radios label:after {
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    transition: all 0.1s ease;
}

.ease2, .thumbnail, .card, .page-front .carousel-home .slick-next, .page-front .tmall ul li a, .page-front .tmall ul li a .caption, .page-front .promotion a, .page-account-program-msr .levels .level-info > div,
.page-my-starbucks-rewards .levels .level-info > div, .page-starbucks-delivers-info .delivery-carousel .slick-next {
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.break {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.page-coffeehouse-culture iframe {
    margin-top: -24px;
}

.notice {
    background: #00A862;
    color: #FFF;
    display: none;
    margin-left: 30%;
    font-size: "Gotham", Helvetica, Arial, PingFangSC-Regular, "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif-1px;
    font-size: "Gotham", Helvetica, Arial, PingFangSC-Regular, "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif-1/10rem;
    padding: 6px 36px 6px 12px;
    position: relative;
    z-index: 1000;
}

@media (max-width: 1024px) {
    .notice {
        margin-left: 0px;
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 140%;
    }
}

.notice a {
    color: #FFF;
    display: inline-block;
    text-decoration: underline;
}

.notice .close {
    cursor: pointer;
    position: absolute;
    right: 0px;
    top: 0px;
    padding: 6px 12px;
    text-decoration: none;
    width: 12px;
}

.notice .close:hover {
    opacity: 9;
}

.carousel-home,
.carousel {
    overflow: hidden;
    visibility: hidden;
}

.carousel-home.slick-initialized,
.carousel.slick-initialized {
    visibility: visible;
}

.carousel-home .slick-slide,
.carousel .slick-slide {
    height: auto;
}

.promotion {
    padding: 24px 0;
}

.lang-en .primary-mobile .account {
    max-width: 120px;
    width: 98px;
}

@media screen and (max-width: 320px) {
    .lang-en .primary-mobile .account {
        width: auto;
    }
}

@media (max-width: 640px) {
    .lang-en {
        padding-bottom: 67px;
    }

    .lang-en.page-stores #nav > .container .body {
        bottom: 67px;
    }

    .lang-en .frap {
        bottom: 82px;
    }

    .lang-en #content .mobile-download,
    .lang-en #content .udp-apple-app-download-zh,
    .lang-en #content .udp-apple-app-download-en {
        bottom: 82px;
    }

    .lang-en body.page-stores #nav > .container .body,
    .lang-en #content .snackbar,
    .lang-en #nav .snackbar {
        bottom: 67px;
    }
}

@media (min-width: 641px) {
    .lang-en {
        padding-bottom: 0;
    }
}

@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
    .lang-en {
        padding-bottom: 82px;
    }

    .lang-en .frap {
        bottom: 97px;
    }

    .lang-en #content .mobile-download,
    .lang-en #content .udp-apple-app-download-zh,
    .lang-en #content .udp-apple-app-download-en {
        bottom: 99px;
    }

    .lang-en body.page-stores #nav > .container .body,
    .lang-en #content .snackbar,
    .lang-en #nav .snackbar {
        bottom: 82px;
    }
}

@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
    .lang-en .frap {
        bottom: 98px;
    }

    .lang-en.page-stores #nav > .container .body {
        bottom: 82px;
    }

    .lang-en #content .mobile-download,
    .lang-en #content .udp-apple-app-download-zh,
    .lang-en #content .udp-apple-app-download-en {
        bottom: 97px;
    }
}

.lang-en .coffeehouse .thumbnail.rect.card strong {
    height: 50px;
}

@media (min-width: 1025px) {
    .lang-en.page-account-program-msr .levels .level-info > div:hover {
        height: 336px;
    }

    .lang-en.page-account-program-msr .levels .level-info > div:first-child:hover {
        height: 408px;
    }

    .lang-en.page-account-program-msr .levels .level-info > div:last-child:hover {
        height: 408px;
    }
}

@media (min-width: 1025px) and (max-width: 1100px) {
    .lang-en.page-account-program-msr .levels .level-info > div:first-child:hover {
        height: 456px;
    }

    .lang-en.page-account-program-msr .levels .level-info > div:last-child:hover {
        height: 456px;
    }
}

.lang-en.page-about-careers #content .card {
    padding-left: 10px;
    padding-right: 10px;
}

.lang-en.page-about-careers #content .card.thumbnail.rect .button {
    max-width: 195px;
    width: 100%;
}

.lang-en .svc-card .header #svc-history-button.link {
    max-width: 120px;
    text-align: left;
    line-height: 120%;
    float: left;
}

.lang-en .msr-card .header .link {
    max-width: 100px;
    text-align: left;
    line-height: 120%;
    float: left;
}

.lang-en .msr-card .header .link.trigger {
    float: right;
    max-width: auto;
    width: auto;
}

.unlogged-in-element {
    display: none !important;
}

.non-logged-in .unlogged-in-element {
    display: inline-block !important;
}

.empty-message-wrapper {
    padding: 12px 24px;
}

.cursor-pointer {
    cursor: pointer;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.clearfix::after {
    clear: both;
    content: "";
    display: table;
}

.non-scrolling {
    overflow-y: hidden;
}

.ReactModal__Body--open {
    overflow-y: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

.pagination .arrow {
    margin: 0 12px;
    width: 12px;
}

.underline {
    text-decoration: underline;
}

.field {
    display: block;
    margin-bottom: 18px;
    padding-top: 25px;
    position: relative;
}

.field:last-child {
    margin-bottom: 0px;
}

.field label {
    cursor: text;
    display: block;
    font-size: 14px;
    font-size: 1.4rem;
    transition-duration: 0.2s;
    position: relative;
    transition-property: color, font-size, top;
}

.field .description,
.field .message {
    color: rgba(0, 0, 0, 0.56);
    display: block;
    margin-top: 4px;
}

.field .description {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 160%;
}

.field .message {
    background: url(./icons/icon-cross-red.svg) no-repeat left center;
    padding-left: 27px;
}

.field.error input,
.field.error input:hover,
.field.error input:active,
.field.error input:focus {
    border-color: #e75b52;
}

.field.error .message {
    background-image: url(./icons/icon-cross-red.svg);
}

.field.ok input {
    border-color: rgba(0, 0, 0, 0.12);
}

.field.ok input:hover,
.field.ok input:active,
.field.ok input:focus {
    border-color: #00A862;
}

.field.ok .message {
    background-image: url(./icons/icon-checked-green.svg);
}

.field.valid input {
    border-color: #00A862;
}

.field.floating label {
    left: 0;
    position: absolute;
    top: 0;
}

@media screen and (max-width: 457px) {
    .field.floating .card-number + * {
        top: -24px;
    }
}

.field.floating input ::placeholder, .field.floating input::placeholder,
.field.floating select ::placeholder,
.field.floating select::placeholder {
    color: transparent;
}

.field.floating input ::-moz-placeholder, .field.floating input::-moz-placeholder,
.field.floating select ::-moz-placeholder,
.field.floating select::-moz-placeholder {
    color: transparent;
}

.field.floating input :-ms-input-placeholder, .field.floating input:-ms-input-placeholder,
.field.floating select :-ms-input-placeholder,
.field.floating select:-ms-input-placeholder {
    color: transparent;
}

.field.floating input ::-webkit-input-placeholder, .field.floating input::-webkit-input-placeholder,
.field.floating select ::-webkit-input-placeholder,
.field.floating select::-webkit-input-placeholder {
    color: transparent;
}

.field.floating input:placeholder-shown:not(:focus) + *,
.field.floating select:placeholder-shown:not(:focus) + * {
    color: rgba(0, 0, 0, 0.38);
    font-size: inherit;
    top: 24px;
}

@media screen and (max-width: 320px) {
    .field.floating input:placeholder-shown:not(:focus) + *,
    .field.floating select:placeholder-shown:not(:focus) + * {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 457px) {
    .field.floating input.card-number:placeholder-shown:not(:focus) + *,
    .field.floating select.card-number:placeholder-shown:not(:focus) + * {
        top: 0;
    }
}

.field.search {
    padding-top: 0px;
    position: relative;
}

.field.search input::-webkit-input-placeholder {
    font-size: 17px;
    font-size: 1.7rem;
}

.field.search input::-moz-placeholder {
    font-size: 17px;
    font-size: 1.7rem;
}

.field.search input:-ms-input-placeholder {
    font-size: 17px;
    font-size: 1.7rem;
}

.field.search input:-moz-placeholder {
    font-size: 17px;
    font-size: 1.7rem;
}

@media (max-width: 1024px) {
    .field.search {
        margin-top: 0;
    }
}

.field.search input {
    font-weight: normal;
    padding-right: 24px;
}

.field.search img {
    cursor: pointer;
    padding: 0;
    position: absolute;
    right: 0;
    top: 3px;
}

.field.checkbox {
    padding-top: 24px;
}

.field.checkbox input[type=checkbox] {
    position: absolute;
    opacity: 0;
}

.field.checkbox input[type=checkbox]:checked + label:before {
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.12);
}

.field.checkbox input[type=checkbox]:checked + label:after {
    opacity: 1;
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
}

.field.checkbox input[type=checkbox]:focus + label span:before {
    animation-name: ripple2;
    -ms-animation-name: ripple2;
    -webkit-animation-name: ripple2;
    /* Safari 4.0 - 8.0 */
    -ms-animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
}

.field.checkbox span:before {
    border-radius: 50%;
    content: '';
    opacity: 0;
    background: #00A862;
    height: 52.8px;
    width: 52.8px;
    -ms-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
    position: absolute;
    left: -10px;
    top: -14px;
}

.field.checkbox label {
    display: inline-block;
    cursor: pointer;
}

.field.checkbox label::after {
    clear: both;
    content: "";
    display: table;
}

.field.checkbox label span {
    display: block;
    padding-left: 40px;
}

.field.checkbox label:before {
    border: 1px solid #00A862;
    border-radius: 8px;
    content: '';
    opacity: 1;
    float: left;
    height: 30px;
    margin: -4px 8px 0 0;
    width: 30px;
}

.field.checkbox label:after {
    border-radius: 7px;
    background: #00A862 url(./icons/icon-checked.svg) no-repeat center center;
    position: absolute;
    opacity: 0;
    height: 30px;
    left: 1px;
    position: absolute;
    top: -3px;
    width: 30px;
    -ms-transform: scale(0);
    /* IE 9 */
    -webkit-transform: scale(0);
    /* Safari */
    transform: scale(0);
}

.field.radios {
    display: inline-block;
    padding-top: 24px;
}

.field.radios div {
    position: relative;
    margin-bottom: 18px;
}

.field.radios input[type='radio'] {
    cursor: pointer;
    height: 100%;
    opacity: 0;
    position: absolute;
    width: 100%;
    z-index: 1;
}

.field.radios input[type='radio']:focus + label span:before {
    animation-name: ripple2;
    -ms-animation-name: ripple2;
    -webkit-animation-name: ripple2;
    -ms-animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
}

.field.radios input[type='radio']:checked + label:before {
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.12);
}

.field.radios input[type='radio']:checked + label:after {
    opacity: 1;
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
}

.field.radios label {
    cursor: pointer;
    position: relative;
    z-index: 0;
}

.field.radios label::after {
    clear: both;
    content: "";
    display: table;
}

.field.radios span:before {
    border-radius: 50%;
    content: '';
    opacity: 0;
    background: #00A862;
    height: 52.8px;
    width: 52.8px;
    -ms-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
    position: absolute;
    left: -10px;
    top: -14px;
}

.field.radios label:before {
    border: 1px solid #00A862;
    border-radius: 50%;
    content: '';
    display: block;
    float: left;
    height: 30px;
    margin: -4px 8px 0 0;
    transition-duration: 0.2s;
    transition-property: background, box-shadow;
    width: 30px;
}

.field.radios label:after {
    border-radius: 50%;
    opacity: 0;
    background: #00A862;
    height: 24px;
    left: 4px;
    position: absolute;
    top: 0;
    width: 24px;
    -ms-transform: scale(0);
    /* IE 9 */
    -webkit-transform: scale(0);
    /* Safari */
    transform: scale(0);
}

.field.info input[type=email],
.field.info input[type=password],
.field.info input[type=text],
.field.info input[type=number] {
    padding-right: 36px;
}

.field.info .info-box {
    position: absolute;
    right: 0;
    top: 28px;
}

.field.info .info-box .tooltip {
    position: relative;
}

.field.info .info-box .tooltip > img {
    width: 18px;
}

.field.info .info-box .tooltip > span {
    background: #FFF;
    border-radius: 2px;
    bottom: 100%;
    margin-bottom: 12px;
    padding: 9px 18px;
    position: absolute;
    right: 0;
    visibility: hidden;
    white-space: nowrap;
    width: auto;
    z-index: 999;
}

.field.info .info-box .tooltip > span:after {
    content: '';
    position: absolute;
    border-right: 5px solid transparent;
    border-bottom-color: #FFF;
    border-top: 5px solid #FFF;
    border-left: 5px solid transparent;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.field.info .info-box .tooltip:hover > span {
    visibility: visible;
}

.field .grid > * {
    display: block;
    position: relative;
}

.field .grid.padded, .field .grid.padded-1 {
    margin-top: -26px;
}

.field .grid.padded > *, .field .grid.padded-1 > * {
    padding-top: 26px;
}

.field .grid.padded-2 {
    margin-top: -32px;
}

.field .grid.padded-2 > * {
    padding-top: 32px;
}

.field .grid.padded-3 {
    margin-top: -36px;
}

.field .grid.padded-3 > * {
    padding-top: 36px;
}

.field .grid.padded-4 {
    margin-top: -44px;
}

.field .grid.padded-4 > * {
    padding-top: 44px;
}

.field.floating .grid.padded input + label, .field.floating .grid.padded-1 input + label {
    padding-left: 6px;
    padding-top: 6px;
}

.field.floating .grid.padded-2 input + label {
    padding-left: 12px;
    padding-top: 12px;
}

.field.floating .grid.padded-3 input + label {
    padding-left: 16px;
    padding-top: 16px;
}

.field.floating .grid.padded-4 input + label {
    padding-left: 24px;
    padding-top: 24px;
}

label,
.label {
    color: rgba(0, 0, 0, 0.56);
}

input[type=email],
input[type=password],
input[type=text],
input[type=number],
textarea,
select {
    position: relative;
    font-family: inherit;
    font-size: inherit;
    font-weight: 700;
    line-height: inherit;
    width: 100%;
    z-index: 500;
}

input[type=email],
input[type=password],
input[type=text],
input[type=number],
textarea,
.select select {
    background: none;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    -ms-border-bottom: 1px solid #edebe9;
    border-radius: 0;
    box-sizing: border-box;
    display: block;
    padding: 4px 0;
    transition-property: border;
    transition-duration: 0.2s;
}

input[type=email]:hover,
input[type=password]:hover,
input[type=text]:hover,
input[type=number]:hover,
textarea:hover,
.select select:hover {
    border-color: #00A862;
}

input[type=email]:active, input[type=email]:focus,
input[type=password]:active,
input[type=password]:focus,
input[type=text]:active,
input[type=text]:focus,
input[type=number]:active,
input[type=number]:focus,
textarea:active,
textarea:focus,
.select select:active,
.select select:focus {
    border-color: #00A862;
    outline: none;
}

input[type=email][disabled], input[type=email][disabled=disabled], input[type=email][disabled=true], input[type=email][disabled], input[type=email][readonly=true], input[type=email][readonly=readonly], input[type=email][readonly],
input[type=password][disabled],
input[type=password][disabled=disabled],
input[type=password][disabled=true],
input[type=password][disabled],
input[type=password][readonly=true],
input[type=password][readonly=readonly],
input[type=password][readonly],
input[type=text][disabled],
input[type=text][disabled=disabled],
input[type=text][disabled=true],
input[type=text][disabled],
input[type=text][readonly=true],
input[type=text][readonly=readonly],
input[type=text][readonly],
input[type=number][disabled],
input[type=number][disabled=disabled],
input[type=number][disabled=true],
input[type=number][disabled],
input[type=number][readonly=true],
input[type=number][readonly=readonly],
input[type=number][readonly],
textarea[disabled],
textarea[disabled=disabled],
textarea[disabled=true],
textarea[disabled],
textarea[readonly=true],
textarea[readonly=readonly],
textarea[readonly],
.select select[disabled],
.select select[disabled=disabled],
.select select[disabled=true],
.select select[disabled],
.select select[readonly=true],
.select select[readonly=readonly],
.select select[readonly] {
    border-color: #EEE;
}

input[type=email][disabled]:active, input[type=email][disabled]:focus, input[type=email][disabled]:hover, input[type=email][disabled=disabled]:active, input[type=email][disabled=disabled]:focus, input[type=email][disabled=disabled]:hover, input[type=email][disabled=true]:active, input[type=email][disabled=true]:focus, input[type=email][disabled=true]:hover, input[type=email][disabled]:active, input[type=email][disabled]:focus, input[type=email][disabled]:hover, input[type=email][readonly=true]:active, input[type=email][readonly=true]:focus, input[type=email][readonly=true]:hover, input[type=email][readonly=readonly]:active, input[type=email][readonly=readonly]:focus, input[type=email][readonly=readonly]:hover, input[type=email][readonly]:active, input[type=email][readonly]:focus, input[type=email][readonly]:hover,
input[type=password][disabled]:active,
input[type=password][disabled]:focus,
input[type=password][disabled]:hover,
input[type=password][disabled=disabled]:active,
input[type=password][disabled=disabled]:focus,
input[type=password][disabled=disabled]:hover,
input[type=password][disabled=true]:active,
input[type=password][disabled=true]:focus,
input[type=password][disabled=true]:hover,
input[type=password][disabled]:active,
input[type=password][disabled]:focus,
input[type=password][disabled]:hover,
input[type=password][readonly=true]:active,
input[type=password][readonly=true]:focus,
input[type=password][readonly=true]:hover,
input[type=password][readonly=readonly]:active,
input[type=password][readonly=readonly]:focus,
input[type=password][readonly=readonly]:hover,
input[type=password][readonly]:active,
input[type=password][readonly]:focus,
input[type=password][readonly]:hover,
input[type=text][disabled]:active,
input[type=text][disabled]:focus,
input[type=text][disabled]:hover,
input[type=text][disabled=disabled]:active,
input[type=text][disabled=disabled]:focus,
input[type=text][disabled=disabled]:hover,
input[type=text][disabled=true]:active,
input[type=text][disabled=true]:focus,
input[type=text][disabled=true]:hover,
input[type=text][disabled]:active,
input[type=text][disabled]:focus,
input[type=text][disabled]:hover,
input[type=text][readonly=true]:active,
input[type=text][readonly=true]:focus,
input[type=text][readonly=true]:hover,
input[type=text][readonly=readonly]:active,
input[type=text][readonly=readonly]:focus,
input[type=text][readonly=readonly]:hover,
input[type=text][readonly]:active,
input[type=text][readonly]:focus,
input[type=text][readonly]:hover,
input[type=number][disabled]:active,
input[type=number][disabled]:focus,
input[type=number][disabled]:hover,
input[type=number][disabled=disabled]:active,
input[type=number][disabled=disabled]:focus,
input[type=number][disabled=disabled]:hover,
input[type=number][disabled=true]:active,
input[type=number][disabled=true]:focus,
input[type=number][disabled=true]:hover,
input[type=number][disabled]:active,
input[type=number][disabled]:focus,
input[type=number][disabled]:hover,
input[type=number][readonly=true]:active,
input[type=number][readonly=true]:focus,
input[type=number][readonly=true]:hover,
input[type=number][readonly=readonly]:active,
input[type=number][readonly=readonly]:focus,
input[type=number][readonly=readonly]:hover,
input[type=number][readonly]:active,
input[type=number][readonly]:focus,
input[type=number][readonly]:hover,
textarea[disabled]:active,
textarea[disabled]:focus,
textarea[disabled]:hover,
textarea[disabled=disabled]:active,
textarea[disabled=disabled]:focus,
textarea[disabled=disabled]:hover,
textarea[disabled=true]:active,
textarea[disabled=true]:focus,
textarea[disabled=true]:hover,
textarea[disabled]:active,
textarea[disabled]:focus,
textarea[disabled]:hover,
textarea[readonly=true]:active,
textarea[readonly=true]:focus,
textarea[readonly=true]:hover,
textarea[readonly=readonly]:active,
textarea[readonly=readonly]:focus,
textarea[readonly=readonly]:hover,
textarea[readonly]:active,
textarea[readonly]:focus,
textarea[readonly]:hover,
.select select[disabled]:active,
.select select[disabled]:focus,
.select select[disabled]:hover,
.select select[disabled=disabled]:active,
.select select[disabled=disabled]:focus,
.select select[disabled=disabled]:hover,
.select select[disabled=true]:active,
.select select[disabled=true]:focus,
.select select[disabled=true]:hover,
.select select[disabled]:active,
.select select[disabled]:focus,
.select select[disabled]:hover,
.select select[readonly=true]:active,
.select select[readonly=true]:focus,
.select select[readonly=true]:hover,
.select select[readonly=readonly]:active,
.select select[readonly=readonly]:focus,
.select select[readonly=readonly]:hover,
.select select[readonly]:active,
.select select[readonly]:focus,
.select select[readonly]:hover {
    background: #EEE;
    border-color: #EEE;
}

input[type=number] {
    -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.select label {
    font-size: 14px;
    font-size: 1.4rem;
}

.switch {
    display: block;
    float: left;
    height: 32px;
    margin: -4px 8px 0 0;
    position: relative;
    width: 50px;
}

.switch input {
    opacity: 0;
}

.switch input:checked + .slider {
    background: #00A862;
}

.switch input:checked + .slider span {
    transform: translateX(18px);
}

.switch input:focus + .slider span:after {
    animation-name: ripple2;
    -ms-animation-name: ripple2;
    -webkit-animation-name: ripple2;
    -ms-animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
}

.switch .slider {
    background: rgba(0, 0, 0, 0.12);
    border-radius: 60px;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition-duration: 0.2s;
}

.switch .slider span {
    background: #FFF;
    border-radius: 50%;
    bottom: 1px;
    height: 30px;
    left: 1px;
    position: absolute;
    width: 30px;
    transition-duration: 0.2s;
}

.switch .slider span:after {
    content: '';
    border-radius: 50%;
    background: #00A862;
    left: -9px;
    opacity: 0;
    position: absolute;
    top: -9px;
    -ms-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
    height: 48px;
    width: 48px;
}

.switch + label {
    cursor: pointer;
    display: inline-block;
}

.select {
    cursor: pointer;
    display: inline-block;
    position: relative;
    width: 100%;
}

.select > select {
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    padding-right: 24px;
}

.select:after {
    background: url(../banner/icon-chevron-down.svg) no-repeat center center;
    bottom: 4px;
    content: '';
    cursor: pointer;
    display: block;
    height: 24px;
    pointer-events: none;
    position: absolute;
    right: 0;
    width: 24px;
}

.actions {
    padding-top: 24px;
    text-align: right;
}

.info > img {
    position: absolute;
    width: 18px;
}

@-webkit-keyframes ripple2 {
    0% {
        opacity: 0;
        -ms-transform: scale(0);
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        opacity: 0.1;
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        opacity: 0;
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* Standard syntax */
@keyframes ripple2 {
    0% {
        opacity: 0;
        -ms-transform: scale(0);
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    50% {
        opacity: 0.1;
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    100% {
        opacity: 0;
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* ie hack */
input::-ms-clear {
    display: none;
}

input::-ms-reveal {
    display: none;
}

select::-ms-expand {
    display: none;
}

#nav {
    /*background: #FFF;*/
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    overflow: visible;
    z-index: 1006;
}

#nav::after {
    clear: both;
    content: "";
    display: table;
}


@media (min-width: 1025px) {
    #nav {
        /*background: #FFF;*/
        bottom: 0;
        -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.12);
        box-shadow: 0 0 4px rgba(0, 0, 0, 0.12);
        left: 0;
        position: fixed;
        top: 0;
        width: 15%;
    }
}

@media (max-width: 1024px) {
    #nav {
        -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.12);
        box-shadow: 0 0 4px rgba(0, 0, 0, 0.12);
    }
}

#nav ul {
    display: inline-block;
    margin: 0;
    list-style: none;
}

#nav ul li {
    display: block;
    margin: 0;
    padding: 0;
}

#nav .logo {
    float: left;
    margin-right: 12px;
    width: 36px;
}

#nav .logo img {
    float: left;
    width: 36px;
}

#nav .icon {
    padding: 6px 0;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

#nav .icon.trigger {
    height: auto;
}

#nav .icon.trigger {
    -webkit-box-sizing: box-sizing;
    box-sizing: box-sizing;
    margin: 0px;
}

#nav .container {
    overflow: hidden;
}

#nav .container .header {
    height: 48px;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    display: block;
    padding: 24px;
    position: relative;
}

@media (max-width: 640px) {
    #nav .container .header {
        display: none;
    }
}

#nav .container .header::after {
    clear: both;
    content: "";
    display: table;
}

@media (min-width: 641px) and (max-width: 1024px) {
    #nav .container .header {
        padding: 16px;
    }
}

#nav .container .header .icon {
    border: 0;
    outline: none;
    float: right;
}

#nav .container .header .icon.trigger {
    background: none;
}

#nav .container .header .icon img {
    display: block;
    height: 24px;
    opacity: 0.8;
    -webkit-transition-duration: 0.1s;
    transition-duration: 0.1s;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
}

#nav .container .header .icon span {
    display: none;
}

#nav .container .header .icon:hover img {
    opacity: 1;
}

#nav .container .header .icon:active img {
    opacity: 0.6;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
}

#nav .container .primary {
    display: inline-block;
}

@media (min-width: 1025px) {
    #nav .container .primary {
        max-width: calc(100% - 72px);
        overflow: hidden;
    }
}

#nav .container .primary ul {
    display: inline-block;
    padding: 0;
    white-space: nowrap;
}

#nav .container .primary ul li {
    float: left;
    white-space: nowrap;
}

#nav .container .primary ul a {
    color: inherit;
    display: block;
    font-weight: 700;
    font-size: 11px;
    font-size: 1.1rem;
    letter-spacing: 1px;
    padding: 5px 10px 5px;
    text-transform: uppercase;
}

#nav .container .secondary {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    clear: both;
    min-height: 62px;
}

#nav .container .secondary .back {
    color: rgba(0, 0, 0, 0.56);
    display: inline-block;
    font-weight: bold;
    margin-bottom: 12px;
}

#nav .container .secondary .back img {
    float: left;
    margin-top: -1px;
    margin-right: -4px;
}

@media (max-width: 1024px) {
    #nav .container .secondary .back {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        border-radius: 2px;
        background: rgba(0, 0, 0, 0.05);
        display: inline-block;
        float: left;
        font-size: 0px;
        margin: 1px 8px 1px 0;
        padding: 3px;
        height: 28px;
        width: 28px;
    }

    #nav .container .secondary .back img {
        margin: 2px 0 2px 4px;
        width: 18px;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    #nav .container .secondary .back {
        margin: 4px 8px 4px 0;
    }
}

#nav .container .secondary .display-1 {
    margin-bottom: 12px;
}

@media (max-width: 640px) {
    #nav .container .secondary .display-1 {
        display: table;
    }
}

#nav .container .secondary .subcategories {
    width: 100%;
}

#nav .container .secondary .subcategories a {
    display: inline-block;
    color: rgba(0, 0, 0, 0.56);
    padding: 6px 0;
}

#nav .container .secondary .subcategories a.active, #nav .container .secondary .subcategories a:active, #nav .container .secondary .subcategories a:hover {
    color: inherit;
}

#nav .container .secondary .subcategories a.active {
    border-bottom: 3px solid #00A862;
    color: rgba(0, 0, 0, 0.87);
    font-weight: 700;
    padding-bottom: 3px;
}

#nav .container .secondary .tabs-wrapper {
    display: block;
}

@media (min-width: 1025px) {
    #nav .container .secondary .tabs-wrapper {
        padding-left: 2px;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    #nav .container .secondary {
        padding: 0 16px 0 16px;
    }
}

@media (max-width: 640px) {
    #nav .container .secondary {
        padding: 16px 16px 0 16px;
    }
}

@media (max-width: 1024px) {
    #nav .container .secondary::after {
        clear: both;
        content: "";
        display: table;
    }

    #nav .container .secondary .tabs-wrapper {
        margin: -6px -16px 0;
        overflow: hidden;
        width: calc(100% + 32px);
    }

    #nav .container .secondary .tabs-wrapper::after {
        clear: both;
        content: "";
        display: table;
    }

    #nav .container .secondary .subcategories {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        display: block;
        -webkit-overflow-scrolling: touch;
        margin-bottom: -12px;
        overflow-x: scroll;
        overflow-y: hidden;
        padding: 0 0 12px 18px;
        white-space: nowrap;
        width: 100%;
    }

    #nav .container .secondary .subcategories::after {
        clear: both;
        content: "";
        display: table;
    }

    #nav .container .secondary .subcategories::-webkit-scrollbar {
        display: none;
    }

    #nav .container .secondary .subcategories li {
        display: inline-block;
    }

    #nav .container .secondary .subcategories li a {
        padding-top: 12px;
        margin-right: 18px;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    #nav .container .secondary .tabs-wrapper {
        margin: -6px -24px 0;
        width: calc(100% + 48px);
    }

    #nav .container .secondary .subcategories {
        padding: 0 0 12px 24px;
    }
}
@media (min-width: 1025px) {
    #nav .container .secondary {
        /*padding-left: 96px;*/
        margin-left: -150px;
        padding-right: 24px;
    }
    #nav .container .secondary .category {
        margin-bottom: 18px;
    }

    #nav .container .secondary .subcategories a.active {
        margin-bottom: 2px;
        padding-bottom: 1px;
    }
}

@media (max-width: 640px) {
    #nav .overlay .body .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

#nav .overlay .body .container ul {
    font-size: 26px;
    font-size: 2.6rem;
    font-weight: 700;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 120%;
    width: 100%;
}

@media (max-width: 640px) {
    #nav .overlay .body .container ul {
        font-size: 22px;
        font-size: 2.2rem;
    }
}

@media (max-width: 640px) {
    #nav .overlay .body .container ul {
        font-size: 18px;
        font-size: 1.8rem;
        line-height: 120%;
    }
}

#nav .overlay .body .container ul a {
    color: inherit;
    display: block;
    padding: 8px 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@media (max-width: 640px) {
    #nav .overlay .body .container ul a {
        padding: 5px 0;
    }
}

#nav .overlay .body .container hr {
    margin-bottom: 12px;
    margin-top: 12px;
}

#nav .overlay .body .container hr::after {
    clear: both;
    content: "";
    display: table;
}

@media (min-width: 1025px) {
    #nav > .container {
        height: 100%;
        width: 100%;
    }

    #nav > .container > * {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        display: table-row;
    }

    #nav > .container .body {
        height: calc(100% - 98px);
        display: table;
        width: 100%;
    }

    #nav > .container .body .container {
        display: table-cell;
        height: 100%;
        padding: 0 24px;
    }

    #nav > .container .body .container.middle {
        vertical-align: middle;
        padding: 0 24px 0 84px;
    }
}

#nav #react-store-locator-nav-overlay #overlay-locator-details .container .body .container {
    display: block;
}

#nav #react-store-locator-nav-overlay #overlay-locator-details span.hours span {
    margin-right: 0.3rem;
}

#nav .overlay > .container {
    display: table;
    height: 100%;
    width: 100%;
}

#nav .overlay > .container > * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: table-row;
}

#nav .overlay > .container .header {
    display: block;
    height: auto;
    padding: 16px;
}

#nav .overlay > .container .header .icon {
    right: 16px;
    top: 16px;
}

@media (min-width: 1025px) {
    #nav .overlay > .container .header {
        padding: 24px;
    }

    #nav .overlay > .container .header .icon {
        right: 24px;
        top: 24px;
    }
}

#nav .overlay > .container .body {
    height: 100%;
}

#nav .overlay > .container .body .container {
    display: table-cell;
    height: 100%;
}

#nav .overlay > .container .body .container.middle {
    vertical-align: middle;
}

#nav .overlay.inner {
    height: calc(100% - 98px);
    top: 96px;
}

#nav .overlay.inner > .container {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: -2px;
    width: calc(100% + 4px);
}

#nav .overlay.inner > .container > .header {
    height: 72px;
    padding-top: 0px;
}

#nav .overlay.inner > .container > .header .icon.close {
    padding: 8px 0;
    margin-top: 0px;
    margin-bottom: 0px;
}

@media (min-width: 1025px) {
    #nav .overlay.inner > .container > .header {
        position: relative;
        width: 100%;
    }
}

#nav .overlay.inner > .container .header {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    width: 100%;
}

#nav .overlay.inner > .container .body .display-1 {
    padding: 0 24px 24px;
    margin-bottom: 0px;
}

@media (min-width: 641px) and (max-width: 1024px) {
    #nav .overlay.inner {
        top: 80px;
        height: calc(100% - 80px);
    }
}

@media (max-width: 640px) {
    #nav .overlay.inner {
        top: 0;
        height: 100%;
    }

    #nav .overlay.inner > .container {
        -webkit-box-shadow: none;
        box-shadow: none;
        margin-left: 0px;
        width: 100%;
    }
}

body.lang-zh #nav .container .primary ul a {
    font-size: 16px;
    font-size: 1.6rem;
}

@media (min-width: 641px) {
    .primary-mobile {
        display: none;
    }
}

@media (max-width: 640px) {
    .primary-mobile {
        bottom: 0px;
        left: 0;
        right: 0;
        position: fixed;
        width: 100%;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-overflow-scrolling: touch;
        -webkit-transition: all 0.1s linear;
        -moz-transition: all 0.1s linear;
        transition: all 0.1s linear;
        z-index: 996;
    }

    .primary-mobile ul {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 0 6px;
        -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.12);
        box-shadow: 0 0 4px rgba(0, 0, 0, 0.12);
        background: #fff;
        display: box;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        position: absolute;
        bottom: 0;
        left: 0;
        margin: 0;
        width: 100%;
        -webkit-transform: translate3d(0, 0, 0);
        -webkit-transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000;
    }
}

@media only screen and (max-width: 640px) and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
    .primary-mobile ul {
        padding-bottom: 15px;
    }
}

@media (max-width: 640px) {
    .primary-mobile ul li {
        list-style: none;
        position: relative;
        margin: 0px;
        -webkit-box-flex: 1;
        -moz-box-flex: 1;
        width: 20%;
        -webkit-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

    .primary-mobile ul li a {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        color: rgba(0, 0, 0, 0.56);
        display: block;
        font-size: 12px;
        font-size: 1.2rem;
        line-height: 1;
        padding: 6px 4px;
        -webkit-transform: scale(1);
        transform: scale(1);
        text-align: center;
        -webkit-transition-duration: 0.1s;
        transition-duration: 0.1s;
        -webkit-transition-property: opacity, -webkit-transform;
        transition-property: opacity, -webkit-transform;
        transition-property: opacity, transform;
        transition-property: opacity, transform, -webkit-transform;
        text-decoration: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .primary-mobile ul li a:active, .primary-mobile ul li a.active {
        color: #00A862;
    }

    .primary-mobile ul li a:active .icons img, .primary-mobile ul li a.active .icons img {
        display: none;
    }

    .primary-mobile ul li a:active .icons img.active, .primary-mobile ul li a.active .icons img.active {
        display: block;
    }

    .primary-mobile ul li a .icons {
        display: block;
        height: 28px;
        margin-bottom: 3px;
        pointer-events: none;
        position: relative;
        width: 100%;
    }

    .primary-mobile ul li a .icons img {
        display: block;
        height: 28px;
        left: 50%;
        pointer-events: none;
        position: absolute;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        top: 0;
    }

    .primary-mobile ul li a .icons img.active {
        display: none;
    }
}

@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
    .primary-mobile {
        bottom: -1px;
    }
}

.badge-dot {
    display: inline-block;
    position: relative;
}

.badge-dot:after {
    content: '';
    background-color: #e75b52;
    border: 1px solid #fff;
    border-radius: 50%;
    height: 8px;
    right: -4px;
    top: -4px;
    position: absolute;
    width: 8px;
}

.primary-mobile .badge-dot {
    position: initial;
}

.primary-mobile .badge-dot:after {
    right: 17px;
    top: 5px;
}

.tabs {
    box-sizing: border-box;
    margin-bottom: 12px;
    -webkit-overflow-scrolling: touch;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    width: 100%;
}

.tabs::after {
    clear: both;
    content: "";
    display: table;
}

.tabs::-webkit-scrollbar {
    display: none;
}

.tabs ul,
.tabs li {
    display: inline-block;
}

.tabs ul {
    margin: 0;
    padding: 0;
}

.tabs a {
    display: inline-block;
    color: rgba(0, 0, 0, 0.56);
    padding: 12px;
}

.tabs a.active, .tabs a:active, .tabs a:hover {
    color: inherit;
}

.tabs a.active {
    border-bottom: 3px solid #00A862;
    color: rgba(0, 0, 0, 0.87);
    font-weight: 700;
    padding-bottom: 9px;
}

.radio-tabs {
    display: inline-flex;
    white-space: nowrap;
}

.radio-tabs .radio-tab {
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
    display: inline-block;
    box-sizing: border-box;
    padding: 3px 36px;
    border: 1px solid #00A862;
    background: none;
    color: #00A862;
    font-size: 14px;
    font-weight: 500;
    outline: none;
    overflow: hidden;
    white-space: normal;
}

.radio-tabs .radio-tab:first-of-type {
    border-radius: 48px 0 0 48px;
}

.radio-tabs .radio-tab:last-of-type {
    border-radius: 0 48px 48px 0;
}

.radio-tabs .radio-tab + .radio-tabs .radio-tab {
    border-left: none;
}

.radio-tabs .radio-tab.active {
    background: #00A862;
    color: #FFF;
}

@media (max-width: 640px) {
    .radio-tabs .radio-tab {
        padding: 3px 12px;
    }
}

.grid > * {
    position: relative;
}

@media (max-width: 640px) {
    .grid {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .grid::after {
        clear: both;
        content: "";
        display: table;
    }

    .grid > * {
        box-sizing: border-box;
        clear: none;
        float: left;
        margin: 0;
        padding: 0;
        width: 50%;
    }

    .grid > *:nth-child(2n + 1) {
        clear: left;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .grid {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .grid::after {
        clear: both;
        content: "";
        display: table;
    }

    .grid > * {
        box-sizing: border-box;
        clear: none;
        float: left;
        margin: 0;
        padding: 0;
        width: 33.3333333333%;
    }

    .grid > *:nth-child(3n + 1) {
        clear: left;
    }
}

@media (min-width: 1025px) {
    .grid {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .grid::after {
        clear: both;
        content: "";
        display: table;
    }

    .grid > * {
        box-sizing: border-box;
        clear: none;
        float: left;
        margin: 0;
        padding: 0;
        width: 25%;
    }

    .grid > *:nth-child(4n + 1) {
        clear: left;
    }
}

@media (max-width: 640px) {
    .grid.columns-2 {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .grid.columns-2::after {
        clear: both;
        content: "";
        display: table;
    }

    .grid.columns-2 > * {
        box-sizing: border-box;
        clear: none;
        float: left;
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .grid.columns-2 > *:nth-child(1n + 1) {
        clear: left;
    }
}

@media (min-width: 641px) {
    .grid.columns-2 {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .grid.columns-2::after {
        clear: both;
        content: "";
        display: table;
    }

    .grid.columns-2 > * {
        box-sizing: border-box;
        clear: none;
        float: left;
        margin: 0;
        padding: 0;
        width: 50%;
    }

    .grid.columns-2 > *:nth-child(2n + 1) {
        clear: left;
    }
}

@media (max-width: 640px) {
    .grid.columns-3 {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .grid.columns-3::after {
        clear: both;
        content: "";
        display: table;
    }

    .grid.columns-3 > * {
        box-sizing: border-box;
        clear: none;
        float: left;
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .grid.columns-3 > *:nth-child(1n + 1) {
        clear: left;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .grid.columns-3 {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .grid.columns-3::after {
        clear: both;
        content: "";
        display: table;
    }

    .grid.columns-3 > * {
        box-sizing: border-box;
        clear: none;
        float: left;
        margin: 0;
        padding: 0;
        width: 50%;
    }

    .grid.columns-3 > *:nth-child(2n + 1) {
        clear: left;
    }
}

@media (min-width: 1025px) {
    .grid.columns-3 {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .grid.columns-3::after {
        clear: both;
        content: "";
        display: table;
    }

    .grid.columns-3 > * {
        box-sizing: border-box;
        clear: none;
        float: left;
        margin: 0;
        padding: 0;
        width: 33.3333333333%;
    }

    .grid.columns-3 > *:nth-child(3n + 1) {
        clear: left;
    }
}

@media (max-width: 640px) {
    .grid.columns-4 {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .grid.columns-4::after {
        clear: both;
        content: "";
        display: table;
    }

    .grid.columns-4 > * {
        box-sizing: border-box;
        clear: none;
        float: left;
        margin: 0;
        padding: 0;
        width: 50%;
    }

    .grid.columns-4 > *:nth-child(2n + 1) {
        clear: left;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .grid.columns-4 {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .grid.columns-4::after {
        clear: both;
        content: "";
        display: table;
    }

    .grid.columns-4 > * {
        box-sizing: border-box;
        clear: none;
        float: left;
        margin: 0;
        padding: 0;
        width: 25%;
    }

    .grid.columns-4 > *:nth-child(4n + 1) {
        clear: left;
    }
}

@media (max-width: 640px) {
    .grid.columns-5 {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .grid.columns-5::after {
        clear: both;
        content: "";
        display: table;
    }

    .grid.columns-5 > * {
        box-sizing: border-box;
        clear: none;
        float: left;
        margin: 0;
        padding: 0;
        width: 33.3333333333%;
    }

    .grid.columns-5 > *:nth-child(3n + 1) {
        clear: left;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .grid.columns-5 {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .grid.columns-5::after {
        clear: both;
        content: "";
        display: table;
    }

    .grid.columns-5 > * {
        box-sizing: border-box;
        clear: none;
        float: left;
        margin: 0;
        padding: 0;
        width: 25%;
    }

    .grid.columns-5 > *:nth-child(4n + 1) {
        clear: left;
    }
}

@media (min-width: 1025px) {
    .grid.columns-5 {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .grid.columns-5::after {
        clear: both;
        content: "";
        display: table;
    }

    .grid.columns-5 > * {
        box-sizing: border-box;
        clear: none;
        float: left;
        margin: 0;
        padding: 0;
        width: 20%;
    }

    .grid.columns-5 > *:nth-child(5n + 1) {
        clear: left;
    }
}

.grid.padded, .grid.padded-1 {
    margin: -6px 0;
}

.grid.padded.columns-2, .grid.padded.columns-3, .grid.padded-1.columns-2, .grid.padded-1.columns-3 {
    margin: -6px;
}

.grid.padded > *, .grid.padded-1 > * {
    padding: 6px;
}

.grid.padded.margin, .grid.padded-1.margin {
    margin-bottom: 18px;
}

.grid.padded-2 {
    margin: -12px;
}

.grid.padded-2.columns-2, .grid.padded-2.columns-3 {
    margin: -12px;
}

.grid.padded-2 > * {
    padding: 12px;
}

.grid.padded-2.margin {
    margin-bottom: 12px;
}

.grid.padded-3 {
    margin: -16px;
}

.grid.padded-3.columns-2, .grid.padded-3.columns-3 {
    margin: -16px;
}

.grid.padded-3 > * {
    padding: 16px;
}

.grid.padded-3.margin {
    margin-bottom: 8px;
}

.grid.padded-4 {
    margin: -24px;
}

.grid.padded-4.columns-2, .grid.padded-4.columns-3 {
    margin: -24px;
}

.grid.padded-4 > * {
    padding: 24px;
}

.grid.padded-4.margin {
    margin-bottom: 0px;
}

.grid .thumbnail {
    display: block;
}

@media (min-width: 1025px) {
    .grid .mixology-grid-item {
        width: 33.33%;
    }

    .grid .mixology-grid-item:nth-child(4n + 1) {
        clear: unset;
    }
}

.box {
    background: #FFF;
    border-radius: 2px;
    box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.12);
    display: block;
    overflow: hidden;
}

.box > *:last-child {
    margin-bottom: 0;
}

.box > .header,
.box > .body,
.box > .footer {
    padding: 18px 24px;
}

.box > .header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.box > .header h2,
.box > .header h3 {
    margin-bottom: 0;
}

.box > .header > .icon {
    float: right;
    margin: 3px 0;
}

.box > .body > *:last-child {
    margin-bottom: 0;
}

.box > .footer {
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    text-align: right;
}

.box .close {
    background: url(./icons/icon-close.svg) no-repeat center center;
    color: transparent;
    display: block;
    float: right;
    height: 48px;
    opacity: 0.8;
    overflow: hidden;
    padding-left: 0;
    transition-duration: 0.1s;
    transition-property: opacity, transform;
    width: 48px;
    padding: 0px;
    margin: -12px;
}

.box .close:hover {
    opacity: 1;
}

.box .close:active {
    opacity: 0.6;
    transform: scale(0.8);
}

.box .list li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    margin: 0;
    padding: 12px 18px;
}

.box .list li:last-child {
    border-bottom: 0;
}

.box.dark, .box.green {
    color: rgba(255, 255, 255, 0.7);
}

.box.dark h2,
.box.dark h3,
.box.dark h4, .box.green h2,
.box.green h3,
.box.green h4 {
    color: #FFF;
}

.box.dark > .header,
.box.dark > .footer, .box.green > .header,
.box.green > .footer {
    border-color: rgba(255, 255, 255, 0.12);
}

.box.dark .list li, .box.green .list li {
    border-color: rgba(255, 255, 255, 0.12);
}

.box.dark {
    background: #3D3935;
}

.box.green {
    background: #00A862;
}

.box.column {
    position: relative;
}

.box.column .close {
    position: absolute;
    right: 24px;
    top: 24px;
    z-index: 1;
}

@media (max-width: 640px) {
    .box.column .close {
        top: 12px;
        right: 12px;
        background: url(./icons/icon-close-white.svg) no-repeat center center;
    }
}

@media (max-width: 640px) {
    .box.column .grid {
        padding-top: 240px;
    }
}

.box.column .grid > div:last-child {
    float: right;
    padding: 24px;
}

.box.column .grid > div:last-child h2 {
    padding-right: 24px;
}

@media (max-width: 640px) {
    .box.column .grid > div:last-child h2 {
        padding-right: 0px;
    }
}

.box.column .grid > div:last-child .footer {
    text-align: right;
    margin-top: 12px;
    display: inline-block;
    width: 100%;
}

.box.column .grid > div:first-child {
    position: absolute;
    width: 50%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
}

@media (max-width: 640px) {
    .box.column .grid > div:first-child {
        width: 100%;
        height: 240px;
    }
}

.card {
    background: #FFF;
    border-radius: 2px;
    box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.12);
    display: block;
    overflow: hidden;
    position: relative;
    padding: 18px;
}

.card > *:last-child {
    margin-bottom: 0;
}

.card .icon {
    float: right;
}

.card.green {
    background-color: #00A862;
}

.card.dark {
    background-color: #3D3935;
}

.card.green, .card.dark {
    color: #FFF;
}

.card.green h1,
.card.green h2,
.card.green h3, .card.dark h1,
.card.dark h2,
.card.dark h3 {
    color: #FFF;
}

.card.colored {
    /*border-top: 4px solid #00653E;*/
    padding: 0;
}

.card.colored .wrapper {
    background-color: #00A862;
    color: #FFF;
    padding: 18px;
    text-align: center;
}

.card.colored .icon {
    opacity: 0.5;
}

.card.colored .content {
    padding: 18px;
}

.card.colored:hover {
    box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.12);
}

.card.thumbnail {
    box-sizing: border-box;
    display: inline-block;
    margin-right: 16px;
}

.card.thumbnail .tag {
    font-size: 14px;
    font-size: 1.4rem;
    background: #C2A661;
    color: #FFF;
    position: absolute;
    padding: 4px 12px;
    left: 0px;
    top: 6px;
}

.card.thumbnail.rect {
    width: 288px;
}

.card.thumbnail.rect .preview {
    height: 168px;
    width: calc(100% + 38px);
}

.card.thumbnail.rect strong {
    font-weight: normal;
    text-align: left;
    white-space: normal;
}

@media (max-width: 640px) {
    .card.thumbnail.rect {
        width: 252px;
    }

    .card.thumbnail.rect .preview {
        height: 144px;
    }
}

.card.thumbnail:hover {
    box-shadow: 0 1px 3px 2px rgba(0, 0, 0, 0.12);
    -ms-transform: translate3d(0, -4px, 0);
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
}

@media (max-width: 640px) {
    .card.thumbnail:hover {
        -ms-transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.card.thumbnail .preview {
    margin-top: -18px;
    margin-left: -19px;
    margin-right: -19px;
    height: 168px;
    width: calc(100% + 38px);
}

.card.thumbnail time {
    display: block;
    color: #C2A661;
    font-size: 12px;
    font-size: 1.2rem;
    text-align: left;
}

.card.news {
    padding: 0;
}

.card.news:hover {
    -ms-transform: translatex(4px);
    -webkit-transform: translatex(4px);
    transform: translatex(4px);
}

.card.news .preview {
    background-size: cover;
    background-position: 50% 50%;
    background-color: #f7f7f7;
    min-height: 96px;
    width: 22%;
}

.card.news .preview.empty {
    background-image: url("/assets/images/logo.svg");
    background-repeat: no-repeat;
    background-size: 70%;
    opacity: 0.1;
}

.card.news .title {
    margin-bottom: 12px;
}

.card.news .caption {
    font-weight: 400;
    margin-bottom: 6px;
}

@media (min-width: 641px) {
    .card.news .preview {
        min-height: 192px;
    }
}

a.card {
    color: inherit;
    margin-top: 12px;
    margin-bottom: 12px;
}

a.card:hover {
    box-shadow: 0 1px 3px 2px rgba(0, 0, 0, 0.12);
}

a.card:active {
    box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.12);
}

a.card.colored {
    /*border-top: 4px solid #00A862;*/
    padding: 0;
}

a.card.colored .wrapper {
    /*background-color: #00A862;*/
    padding: 18px;

}

a.card.colored .icon {
    opacity: 0.5;
}

/*a.card.colored:hover {*/
/*  border-top: 4px solid #00653E;*/
/*  box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.12); }*/

.button {
    background: none;
    border: 1px solid #00A862;
    border-radius: 48px;
    box-sizing: border-box;
    color: #00A862;
    display: inline-block;
    font-weight: 500;
    outline: none;
    overflow: hidden;
    padding: 6px 18px;
    position: relative;
    transition-duration: 0.1s;
    transition-property: background, border-color, color;
}

.button img {
    float: left;
    margin-top: -1px;
    margin-right: 6px;
    margin-left: -6px;
}

.button:after {
    background: rgba(0, 168, 98, 0.12);
    border-radius: 100%;
    content: '';
    height: 6px;
    left: 50%;
    opacity: 0;
    position: absolute;
    transform-origin: 50% 50%;
    transform: scale(1, 1) translate(-50%);
    top: 50%;
    width: 6px;
}

.button:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

.button:hover, .button:focus {
    border-color: #1ab172;
    color: #1ab172;
    text-decoration: none;
}

.button:active, .button.active {
    text-decoration: none;
}

.button.primary {
    background: #00A862;
    border-color: #00A862;
    color: #FFF;
}

.button.primary:hover, .button.primary:focus {
    background-color: #1ab172;
    border-color: #1ab172;
    color: #FFF;
}

.button.primary:after {
    background: rgba(255, 255, 255, 0.12);
}

.button[disabled=disabled], .button[disabled=true], .button[disabled], .button.disabled {
    background: #f7f7f7;
    border-color: #f7f7f7;
    color: rgba(0, 0, 0, 0.38);
    cursor: not-allowed;
}

.button[disabled=disabled]:hover, .button[disabled=disabled]:focus, .button[disabled=true]:hover, .button[disabled=true]:focus, .button[disabled]:hover, .button[disabled]:focus, .button.disabled:hover, .button.disabled:focus {
    background: #f7f7f7;
    border-color: #f7f7f7;
    color: rgba(0, 0, 0, 0.38);
}

.button.light {
    background: #FFF;
    border-color: #FFF;
    color: #00A862;
}

.button.light:hover, .button.light:focus {
    background-color: #FFF;
    border-color: #FFF;
    color: #1ab172;
}

.button.light-ghost {
    background: transparent;
    border-color: #FFF;
    color: #FFF;
}

.button.light-ghost:hover, .button.light-ghost:focus {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: white;
    color: white;
}

.button.reserve {
    background: #C48D69;
    border-color: #C48D69;
    color: #FFF;
}

.button.reserve:hover, .button.reserve:focus {
    background-color: #ca9878;
    border-color: #ca9878;
    color: #FFF;
}

.button.reserve:after {
    background: rgba(255, 255, 255, 0.12);
}

.button.link {
    border-color: transparent;
    padding-left: 0;
    padding-right: 0;
}

.button.link img {
    margin: -1px 14px 0px 1px;
}

.button.link:after {
    content: none;
}

.button.link:hover {
    color: #009758;
}

.button.link.gold:hover {
    color: #af9557;
}

.button.large {
    font-weight: 700;
    padding: 12px 24px;
}

.button.small {
    padding: 2px 12px;
}

.frap {
    position: fixed;
    right: 16px;
    z-index: 996;
}

@media (max-width: 640px) {
    .frap {
        bottom: 71px;
    }
}

@media (min-width: 641px) {
    .frap {
        bottom: 16px;
    }
}

@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
    .frap {
        bottom: 86px;
    }
}

.frap .button {
    animation: pop 0.1s ease-out;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.38);
    font-weight: 700;
    transition-property: background, border-color, color, transform;
    clear: right;
    float: right;
    margin-top: 12px;
}

.frap .button:active {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.26);
    transform: translateY(2px);
}

.frap .button.primary {
    padding: 12px 24px;
}

.frap .button.secondary {
    background: #FFF;
    border-color: #FFF;
    color: inherit;
}

.actions .button {
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.38);
    margin-bottom: 4px;
}

#content {
    position: relative;
    overflow: hidden;
}

@media (max-width: 1024px) {
    #content {
        padding-bottom: 24px;
        padding-top: 24px;
    }

    body.page-menu #content {
        padding-bottom: 120px;
    }
}

@media (min-width: 1025px) {
    #content {
        left: auto;
        margin-left: 20%;
        padding-bottom: 24px;
        padding-top: 24px;
        width: 70%;
    }
}

@media (max-width: 640px) {
    #content {
        padding-bottom: 55px;
    }
}

@media only screen and (max-width: 640px) and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
    #content {
        padding-bottom: 70px;
    }
}

@media (max-width: 640px) {
    #content .box.submit-box {
        box-shadow: none;
        background: none;
        margin: -24px -16px 12px -16px;
    }

    #content .mobile-download,
    #content .udp-apple-app-download-zh,
    #content .udp-apple-app-download-en {
        animation: pop 0.1s ease-out;
        box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.38);
        font-weight: 700;
        transition-property: background, border-color, color, transform;
        bottom: 71px;
        box-shadow: none;
        clear: right;
        float: right;
        position: fixed;
        right: 16px;
        z-index: 996;
    }

    #content .mobile-download:active,
    #content .udp-apple-app-download-zh:active,
    #content .udp-apple-app-download-en:active {
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.26);
        transform: translateY(2px);
    }

    #content .mobile-download.primary,
    #content .udp-apple-app-download-zh.primary,
    #content .udp-apple-app-download-en.primary {
        padding: 12px 24px;
    }

    #content .mobile-download.secondary,
    #content .udp-apple-app-download-zh.secondary,
    #content .udp-apple-app-download-en.secondary {
        background: #FFF;
        border-color: #FFF;
        color: inherit;
    }
}

@media only screen and (max-width: 640px) and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
    #content .mobile-download,
    #content .udp-apple-app-download-zh,
    #content .udp-apple-app-download-en {
        bottom: 86px;
    }
}

#content hr {
    margin: 36px auto;
}

#content hr::after {
    clear: both;
    content: "";
    display: table;
}

#content .section {
    clear: both;
}

#content .section::after {
    clear: both;
    content: "";
    display: table;
}

@media (max-width: 640px) {
    #content .section {
        padding-bottom: 12px;
        padding-top: 12px;
    }

    #content .section:first-child {
        padding-top: 0;
    }

    #content .section:last-child {
        padding-bottom: 0;
    }
}

@media (min-width: 641px) {
    #content .section {
        padding-bottom: 18px;
        padding-top: 18px;
    }

    #content .section:first-child {
        padding-top: 0;
    }

    #content .section:last-child {
        padding-bottom: 0;
    }
}

#content .section-legal {
    padding-bottom: 60px !important;
}

#content .section-faq, #content .section-help {
    padding-bottom: 150px !important;
}

#content .teaser {
    color: inherit;
}

#content .teaser::after {
    clear: both;
    content: "";
    display: table;
}

#content .teaser .preview {
    float: left;
}

#content .teaser .content h2,
#content .teaser .content h3 {
    margin-bottom: 12px;
}

@media (max-width: 640px) {
    #content .teaser .content {
        margin-left: 105px;
    }

    #content .teaser .preview {
        width: 96px;
    }
}

@media (min-width: 641px) {
    #content .teaser .content {
        margin-left: 156px;
    }

    #content .teaser .preview {
        width: 144px;
    }
}

@media (max-width: 640px) {
    #content .teaser.mini .content {
        margin-left: 81px;
    }

    #content .teaser.mini .preview {
        width: 72px;
    }
}

@media (min-width: 641px) {
    #content .teaser.mini .content {
        margin-left: 108px;
    }

    #content .teaser.mini .preview {
        width: 96px;
    }
}

#content .teaser.reverse .preview {
    float: right;
}

#content .teaser.reverse .content {
    margin-left: 0;
}

@media (max-width: 640px) {
    #content .teaser.reverse .content {
        margin-right: 105px;
    }
}

@media (min-width: 641px) {
    #content .teaser.reverse .content {
        margin-right: 156px;
    }
}

@media (max-width: 640px) {
    #content .teaser.reverse.mini .content {
        margin-right: 81px;
    }
}

@media (min-width: 641px) {
    #content .teaser.reverse.mini .content {
        margin-right: 108px;
    }
}

@media (max-width: 640px) {
    .lang-en #content {
        padding-bottom: 67px;
    }
}

@media only screen and (max-width: 640px) and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
    .lang-en #content {
        padding-bottom: 82px;
    }
}

.overlay {
    background: #FFF;
    bottom: 0;
    box-sizing: border-box;
    height: 100%;
    left: 0;
    opacity: 0;
    overflow-y: auto;
    position: fixed;
    right: 0;
    top: 0;
    -webkit-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
    transition: all 0.1s linear;
    visibility: hidden;
    z-index: 1005;
}

@media (max-width: 1024px) {
    .overlay {
        z-index: 1007;
    }
}

.overlay.dark {
    background: #000;
}

.overlay.dark .header .close {
    background: url(./icons/icon-close-light.svg) no-repeat center center;
}

.overlay .header {
    padding: 24px;
}

.overlay .header::after {
    clear: both;
    content: "";
    display: table;
}

.overlay .header .close {
    background: url(./icons/icon-close.svg) no-repeat center center;
    box-sizing: inherit;
    color: transparent;
    display: block;
    float: right;
    height: 48px;
    opacity: 0.8;
    overflow: hidden;
    padding: 0;
    margin: -12px;
    -webkit-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
    transition: all 0.1s linear;
    width: 48px;
}

.overlay .header .close:hover {
    opacity: 1;
}

.overlay .header .close:active {
    opacity: 0.6;
    transform: scale(0.8);
}

.overlay .body {
    clear: both;
    margin: 0 auto;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    transform-origin: center center;
    -webkit-transform-origin: center center;
    -webkit-transition: all 0.1s linear;
    -moz-transition: all 0.1s linear;
    transition: all 0.1s linear;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.overlay.active .body {
    -webkit-transform: scale(1);
    transform: scale(1);
}

@media (min-width: 1025px) {
    #content .overlay {
        left: 30%;
    }
}

#content .overlay .body {
    max-width: 480px;
    padding: 24px;
}

@media (max-width: 640px) {
    #content .overlay .body {
        padding-bottom: 80px;
    }
}

@media (min-width: 1025px) {
    #nav .overlay {
        width: 30%;
    }
}

@media (max-width: 640px) {
    #nav .overlay .body {
        padding-bottom: 55px;
    }
}

#nav-overlay {
    z-index: 1005;
}

@media (min-width: 641px) {
    #nav-overlay .body .container {
        padding-left: 84px;
        padding-right: 24px;
    }
}

#nav-overlay .footer {
    color: rgba(0, 0, 0, 0.12);
    display: inline-block !important;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 160%;
    margin-top: 12px;
    width: 100%;
}

@media (max-width: 640px) {
    #nav-overlay .footer {
        margin-bottom: 12px;
    }
}

#nav-overlay .footer .legal {
    font-size: 9px;
    font-size: 0.9rem;
    line-height: 160%;
}

#nav-overlay .footer a,
#nav-overlay .footer span {
    color: rgba(0, 0, 0, 0.38);
}

#nav-overlay .footer .container {
    position: relative;
    padding-right: 60px;
}

@media (min-width: 641px) {
    #nav-overlay .footer .container {
        margin: 0 24px 24px 84px;
    }
}

@media (max-width: 640px) {
    #nav-overlay .footer .container {
        margin: 16px 16px 4px 16px;
    }
}

#overlay-search .field {
    font-size: 19px;
    font-size: 1.9rem;
    margin-bottom: 24px;
    position: relative;
}

#overlay-search .field input {
    padding-right: 24px;
}

#overlay-search .field img {
    position: absolute;
    right: 0;
}

#overlay-search .empty {
    color: rgba(0, 0, 0, 0.38);
    white-space: nowrap;
}

@media (max-width: 640px) {
    #content .overlay,
    #nav .overlay {
        bottom: 55px;
    }
}

.dialog {
    background: rgba(0, 0, 0, 0.56);
    height: 100%;
    left: 0;
    opacity: 0;
    overflow-y: auto;
    position: fixed;
    top: 0;
    visibility: hidden;
    width: 100%;
    z-index: 1004;
}

@media (max-width: 1024px) {
    .dialog {
        z-index: 1006;
    }
}

.dialog .dialog-scroller {
    display: -webkit-box;
    display: -moz-box;
    display: box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: normal;
    box-orient: vertical;
    box-direction: normal;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
    -ms-flex-direction: column;
    box-pack: distribute;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    -ms-justify-content: space-around;
    -o-justify-content: space-around;
    justify-content: space-around;
    -ms-flex-pack: distribute;
    overflow-y: auto;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    position: absolute;
}

.dialog .dialog-container {
    min-height: 0px;
}

.dialog.active {
    opacity: 1;
    visibility: visible;
}

.dialog.active .dialog-box {
    transform: scale(1);
}

.dialog .dialog-box {
    background: #FFF;
    border-radius: 8px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.56);
    box-sizing: border-box;
    margin: 24px auto 24px;
    max-width: 444px;
    padding: 24px;
    transform: scale(0.8);
    transition-duration: 0.1s;
    transition-property: opacity, transform;
    width: 94%;
}

.dialog .dialog-box .close {
    background: url(./icons/icon-close.svg) no-repeat center center;
    color: transparent;
    display: block;
    float: right;
    height: 48px;
    opacity: 0.8;
    overflow: hidden;
    padding-left: 0;
    transition-duration: 0.1s;
    transition-property: opacity, transform;
    width: 48px;
    padding: 0px;
    margin: -12px;
}

.dialog .dialog-box .close:hover {
    opacity: 1;
}

.dialog .dialog-box .close:active {
    opacity: 0.6;
    transform: scale(0.8);
}

.dialog .dialog-box .image {
    width: 100%;
    padding-bottom: 12px;
    text-align: center;
}

.dialog .dialog-box .image img {
    width: 142px;
    height: auto;
}

.dialog .dialog-box .footer {
    margin-top: 24px;
    text-align: center;
}

.dialog .dialog-box .footer .button {
    margin: 4px;
}

.dialog.large .dialog-box {
    max-width: 600px;
}

@media (min-width: 1025px) {
    #content .dialog {
        left: 30%;
        width: 70%;
    }
}

.snackbar {
    background: #3D3935;
    bottom: 0;
    box-sizing: border-box;
    border-left-top-radius: 2px;
    border-right-top-radius: 2px;
    color: #FFF;
    left: 50%;
    max-width: 40%;
    min-width: 300px;
    opacity: 0;
    padding: 12px 24px;
    position: fixed;
    right: 0;
    -ms-transform: translate3d(-50%, 100%, 0);
    -webkit-transform: translate3d(-50%, 100%, 0);
    transform: translate3d(-50%, 100%, 0);
    transition-duration: 0.4s;
    transition-property: opacity, transform, visibility;
    visibility: none;
    z-index: 9999;
}

.snackbar::after {
    clear: both;
    content: "";
    display: table;
}

@media (max-width: 640px) {
    .snackbar {
        min-width: 100%;
    }
}

.snackbar.active {
    opacity: 1;
    -ms-transform: translate3d(-50%, 0, 0);
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
    visibility: visible;
}

.snackbar .controls {
    margin-left: 12px;
}

.snackbar .content > *:last-child {
    margin-bottom: 0;
}

@media (min-width: 1025px) {
    #nav .snackbar {
        right: 70%;
    }
}

@media (min-width: 1025px) {
    #content .snackbar {
        left: 65%;
    }
}

@media (max-width: 640px) {
    #content .snackbar,
    #nav .snackbar {
        bottom: 55px;
    }
}

@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
    #content .snackbar,
    #nav .snackbar {
        bottom: 70px;
    }
}

#footer {
    color: rgba(0, 0, 0, 0.38);
    font-size: 10px;
    font-size: 1rem;
    line-height: 160%;
    padding-top: 24px;
    text-align: left;
}

#footer a {
    color: inherit;
}

.flex {
    display: box;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.flex-row {
    flex-direction: row;
    -webkit-flex-direction: row;
}

.flex-column {
    flex-direction: column;
    -webkit-flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}

.items-start {
    align-items: flex-start;
    -webkit-align-items: flex-start;
}

.items-end {
    align-items: flex-end;
    -webkit-align-items: flex-end;
}

.items-center {
    align-items: center;
    -webkit-align-items: center;
}

.items-baseline {
    align-items: baseline;
    -webkit-align-items: baseline;
}

.items-stretch {
    align-items: stretch;
    -webkit-align-items: stretch;
}

.self-start {
    align-self: flex-start;
    -webkit-align-self: flex-start;
}

.self-end {
    align-self: flex-end;
    -webkit-align-self: flex-end;
}

.self-center {
    align-self: center;
    -webkit-align-self: center;
}

.self-baseline {
    align-self: baseline;
    -webkit-align-self: baseline;
}

.self-stretch {
    align-self: stretch;
    -webkit-align-self: stretch;
}

.justify-start {
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
}

.justify-center {
    justify-content: center;
    -webkit-justify-content: center;
}

.justify-between {
    justify-content: space-between;
    -webkit-justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
    -webkit-justify-content: space-around;
}

.content-start {
    align-content: flex-start;
    -webkit-align-content: flex-start;
}

.content-end {
    align-content: flex-end;
    -webkit-align-content: flex-end;
}

.content-center {
    align-content: center;
    -webkit-align-content: center;
}

.content-between {
    align-content: space-between;
    -webkit-align-content: space-between;
}

.content-around {
    align-content: space-around;
    -webkit-align-content: space-around;
}

.content-stretch {
    align-content: stretch;
    -webkit-align-content: stretch;
}

.flex-auto {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 0;
}

.flex1 {
    flex: 1;
}

.flex2 {
    flex: 2;
}

.flex3 {
    flex: 3;
}

.order1 {
    order: 1;
}

.order2 {
    order: 2;
}

.order3 {
    order: 3;
}

@media (min-width: 641px) {
    .tablet-flex {
        display: flex;
    }

    .tablet-flex-row {
        flex-direction: row;
    }

    .tablet-flex-column {
        flex-direction: column;
    }

    .tablet-justify-start {
        justify-content: flex-start;
    }

    .tablet-self-start {
        align-self: start;
    }

    .tablet-items-start {
        align-items: flex-start;
    }

    .tablet-items-end {
        align-items: flex-end;
    }

    .tablet-flex1 {
        flex: 1;
    }

    .tablet-flex2 {
        flex: 2;
    }

    .tablet-flex3 {
        flex: 3;
    }

    .tablet-order1 {
        order: 1;
    }

    .tablet-order2 {
        order: 2;
    }

    .tablet-order3 {
        order: 3;
    }

    .tablet-flex-auto {
        flex: 1 1 auto;
        min-width: 0;
        min-height: 0;
    }
}

.gauge {
    background: rgba(0, 0, 0, 0.12);
    border-radius: 24px;
    width: 100%;
}

.gauge .fill {
    background: #00A862;
    border-radius: 24px;
    box-sizing: border-box;
    color: #FFF;
    min-height: 6px;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1;
    padding: 4px 0;
    overflow: hidden;
}

.gauge .fill.gold {
    background: #C2A661;
}

.gauge .fill.dark {
    background: #3D3935;
}

.gauge.large {
    padding: 2px;
}

.gauge.large .counter strong {
    font-size: 32px;
    font-size: 3.2rem;
    font-weight: 400;
}

@media (max-width: 640px) {
    .gauge.large .counter strong {
        font-size: 24px;
        font-size: 2.4rem;
    }
}

.gauge.large .fill {
    color: rgba(0, 0, 0, 0.56);
    background: #FFF;
    padding: 3px 0;
    line-height: 18px;
    height: 24px;
    text-align: right;
    font-size: 16px;
    font-size: 1.6rem;
    position: relative;
}

.gauge.large .fill span {
    position: absolute;
    top: 6px;
    right: 6px;
}

.gauge.large .fill span:first-child {
    top: 3px;
    right: 18px;
    font-size: 13px;
    font-size: 1.3rem;
}

.gauge.large .fill .star {
    padding-right: 0.5rem;
}

section.hero {
    position: relative;
}

.section.wrapper.fluid.hero.bg-apron-green {
    position: relative;
}

.tag_ad {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0px 6px;
    color: #fff;
    background-color: #000;
    font-size: 1.2rem;
    line-height: 180%;
    opacity: 0.6;
    border-radius: 2px;
    z-index: 200;
}

.page-help-legal-msr-migration table {
    margin: auto;
    border-collapse: collapse;
    overflow-x: auto;
    display: block;
    width: fit-content;
    max-width: 100%;
}

.backToTop {
    position: fixed;
    z-index: 1000;
    bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.38);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    visibility: hidden;
}

@media (max-width: 640px) {
    .backToTop {
        width: 32px;
        height: 32px;
    }
}

.backToTop:before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    background: url("/assets/icons/icon-back-to-top.svg") no-repeat center;
}

.ShareButtons {
    margin-top: 20px;
    text-align: center;
}

.ShareButton {
    width: 30px;
    height: 30px;
    border: none;
}

.ShareButton--wechat {
    background: url("/assets/icons/wechat.svg") no-repeat center;
}

.ShareButton--weibo {
    background: url("/assets/icons/weibo.svg") no-repeat center;
}

.ShareButton + .ShareButton {
    margin-left: 24px;
}

.ShareButtons__qrcode {
    position: fixed;
    margin-top: 10px;
    padding: 6px 10px 10px;
    box-shadow: #BDBDBD 0 0 2px 0;
    background: #fff;
    font-size: 13px;
}

.ShareButtons__qrcode img {
    margin-top: 4px;
    width: 100px;
    height: 100px;
}

.ShareButtons__qrcode:before {
    content: '';
    position: absolute;
    z-index: 1;
    width: 7px;
    height: 7px;
    top: -5px;
    left: calc(50% - 4px);
    border: 1px solid rgba(189, 189, 189, 0.6);
    border-right: none;
    border-bottom: none;
    transform: rotate(45deg);
    background: #fff;
}

body.page-about #content {
    background-color: #f7f7f7;
    padding-bottom: 0;
}

body.page-about #content .bg-gradient {
    background-image: linear-gradient(-180deg, #FCFCFC 0%, #FFF 100%);
}

body.page-about #content .padded-b-0 {
    padding-bottom: 0;
}

body.page-about #content .section.space {
    padding-bottom: 36px;
    padding-top: 24px;
}

body.page-about #content .wrapper.fluid.section.white {
    padding-bottom: 0;
}

body.page-about #content .tablet-flex1 {
    padding: 12px;
}

body.page-about #content .logo {
    background-image: url(/assets/images/logo.svg);
    background-size: cover;
    height: 96px;
    opacity: 0.2;
    width: 144px;
}

body.page-about #content .link,
body.page-about-history #content .link {
    margin-bottom: 12px;
    width: 100%;
}

body.page-about #content .card.colored .icon,
body.page-about-history #content .card.colored .icon {
    position: absolute;
    height: 84px;
    left: 50%;
    top: 5%;
    transform: translateX(-50%);
    opacity: 0.3;
}

body.page-about #content .card.colored .wrapper,
body.page-about-history #content .card.colored .wrapper {
    padding: 18px 12px;
}

@media (min-width: 1025px) {
    body.page-about #content .card.colored .content,
    body.page-about-history #content .card.colored .content {
        min-height: 276px;
    }
}

body.page-about-careers .hero section.title h1, body.page-about-careers .hero section.title h3,
body.page-about-careers .hero section.title p {
    width: 100%;
}

body.page-about #content .hero,
body.page-about-news #content .hero,
body.page-about-responsibility #content .hero,
body.page-about-history #content .hero,
body.page-about-contact #content .hero {
    padding: 60px 0;
    position: relative;
}

body.page-about #content .hero section.title,
body.page-about-news #content .hero section.title,
body.page-about-responsibility #content .hero section.title,
body.page-about-history #content .hero section.title,
body.page-about-contact #content .hero section.title {
    width: 100%;
}

body.page-about #content .hero section.title h1,
body.page-about #content .hero section.title p,
body.page-about-news #content .hero section.title h1,
body.page-about-news #content .hero section.title p,
body.page-about-responsibility #content .hero section.title h1,
body.page-about-responsibility #content .hero section.title p,
body.page-about-history #content .hero section.title h1,
body.page-about-history #content .hero section.title p,
body.page-about-contact #content .hero section.title h1,
body.page-about-contact #content .hero section.title p {
    width: 100%;
}

body.page-about #content .hero section.title p,
body.page-about-news #content .hero section.title p,
body.page-about-responsibility #content .hero section.title p,
body.page-about-history #content .hero section.title p,
body.page-about-contact #content .hero section.title p {
    margin-bottom: 0px;
}

body.page-about #content .hero .hidden,
body.page-about-news #content .hero .hidden,
body.page-about-responsibility #content .hero .hidden,
body.page-about-history #content .hero .hidden,
body.page-about-contact #content .hero .hidden {
    display: none;
}

body.page-about #content .image,
body.page-about-news #content .image,
body.page-about-responsibility #content .image,
body.page-about-history #content .image,
body.page-about-contact #content .image {
    background-position: 50% 50%;
    background-size: cover;
    height: 100%;
    width: 100%;
    position: absolute;
    bottom: 0;
}

body.page-about #content .image:before,
body.page-about-news #content .image:before,
body.page-about-responsibility #content .image:before,
body.page-about-history #content .image:before,
body.page-about-contact #content .image:before {
    background-image: linear-gradient(-180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.7) 81%);
    content: '';
    height: 100%;
    position: absolute;
    width: 100%;
}

@media (min-width: 1025px) {
    body.page-about #content .hero,
    body.page-about-news #content .hero,
    body.page-about-responsibility #content .hero,
    body.page-about-history #content .hero,
    body.page-about-contact #content .hero {
        min-height: 48px;
    }
}

body.page-about-partner, body.page-en-about-partner {
    padding-bottom: 0;
}

body.page-about-partner #content .partner-page, body.page-en-about-partner #content .partner-page {
    min-height: 80vh;
    position: relative;
    box-sizing: border-box;
    background: #F7F7F7;
    margin: 0;
    display: flex;
}

body.page-about-partner #content .partner-top, body.page-en-about-partner #content .partner-top {
    flex: 1;
    margin-left: 120px;
}

body.page-about-partner #content .partner-title, body.page-en-about-partner #content .partner-title {
    font-size: 26px;
    font-weight: 700;
    color: #000000;
    line-height: 37px;
    margin-top: 268px;
    margin-bottom: 16px;
}

body.page-about-partner #content .partner-tips, body.page-en-about-partner #content .partner-tips {
    font-size: 22px;
    font-weight: 600;
    color: #000000;
    line-height: 30px;
    margin: 0;
}

body.page-about-partner #content .partner-tips-en, body.page-en-about-partner #content .partner-tips-en {
    width: 380px;
    font-size: 22px;
    font-weight: 600;
    color: #000000;
    line-height: 30px;
    margin: 0;
    padding-right: 24px;
}

body.page-about-partner #content .partner-btn, body.page-en-about-partner #content .partner-btn {
    width: 128px;
    height: 56px;
    text-align: center;
    line-height: 56px;
    margin-top: 32px;
    background: #00A862;
    box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.14), 0px 0px 4px 0px rgba(0, 0, 0, 0.24);
    border-radius: 28px;
    margin-bottom: 30px;
}

body.page-about-partner #content .partner-btn a, body.page-en-about-partner #content .partner-btn a {
    color: #ffffff;
    width: 128px;
    height: 56px;
    font-size: 17px;
    font-weight: 700;
    display: inline-block;
}

body.page-about-partner #content .partner-cloud, body.page-en-about-partner #content .partner-cloud {
    width: 192px;
    height: 75px;
    position: absolute;
    top: 121px;
    right: 0;
}

body.page-about-partner #content .partner-bottom, body.page-en-about-partner #content .partner-bottom {
    text-align: right;
}

body.page-about-partner #content .partner-store, body.page-en-about-partner #content .partner-store {
    width: 484px;
    height: 324px;
    position: relative;
    z-index: 10;
    margin-right: 100px;
}

@media (min-width: 641px) and (max-width: 1024px) {
    body.page-about-partner #content .partner-title, body.page-en-about-partner #content .partner-title {
        margin-top: 60px;
    }
}

@media screen and (max-width: 640px) {
    body.page-about-partner #content, body.page-en-about-partner #content {
        box-sizing: border-box;
    }

    body.page-about-partner #content .partner-page, body.page-en-about-partner #content .partner-page {
        min-height: calc(100vh - 240px);
    }

    body.page-about-partner #content .partner-top, body.page-en-about-partner #content .partner-top {
        margin-left: 24px;
    }

    body.page-about-partner #content .partner-title, body.page-en-about-partner #content .partner-title {
        margin-top: 60px;
    }

    body.page-about-partner #content .partner-tips-en, body.page-en-about-partner #content .partner-tips-en {
        width: 100%;
        padding-right: 24px;
        box-sizing: border-box;
    }

    body.page-about-partner #content .partner-cloud, body.page-en-about-partner #content .partner-cloud {
        width: 115px;
        height: 45px;
        top: 42px;
    }

    body.page-about-partner #content .partner-store, body.page-en-about-partner #content .partner-store {
        width: 290px;
        height: 192px;
        margin-left: 64px;
    }
}

@media screen and (min-width: 750px) {
    body.page-about-partner #content, body.page-en-about-partner #content {
        padding-bottom: 0;
    }
}

@media screen and (max-width: 320px) {
    body.page-about-partner #content .partner-store, body.page-en-about-partner #content .partner-store {
        margin-left: 18px;
    }
}

.msr-card,
.svc-card {
    display: inline-block;
    text-align: center;
    padding: 12px 18px 18px;
}

.msr-card .header,
.svc-card .header {
    display: inline-block;
    margin: 0 -18px 0 -18px;
    text-align: left;
    width: 100%;
}

.msr-card .header .amount,
.svc-card .header .amount {
    font-weight: bold;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 26px;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .msr-card .header .amount,
    .svc-card .header .amount {
        float: left;
        text-align: center;
        width: 100%;
    }
}

.msr-card .header .sticker,
.svc-card .header .sticker {
    color: #00A862;
    font-weight: bold;
}

.msr-card .controls a,
.msr-card .controls button,
.svc-card .controls a,
.svc-card .controls button {
    font-size: 14px;
    font-size: 1.4rem;
    color: rgba(0, 0, 0, 0.38);
    font-weight: normal;
    margin-right: 6px;
}

.msr-card .controls a:last-child,
.msr-card .controls button:last-child,
.svc-card .controls a:last-child,
.svc-card .controls button:last-child {
    margin-right: 0px;
}

.msr-card .controls a img,
.msr-card .controls button img,
.svc-card .controls a img,
.svc-card .controls button img {
    float: left;
    filter: grayscale(100%);
    opacity: 0.6;
    transition-duration: 0.1s;
    transition-duration: filter, opacity;
    margin-right: 1px;
}

.msr-card .controls a:hover,
.msr-card .controls button:hover,
.svc-card .controls a:hover,
.svc-card .controls button:hover {
    color: #00A862;
}

.msr-card .controls a:hover img,
.msr-card .controls button:hover img,
.svc-card .controls a:hover img,
.svc-card .controls button:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.msr-card .preview,
.svc-card .preview {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    width: 90%;
    margin: 12px 5%;
}

.msr-card .preview img,
.svc-card .preview img {
    background: rgba(0, 0, 0, 0.02);
    display: block;
    margin: 0 auto;
}

.msr-card .meta,
.svc-card .meta {
    color: rgba(0, 0, 0, 0.38);
    display: block;
    line-height: 160%;
    position: relative;
    margin-top: 12px;
    text-align: center;
    word-wrap: break-word;
    word-break: normal;
    white-space: normal;
    z-index: 1;
}

.msr-card .add-card,
.svc-card .add-card {
    border: 1px dashed rgba(0, 0, 0, 0.38);
    border-radius: 12px;
    box-sizing: border-box;
    display: inline-block;
    font-weight: 700;
    margin-top: 30px;
    position: relative;
    text-align: center;
    transition-duration: 0.1s;
    transition-property: border, color;
}

.msr-card .add-card span,
.svc-card .add-card span {
    left: 0;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    width: 100%;
}

.msr-card .add-card .preview,
.svc-card .add-card .preview {
    box-shadow: none;
}

.msr-card .add-card:hover,
.svc-card .add-card:hover {
    border-color: #00A862;
}

.msr-card.live .preview,
.svc-card.live .preview {
    border: 1px solid #00A862;
}

.svc-card {
    min-height: 270px;
}

.svc-card .preview {
    position: relative;
    min-width: 240px;
    min-height: 150px;
}

@media (max-width: 640px) {
    .svc-card .preview {
        min-width: 240px;
        min-height: 150px;
        margin-top: 0px;
    }
}

.svc-card .preview label {
    position: absolute;
    top: 14px;
    left: 0;
    padding: 2px 10px;
    font-size: 14px;
    font-size: 1.4rem;
}

.svc-card .preview label.gold {
    top: 32px;
    max-width: 160px;
    color: #FFF;
    background-color: #C2A661;
    text-align: left;
    border-bottom-right-radius: 8px;
    box-shadow: #8d7840 0 0 3px 0;
    line-height: 1.5;
    white-space: normal;
}

.svc-card .preview label.restored {
    color: #FFF;
    background-color: #e75b52;
}

.svc-card .preview label.digital {
    color: #FFF;
    background-color: #C2A661;
}

.svc-card .preview label.SRkit {
    color: #FFF;
    background-color: #00A862;
}

.svc-card .preview .locked {
    background: rgba(255, 255, 255, 0.95) url(/assets/icons/icon-locked-svc.svg) no-repeat center center;
    border-radius: 10px;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}

.svc-card .preview .locked img {
    display: none;
}

@media (max-width: 640px) {
    .svc-card {
        min-height: auto;
    }

    .svc-card .control {
        width: 100%;
        text-align: center;
    }
}

.profile_svc .svc-card {
    box-sizing: border-box;
    width: 100%;
}

.profile_security .svc-card .preview .locked {
    left: 0;
}

.msr-card .preview {
    min-height: 240px;
    min-width: 150px;
}

.msr-cards li {
    text-align: center;
}

.notification {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.87);
}

.notification .dot, .notification .button, .notification .close {
    flex-shrink: 0;
}

.notification .dot {
    margin-right: 20px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00A862;
}

.notification .body {
    flex-grow: 2;
}

.notification .button, .notification .close {
    margin-left: 32px;
}

.notification .close {
    background: url(./icons/icon-close.svg) no-repeat center center;
    height: 12px;
    width: 12px;
    padding: 0px;
    border: none;
    opacity: 0.8;
}

.box.msr .list li, .box.activity .list li, .box.my-rewards .list li {
    position: relative;
    padding: 12px 0;
}

.box.msr .list li a, .box.activity .list li a, .box.my-rewards .list li a {
    display: block;
}

.box.msr .list li div, .box.activity .list li div, .box.my-rewards .list li div {
    display: inline-block;
    width: calc(100% - 48px);
}

.box.msr .list h4, .box.activity .list h4, .box.my-rewards .list h4 {
    margin-bottom: 0;
}

.box.msr .list img, .box.activity .list img, .box.my-rewards .list img {
    position: absolute;
    left: 24px;
    top: 12px;
    width: 30px;
}

.box.msr .msr-card .preview,
.box.msr .svc-card .preview, .box.my-rewards .msr-card .preview,
.box.my-rewards .svc-card .preview, .box.svc .msr-card .preview,
.box.svc .svc-card .preview {
    width: 100%;
    margin: 0px;
}

.box.msr {
    color: rgba(0, 0, 0, 0.87);
}

.box.msr > .body {
    position: relative;
}

.box.msr > .body > .badge {
    position: absolute;
    top: 0;
    right: 44px;
    width: 98px;
    height: 148px;
}

.box.msr > .body > .badge-welcome {
    background: url("/assets/images/account/badge-welcome.png");
}

.box.msr > .body > .badge-green {
    background: url("/assets/images/account/badge-green.png");
}

.box.msr > .body > .badge-gold {
    background: url("/assets/images/account/badge-gold.png");
}

@media (max-width: 640px) {
    .box.msr > .body > .badge {
        display: none;
    }
}

@media (max-width: 640px) {
    .box.msr .details {
        border-radius: 2px;
        padding: 12px 0;
    }
}

.box.msr .summary {
    margin-bottom: 0;
    position: relative;
}

.box.msr .summary p {
    margin: 0;
}

.box.msr .summary .corner {
    bottom: 0px;
    color: #FFF;
    right: 0px;
    margin: 0px;
    position: absolute;
    margin-bottom: 0px;
    text-align: right;
    font-size: 14px;
}

.box.msr .summary .account-info {
    margin: 0 24px;
}

.box.msr .summary .account-info .next {
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 1.67;
}

@media (max-width: 640px) {
    .box.msr .summary .account-info .next {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

.box.msr .summary .account-info .next .star {
    vertical-align: middle;
}

.box.msr .summary .account-info .next .quick-levelup {
    margin-left: 20px;
}

.box.msr .summary .account-info .next .get-drinks {
    background: transparent;
    border: none;
    padding: 0;
    font-weight: 600;
}

.box.msr .summary .account-info .next .level-up {
    color: rgba(0, 0, 0, 0.6);
    font-size: 15px;
}

.box.msr .summary .account-info .next .level-up .body {
    padding: 0 40px;
}

.box.msr .summary .account-info .next .level-up .spaceship {
    margin: 20px auto;
    display: block;
}

.box.msr .summary .account-info .next .level-up .footer {
    margin-top: 30px;
}

.box.msr .summary .account-info .tier-progress-wrapper {
    margin: 45px 20px 72px;
}

.box.msr .summary .account-info .tier-progress {
    position: relative;
    width: 100%;
    height: 14px;
    background: #252525;
}

.box.msr .summary .account-info .tier-progress .tier {
    position: absolute;
    z-index: 2;
    top: -4px;
    margin-left: -11px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #FFF;
    color: #FFF;
}

.box.msr .summary .account-info .tier-progress .tier span {
    position: absolute;
    top: 36px;
    left: -7px;
    white-space: nowrap;
    font-size: 12px;
}

.box.msr .summary .account-info .tier-progress .tier:before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #FFF;
}

.box.msr .summary .account-info .tier-progress .tier-welcome {
    left: 0;
    background: #B5B5B5;
}

.box.msr .summary .account-info .tier-progress .tier-green:before {
    background: #00A862;
}

.box.msr .summary .account-info .tier-progress .tier-gold {
    left: 100%;
}

.box.msr .summary .account-info .tier-progress .tier-gold:before {
    background: #C3A75C;
}

.box.msr .summary .account-info .tier-progress .fill {
    position: absolute;
    top: 4px;
    left: 0;
    height: 6px;
    background: #eceae8;
    border-radius: 12px;
}

.box.msr .summary .account-info .tier-progress .fill.fill-green {
    z-index: 1;
    left: 20%;
    background: #00A862;
}

.box.msr .summary .account-info .tier-progress .star-count {
    position: absolute;
    bottom: 30px;
    width: 110px;
    margin-left: -55px;
    background: #FFF;
    border-radius: 3px;
    text-align: center;
    color: rgba(0, 0, 0, 0.87);
}

.box.msr .summary .account-info .tier-progress .star-count:after {
    content: '';
    position: absolute;
    border-right: 7px solid transparent;
    border-bottom-color: #FFF;
    border-top: 7px solid #FFF;
    border-left: 7px solid transparent;
    bottom: -7px;
    left: calc(50% - 7px);
}

.box.msr .summary .account-info .tier-progress .star-count img {
    margin-left: 1px;
    vertical-align: -1px;
}

.box.msr .summary .account-info .privilege-title {
    margin-top: 16px;
}

.box.msr .summary .account-info .privileges {
    margin-top: 15px;
    margin-bottom: 15px;
}

.box.msr .summary .account-info .privilege {
    display: inline-block;
    margin-right: 24px;
    padding: 0;
    width: 72px;
    vertical-align: top;
    font-size: 12px;
    color: #FFF;
    background: transparent;
    line-height: normal;
    border: none;
    cursor: pointer;
}

.box.msr .summary .account-info .privilege--green .badge {
    background: #b1954c;
}

.box.msr .summary .account-info .privilege--gold .badge {
    background: white;
}

.box.msr .summary .account-info .privilege--green .lock {
    background: #00A862;
}

.box.msr .summary .account-info .privilege--gold .lock {
    background: #b1954c;
}

.box.msr .summary .account-info .privilege--transparent {
    opacity: 0.2;
}

@media (max-width: 640px) {
    .box.msr .summary .account-info .privilege {
        margin-right: 0;
        width: 25%;
    }
}

body.lang-zh .box.msr .summary .account-info .privilege {
    margin-right: 20px;
    white-space: nowrap;
}

@media (max-width: 640px) {
    body.lang-zh .box.msr .summary .account-info .privilege {
        white-space: normal;
    }
}

.box.msr .summary .account-info .badge {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(192, 192, 192, 0.24);
}

.box.msr .summary .account-info .badge .lock {
    position: absolute;
    right: -6px;
    bottom: -6px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.34);
}

.box.msr .summary .account-info .privilege-detail {
    color: rgba(0, 0, 0, 0.87);
}

.box.msr .summary .account-info .privilege-detail h3 {
    font-weight: 600;
}

.box.msr .summary .account-info-welcome .privilege--green .badge {
    background: #616161;
}

.box.msr .summary .account-info-welcome .privilege--gold .badge {
    background: #616161;
}

.box.msr .summary .account-info-green .tier-progress {
    background: #018f54;
}

.box.msr .summary .account-info-green .privilege--green .badge {
    background: #FFF;
}

.box.msr .summary .account-info-green .privilege--gold .badge {
    background: rgba(1, 143, 84, 0.2);
}

.box.msr .summary .account-info-gold .tier-progress-wrapper {
    margin-top: 36px;
    margin-bottom: 32px;
    margin-left: 0;
    display: flex;
    align-items: center;
}

.box.msr .summary .account-info-gold .tier-progress-wrapper .star-count {
    margin-right: 24px;
    font-size: 48px;
    font-weight: bold;
    color: #FFF;
    white-space: nowrap;
}

.box.msr .summary .account-info-gold .tier-progress-wrapper .star-count > small {
    font-size: 30px;
}

.box.msr .summary .account-info-gold .tier-progress-wrapper .star-count > img {
    width: 33px;
    height: 33px;
    margin-left: 8px;
}

.box.msr .summary .account-info-gold .tier-progress {
    background: #6C634C;
    border-radius: 6px;
    vertical-align: middle;
}

@media (max-width: 640px) {
    .box.msr .summary .account-info-gold .tier-progress {
        order: 2;
        margin-top: 8px;
        margin-right: 0;
        width: 100%;
    }
}

.box.msr .summary .account-info-gold .tier-progress .tier {
    display: none;
}

.box.msr .summary .account-info-gold .tier-progress .fill {
    background: #C2A661;
}

@media (max-width: 640px) {
    .box.msr .summary .account-info {
        margin: 0px 0px 6px;
    }

    .box.msr .summary .account-info .gauge {
        margin: 6px 0;
        max-width: 100%;
    }

    .box.msr .summary .corner {
        position: relative;
        text-align: left;
    }
}

.box.activity .amount {
    float: right;
    font-weight: 500;
}

.box.activity .body, .box.my-rewards .body {
    padding: 0px;
}

.box.activity .body .list li, .box.my-rewards .body .list li {
    padding: 12px 24px 12px 60px;
}

.box.svc .header .count, .box.my-rewards .header .count {
    float: right;
}

.box.svc .header .count strong, .box.my-rewards .header .count strong {
    line-height: 100%;
    margin-right: 3px;
}

.box.svc .scroll-wrapper, .box.my-rewards .scroll-wrapper {
    margin-left: -24px;
    margin-right: -24px;
    position: relative;
}

.box.svc .scroll-wrapper .scroll-arrow-left, .box.my-rewards .scroll-wrapper .scroll-arrow-left {
    left: 36px;
}

.box.svc .scroll-wrapper .scroll-arrow-right, .box.my-rewards .scroll-wrapper .scroll-arrow-right {
    right: 36px;
}

.box.svc .scroll-wrapper .scroll-arrow, .box.my-rewards .scroll-wrapper .scroll-arrow {
    margin-top: 8px;
}

.box.svc .scroll-wrapper .scroll-arrow:hover.scroll-arrow-left, .box.my-rewards .scroll-wrapper .scroll-arrow:hover.scroll-arrow-left {
    left: 32px;
}

.box.svc .scroll-wrapper .scroll-arrow:hover.scroll-arrow-right, .box.my-rewards .scroll-wrapper .scroll-arrow:hover.scroll-arrow-right {
    right: 32px;
}

.box.svc .scroll-wrapper .scroll-arrow:active.scroll-arrow-left, .box.my-rewards .scroll-wrapper .scroll-arrow:active.scroll-arrow-left {
    left: 28px;
}

.box.svc .scroll-wrapper .scroll-arrow:active.scroll-arrow-right, .box.my-rewards .scroll-wrapper .scroll-arrow:active.scroll-arrow-right {
    right: 28px;
}

.box.svc .scroll-wrapper .scroll, .box.my-rewards .scroll-wrapper .scroll {
    padding: 0px;
}

.box.svc .scroll-wrapper .scroll .svc-card, .box.my-rewards .scroll-wrapper .scroll .svc-card {
    padding: 0px;
    margin: 0 24px 24px 0;
    min-height: auto;
}

.box.svc .scroll-wrapper .scroll .svc-card .preview, .box.my-rewards .scroll-wrapper .scroll .svc-card .preview {
    min-height: 125px;
    min-width: 200px;
}

.box.svc .scroll-wrapper .scroll .svc-card .preview img, .box.my-rewards .scroll-wrapper .scroll .svc-card .preview img {
    width: 100%;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2), -2px 2px 4px rgba(0, 0, 0, 0.25);
}

.box.svc .scroll-wrapper .scroll .svc-card .preview img,
.box.svc .scroll-wrapper .scroll .svc-card .preview .locked, .box.my-rewards .scroll-wrapper .scroll .svc-card .preview img,
.box.my-rewards .scroll-wrapper .scroll .svc-card .preview .locked {
    border-radius: 10px;
    max-height: 121px;
    max-width: 192px;
}

.box.svc .scroll-wrapper .scroll .svc-card .preview .locked, .box.my-rewards .scroll-wrapper .scroll .svc-card .preview .locked {
    left: 50%;
    transform: translateX(-50%);
}

.box.svc .scroll-wrapper .scroll .svc-card .preview .locked img, .box.my-rewards .scroll-wrapper .scroll .svc-card .preview .locked img {
    display: none;
}

.box.svc .scroll-wrapper .scroll .svc-card:first-child, .box.my-rewards .scroll-wrapper .scroll .svc-card:first-child {
    max-width: 288px;
}

.box.svc .scroll-wrapper .scroll .svc-card:first-child .preview, .box.my-rewards .scroll-wrapper .scroll .svc-card:first-child .preview {
    overflow: inherit;
}

.box.svc .scroll-wrapper .scroll .svc-card:first-child .preview img,
.box.svc .scroll-wrapper .scroll .svc-card:first-child .preview .locked, .box.my-rewards .scroll-wrapper .scroll .svc-card:first-child .preview img,
.box.my-rewards .scroll-wrapper .scroll .svc-card:first-child .preview .locked {
    border-radius: 12px;
    max-height: 181px;
    max-width: 288px;
}

@media (max-width: 640px) {
    .box.svc .scroll-wrapper .scroll .svc-card:first-child, .box.my-rewards .scroll-wrapper .scroll .svc-card:first-child {
        max-width: 216px;
    }

    .box.svc .scroll-wrapper .scroll .svc-card:first-child .preview img,
    .box.svc .scroll-wrapper .scroll .svc-card:first-child .preview .locked, .box.my-rewards .scroll-wrapper .scroll .svc-card:first-child .preview img,
    .box.my-rewards .scroll-wrapper .scroll .svc-card:first-child .preview .locked {
        max-height: 136px;
        max-width: 216px;
    }
}

.box.svc .scroll-wrapper .scroll > *:first-child, .box.my-rewards .scroll-wrapper .scroll > *:first-child {
    margin-left: 24px;
}

.box.welcome-level, .box.green-level, .box.gold-level {
    color: #FFF;
}

.box.welcome-level > .header, .box.green-level > .header, .box.gold-level > .header {
    border-color: rgba(255, 255, 255, 0.3);
}

.box.welcome-level > .header h2, .box.green-level > .header h2, .box.gold-level > .header h2 {
    color: #FFF;
}

.box.welcome-level > .body, .box.green-level > .body, .box.gold-level > .body {
    box-sizing: border-box;
    height: 500px;
    background-position: 80% center;
    background-repeat: no-repeat;
}

.box.welcome-level .counter, .box.green-level .counter, .box.gold-level .counter {
    color: #FFF;
}

.box.welcome-level .controls .link, .box.green-level .controls .link, .box.gold-level .controls .link {
    color: #FFF;
}

@media (max-width: 640px) {
    .box.welcome-level > .body, .box.green-level > .body, .box.gold-level > .body {
        background-image: none !important;
        height: auto !important;
    }
}

.box.gold-level > .body {
    height: 440px;
}

.box.welcome-level {
    background: #3A3A3A;
}

.box.welcome-level > .body {
    background-image: url("/assets/images/account/star-bg-welcome.svg");
}

.box.green-level {
    background: #00A862;
}

.box.green-level > .body {
    background-image: url("/assets/images/account/star-bg-green.svg");
}

.box.green-level .gauge .fill span {
    color: #00A862;
}

.box.green-level .gauge .fill svg g {
    fill: #00A862;
}

.box.green-level .bg img:nth-child(2) {
    display: block;
}

.box.gold-level {
    background: #C2A661;
}

.box.gold-level > .body {
    background-image: url("/assets/images/account/star-bg-new-gold.svg");
    background-position: 340px;
}

.box.gold-level .gauge .fill span {
    color: #C2A661;
}

.box.gold-level .gauge .fill svg g {
    fill: #C2A661;
}

.box.gold-level .gauge .fill span:first-child {
    right: 6px;
}

.box.gold-level .bg img:nth-child(3) {
    display: block;
}

.box.no_svc {
    height: auto;
    display: flex;
}

@media (max-width: 640px) {
    .box.no_svc {
        flex-direction: column;
        height: auto;
    }
}

.box.no_svc > div:first-child {
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box.no_svc > div:first-child img {
    width: 262px;
    height: 165px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

@media (max-width: 640px) {
    .box.no_svc > div:first-child img {
        margin: 30px 0;
    }
}

.box.no_svc > div {
    width: 50%;
}

@media (max-width: 640px) {
    .box.no_svc > div {
        width: 100%;
    }
}

.box.no_svc > div:last-child {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0 10px;
}

.box.no_svc > div:last-child > div {
    width: 90%;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .box.no_svc > div:last-child > div {
        margin: 20px 0;
    }
}

.box.no_svc > div:last-child > div > div > span {
    vertical-align: super;
    color: rgba(0, 0, 0, 0.87);
}

.box.no_svc > div:last-child h4 {
    color: rgba(0, 0, 0, 0.87);
}

.box.no_svc > div:last-child .footer {
    float: right;
    margin-top: 20px;
}

.box.no_svc > div:last-child .footer a:first-child {
    margin-right: 10px;
}

.box.no_svc > div:last-child .footer a {
    margin-bottom: 10px;
}

.box.member-migration {
    height: auto;
    display: flex;
}

@media (max-width: 640px) {
    .box.member-migration {
        flex-direction: column;
        height: auto;
    }
}

.box.member-migration > div:first-child {
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box.member-migration > div:first-child img {
    width: 100%;
    height: 100%;
}

.box.member-migration > div {
    width: 50%;
}

@media (max-width: 640px) {
    .box.member-migration > div {
        width: 100%;
    }
}

.box.member-migration > div:last-child {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0 10px;
}

.box.member-migration > div:last-child > div {
    width: 90%;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .box.member-migration > div:last-child > div {
        margin: 20px 0;
    }
}

.box.member-migration > div:last-child > div > div > span {
    vertical-align: super;
    color: rgba(0, 0, 0, 0.87);
}

.box.member-migration > div:last-child h4 {
    color: rgba(0, 0, 0, 0.87);
}

.box.member-migration > div:last-child .footer {
    float: right;
    margin-top: 20px;
}

.box.member-migration > div:last-child .footer a:first-child {
    margin-right: 10px;
}

.box.member-migration > div:last-child .footer a {
    margin-bottom: 10px;
}

.account-welcome-msr.hero .wrapper {
    padding-bottom: 48px;
}

.account-welcome-msr.hero .wrapper .image {
    max-width: 100%;
    margin-top: 24px;
    margin-bottom: 0px;
    position: relative;
    width: 200px;
}

.account-welcome-msr.hero .wrapper .image img {
    position: absolute;
    width: 192px;
    left: 50%;
    transform: translateX(-50%);
    top: 50%;
    margin-top: -50px;
}

@media (max-width: 640px) {
    .account-welcome-msr.hero {
        display: none;
    }

    .account-welcome-msr.hero .wrapper {
        padding-top: 24px !important;
        padding-bottom: 24px;
    }

    .account-welcome-msr.hero .wrapper .display-2 {
        font-size: 22px;
        font-size: 2.2rem;
        font-weight: 400;
    }
}

@media (max-width: 640px) and (max-width: 640px) {
    .account-welcome-msr.hero .wrapper .display-2 {
        font-size: 20px;
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .account-welcome-msr.hero .wrapper .light {
        display: none;
    }

    .account-welcome-msr.hero .wrapper .image img {
        max-width: 130px;
        top: 50%;
        margin-top: -40px;
        left: 16px;
    }

    .account-welcome-msr .padded-r2 {
        padding-right: 0px;
    }
}

.account-join {
    width: 100%;
    height: auto;
    background: url("../assets/images/account/account-join-bg-2020-06-03.png") no-repeat;
    background-size: cover;
}

@media (max-width: 640px) {
    .account-join {
        display: none;
    }
}

.account-join .wrapper {
    max-width: 720px;
    padding: 40px 0 70px 0;
}

.account-join .padded-r2 {
    padding-right: 0px;
}

.account-join .padded-r2 h2 {
    color: white !important;
}

.account-join .padded-r2 p {
    color: #D8D8D8 !important;
}

.account-join .creat-account {
    text-align: left;
    position: relative;
}

.account-join #create-account {
    border-color: #C2A661 !important;
    color: #C2A661 !important;
}

.svc .dialog .header > h3 {
    text-align: center;
}

.profile_msr .overlay {
    background-color: #f7f7f7;
}

.profile_msr .overlay .flex2 .margin-2 {
    width: 100%;
    border-radius: 2px;
    background-color: #ffffff;
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.14), 0 0 1.5px 0 rgba(0, 0, 0, 0.24);
    padding: 0 20px 40px;
    margin: 0 auto;
    margin-bottom: 20px;
    box-sizing: border-box;
}

@media (max-width: 640px) {
    .profile_msr .overlay .flex2 .margin-2 {
        margin-top: 20px;
    }
}

.profile_msr .overlay .flex2 .margin-2 .select {
    width: 50%;
}

@media (max-width: 640px) {
    .profile_msr .overlay .flex2 .margin-2 .select {
        width: 100%;
    }
}

.profile_msr .overlay .flex2 .margin-2 .field + .field {
    padding-top: 0;
}

.profile_msr .overlay .flex2 > .margin {
    width: 100%;
    border-radius: 2px;
    background-color: #ffffff;
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.14), 0 0 1.5px 0 rgba(0, 0, 0, 0.24);
    padding: 20px;
    margin: 0 auto;
    box-sizing: border-box;
}

.profile_msr .overlay .flex2 > .margin > p:first-child {
    font-size: 14px;
    font-size: 1.4rem;
}

.profile_msr .overlay .flex2 > .margin .field.radios {
    padding-top: 0;
    margin-bottom: 0;
}

.profile_msr .overlay .flex2 > .margin .field.radios label:before {
    margin: 0 8px 0 0;
}

.profile_msr .overlay .flex2 > .margin .field.radios label:after {
    top: 4px;
}

.profile_msr .overlay .flex2 > .margin .field.radios label .card {
    padding-top: 0;
    box-shadow: none;
    color: #3d3935;
    margin-bottom: 0;
}

.profile_msr .overlay .flex2 > .margin .field.radios label .card p:first-child {
    color: rgba(0, 0, 0, 0.87);
}

.profile_msr .overlay .flex2 > .margin .field.radios > div {
    position: relative;
}

.profile_msr .overlay .flex2 > .margin .field.radios > div:after {
    content: '';
    display: block;
    position: absolute;
    left: -20px;
    right: -20px;
    background-color: rgba(0, 0, 0, 0.12);
    height: 1px;
    width: calc(100% + 40px);
}

.profile_msr .overlay .flex2 > .margin p:last-child {
    margin-bottom: 0 !important;
}

.profile_msr .overlay .flex2 > .margin p:last-child > a {
    margin-bottom: 0 !important;
}

.profile_msr .choose-address {
    overflow: hidden;
}

.msr-cards li:last-child {
    padding-bottom: 49px;
}

body.page-help #content {
    /*background-color: #f7f7f7;*/
}

body.page-help #content .hero {
    min-height: 120px;
    margin-bottom: 0;
}

body.page-help #content .hero .hidden {
    display: none;
}

body.page-help #content .image {

    background-position: 50% 50%;
    background-size: cover;
    height: 100%;
    width: 100%;
    position: absolute;
    bottom: 0;
}

body.page-help #content .image:before {
    background-image: linear-gradient(-180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.7) 81%);
    content: '';
    height: 100%;
    position: absolute;
    width: 100%;
}

body.page-help #content h1 {
    margin-bottom: 0;
}

body.page-help #content h2.category {
    color: rgba(0, 0, 0, 0.56);
    padding: 18px 0 24px 0;
}

body.page-help #content .card.colored .title {
    padding: 18px;
    height: auto;
    white-space: initial;
}

body.page-help #content .categories {
    list-style: none;
    margin: 0px;
    padding: 0;
}

body.page-help #content .categories .wrapper {
    padding: 0;
}

body.page-help #content .categories li {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 6px;
    width: 50%;
}

body.page-help #content .categories li .card {
    margin: 0;
    height: 100%;
    box-sizing: border-box;
}

body.page-help #content .categories li div {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

body.page-help #content .categories .icon {
    display: block;
    float: none;
    margin: 0 auto 6px;
    width: 48px;
}

@media (min-width: 1025px) {
    body.page-help #content .hero {
        /*min-height: 240px;*/
    }
}

@media (min-width: 641px) {
    body.page-help #content .category .wrapper {
        padding: 16px;
    }

    body.page-help #content .categories li {
        width: 33.33%;
    }

    body.page-help #content .categories .icon {
        width: 72px;
    }
}

#help-search-results li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

#help-search-results li:last-child {
    border-bottom: none;
}

#topFAQs-list .card {
    margin-bottom: 24px;
}

#topFAQs-list > p {
    margin-bottom: 12px;
}

body.type-products #nav .container .secondary .back {
    display: block;
    margin-left: 0;
    margin-bottom: 0;
}

body.type-products #nav .display-1 {
    display: none !important;
}

@media (max-width: 640px) {
    body.type-products #nav {
        background: none;
        box-shadow: none;
        position: absolute;
        left: 0px;
        top: 0px;
        width: 100%;
    }

    body.type-products #nav .container .secondary .back {
        position: absolute;
        background: #F5F5F5;
    }
}

@media (min-width: 641px) {
    body.type-products #nav .container .secondary .back {
        display: block;
        margin-bottom: 12px;
    }

    body.type-products #nav .display-1 {
        display: block;
    }
}

body.type-products #content {
    padding-top: 0;
    padding-bottom: 0;
    background-color: white;
}

body.type-products #content .bg-light-grey {
    background-color: #FAFAFA;
}

body.type-products #content .product {
    background-size: cover;
    background-position: 50% 50%;
}

body.type-products #content .product::after {
    clear: both;
    content: "";
    display: table;
}

body.type-products #content .product-intro .col-1 {
    box-sizing: border-box;
    padding: 48px 24px 48px 48px;
}

body.type-products #content .product-intro .col-1 img {
    width: 100%;
}

body.type-products #content .product-intro .col-1 .grades {
    box-sizing: border-box;
    display: inline-block;
    padding: 24px 0;
    width: 100%;
}

@media (max-width: 640px) {
    body.type-products #content .product-intro .col-1 {
        width: 100%;
    }
}

body.type-products #content .product-intro .col-2 {
    box-sizing: border-box;
    padding: 48px 48px 48px 24px;
}

@media (max-width: 640px) {
    body.type-products #content .product-intro .col-1,
    body.type-products #content .product-intro .col-2 {
        padding: 0px;
    }

    body.type-products #content .product-intro .col-1 .grades {
        padding: 24px;
    }

    body.type-products #content .product-intro .col-1 img {
        width: 100%;
    }

    body.type-products #content .product-intro .col-2 .section {
        margin: 24px;
    }
}

body.type-products #content .space {
    padding-top: 24px;
    padding-bottom: 24px;
}

body.type-products #content .also {
    padding-bottom: 72px;
}

body.type-products #content .also .scroll-wrapper {
    margin-left: -24px;
    margin-right: -24px;
    position: relative;
}

body.type-products #content .also .scroll-wrapper .wrapper {
    padding-top: 8px;
}

body.type-products #content .also .scroll-wrapper .wrapper .thumbnail {
    width: 132px;
}

body.type-products #content .also .scroll-wrapper .wrapper .thumbnail .preview {
    box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.12);
}

body.type-products #content .also .scroll-wrapper .wrapper .thumbnail:hover .preview {
    box-shadow: 0 1px 3px 2px rgba(0, 0, 0, 0.12);
}

body.type-products #content .also .scroll-wrapper .wrapper .thumbnail:first-child {
    margin-left: 24px;
}

@media (max-width: 640px) {
    body.type-products #content .also {
        padding-left: 0px;
        padding-right: 0px;
    }

    body.type-products #content .also .scroll-wrapper {
        margin-left: 0;
        margin-right: 0;
    }

    body.type-products #content .also .scroll-wrapper .scroll {
        padding-left: 0;
        padding-right: 0;
    }

    body.type-products #content .also .scroll-wrapper .thumbnail:first-child {
        margin-left: 0;
    }
}

body.type-products #content table {
    width: 100%;
}

body.type-products #content table tbody tr {
    border-top: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

body.type-products #content .grades .gauge {
    margin-top: 6px;
}

body.type-products #content .grades .gauge .fill {
    background-image: url(/images/pages/menu-bg-apron.png);
}

body.type-products #content .grades .gauge .fill.mouthfeel-medium, body.type-products #content .grades .gauge .fill.acidity-high {
    background: linear-gradient(to right, #008f53, #00A862);
}

body.type-products #content .grades .gauge .fill.roast-blonde {
    background: linear-gradient(to right, #a58d52, #C2A661);
}

@media (max-width: 640px) {
    body.type-products #content .mobile-h100 {
        height: 100%;
    }

    body.type-products #content .product {
        min-height: 360px;
    }
}

@media (min-width: 641px) {
    body.type-products #content .tablet-min-h100 {
        min-height: 100vh;
    }
}

@media (max-width: 1024px) {
    .page-menu-list {
        padding-bottom: 80px;
    }
}

.page-menu-list .product li .thumbnail .preview {
    box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.12);
}

.page-menu-list .product li .thumbnail:hover .preview {
    box-shadow: 0 1px 3px 2px rgba(0, 0, 0, 0.12);
}

body.page-about-contact #content .section.wrapper {
    padding-top: 16px !important;
}

body.page-about-contact #content .section.wrapper .en-flex {
    flex-direction: column !important;
}

body.page-about-contact #content .card {
    margin-top: 12px;
    margin-bottom: 12px;
}

body.page-about-contact #content .card .caption {
    font-weight: normal;
}

@media (min-width: 641px) {
    body.page-about-contact #content .tablet-margin-r {
        margin-right: 24px;
    }
}

body.page-stores {
    background: #FFF;
}

body.page-stores #nav-overlay {
    min-width: auto;
}

body.page-stores h2 {
    color: rgba(0, 0, 0, 0.87);
    font-weight: bold;
}

body.page-stores #nav {
    position: fixed;
}

@media (max-width: 640px) {
    body.page-stores #nav {
        position: inherit;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    body.page-stores #nav {
        position: relative;
    }
}

body.page-stores.with-open #nav {
    overflow: hidden;
}

body.page-stores #content #map {
    background-color: #f7f7f7;
    left: 0;
    position: fixed;
    right: 0;
    z-index: 0;
}

@media (min-width: 1025px) {
    body.page-stores #content #map {
        bottom: 0;
        top: 0;
        left: 30%;
    }
}

@media (max-width: 1024px) {
    body.page-stores #content #map {
        top: 58px;
        height: 45%;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    body.page-stores #content #map {
        -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.12) inset;
        box-shadow: 0 0 4px rgba(0, 0, 0, 0.12) inset;
        top: 120px;
        height: 45%;
    }
}

@media (max-width: 640px) {
    body.page-stores #content #map {
        /*bottom: 60%; //top: 0;*/
    }
}

body.page-stores #content #map .amap-icon img[src="/assets/icons/icon-map-dot.svg"] {
    -webkit-filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.5));
    filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.5));
}

body.page-stores #content #map .amap-marker-label {
    background-color: transparent;
    border: none;
    padding: 0;
    color: white;
    font-weight: bold;
}

body.page-stores #nav #react-store-locator-nav-overlay {
    position: relative;
    z-index: 1004;
}

@media (min-width: 1025px) {
    body.page-stores #nav #react-store-locator-nav-overlay .overlay.inner {
        height: calc(100% - 96px);
    }
}

body.page-stores #nav .overlay.inner > .container > .header {
    height: 60px;
    padding-bottom: 0px;
}

body.page-stores #nav .filters {
    color: #00A862;
    float: right;
    font-size: 17px;
    font-size: 1.7rem;
    margin-top: 28px;
    line-height: 160%;
}

body.page-stores #nav .filters.active {
    position: relative;
    color: #00A862;
}

body.page-stores #nav .filters.active:before {
    background: #00A862;
    border-radius: 50%;
    content: '';
    height: 8px;
    position: absolute;
    right: -4px;
    width: 8px;
    display: none;
}

body.page-stores #nav .field {
    margin-right: 72px;
    margin-bottom: 8px;
}

@media (max-width: 640px) {
    body.page-stores #nav .field {
        margin-right: 66px;
    }

    body.page-stores #nav .field input ::placeholder, body.page-stores #nav .field input::placeholder {
        font-size: 12px;
        font-size: 1.2rem;
    }

    body.page-stores #nav .field input ::-moz-placeholder, body.page-stores #nav .field input::-moz-placeholder {
        font-size: 12px;
        font-size: 1.2rem;
    }

    body.page-stores #nav .field input :-ms-input-placeholder, body.page-stores #nav .field input:-ms-input-placeholder {
        font-size: 12px;
        font-size: 1.2rem;
    }

    body.page-stores #nav .field input ::-webkit-input-placeholder, body.page-stores #nav .field input::-webkit-input-placeholder {
        font-size: 12px;
        font-size: 1.2rem;
    }
}

body.page-stores #nav > .container .header {
    height: auto;
}

body.page-stores #nav > .container .body {
    background: #FFF;
}

body.page-stores #nav > .container .body .navbar {
    position: relative;
}

@media (max-width: 1024px) {
    body.page-stores #nav > .container .body .navbar .features {
        position: absolute;
        top: 100%;
        background: transparent;
    }
}

body.page-stores #nav > .container .body .navbar .features .button {
    display: inline-flex;
    align-items: center;
    padding-right: 0px;
    margin-right: 6px;
    margin-bottom: 6px;
}

body.page-stores #nav > .container .body .navbar .features .button a {
    margin-left: auto;
    padding: 8px 8px 8px 12px;
}

body.page-stores #nav > .container .body .navbar .features .button a img {
    width: 14px;
    height: 12px;
}

@media (max-width: 1024px) {
    body.page-stores #nav > .container .body .navbar .features .button {
        margin-top: 6px;
        background: #FFF;
        border-color: #FFF;
        color: #00A862;
    }
}

body.page-stores #nav > .container .body #react-store-locator-nav-secondary .navbar .field.search img {
    z-index: 1;
    cursor: pointer;
}

@media (max-width: 640px) {
    body.page-stores #nav > .container .body #react-store-locator-nav-secondary .navbar .field.search img {
        top: 6px;
        width: 22px;
    }
}

body.page-stores #nav > .container .body #react-store-locator-nav-secondary .navbar .field.search input {
    z-index: 0;
}

@media (min-width: 1025px) {
    body.page-stores #nav > .container .body {
        display: block;
        /* let upside header nav expand*/
        /* top: $space*4;*/
        height: auto;
        min-height: 280px;
        max-height: calc(100% - 90px);
        left: 0;
        position: absolute;
        width: 100%;
        overflow-y: auto;
    }

    body.page-stores #nav > .container .body #react-store-locator-nav-secondary {
        height: 100%;
    }

    body.page-stores #nav > .container .body .container {
        display: block;
    }

    body.page-stores #nav > .container .body .container .navbar {
        margin: 24px 0 0 0;
    }

    body.page-stores #nav > .container .body .container .list {
        overflow: auto;
        display: block;
        min-height: 280px;
    }
}

@media (max-width: 1024px) {
    body.page-stores #nav > .container .body {
        bottom: 0;
        left: 0;
        padding: 0;
        overflow: auto;
        position: absolute;
        right: 0;
        top: calc(45% + 70px);
    }

    body.page-stores #nav > .container .body .container .navbar {
        -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.12);
        box-shadow: 0 0 4px rgba(0, 0, 0, 0.12);
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        position: fixed;
        top: 0px;
        left: 0px;
        background: #FFF;
        padding: 16px 16px 8px;
        width: 100%;
        z-index: 997;
    }

    body.page-stores #nav > .container .body .container .navbar .field.search {
        margin-bottom: 0px;
    }

    body.page-stores #nav > .container .body #react-store-locator-nav-secondary {
        height: 100%;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    body.page-stores #nav > .container .body {
        position: fixed;
        bottom: 0;
        top: calc(45% + 132px);
    }

    body.page-stores #nav > .container .body .navbar {
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        top: 65px !important;
    }

    body.page-stores #nav > .container .body .overlay .container .body {
        top: 142px;
        height: calc(100% - 142px);
        overflow-y: scroll;
    }

    body.page-stores #nav > .container .body .overlay .container .body .container {
        height: auto;
    }
}

@media (max-width: 640px) {
    body.page-stores #nav > .container .body {
        bottom: 55px;
    }
}

@media only screen and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
    body.page-stores #nav > .container .body {
        bottom: 70px;
    }
}

body.page-stores #nav > .container .body .list {
    display: inline-block;
    margin: 0 -24px;
    width: calc(100% + 48px);
}

body.page-stores #nav > .container .body .list li {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    font-weight: bold;
    font-size: 15px;
    font-size: 1.5rem;
    padding: 16px 60px;
    position: relative;
    -webkit-transition: all 0.1s ease;
    transition: all 0.1s ease;
    width: 100%;
}

body.page-stores #nav > .container .body .list li small {
    color: rgba(0, 0, 0, 0.56);
    font-weight: normal;
    display: block;
    margin-top: 4px;
    font-size: 14px;
    font-size: 1.4rem;
}

body.page-stores #nav > .container .body .list li img:first-of-type {
    position: absolute;
    right: 24px;
    top: 50%;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}

body.page-stores #nav > .container .body .list li > .delivery {
    margin-left: 8px;
    width: 28px;
    vertical-align: middle;
}

body.page-stores #nav > .container .body .list li > .mop {
    margin-left: 4px;
    width: 40px;
    vertical-align: middle;
}

body.page-stores #nav > .container .body .list li .distance {
    font-weight: normal;
    font-size: 14px;
    font-size: 1.4rem;
}

body.page-stores #nav > .container .body .list li .number {
    position: absolute;
    left: 24px;
    top: 50%;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    width: 24px;
}

body.page-stores #nav > .container .body .list li .number span {
    color: #FFF;
    position: absolute;
    text-align: center;
    width: 100%;
    font-size: 12px;
    font-size: 1.2rem;
    z-index: 1;
}

body.page-stores #nav > .container .body .list li .number img {
    position: relative;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    right: auto;
    top: 0px;
}

body.page-stores #nav > .container .body .list li:hover {
    background: rgba(0, 0, 0, 0.05);
}

body.page-stores #nav > .container .body .list li.active {
    background: rgba(0, 0, 0, 0.12);
}

@media (max-width: 1024px) {
    body.page-stores #nav > .container .body .list {
        margin: 0px;
        width: 100%;
    }

    body.page-stores #nav > .container .body .list li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    }

    body.page-stores #nav > .container .body .list li:last-child {
        border-bottom: none;
    }
}

body.page-stores #nav > .container .body .list.notfound, body.page-stores #nav > .container .body .list.waiting {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    padding: 48px 24px;
}

body.page-stores #nav > .container .body .empty {
    color: rgba(0, 0, 0, 0.38);
}

body.page-stores #nav #overlay-locator-filters {
    min-width: auto;
    overflow-x: hidden;
}

@media (min-width: 1025px) {
    body.page-stores #nav #overlay-locator-filters {
        top: 97px;
        height: calc(100vh - 97px);
    }
}

body.page-stores #nav #overlay-locator-filters #filter-apply-button {
    bottom: 24px;
    position: absolute;
    right: 24px;
    -webkit-transition-duration: 0.1s;
    transition-duration: 0.1s;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
}

@media (max-width: 640px) {
    body.page-stores #nav #overlay-locator-filters #filter-apply-button {
        right: 16px;
        bottom: 16px;
    }
}

body.page-stores #nav #overlay-locator-filters > .container {
    display: table !important;
    padding: 0;
}

@media (max-width: 640px) {
    body.page-stores #nav #overlay-locator-filters > .container > .body {
        position: static;
    }
}

body.page-stores #nav #overlay-locator-filters > .container > .body > .container {
    padding-left: 0px;
    padding-right: 0px;
    display: block;
    overflow-y: auto;
}

@media (max-width: 640px) {
    body.page-stores #nav #overlay-locator-filters > .container > .body > .container {
        display: block;
    }
}

body.page-stores #nav #overlay-locator-filters > .container > .body .header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    padding-top: 0px;
}

body.page-stores #nav #overlay-locator-filters > .container > .body .header .display-1 {
    display: block;
    padding: 0px;
}

body.page-stores #nav #overlay-locator-filters > .container > .body .header .link.reset {
    float: right;
    margin: 12px 2px 0;
}

body.page-stores #nav #overlay-locator-filters > .container > .body .header p.light {
    display: inline-block;
    padding-left: 0;
    padding-bottom: 0;
    padding-right: 0;
    max-width: calc(100% - 5rem);
}

body.page-stores #nav #overlay-locator-filters > .container > .body p.light {
    padding: 12px 16px;
}

@media (min-width: 1025px) {
    body.page-stores #nav #overlay-locator-filters > .container > .body p.light {
        padding: 12px 24px;
    }
}

body.page-stores #nav #overlay-locator-filters > .container > .body a {
    clear: both;
    color: inherit;
    display: block;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 160%;
    opacity: 0.6;
    padding: 16px;
    padding-right: 40px;
    position: relative;
}

body.page-stores #nav #overlay-locator-filters > .container > .body a::after {
    clear: both;
    content: "";
    display: table;
}

@media (min-width: 1025px) {
    body.page-stores #nav #overlay-locator-filters > .container > .body a {
        padding: 24px;
    }
}

body.page-stores #nav #overlay-locator-filters > .container > .body a img {
    float: left;
    margin-right: 6px;
    margin-top: 0;
    width: 24px;
}

body.page-stores #nav #overlay-locator-filters > .container > .body a:hover {
    background: rgba(0, 0, 0, 0.05);
    opacity: 1;
}

body.page-stores #nav #overlay-locator-filters > .container > .body a:after {
    background: url(./icons/icon-checked-green.svg) no-repeat center center;
    content: '';
    height: 24px;
    opacity: 0;
    position: absolute;
    right: 6px;
    /*top: $space/1.5;*/
    margin-top: -12px;
    -webkit-transform: translate(-50%, -50%) scale(0.6);
    transform: translate(-50%, -50%) scale(0.6);
    -webkit-transition-duration: 0.1s;
    transition-duration: 0.1s;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform;
    width: 24px;
}

body.page-stores #nav #overlay-locator-filters > .container > .body a.active {
    /* background: $black-7;*/
    opacity: 1;
}

body.page-stores #nav #overlay-locator-filters > .container > .body a.active:after {
    margin-top: -12px;
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

body.page-stores #nav #overlay-locator-filters > .container > .body .mobile-order-pickup img {
    width: 30px;
}

body.page-stores #nav #overlay-locator-details {
    min-width: auto;
    overflow-x: hidden;
}

@media (min-width: 1025px) {
    body.page-stores #nav #overlay-locator-details {
        top: 97px;
        height: calc(100vh - 97px);
    }
}

body.page-stores #nav #overlay-locator-details > .container {
    display: table !important;
    padding: 0;
}

body.page-stores #nav #overlay-locator-details > .container > .body {
    display: block;
}

@media (max-width: 640px) {
    body.page-stores #nav #overlay-locator-details > .container > .body {
        overflow-y: auto;
        height: calc(100% - 60px);
        top: 60px;
        -webkit-overflow-scrolling: touch;
    }
}

body.page-stores #nav #overlay-locator-details > .container > .body > .container {
    padding: 0 24px;
    display: block;
}

@media (max-width: 640px) {
    body.page-stores #nav #overlay-locator-details > .container > .body > .container {
        display: block;
        height: auto;
    }
}

body.page-stores #nav #overlay-locator-details > .container > .body .display-1 {
    padding-left: 0px;
    padding-right: 0px;
}

body.page-stores #nav #overlay-locator-details > .container > .body img {
    float: left;
    margin: 0 6px 0 0;
}

body.page-stores #nav #overlay-locator-details > .container > .body .directions,
body.page-stores #nav #overlay-locator-details > .container > .body .phone {
    display: block;
    margin-top: 12px;
}

@media (max-width: 1024px) {
    body.page-stores #nav #overlay-locator-details > .container > .body .directions,
    body.page-stores #nav #overlay-locator-details > .container > .body .phone {
        color: #009758;
    }
}

body.page-stores #nav #overlay-locator-details > .container > .body .caption {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    clear: both;
    margin-bottom: 12px;
    margin-top: 24px;
    padding-bottom: 12px;
}

body.page-stores #nav #overlay-locator-details > .container > .body .amenities div {
    float: left;
    width: 50%;
}

body.page-stores #nav #overlay-locator-details > .container > .body .amenities div img,
body.page-stores #nav #overlay-locator-details > .container > .body .amenities div span {
    display: table-cell;
}

body.page-stores #nav #overlay-locator-details > .container > .body .amenities div img {
    width: 24px;
}

body.page-stores #nav #overlay-locator-details > .container > .body .amenities .mobile-order-pickup img {
    width: 30px;
}

body.page-stores #nav #overlay-locator-details > .container > .body .hours {
    font-size: 14px;
    font-size: 1.4rem;
    text-align: right;
}

body.page-stores #nav #overlay-locator-details > .container > .body .hours .day {
    float: left;
}

body.page-stores #nav #overlay-locator-details > .container > .body .hours .active {
    font-weight: bold;
}

@media (max-width: 640px) {
    body.page-stores.lang-zh #nav .field {
        margin-right: 48px;
    }
}

body.page-stores.lang-zh #nav .field input ::placeholder, body.page-stores.lang-zh #nav .field input::placeholder {
    font-size: 16px;
    font-size: 1.6rem;
}

body.page-stores.lang-zh #nav .field input ::-moz-placeholder, body.page-stores.lang-zh #nav .field input::-moz-placeholder {
    font-size: 16px;
    font-size: 1.6rem;
}

body.page-stores.lang-zh #nav .field input :-ms-input-placeholder, body.page-stores.lang-zh #nav .field input:-ms-input-placeholder {
    font-size: 16px;
    font-size: 1.6rem;
}

body.page-stores.lang-zh #nav .field input ::-webkit-input-placeholder, body.page-stores.lang-zh #nav .field input::-webkit-input-placeholder {
    font-size: 16px;
    font-size: 1.6rem;
}

body.page-stores #amap-geolocation-con {
    z-index: 996 !important;
}

.StoreLocatoreContainer {
    height: 100%;
}

@media (min-width: 1024px) {
    .StoreLocatoreContainer > .container {
        min-height: 650px;
    }
}

.StoreLocatorSearchInput > input {
    position: relative;
}

.StoreLocatorSearchInput > .locationOptions {
    background-color: #FFF;
    box-shadow: 0 1px 3px 2px rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
    display: block;
    max-height: 245px;
    opacity: 0;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    pointer-events: none;
    position: absolute;
    transform: translateY(10px);
    transition: all 0.25s ease-out;
    width: 100%;
    top: 100%;
}

.StoreLocatorSearchInput > .locationOptions.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    z-index: 999;
}

.StoreLocatorSearchInput > .locationOptions > li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    color: #000;
    cursor: pointer;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 140%;
    padding: 6px !important;
    transition: 0.35s ease-out;
}

.StoreLocatorSearchInput > .locationOptions > li:hover {
    background: rgba(0, 0, 0, 0.05);
}

.StoreLocatorSearchInput > .locationOptions > li .address {
    color: rgba(0, 0, 0, 0.56);
    font-size: 12px;
    font-size: 1.2rem;
}

.StoreLocatorSearchInput > .locationOptions > li .name,
.StoreLocatorSearchInput > .locationOptions > li .address {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.StoreLocatorSearchInput > img {
    top: auto !important;
    bottom: 6px;
}

.LocationFilterSwitch {
    padding: 0;
    background: none;
    border: none;
    white-space: nowrap;
}

.LocationFilterSwitch:before {
    content: '';
    position: relative;
    top: 4px;
    margin-right: 6px;
    display: inline-block;
    width: 14px;
    height: 18px;
    background: url(./icons/icon-locator-green.svg) no-repeat center/contain;
}

.LocationFilterSwitch span {
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: bottom;
    font-size: 14px;
    font-size: 1.4rem;
}

@media (max-width: 640px) {
    .LocationFilterSwitch span {
        font-size: 12px;
        font-size: 1.2rem;
    }
}

.LocationFilterSwitch:after {
    content: '';
    position: relative;
    top: -1px;
    margin-left: 6px;
    display: inline-block;
    width: 10px;
    height: 8px;
    background: url(./icons/icon-locator-arrow.svg) no-repeat center/contain;
}

.LocationFilterPanel {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 2000;
    box-sizing: border-box;
    width: calc(30vw - 48px);
    max-height: calc(100vh - 200px);
    overflow: auto;
    padding: 16px 19px 21px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.38);
    background: #FFF;
    line-height: normal;
}

@media (max-width: 1024px) {
    .LocationFilterPanel {
        left: -16px;
        width: 100vw;
    }
}

@media (max-height: 600px) {
    .LocationFilterPanel {
        max-height: calc(100vh - 58px);
        overflow-y: scroll;
    }
}

.LocationFilterCurrent {
    margin-bottom: 27px;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.56);
}

.LocationFilterCurrentButton {
    display: inline-block;
    margin-top: 9px;
    padding: 3px 10px;
    background: #FFF;
    border: 1px solid #00A862;
    border-radius: 2px;
    line-height: normal;
    font-size: 14px;
    color: #00A862;
}

.LocationFilterCurrentButton--active {
    background: #00A862;
    color: #FFF;
}

.LocationFilterTabs {
    margin-bottom: 16px;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.56);
}

.LocationFilterTab {
    display: inline;
    margin-left: 4px;
    margin-right: 7px;
    padding: 0;
    background: none;
    border: none;
    line-height: normal;
}

.LocationFilterTab[disabled] {
    cursor: not-allowed;
}

.LocationFilterTab:first-of-type {
    margin-left: 10px;
}

.LocationFilterTab--active {
    color: #00A862;
}

.LocationFilterLocations {
    margin-bottom: 20px;
    line-height: 36px;
}

.LocationFilterGroup {
    display: flex;
}

.LocationFilterGroupName {
    margin-top: 1px;
    margin-right: 13px;
    font-size: 12px;
}

.LocationFilterLocation {
    display: inline-block;
    padding: 3px 10px;
    background: none;
    border: none;
    border-radius: 2px;
    font-size: 14px;
    line-height: normal;
}

.LocationFilterLocation--active {
    background: #00A862;
    color: #FFF;
}

.LocationFilterSubmit {
    float: right;
}

.LocationFilterNotice {
    float: left;
    margin-top: 5px;
    line-height: 160%;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.56);
}

.MapTooltip {
    position: absolute;
    right: 66px;
    bottom: 34px;
    padding: 6px 14px;
    background: #FFF;
    border-radius: 2px;
    box-shadow: 0px 2px 14px rgba(0, 0, 0, 0.26);
    font-size: 13px;
    cursor: pointer;
}

.MapTooltip:before {
    content: '';
    position: absolute;
    border-top: 7px solid transparent;
    border-right-color: #FFF;
    border-left: 7px solid #FFF;
    border-bottom: 7px solid transparent;
    top: 12px;
    right: -7px;
}

.page-apple-watch {
    margin-top: -24px;
}

.page-apple-watch .center {
    margin: 0 auto;
}

.page-apple-watch section .grid-container {
    list-style: none;
    margin: 0;
    padding: 0;
    margin: 60px auto;
}

.page-apple-watch section .grid-container::after {
    clear: both;
    content: "";
    display: table;
}

.page-apple-watch section .grid-container > * {
    box-sizing: border-box;
    clear: none;
    float: left;
    margin: 0;
    padding: 0;
    width: 50%;
}

.page-apple-watch section .grid-container > *:nth-child(2n + 1) {
    clear: left;
}

.page-apple-watch section .grid-container > div {
    display: inline-block;
}

.page-apple-watch section .grid-container .icons .icon {
    display: inline-block;
    height: 32px;
    vertical-align: top;
    width: 32px;
}

.page-apple-watch section .grid-container .icons .icon1 {
    background: url(images/apps/icons/icon1.png) no-repeat;
    background-size: contain;
}

.page-apple-watch section .grid-container .icons .icon2 {
    background: url(images/apps/icons/icon2.png) no-repeat;
    background-size: contain;
    background-position-y: -3px;
}

.page-apple-watch section .grid-container .icons .icon3 {
    background: url(images/apps/icons/icon3.png) no-repeat;
    background-size: contain;
}

.page-apple-watch section .grid-container .image-box {
    padding: 0 0 0 12px;
    box-sizing: border-box;
}

.page-apple-watch section .grid-container .image-box img {
    display: block;
    margin: auto;
    width: 55%;
    min-width: 130px;
}

.page-apple-watch section .grid-container:first-child .image-box img {
    width: 70%;
    min-width: 140px;
}

.page-apple-watch section .grid-container p {
    color: rgba(0, 0, 0, 0.56);
}

.page-apple-watch .hero {
    background-image: linear-gradient(-180deg, #E8E8E8 4%, #F1F1F1 50%, #E8E8E8 100%);
}

.page-apple-watch .hero .caption {
    padding-bottom: 32px;
}

.page-apple-watch .hero p {
    margin: 12px auto 24px auto;
}

.page-apple-watch .hero .udp-apple-app-download-zh,
.page-apple-watch .hero .udp-apple-app-download-en {
    display: block;
    width: 181px;
    height: 64px;
    margin: 0 auto;
    background-size: cover;
}

.page-apple-watch .hero .udp-apple-app-download-zh {
    background: url(/images/udp-ios-cn.svg) no-repeat center center;
}

.page-apple-watch .hero .udp-apple-app-download-en {
    background: url(/images/udp-ios-en.svg) no-repeat center center;
}

.page-apple-watch .hero img {
    display: block;
    margin: 24px auto 0 auto;
    width: 55%;
    min-width: 288px;
}

.page-apple-watch .app-intro p {
    margin: 60px auto -24px auto;
    padding-bottom: 84px;
    background: url("images/apps/apple-watch-intro-bg.png") no-repeat;
    background-size: auto 140px;
    background-position: 95% 100%;
}

.page-apps, .page-apps-delivery {
    background-color: #efebe8;
}

.page-apps .mobile, .page-apps-delivery .mobile {
    display: none;
}

@media (max-width: 640px) {
    .page-apps .mobile, .page-apps-delivery .mobile {
        display: block;
    }
}

.page-apps .desktop, .page-apps-delivery .desktop {
    display: block;
    max-width: 75%;
    margin: 24px auto 60px;
}

@media (max-width: 640px) {
    .page-apps .desktop, .page-apps-delivery .desktop {
        display: none;
    }
}

.page-apps .hero, .page-apps-delivery .hero {
    position: relative;
}

.page-apps .hero .tablet-flex2 p.white, .page-apps-delivery .hero .tablet-flex2 p.white {
    max-width: 250px;
}

@media (max-width: 640px) {
    .page-apps .hero .tablet-flex2 p.white, .page-apps-delivery .hero .tablet-flex2 p.white {
        max-width: 100%;
    }
}

.page-apps #content .padded-x0, .page-apps-delivery #content .padded-x0 {
    padding-left: 0;
    padding-right: 0;
}

.page-apps #content .margin-r-2, .page-apps-delivery #content .margin-r-2 {
    margin-right: 12px;
}

.page-apps #content .margin-t2, .page-apps-delivery #content .margin-t2 {
    margin-top: 48px;
}

.page-apps #content .text, .page-apps-delivery #content .text {
    margin: 24px 0 48px 0;
}

@media (max-width: 640px) {
    .page-apps #content .text, .page-apps-delivery #content .text {
        margin: 0px 0 24px 0;
    }
}

.page-apps #content .hero-intro, .page-apps-delivery #content .hero-intro {
    padding-right: 300px;
    position: relative;
}

@media (max-width: 640px) {
    .page-apps #content .hero-intro, .page-apps-delivery #content .hero-intro {
        padding-right: 0px;
    }
}

.page-apps #content .hero-intro .tablet-flex2, .page-apps-delivery #content .hero-intro .tablet-flex2 {
    margin-top: 0;
    margin-bottom: 0;
    padding-right: 48px;
    box-sizing: border-box;
}

@media (max-width: 640px) {
    .page-apps #content .hero-intro .tablet-flex2, .page-apps-delivery #content .hero-intro .tablet-flex2 {
        padding-right: 0px;
    }
}

.page-apps #content .hero-intro .tablet-flex2.en, .page-apps-delivery #content .hero-intro .tablet-flex2.en {
    margin-top: -15px;
}

@media (max-width: 640px) {
    .page-apps #content .hero-intro .tablet-flex2.en, .page-apps-delivery #content .hero-intro .tablet-flex2.en {
        margin-top: -24px;
    }
}

.page-apps #content .hero-intro .app-links, .page-apps-delivery #content .hero-intro .app-links {
    font-size: 12px;
    margin-bottom: 12px;
}

.page-apps #content .hero-intro .app-links a, .page-apps-delivery #content .hero-intro .app-links a {
    color: white;
}

@media (min-width: 1025px) {
    .page-apps #content .hero-intro .app-links, .page-apps-delivery #content .hero-intro .app-links {
        font-size: 14px;
        margin-bottom: 12px;
    }
}

.page-apps #content .hero-intro .arrow-icon, .page-apps-delivery #content .hero-intro .arrow-icon {
    width: 5px;
    margin-left: 5px;
}

.page-apps #content .hero-intro .mobile-device, .page-apps-delivery #content .hero-intro .mobile-device {
    position: absolute;
    top: 8px;
    right: 0px;
    width: 300px;
    height: 571px;
    z-index: 1;
    margin: 0 auto;
}

.page-apps #content .hero-intro .mobile-device.en, .page-apps-delivery #content .hero-intro .mobile-device.en {
    top: 27px;
}

@media (max-width: 640px) {
    .page-apps #content .hero-intro .mobile-device, .page-apps-delivery #content .hero-intro .mobile-device {
        top: 3px;
        position: relative;
        display: block;
        width: 260px;
        height: 483px;
    }

    .page-apps #content .hero-intro .mobile-device.en, .page-apps-delivery #content .hero-intro .mobile-device.en {
        top: -1px;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .page-apps #content .hero-intro .mobile-device, .page-apps-delivery #content .hero-intro .mobile-device {
        top: -3px;
    }

    .page-apps #content .hero-intro .mobile-device.en, .page-apps-delivery #content .hero-intro .mobile-device.en {
        top: 18px;
    }
}

.page-apps #content .bg-gradient-green, .page-apps-delivery #content .bg-gradient-green {
    z-index: 1;
}

.page-apps #content .bg-gradient-green .starbucks-mobile-top-bg, .page-apps-delivery #content .bg-gradient-green .starbucks-mobile-top-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    z-index: 0;
}

.page-apps #content .bg-gradient-green .starbucks-mobile-top-bg div, .page-apps-delivery #content .bg-gradient-green .starbucks-mobile-top-bg div {
    position: relative;
    background: url(/images/apps-bg-0121.jpg);
    background-position: center;
    background-repeat: repeat-x;
    width: 100%;
    height: 100%;
    z-index: 0;
}

@media (max-width: 640px) {
    .page-apps #content .bg-gradient-green, .page-apps-delivery #content .bg-gradient-green {
        display: inline-block;
        width: 100%;
        margin-top: -24px;
    }

    .page-apps #content .bg-gradient-green .starbucks-mobile-top-bg, .page-apps-delivery #content .bg-gradient-green .starbucks-mobile-top-bg {
        box-sizing: border-box;
        padding-bottom: 271px;
    }

    .page-apps #content .bg-gradient-green .starbucks-mobile-top-bg div, .page-apps-delivery #content .bg-gradient-green .starbucks-mobile-top-bg div {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}

.page-apps #content .min-h16, .page-apps-delivery #content .min-h16 {
    min-height: 384px;
}

.page-apps #content .w-auto, .page-apps-delivery #content .w-auto {
    margin-left: auto;
    margin-right: auto;
}

.page-apps #content .bg-mockup, .page-apps-delivery #content .bg-mockup {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    left: 0;
    top: -20px;
}

.page-apps #content .bg-mockup img, .page-apps-delivery #content .bg-mockup img {
    width: 100%;
}

.page-apps #content .mockup, .page-apps-delivery #content .mockup {
    width: 258px;
    padding: 0px 24px;
    z-index: 2;
}

@media (max-width: 640px) {
    .page-apps #content .mockup, .page-apps-delivery #content .mockup {
        padding: 0px 20px;
        width: 225px;
    }
}

.page-apps #content .stars, .page-apps-delivery #content .stars {
    width: 15%;
}

.page-apps #content .desktop-download, .page-apps-delivery #content .desktop-download {
    position: absolute;
    bottom: -120px;
    left: 24px;
}

@media (max-width: 640px) {
    .page-apps #content .before-star, .page-apps-delivery #content .before-star {
        height: 60px;
    }
}

.page-apps #content .before-star::before, .page-apps-delivery #content .before-star::before {
    content: url(/images/pages/apps-mobile-star.svg);
    margin-right: 12px;
}

.page-apps #content .carousel .slick-prev,
.page-apps #content .carousel .slick-next, .page-apps-delivery #content .carousel .slick-prev,
.page-apps-delivery #content .carousel .slick-next {
    display: block !important;
    border: 0;
    background: url("./icons/icon-arrow.svg") transparent no-repeat center center;
    content: '';
    font-size: 0;
    height: 48px;
    line-height: 0;
    outline: none;
    position: absolute;
    top: 70%;
    margin-top: -25px;
    width: 48px;
    z-index: 1;
    -webkit-transition: all 0.1s ease;
    -moz-transition: all 0.1s ease;
    transition: all 0.1s ease;
    opacity: 0.5;
}

.page-apps #content .carousel .slick-prev, .page-apps-delivery #content .carousel .slick-prev {
    left: 10px;
}

.page-apps #content .carousel .slick-prev:hover, .page-apps-delivery #content .carousel .slick-prev:hover {
    left: 5px;
}

.page-apps #content .carousel .slick-prev:active, .page-apps-delivery #content .carousel .slick-prev:active {
    left: 0px;
}

.page-apps #content .carousel .slick-next, .page-apps-delivery #content .carousel .slick-next {
    right: 10px;
    transform: rotate(180deg);
}

.page-apps #content .carousel .slick-next:hover, .page-apps-delivery #content .carousel .slick-next:hover {
    right: 5px;
}

.page-apps #content .carousel .slick-next:active, .page-apps-delivery #content .carousel .slick-next:active {
    right: 0px;
}

.page-apps #content .screen img, .page-apps-delivery #content .screen img {
    width: 80%;
}

.page-apps #content ul.slick-dots, .page-apps-delivery #content ul.slick-dots {
    margin-top: 12px;
    padding-left: 0;
    padding-right: 24px;
}

.page-apps #content ul.slick-dots li, .page-apps-delivery #content ul.slick-dots li {
    float: left;
    list-style-type: none;
    width: 25%;
    cursor: pointer;
}

.page-apps #content .paragraph-wrapper, .page-apps-delivery #content .paragraph-wrapper {
    max-width: 432px;
}

.page-apps #content .carousel-option, .page-apps-delivery #content .carousel-option {
    border-bottom: solid 1px rgba(0, 0, 0, 0.12);
}

.page-apps #content .carousel-option .caption, .page-apps-delivery #content .carousel-option .caption {
    color: rgba(0, 0, 0, 0.26);
}

.page-apps #content .carousel-option img, .page-apps-delivery #content .carousel-option img {
    filter: grayscale(1);
    max-width: 30px;
    opacity: 0.5;
}

.page-apps #content .carousel-option:hover,
.page-apps #content .slick-active .carousel-option, .page-apps-delivery #content .carousel-option:hover,
.page-apps-delivery #content .slick-active .carousel-option {
    border-bottom: solid 2px #00A862;
}

.page-apps #content .carousel-option:hover .caption,
.page-apps #content .slick-active .carousel-option .caption, .page-apps-delivery #content .carousel-option:hover .caption,
.page-apps-delivery #content .slick-active .carousel-option .caption {
    color: #000;
}

.page-apps #content .carousel-option:hover img,
.page-apps #content .slick-active .carousel-option img, .page-apps-delivery #content .carousel-option:hover img,
.page-apps-delivery #content .slick-active .carousel-option img {
    filter: grayscale(0);
    opacity: 1;
}

.page-apps #content .bg-circle, .page-apps-delivery #content .bg-circle {
    top: 35%;
    z-index: -1;
    width: 90%;
}

.page-apps #content .caption.w-auto, .page-apps-delivery #content .caption.w-auto {
    min-height: 72px;
}

.page-apps #content a.link, .page-apps-delivery #content a.link {
    font-weight: 400;
}

.page-apps #content a:hover svg #download, .page-apps-delivery #content a:hover svg #download {
    fill: #000;
}

.page-apps #content .download-background, .page-apps-delivery #content .download-background {
    position: absolute;
    bottom: -440px;
    width: 321px;
    height: 289px;
    z-index: -1;
    left: 0%;
    display: block;
}

@media (max-width: 640px) {
    .page-apps #content .download-background, .page-apps-delivery #content .download-background {
        display: none;
    }
}

@media (min-width: 1025px) {
    .page-apps #content .download-background, .page-apps-delivery #content .download-background {
        left: -18%;
    }
}

.page-apps #content .starbucks-mobile-carousel-wrapper, .page-apps-delivery #content .starbucks-mobile-carousel-wrapper {
    margin-top: 250px;
    position: relative;
    padding-bottom: 30px;
}

@media (max-width: 640px) {
    .page-apps #content .starbucks-mobile-carousel-wrapper, .page-apps-delivery #content .starbucks-mobile-carousel-wrapper {
        margin-top: 50px;
    }
}

.page-apps #content .starbucks-mobile-carousel-wrapper .starbucks-mobile-carousel-br, .page-apps-delivery #content .starbucks-mobile-carousel-wrapper .starbucks-mobile-carousel-br {
    display: none;
    width: 214px;
    height: 188px;
    position: absolute;
    bottom: 25px;
    right: 0px;
}

@media (max-width: 640px) {
    .page-apps #content .starbucks-mobile-carousel-wrapper .starbucks-mobile-carousel-br, .page-apps-delivery #content .starbucks-mobile-carousel-wrapper .starbucks-mobile-carousel-br {
        display: none;
    }
}

@media (min-width: 1025px) {
    .page-apps #content .starbucks-mobile-carousel-wrapper .starbucks-mobile-carousel-br, .page-apps-delivery #content .starbucks-mobile-carousel-wrapper .starbucks-mobile-carousel-br {
        right: -80px;
    }
}

.page-apps #content .starbucks-mobile-carousel-wrapper .relative, .page-apps-delivery #content .starbucks-mobile-carousel-wrapper .relative {
    max-width: 890px;
    position: relative;
    margin: 0 auto;
}

.page-apps #content .starbucks-mobile-carousel, .page-apps-delivery #content .starbucks-mobile-carousel {
    max-width: 890px;
    margin: 0 auto;
    background-image: url(/images/pages/apps-mobile-circle.svg);
    background-repeat: no-repeat;
    background-position: 50% calc(100% - 100px);
    background-size: contain;
    padding-top: 300px;
    padding-bottom: 120px;
}

@media (max-width: 640px) {
    .page-apps #content .starbucks-mobile-carousel, .page-apps-delivery #content .starbucks-mobile-carousel {
        padding-top: 250px;
    }
}

.page-apps #content .starbucks-mobile-carousel .slick-dots, .page-apps-delivery #content .starbucks-mobile-carousel .slick-dots {
    position: absolute;
    top: 160px;
    left: 0;
    right: 0;
}

@media (max-width: 640px) {
    .page-apps #content .starbucks-mobile-carousel .slick-dots, .page-apps-delivery #content .starbucks-mobile-carousel .slick-dots {
        top: 60px;
    }
}

.page-apps #content .starbucks-mobile-carousel:before, .page-apps-delivery #content .starbucks-mobile-carousel:before {
    background-color: #f7f7f7;
    z-index: -1;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

@media (max-width: 640px) {
    .page-apps #content .starbucks-mobile-carousel:before, .page-apps-delivery #content .starbucks-mobile-carousel:before {
        bottom: 15px;
    }
}

@media (min-width: 641px) {
    .page-apps #content .starbucks-mobile-carousel:before, .page-apps-delivery #content .starbucks-mobile-carousel:before {
        bottom: 81px;
    }
}

@media (min-width: 641px) {
    .page-apps #content .bg-gradient-green::before, .page-apps-delivery #content .bg-gradient-green::before {
        height: 45%;
    }

    .page-apps #content .stars, .page-apps-delivery #content .stars {
        width: 35%;
    }

    .page-apps #content .tablet-margin-l1, .page-apps-delivery #content .tablet-margin-l1 {
        margin-left: 24px;
    }

    .page-apps #content .mobile-download, .page-apps-delivery #content .mobile-download {
        position: absolute;
        bottom: -44px;
        left: 12px;
        margin: 0px;
    }

    .page-apps #content .bg-circle, .page-apps-delivery #content .bg-circle {
        top: 25%;
        z-index: -1;
        width: 90%;
    }

    .page-apps #content .caption.w-auto, .page-apps-delivery #content .caption.w-auto {
        min-height: 48px;
    }

    .page-apps #content .tablet-min-h22, .page-apps-delivery #content .tablet-min-h22 {
        min-height: 528px;
    }
}

.page-apps #content .hero-intro .tablet-flex2 p.white {
    max-width: initial;
}

.page-apps #content .bg-gradient-green {
    z-index: 1;
}

.page-apps #content .bg-gradient-green .starbucks-mobile-top-bg-app {
    position: absolute !important;
    width: 100%;
    height: 100%;
    left: 0px;
    position: relative;
    background: url(/images/starbuck-mobile-background-top.jpg) no-repeat;
    background-position: center;
    background-size: cover;
}

@media (max-width: 640px) {
    .page-apps #content .bg-gradient-green .starbucks-mobile-top-bg-app {
        height: calc(100% - 271px);
        background: url(/images/starbuck-mobile-background-mobile.jpg) no-repeat;
        background-size: cover;
        background-position: center;
    }
}

.page-apps #content .hero-intro .mobile-device {
    top: -20px;
}

@media (max-width: 640px) {
    .page-apps #content .hero-intro .mobile-device {
        top: -1px;
    }
}

.lang-en.page-apps #content .bg-gradient-green::before {
    height: 44%;
}

.lang-en.page-apps #content .hero-intro .mobile-device {
    top: -8px;
}

@media (max-width: 640px) {
    .lang-en.page-apps #content .hero-intro .mobile-device {
        top: 3px;
    }
}

.lang-en.page-apps #content .paragraph-wrapper {
    max-width: 528px;
}

@media (max-width: 640px) {
    .lang-en.page-apps #content .paragraph-wrapper {
        height: 150px;
    }

    .lang-en.page-apps #content .carousel-option .caption {
        min-height: 60px;
    }
}

@media (min-width: 641px) {
    .lang-en.page-apps #content .bg-gradient-green::before {
        height: 30%;
    }

    .lang-en.page-apps #content .paragraph-wrapper {
        height: 100px;
    }
}

@media (min-width: 1025px) {
    .lang-en.page-apps #content .bg-gradient-green::before {
        height: 40%;
    }

    .lang-en.page-apps #content .mobile-download {
        bottom: 16%;
    }

    .lang-en.page-apps #content .paragraph-wrapper {
        height: 80px;
    }
}

#android .android-instrunction-notes {
    font-size: 17px;
    font-size: 1.7rem;
    color: rgba(0, 0, 0, 0.56);
}

#android .qa-instruction-notes {
    font-size: 14px;
    font-size: 1.4rem;
    color: rgba(0, 0, 0, 0.87);
    opacity: 0.56;
}

@media (max-width: 640px) {
    #android .app-cta-button {
        margin-bottom: 50px;
    }
}

.lang-zh.page-apps #content .bg-mockup {
    bottom: 31px;
}

@media (max-width: 640px) {
    .lang-zh.page-apps #content .bg-mockup {
        top: -16px;
        bottom: 25px;
    }
}

.lang-zh.page-apps #content .bg-gradient-green::before {
    height: 44%;
}

@media (max-width: 640px) {
    .lang-zh.page-apps #content .carousel-option .caption {
        min-height: 60px;
    }
}

.page-apps #content .bg-gradient-green .wrapper > .caption, .page-apps #content .page-apple-watch .wrapper > .caption, .page-apps-watch #content .bg-gradient-green .wrapper > .caption, .page-apps-watch #content .page-apple-watch .wrapper > .caption {
    display: none;
}

.page-apps-delivery #content .bg-gradient-green .starbucks-mobile-top-bg {
    padding-bottom: 0;
}

.page-apps-delivery #content .starbucks-mobile-carousel {
    padding-top: 220px;
}

.page-apps-delivery #content .starbucks-mobile-carousel .slick-dots {
    top: 40px;
}

.page-apps-delivery #content .starbucks-mobile-carousel-wrapper {
    margin-top: 0;
    padding-top: 0;
}

.page-apps-delivery #content .hero h1 {
    margin-top: 12px;
    margin-bottom: 90px;
}

.page-apps-delivery #content .mobile-download {
    bottom: 50px;
}

.account_app h2 {
    color: rgba(0, 0, 0, 0.87);
}

.account_app .dialog .dialog-box h3 {
    text-align: center;
}

.account_app #gold-level-redeem-rights .gold-level-redeem-right {
    margin-top: 68px;
    margin-bottom: 0 !important;
    box-shadow: none;
    padding: 0;
}

.account_app #gold-level-redeem-rights .gold-level-redeem-right .star-list {
    padding: 0 86px;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.25);
}

.account_app #gold-level-redeem-rights .gold-level-redeem-right .content-wrapper {
    padding: 0 86px;
}

.account_app #gold-level-redeem-rights .gold-level-redeem-right .content-wrapper .title {
    color: #C2A661;
    text-align: left;
    margin-left: 0;
}

.account_app #gold-level-redeem-rights .gold-level-redeem-right .content-wrapper .content-image img {
    margin-top: 0;
}

@media screen and (max-width: 560px) {
    .account_app #gold-level-redeem-rights .gold-level-redeem-right {
        margin-top: 32px;
    }

    .account_app #gold-level-redeem-rights .gold-level-redeem-right .star-list {
        padding: 12px;
    }

    .account_app #gold-level-redeem-rights .gold-level-redeem-right .content-wrapper {
        padding: 12px;
    }

    .account_app #gold-level-redeem-rights .gold-level-redeem-right .content-wrapper .more {
        top: 0;
    }

    .account_app #gold-level-redeem-rights .gold-level-redeem-right .content-wrapper .content-image img {
        margin-top: 35px;
    }
}

.account_app .redeem-right-for-website {
    background-color: #FFFFFF;
    margin-top: 68px;
    margin-bottom: 0 !important;
    box-shadow: none;
    padding: 0 0 0 0;
}

.account_app .redeem-right-for-website .star-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0 20px;
    border-bottom: 1px solid #e8ebea;
}

.account_app .redeem-right-for-website .star-list li {
    flex: 1;
    margin-bottom: -1px;
    padding: 0 44px;
    text-align: center;
}

.account_app .redeem-right-for-website .star-list li.active p {
    border-bottom: 4px solid #006441;
}

.account_app .redeem-right-for-website .star-list li .image {
    width: auto;
    height: 67px;
}

.account_app .redeem-right-for-website .star-list li p {
    padding-bottom: 8px;
    margin-bottom: 0;
    font-size: 22px;
}

.account_app .redeem-right-for-website .star-list li p img {
    height: 18px;
    width: 18px;
    margin-left: 4px;
}

@media screen and (max-width: 560px) {
    .account_app .redeem-right-for-website .star-list {
        padding: 0;
    }

    .account_app .redeem-right-for-website .star-list li {
        padding: 0;
    }

    .account_app .redeem-right-for-website .star-list li .image {
        width: auto;
        height: 37px;
    }

    .account_app .redeem-right-for-website .star-list li.active p {
        border-bottom: 2px solid #006441;
    }

    .account_app .redeem-right-for-website .star-list li p {
        font-size: 18px;
    }

    .account_app .redeem-right-for-website .star-list li p img {
        height: 14px;
        width: 14px;
        margin-left: 4px;
    }
}

.account_app .redeem-right-for-website .content-wrapper {
    position: relative;
    display: flex;
    background-color: #EBF3F5;
    padding: 0 80px 0 86px;
}

@media (max-width: 640px) {
    .account_app .redeem-right-for-website .content-wrapper {
        padding: 0 20px;
    }
}

.account_app .redeem-right-for-website .content-wrapper::before {
    content: ' ';
    position: absolute;
    top: -3px;
    left: 0;
    width: 100%;
    height: 1px;
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.55);
}

.account_app .redeem-right-for-website .content-wrapper .content-left {
    flex: 1;
    margin-top: 72px;
    min-width: 0;
    padding-right: 70px;
}

@media (max-width: 640px) {
    .account_app .redeem-right-for-website .content-wrapper .content-left {
        margin-top: 46px;
    }
}

.account_app .redeem-right-for-website .content-wrapper .content-left .title {
    margin: 0 0 16px 0;
    text-align: left;
    color: #32433d;
    font-size: 22px;
    font-weight: bold;
    line-height: 36px;
}

.account_app .redeem-right-for-website .content-wrapper .content-left .text {
    width: 370px;
    line-height: 24px;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.56);
}

.account_app .redeem-right-for-website .content-wrapper .content-left .more {
    position: absolute;
    bottom: 42px;
    font-size: 16px;
    color: #00a862;
}

.account_app .redeem-right-for-website .content-wrapper .content-left .more img {
    width: 14px;
    height: 14px;
}

.account_app .redeem-right-for-website .content-wrapper .content-image {
    flex: 0 0 320px;
    text-align: center;
}

.account_app .redeem-right-for-website .content-wrapper .content-image img {
    height: auto;
    width: 100%;
}

@media screen and (max-width: 560px) {
    .account_app .redeem-right-for-website .content-wrapper .content-left {
        padding-right: 20px;
    }

    .account_app .redeem-right-for-website .content-wrapper .content-left .title {
        font-size: 18px;
        line-height: 24px;
    }

    .account_app .redeem-right-for-website .content-wrapper .content-left .text {
        width: 100%;
        font-size: 14px;
    }

    .account_app .redeem-right-for-website .content-wrapper .content-left .more {
        bottom: 0;
        font-size: 14px;
    }

    .account_app .redeem-right-for-website .content-wrapper .content-left .more img {
        height: 10px;
        width: 10px;
    }

    .account_app .redeem-right-for-website .content-wrapper .content-image {
        flex: 0 0 100px;
    }

    .account_app .redeem-right-for-website .content-wrapper .content-image img {
        margin-top: 75px;
    }
}

.account_app .gold-level-redeem-right {
    background-color: transparent;
    box-shadow: 0 3px 3px -3px rgba(0, 0, 0, 0.12);
    padding: 42px 42px 0 42px;
}

.account_app .gold-level-redeem-right .star-list {
    display: flex;
    list-style: none;
    margin: 0;
    border-bottom: 1px solid #e8ebea;
}

.account_app .gold-level-redeem-right .star-list li {
    flex: 1;
    margin-bottom: -1px;
    text-align: center;
}

.account_app .gold-level-redeem-right .star-list li.active {
    border-bottom: 2px solid #1e3932;
}

.account_app .gold-level-redeem-right .star-list li .image {
    width: auto;
    height: 56px;
}

.account_app .gold-level-redeem-right .star-list li p {
    margin-bottom: 8px;
}

.account_app .gold-level-redeem-right .star-list li p img {
    margin-left: 4px;
}

@media screen and (max-width: 560px) {
    .account_app .gold-level-redeem-right {
        padding: 20px;
    }

    .account_app .gold-level-redeem-right .star-list li .image {
        width: auto;
        height: 37px;
    }
}

.account_app .gold-level-redeem-right .content-wrapper {
    position: relative;
    display: flex;
    margin-top: 40px;
}

.account_app .gold-level-redeem-right .content-wrapper .content-left {
    flex: 1;
    min-width: 0;
}

.account_app .gold-level-redeem-right .content-wrapper .content-left .title {
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: bold;
}

.account_app .gold-level-redeem-right .content-wrapper .content-left .text {
    line-height: 20px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.56);
}

.account_app .gold-level-redeem-right .content-wrapper .content-left .more {
    position: absolute;
    bottom: 42px;
    font-size: 16px;
    color: #00a862;
}

.account_app .gold-level-redeem-right .content-wrapper .content-left .more img {
    width: 14px;
    height: 14px;
}

.account_app .gold-level-redeem-right .content-wrapper .content-image {
    flex: 0 0 200px;
    text-align: center;
}

.account_app .gold-level-redeem-right .content-wrapper .content-image img {
    height: auto;
    width: 100%;
}

@media screen and (max-width: 560px) {
    .account_app .gold-level-redeem-right .content-wrapper .content-left {
        padding-right: 20px;
    }

    .account_app .gold-level-redeem-right .content-wrapper .content-left .more {
        bottom: 0;
    }

    .account_app .gold-level-redeem-right .content-wrapper .content-image {
        flex: 0 0 100px;
    }

    .account_app .gold-level-redeem-right .content-wrapper .content-image img {
        margin-top: 75px;
    }
}

.account_app .dashboard .field.checkbox {
    margin-top: 0px;
}

.account_app .dashboard .rewards table {
    width: 100%;
}

.account_app .dashboard .rewards table tr {
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.account_app .dashboard .rewards table tr td:first-child {
    text-align: center;
}

.account_app .dashboard .rewards table tr td {
    height: 100px;
    font-size: 14px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.87);
}

.account_app .dashboard .rewards table tr td b {
    font-size: 19px;
    color: #000;
}

.account_app .dashboard .activity table {
    width: 100%;
}

.account_app .dashboard .activity table tr {
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.account_app .dashboard .activity table tr td:first-child {
    text-align: center;
}

.account_app .dashboard .activity table tr td {
    height: 100px;
    font-size: 14px;
    line-height: 20px;
    color: rgba(0, 0, 0, 0.56);
}

.account_app .dashboard .activity table tr td b {
    font-size: 19px;
}

.account_app .dashboard footer a {
    width: 100%;
    text-align: right;
}

.account_app .profile {
    margin: 0 auto;
}

.account_app .profile_index ul {
    margin: -24px 0;
    padding: 0;
    list-style: none;
}

.account_app .profile_index ul li {
    margin: 0px;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.account_app .profile_index ul li a {
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.87);
    display: inline-block;
    position: relative;
    padding: 36px 96px 36px 24px;
    line-height: 140%;
    box-sizing: border-box;
    width: 100%;
}

.account_app .profile_index ul li a img {
    position: absolute;
    right: 24px;
    max-width: 48px;
    max-height: 48px;
    top: 50%;
    margin-top: -18px;
}

.account_app .profile_index ul li a small {
    color: rgba(0, 0, 0, 0.38);
    font-size: 14px;
    font-size: 1.4rem;
}

.account_app .profile_index ul li p {
    color: rgba(0, 0, 0, 0.56);
    padding: 0 96px 0 24px;
}

.account_app .profile_index ul li:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: rgba(0, 0, 0, 0.56);
}

@media (max-width: 1024px) {
    .account_app .profile_index ul li a {
        padding: 24px 84px 24px 24px;
        background: url(./icons/icon-right-arrow-gray.svg) no-repeat calc(100% - 24px) center;
        background-size: 10px;
    }

    .account_app .profile_index ul li a img {
        right: 48px;
    }
}

.account_app .profile_activity {
    text-align: center;
}

.account_app .profile_activity .dialog {
    text-align: left;
}

.account_app .profile_activity .transaction_table {
    box-sizing: border-box;
    width: 100%;
    line-height: 24px;
}

@media (max-width: 640px) {
    .account_app .profile_activity .transaction_table tr td:first-child,
    .account_app .profile_activity .transaction_table tr td:last-child {
        display: none;
    }

    .account_app .profile_activity .transaction_table tr td:nth-child(2) {
        font-size: 1.2rem;
    }

    .account_app .profile_activity .transaction_table tr td:nth-child(3) {
        width: 45%;
    }
}

.account_app .profile_activity .transaction_table thead td {
    text-transform: uppercase;
    white-space: nowrap;
}

.account_app .profile_activity .transaction_table tbody tr {
    cursor: pointer;
}

.account_app .profile_activity .transaction_table tbody td {
    height: 72px;
    cursor: pointer;
}

.account_app .profile_activity .transaction_table tbody td h4 {
    margin-bottom: 0px;
}

.account_app .profile_activity .transaction_table tbody td.amount {
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: 400;
    font-weight: bold;
}

@media (max-width: 640px) {
    .account_app .profile_activity .transaction_table tbody td.amount {
        font-size: 20px;
        font-size: 2rem;
    }
}

.account_app .profile_activity .transaction_table tbody td:first-child,
.account_app .profile_activity .transaction_table tbody td:last-child {
    text-align: center;
    width: 48px;
}

.account_app .profile_activity .transaction_table tbody td:first-child img,
.account_app .profile_activity .transaction_table tbody td:last-child img {
    margin-top: 6px;
}

.account_app .profile_activity .transaction_table tbody td:first-child img {
    width: 28px;
}

.account_app .profile_activity .transaction_table tbody td:last-child img {
    width: 22px;
}

.account_app .profile_activity .star-select {
    display: block;
    margin-bottom: 10px;
    width: 150px;
}

.account_app .profile_activity .star-table {
    width: 100%;
    line-height: 24px;
    cursor: default;
}

.account_app .profile_activity .star-table td:nth-child(2) {
    font-size: 13px;
    text-align: left;
}

.account_app .profile_activity .star-table td:nth-child(2) h4 {
    margin-bottom: 0;
}

.account_app .profile_activity .star-table td:nth-child(3) {
    font-size: 20px;
    font-weight: bold;
    white-space: nowrap;
}

.account_app .profile_activity .star-table td:last-child {
    width: 35px;
}

.account_app .profile_activity .star-table .transaction-detail {
    cursor: pointer;
}

@media (max-width: 640px) {
    .account_app .profile_activity .star-table td:nth-child(1) {
        display: none;
    }
}

.account_app .profile_activity .star-table .points {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.account_app .profile_activity .star-table .points-wrapper {
    display: flex;
    align-items: center;
}

.account_app .profile_activity .star-table .points-wrapper p {
    width: 100px;
    text-align: right;
    margin: 0;
}

.account_app .profile_activity .star-table .points-wrapper:nth-of-type(1) p {
    font-size: 20px !important;
}

.account_app .profile_activity .star-table .points-wrapper span {
    transform: translateY(1px);
    margin-left: 5px;
}

.account_app .profile_activity .star-table .points-wrapper:nth-of-type(2) p {
    font-size: 16px;
    font-weight: normal;
    color: #c2a661;
}

.account_app .profile_activity .star-table .points-wrapper:nth-of-type(2) span {
    position: relative;
    top: -2px;
}

.account_app .profile_activity .collapsible + .collapsible {
    margin-top: 20px;
}

.account_app .profile_activity .load-more {
    margin-top: 30px;
}

.account_app .profile_activity .star, .account_app .profile_activity .shadow-star {
    display: inline-block;
    width: 14px;
    height: 24px;
    vertical-align: text-bottom;
    margin-left: 4px;
}

.account_app .profile_activity .star {
    background: url("/assets/icons/icon-star-new-gold.svg") no-repeat center;
}

.account_app .profile_activity .shadow-star {
    background: url("/assets/icons/icon-star-shadow-gold.svg") no-repeat center;
}

.account_app .profile_activity .dialog .dialog-box {
    overflow: hidden;
    width: 100%;
    max-width: 540px;
}

.account_app .profile_activity .dialog .dialog-box h3 {
    font-size: 20px;
    font-weight: bold;
}

.account_app .profile_activity .dialog .dialog-box .body {
    padding: 0 54px;
}

.account_app .profile_activity .dialog .dialog-box .body .amount {
    font-size: 26px;
    line-height: 24px;
    margin-bottom: 17px;
    color: rgba(0, 0, 0, 0.87);
}

.account_app .profile_activity .dialog .dialog-box .body .store {
    font-size: 14px;
    line-height: 24px;
}

.account_app .profile_activity .dialog .dialog-box .body .date {
    font-size: 14px;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.56);
}

.account_app .profile_activity .dialog .dialog-box .body .products {
    width: 100%;
}

.account_app .profile_activity .dialog .dialog-box .body .products tr {
    font-size: 17px;
    border: none;
}

.account_app .profile_activity .dialog .dialog-box .body .products tr td:first-child {
    font-weight: bold;
    width: 55%;
}

.account_app .profile_activity .dialog .dialog-box .body .products tr td:last-child {
    text-align: right;
}

.account_app .profile_activity .dialog .dialog-box .body .earned-stars {
    text-align: right;
    font-size: 14px;
}

.account_app .profile_activity .dialog .dialog-box .body .earned-stars p {
    margin: 0;
    display: flex;
    justify-content: flex-end;
}

.account_app .profile_activity .dialog .dialog-box .body .earned-stars p .star {
    margin-top: 6px;
}

.account_app .profile_activity .dialog .dialog-box .body .earned-stars p:last-child {
    color: #c2a661;
}

.account_app .profile_activity .dialog .dialog-box .body .earned-stars p:only-child {
    color: black;
}

.account_app .profile_activity .dialog .dialog-box .body .earned-stars p span.star, .account_app .profile_activity .dialog .dialog-box .body .earned-stars p span.shadow-star {
    flex: 0 0 14px;
    height: 14px;
    transform: translateY(-1px);
    margin-right: 5px;
    margin-top: 6px;
}

.account_app .profile_activity .dialog .dialog-box .body .date-end-description {
    margin: 0;
    margin-top: 32px;
    width: 100%;
    color: #626262;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: PingFangSC-Regular;
}

.account_app .profile_activity .dialog .dialog-box .body .date-end-description.en {
    font-family: "Gotham", Helvetica, Arial, PingFangSC-Regular, "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
    text-align: left;
    position: relative;
}

.account_app .profile_activity .dialog .dialog-box .body .date-end-description.en .shadow-star {
    position: absolute;
    left: -20px;
    top: 6px;
}

.account_app .profile_activity .dialog .dialog-box .body .date-end-description span.shadow-star {
    width: 14px;
    height: 14px;
    transform: translateY(-1px);
    margin-right: 5px;
}

.account_app .profile_activity .dialog .dialog-box .body .redeem {
    font-size: 14px;
    color: #C2A661;
}

@media (max-width: 640px) {
    .account_app .profile_activity .dialog .dialog-box {
        overflow: hidden;
        width: 90%;
        max-width: 540px;
    }

    .account_app .profile_activity .dialog .dialog-box h3 {
        font-size: 14px;
        font-weight: bold;
    }

    .account_app .profile_activity .dialog .dialog-box .body {
        padding: 0 5px;
    }

    .account_app .profile_activity .dialog .dialog-box .body .amount {
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 17px;
        color: rgba(0, 0, 0, 0.87);
    }

    .account_app .profile_activity .dialog .dialog-box .body .store {
        font-size: 12px;
        line-height: 18px;
    }

    .account_app .profile_activity .dialog .dialog-box .body .date {
        font-size: 12px;
        line-height: 18px;
        color: rgba(0, 0, 0, 0.56);
    }

    .account_app .profile_activity .dialog .dialog-box .body .products {
        width: 100%;
    }

    .account_app .profile_activity .dialog .dialog-box .body .products tr {
        font-size: 14px;
        border: none;
    }

    .account_app .profile_activity .dialog .dialog-box .body .products tr td:first-child {
        font-weight: bold;
        width: 40%;
    }

    .account_app .profile_activity .dialog .dialog-box .body .products tr td:last-child {
        text-align: right;
    }

    .account_app .profile_activity .dialog .dialog-box .body .products tr .dashed_line {
        width: 29%;
    }

    .account_app .profile_activity .dialog .dialog-box .body .products tr .dashed_line div {
        width: 100%;
        height: 1px;
        border-bottom: 1px dashed rgba(0, 0, 0, 0.12);
    }
}

@media screen and (max-width: 640px) and (max-width: 320px) {
    .account_app .profile_activity .dialog .dialog-box .body .products tr .dashed_line {
        width: 22%;
    }
}

.account_app .profile_activity .tips {
    font-size: 1.2rem;
    padding: 12px 24px;
    margin-bottom: 40px;
}

.account_app .profile_activity .tips .greenText {
    color: #00A862;
}

.account_app .profile_activity .tips-top {
    color: rgba(0, 0, 0, 0.56);
    margin-bottom: 0;
}

.account_app .profile_activity .collapsible {
    text-align: left;
}

@media (max-width: 640px) {
    .account_app .profile_activity .transaction_table {
        width: 100%;
        font-size: 14px;
        font-size: 1.4rem;
    }

    .account_app .profile_activity .transaction_table tbody td, .account_app .profile_activity .transaction_table thead td {
        height: 60px;
        padding-left: 4px;
        padding-right: 4px;
        cursor: pointer;
    }

    .account_app .profile_activity .transaction_table tbody td.amount, .account_app .profile_activity .transaction_table thead td.amount {
        font-size: 16px;
        font-weight: bold;
    }

    .account_app .profile_activity .transaction_table tbody td:first-child, .account_app .profile_activity .transaction_table thead td:first-child {
        padding-left: 5px;
        text-align: right;
    }

    .account_app .profile_activity .transaction_table tbody td:first-child img, .account_app .profile_activity .transaction_table thead td:first-child img {
        display: none;
    }

    .account_app .profile_activity .transaction_table tbody td:last-child, .account_app .profile_activity .transaction_table thead td:last-child {
        padding-right: 5px;
        text-align: left;
    }

    .account_app .profile_activity .transaction_table tbody td:last-child img, .account_app .profile_activity .transaction_table thead td:last-child img {
        display: none;
    }
}

.account_app .profile_rewards .collapsible + .collapsible {
    margin-top: 20px;
}

.account_app .profile_rewards .msr {
    padding: 0;
}

.account_app .profile_rewards .msr > div.section {
    display: none;
}

.account_app .profile_rewards .msr .summary {
    padding-top: 12px;
}

.account_app .profile_rewards .msr .counter {
    letter-spacing: 0;
}

.account_app .profile_rewards .msr .gauge .next {
    margin-top: 24px;
}

.account_app .profile_rewards .msr .gauge .next p {
    margin: 0px;
}

.account_app .profile_rewards .msr .gauge .fill {
    background-color: #FFF;
}

.account_app .profile_rewards .msr .bg-icon-rewards {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 20%;
    z-index: -1;
    opacity: 0.1;
}

.account_app .profile_rewards .msr.welcome-level .bg-icon-rewards {
    opacity: 0.5;
}

.account_app .profile_rewards .msr .en.tablet-items-end {
    align-items: flex-start;
}

@media (min-width: 641px) {
    .account_app .profile_rewards .msr .en.tablet-items-end {
        margin-left: 24px;
    }
}

.account_app .profile_rewards table tr {
    cursor: pointer;
}

.account_app .profile_rewards table tr td:first-child {
    text-align: center;
    width: 48px;
}

.account_app .profile_rewards table tr td:first-child img {
    width: 30px;
}

.account_app .profile_rewards table tr td:last-child {
    text-align: center;
    width: 48px;
}

.account_app .profile_rewards .current,
.account_app .profile_rewards .redeemed,
.account_app .profile_rewards .expired {
    width: 100%;
}

.account_app .profile_rewards .current .expired_date,
.account_app .profile_rewards .redeemed .expired_date,
.account_app .profile_rewards .expired .expired_date {
    font-size: 13px;
    font-size: 1.3rem;
    color: rgba(0, 0, 0, 0.56);
}

.account_app .profile_rewards .current thead th:first-child,
.account_app .profile_rewards .redeemed thead th:first-child,
.account_app .profile_rewards .expired thead th:first-child {
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: 400;
    text-align: center;
    width: 48px;
}

@media (max-width: 640px) {
    .account_app .profile_rewards .current thead th:first-child,
    .account_app .profile_rewards .redeemed thead th:first-child,
    .account_app .profile_rewards .expired thead th:first-child {
        font-size: 20px;
        font-size: 2rem;
    }
}

.account_app .profile_rewards .current .cursor-pointer {
    display: table-cell;
    margin: 0 13px;
}

.account_app .profile_rewards .expired {
    margin-bottom: 0;
}

.account_app .profile_rewards img.wave-top,
.account_app .profile_rewards img.wave-bottom {
    position: absolute;
    width: 100%;
}

.account_app .profile_rewards img.wave-top {
    top: -24px;
}

.account_app .profile_rewards img.wave-bottom {
    transform: rotate(180deg);
    bottom: -24px;
    z-index: -1;
}

.account_app .profile_rewards .expand a.header::before {
    transform: rotate(180deg);
}

.account_app .profile_rewards .dialog .dialog-box {
    overflow: hidden;
    width: 540px;
    padding: 0 0 24px 0;
}

.account_app .profile_rewards .dialog .dialog-box header {
    padding: 24px;
    font-size: 15px;
    line-height: 24px;
    position: relative;
    border-bottom: 2px solid #f7f7f7;
}

.account_app .profile_rewards .dialog .dialog-box header .title {
    font-size: 20px;
    line-height: 30px;
}

.account_app .profile_rewards .dialog .dialog-box header img {
    position: absolute;
    right: 15%;
    bottom: 0;
    width: 30%;
}

.account_app .profile_rewards .dialog .dialog-box .body {
    text-align: left;
    padding: 24px 48px 0;
}

.account_app .profile_rewards .dialog .dialog-box .footer {
    display: none;
}

@media (max-width: 640px) {
    .account_app .profile_rewards .dialog .dialog-box {
        width: 90%;
        max-width: 540px;
        padding: 0 0 40px 0;
    }

    .account_app .profile_rewards .dialog .dialog-box header {
        padding: 20px;
        font-size: 12px;
        line-height: 20px;
    }

    .account_app .profile_rewards .dialog .dialog-box header .title {
        font-size: 16px;
        line-height: 24px;
    }

    .account_app .profile_rewards .dialog .dialog-box .body {
        text-align: left;
        padding: 20px 15px 0;
    }

    .account_app .profile_rewards .dialog .dialog-box .body p {
        margin-bottom: 0;
    }
}

.account_app .profile_address_book .headline {
    font-size: 18px;
    font-weight: bold;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.56);
    float: left;
}

.account_app .profile_address_book .link {
    float: right;
    margin-top: -6px;
}

.account_app .profile_address_book .card {
    position: relative;
    box-sizing: border-box;
    width: 100%;
}

.account_app .profile_address_book .card header {
    position: absolute;
    top: 12px;
    right: 12px;
}

.account_app .profile_address_book .card header a {
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
    color: #858585;
    font-size: 14px;
}

.account_app .profile_address_book .secondary header a.default {
    font-size: 15px;
    color: #C2A661;
}

.account_app .profile_address_book .card p {
    margin: 0;
    padding: 0;
    font-size: 15px;
    color: rgba(0, 0, 0, 0.56);
}

.account_app .profile_address_book .card footer {
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    margin-top: 10px;
    padding-top: 6px;
}

.account_app .profile_address_book .card footer a {
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
    color: #000;
    font-size: 15px;
}

.account_app .profile_address_book .link img {
    display: inline-block;
    vertical-align: top;
    margin-right: 14px;
}

.account_app .profile_security .field {
    position: relative;
}

.account_app .profile_security .field a {
    position: absolute;
    top: 30px;
    right: 0;
    z-index: 500;
}

.account_app .profile_security .field a.disabled {
    color: rgba(0, 0, 0, 0.38);
    cursor: default;
}

.account_app .profile_security table.transaction_table tbody tr td:first-child {
    text-align: center;
    width: 48px;
}

.account_app .profile_security table.transaction_table tbody tr td:first-child img {
    margin-bottom: -6px;
    width: 30px;
}

.account_app .profile_security table.transaction_table tbody tr td:last-child {
    text-align: center;
    width: 48px;
}

.account_app .profile_security table.transaction_table tbody tr td:last-child img {
    margin-bottom: -6px;
}

.account_app .profile_security table.transaction_table td.icon {
    min-width: 48px;
}

@media (max-width: 640px) {
    .account_app .profile_security table.transaction_table td.icon {
        display: none;
    }
}

.account_app .profile_security table.transaction_table td.icon img {
    width: 30px;
    height: 36px;
}

.account_app .profile_security table.consume_table tbody tr td:first-child {
    display: none;
}

.account_app .profile_msr .field.radios {
    width: 100%;
}

.account_app .profile_msr .field.radios .card p {
    margin-bottom: 0;
}

@media (min-width: 641px) {
    .account_app .profile_msr .tablet-margin-l1 {
        margin-left: 24px;
    }
}

.account_app .profile_settings .headline {
    font-size: 18px;
    font-weight: bold;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.56);
}

.account_app .profile_settings .profile_settings_language {
    margin-bottom: 24px;
}

.account_app .profile_settings .profile_settings_more_account strong {
    cursor: pointer;
}

.account_app .profile_settings p {
    text-align: left;
}

.account_app .profile_settings p strong {
    float: right;
}

.account_app .loadmore {
    width: 100%;
    text-align: center;
}

.account_app .msr-card-add-wrapper {
    position: relative;
    margin-top: -24px;
}

@media (max-width: 640px) {
    .account_app .msr-card-add-wrapper {
        margin-top: 0;
    }
}

.account_app .msr-card-add-wrapper .msr-card-add-layout .msr-card-add-container {
    max-width: 400px;
    margin: 48px auto;
}

@media (max-width: 640px) {
    .account_app .msr-card-add-wrapper .msr-card-add-layout .msr-card-add-container {
        margin: 24px auto 48px;
        max-width: 100%;
    }
}

.account_app .msr-card-add-wrapper .msr-card-add-layout .msr-card-add-container > .field {
    width: 270px;
    margin: 0 auto;
}

.account_app .msr-card-add-wrapper .msr-card-add-layout .msr-card-add-container .msr-card-sample {
    width: 270px;
    height: auto;
    border-radius: 12px;
    background-color: #f7f7f7;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.account_app .msr-card-add-wrapper .msr-card-add-layout .msr-card-add-container .msr-card-sample .msr-card-sample__top {
    width: 100%;
    top: 0;
    height: 100px;
    background-color: #ffffff;
}

.account_app .msr-card-add-wrapper .msr-card-add-layout .msr-card-add-container .msr-card-sample .msr-card-sample__top .msr-card-sample__top__logo {
    position: relative;
    left: 20px;
    top: 20px;
    margin-top: auto;
    margin-bottom: auto;
    width: 58px;
    height: 58px;
}

.account_app .msr-card-add-wrapper .msr-card-add-layout .msr-card-add-container .msr-card-sample .msr-card-sample__bottom {
    height: auto;
    bottom: 0;
    background-color: #f7f7f7;
}

.account_app .msr-card-add-wrapper .msr-card-add-layout .msr-card-add-container .msr-card-sample .msr-card-sample__bottom .msr-card-sample__bottom__form {
    width: 176px;
    margin: 120px auto 20px 1em;
}

.account_app .msr-card-add-wrapper .msr-card-add-layout .msr-card-add-container .msr-card-sample .msr-card-sample__bottom .msr-card-sample__bottom__form .msr-card-sample__bottom__form__faq {
    color: #c2a661;
    font-size: 13px;
}

.account_app .msr-card-add-wrapper .msr-card-add-layout .msr-card-add-container .msr-card-sample .msr-card-sample__line-through {
    position: absolute;
    width: 43px;
    right: 20px;
    height: 100%;
    top: 0;
    background-color: #c2a661;
}

.account_app .msr-card-add-wrapper .msr-card-add-layout .msr-card-add-container .msr-card-sample__note {
    text-align: center;
    margin-top: 24px;
    font-size: 12px;
}

.account_app .msr-card-add-wrapper .msr-card-add-layout .msr-card-add-container .msr-card-add-reminder {
    font-size: regular-1px;
    font-size: regular-1/10rem;
}

.account_app .msr-card-add-wrapper .msr-card-add-layout .msr-card-add-container .msr-card-add-reminder p {
    margin-bottom: 24px;
}

.account_app .svc-card-add-wrapper {
    position: relative;
}

@media (max-width: 640px) {
    .account_app .svc-card-add-wrapper {
        margin-top: 0;
    }
}

.account_app .svc-card-add-wrapper .svc-card-add-layout {
    margin: 20% auto 48px;
    max-width: 420px;
}

@media (max-width: 640px) {
    .account_app .svc-card-add-wrapper .svc-card-add-layout {
        margin: 10% auto 48px;
        max-width: 100%;
    }
}

.account_app .svc-card-add-wrapper .svc-card-add-layout .svc-card-add-container .svc-card-sample {
    width: 400px;
    height: auto;
    border-radius: 12px;
    background-color: #f7f7f7;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .account_app .svc-card-add-wrapper .svc-card-add-layout .svc-card-add-container .svc-card-sample {
        width: 100%;
    }
}

.account_app .svc-card-add-wrapper .svc-card-add-layout .svc-card-add-container .svc-card-sample .svc-card-sample__left {
    top: 0;
    width: 100px;
    height: 100%;
    background-color: #ffffff;
    float: left;
    position: absolute;
    bottom: 0;
}

@media (max-width: 640px) {
    .account_app .svc-card-add-wrapper .svc-card-add-layout .svc-card-add-container .svc-card-sample .svc-card-sample__left {
        width: 25%;
        border-top-left-radius: 12px;
        border-bottom-left-radius: 12px;
    }
}

.account_app .svc-card-add-wrapper .svc-card-add-layout .svc-card-add-container .svc-card-sample .svc-card-sample__left .svc-card-sample__left__logo {
    position: relative;
    left: 20px;
    top: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    width: 58px;
    height: 58px;
}

@media (max-width: 640px) {
    .account_app .svc-card-add-wrapper .svc-card-add-layout .svc-card-add-container .svc-card-sample .svc-card-sample__left .svc-card-sample__left__logo {
        left: 50%;
        transform: translateX(-50%);
    }
}

.account_app .svc-card-add-wrapper .svc-card-add-layout .svc-card-add-container .svc-card-sample .svc-card-sample__right {
    float: right;
    right: 0;
    top: 0;
    width: 300px;
    background-color: #f7f7f7;
}

@media (max-width: 640px) {
    .account_app .svc-card-add-wrapper .svc-card-add-layout .svc-card-add-container .svc-card-sample .svc-card-sample__right {
        width: 75%;
    }
}

.account_app .svc-card-add-wrapper .svc-card-add-layout .svc-card-add-container .svc-card-sample .svc-card-sample__right .svc-card-sample__right__form {
    margin: 0.5em 1em 5em 1em;
}

.account_app .svc-card-add-wrapper .svc-card-add-layout .svc-card-add-container .svc-card-sample .svc-card-sample__right .svc-card-sample__right__form .svc-card-sample__right__form__faq {
    color: #c2a661;
    font-size: 13px;
}

.account_app .svc-card-add-wrapper .svc-card-add-layout .svc-card-add-container .svc-card-sample .svc-card-sample__line-through {
    position: absolute;
    bottom: 20px;
    background-color: #c2a661;
    left: 0;
    right: 0;
    height: 43px;
}

.account_app .svc-card-add-wrapper .svc-card-add-layout .svc-card-add-container .svc-card-sample__note {
    text-align: left;
    margin-top: 24px;
    font-size: 13px;
    font-size: 1.3rem;
}

.account_app .svc-card-add-wrapper .dialog.SRkit h3 {
    font-size: 22px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.87);
}

.account_app .svc-card-add-wrapper .dialog.SRkit p {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.56);
    text-align: center;
}

.account_app .svc-card-add-wrapper .dialog.SRkit .coupon {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 2px;
    border: solid 1px rgba(0, 0, 0, 0.05);
    font-size: 16px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.87);
}

.account_app .svc-card-add-wrapper .dialog.SRkit .coupon img {
    margin-right: 10px;
    width: 48px;
    height: 48px;
}

.account_app .svc .transaction_table {
    width: 100%;
}

.account_app .fapiao .unapplied .card:hover {
    border: 1px solid #00A862;
}

.account_app .fapiao table {
    width: 100%;
    table-layout: fixed;
}

.account_app .fapiao table td {
    word-wrap: break-word;
}

.account_app .fapiao .i-have-two-buttons {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.account_app .fapiao .pagination,
.account_app .profile_security .pagination {
    margin-top: 24px;
    margin-bottom: 24px;
}

.account_app .fapiao .pagination .prev:hover,
.account_app .fapiao .pagination .next:hover,
.account_app .fapiao .pagination .page:hover,
.account_app .profile_security .pagination .prev:hover,
.account_app .profile_security .pagination .next:hover,
.account_app .profile_security .pagination .page:hover {
    cursor: pointer;
}

.account_app .fapiao .pagination .prev,
.account_app .fapiao .pagination .next,
.account_app .profile_security .pagination .prev,
.account_app .profile_security .pagination .next {
    padding-left: 0.25em;
    padding-right: 0.25em;
}

.account_app .fapiao .pagination .prev img,
.account_app .fapiao .pagination .next img,
.account_app .profile_security .pagination .prev img,
.account_app .profile_security .pagination .next img {
    height: 12px;
}

.account_app .fapiao .pagination .arrow,
.account_app .profile_security .pagination .arrow {
    cursor: pointer;
}

.account_app .fapiao .pagination span,
.account_app .profile_security .pagination span {
    margin-right: 12px;
}

.account_app .fapiao .pagination .page,
.account_app .profile_security .pagination .page {
    padding-left: 0.25em;
    padding-right: 0.25em;
}

.account_app .fapiao .pagination .page.active,
.account_app .profile_security .pagination .page.active {
    font-weight: bold;
}

.account_app .fapiao .pagination span.active:hover img,
.account_app .profile_security .pagination span.active:hover img {
    opacity: 0.6;
}

.account_app .overlay-1002 {
    z-index: 1002 !important;
}

.account_app .filed.captcha {
    padding: 0px;
}

.account_app .filed.captcha .captchaWrapper > div {
    height: 152px !important;
}

@media (max-width: 640px) {
    .account_app .filed.captcha .captchaWrapper > div {
        margin: 0px !important;
    }
}

.account_app .captchaWrapper.spinning {
    position: relative;
}

.account_app .captchaWrapper.spinning:before {
    -webkit-animation: spin 1s infinite linear;
    animation: spin 1s infinite linear;
    border-bottom: 3px solid rgba(0, 168, 98, 0.1);
    border-left: 3px solid rgba(0, 168, 98, 0.1);
    border-right: 3px solid rgba(0, 168, 98, 0.1);
    border-top: 3px solid rgba(0, 168, 98, 0.4);
    border-radius: 100%;
    content: '';
    height: 20px;
    left: 50%;
    margin: -13px 0 0 -13px;
    top: 50%;
    width: 20px;
    position: absolute;
    z-index: 1;
}

.account_app .passed {
    text-align: center;
    height: 40px;
}

.account_app .passed .icon-check_circle:before {
    font-family: icon;
    font-variant: normal;
    font-weight: 400;
    speak: none;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    font-size: 32px;
    font-size: 3.2rem;
    color: rgba(0, 168, 98, 0.4);
    content: "\E86C";
    display: block;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.profile_address_book .card p:nth-child(2) {
    max-width: 60%;
}

.profile_settings_communications .overlay textarea {
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 6px;
    margin-top: 10px;
}

.profile_settings_communications .overlay textarea:hover {
    border-color: #00A862;
}

.page-menu {
    background: #f7f7f7;
}

.page-menu .hero {
    background: #fff;
    text-align: center;
}

.page-menu .hero a .img {
    height: auto;
    width: 100%;
}

.page-menu .hero a.tablet-hidden {
    min-height: 200px;
}

.page-menu .hero a.mobile-hidden {
    min-height: 300px;
}

.page-menu .hero .wrapper {
    padding: 30px 0;
}

.page-menu .hero .description {
    margin: 0;
}

.page-menu .featured-items {
    background: #fff;
    text-align: center;
    padding-bottom: 20px;
}

.page-menu .featured-items .item a {
    margin-bottom: 30px;
}

.page-menu .featured-items .item a .img {
    height: auto;
    width: calc(100% - 40px);
    display: inline-block;
}

.page-menu .featured-items .item .tablet-hidden a .img {
    width: 100%;
}

.page-menu .featured-items .item > div {
    padding: 20px 0;
}

.page-menu .featured-items .featured-collapsible {
    cursor: pointer;
}

.page-menu .featured-items .featured-collapsible .icon {
    background: url(../banner/icon-chevron-down.svg) no-repeat center center;
    content: '';
    float: right;
    height: 24px;
    width: 24px;
    position: relative;
    right: calc(50% - 12px);
    transition: transform 0.3s ease-in-out;
}

.page-menu .featured-items .featured-collapsible .body {
    position: relative;
    transition: max-height 0.4s ease-in-out;
}

.page-menu .featured-items .featured-collapsible .body:after {
    background: linear-gradient(rgba(255, 255, 255, 0) 24px, #FFF);
    content: '';
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition-duration: 0.1s;
    transition-property: opacity;
    width: 100%;
}

.page-menu .featured-items .featured-collapsible.collapsed .body {
    max-height: 48px;
    overflow: hidden;
}

.page-menu .featured-items .featured-collapsible.collapsed .body:after {
    opacity: 1;
}

.page-menu .featured-items .featured-collapsible.expanded .icon {
    transform: rotate(180deg);
}

.page-menu .featured-items .featured-collapsible.expanded .body {
    max-height: 1048px;
}

.page-menu .featured-items .featured-collapsible.expanded .body:after {
    opacity: 0;
}

.page-menu .lto-items {
    padding-top: 40px;
    text-align: center;
}

@media (max-width: 640px) {
    .page-menu .lto-items .columns-3 {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .page-menu .lto-items .columns-3::after {
        clear: both;
        content: "";
        display: table;
    }

    .page-menu .lto-items .columns-3 > * {
        box-sizing: border-box;
        clear: none;
        float: left;
        margin: 0;
        padding: 0;
        width: 50%;
    }

    .page-menu .lto-items .columns-3 > *:nth-child(2n + 1) {
        clear: left;
    }
}

.page-menu .lto-items .item img {
    box-sizing: border-box;
    padding: 12px;
    width: 100%;
}

.page-menu .food {
    background: #FEFAEF;
}

.page-menu .coffee {
    background: #fff;
}

.page-menu .catalog {
    padding: 24px 0;
    min-height: 48px;
}

.page-menu .catalog .grid {
    position: relative;
    display: flex;
}

.page-menu .catalog .grid .image {
    text-align: center;
}

.page-menu .catalog .grid .image img {
    max-width: 360px;
    width: 100%;
}

.page-menu .catalog .grid .right {
    order: 2;
}

@media (max-width: 640px) {
    .page-menu .catalog .grid {
        display: block;
    }
}

.page-menu .program.svc {
    overflow: hidden;
    position: relative;
    background: #00A862;
}

.page-menu .program.svc .wrapper {
    padding: 24px 0 120px;
    text-align: center;
    min-height: 240px;
}

.page-menu .program.svc .wrapper img {
    position: relative;
    margin-bottom: 24px;
    width: 24px;
}

.page-menu .program.svc .wrapper h2 {
    color: #FFF;
}

.page-menu .program.svc .wrapper p {
    color: #FFF;
}

.page-menu .program.svc img {
    bottom: -1px;
    left: 0px;
    position: absolute;
    width: 100%;
}

.page-menu .also {
    padding: 24px 0;
}

.page-menu .also .rect {
    width: calc(((100% - 48px)) / 3);
    margin-right: 3%;
}

@media (max-width: 640px) {
    .page-menu .also .rect {
        width: 252px;
    }
}

.page-menu .also .rect .preview {
    height: 120px;
}

.page-menu .mr-2 {
    margin-right: 12px;
}

@media (max-width: 640px) {
    .page-menu .tablet-left {
        text-align: left;
    }
}

#menu-search-empty {
    margin-bottom: 18px;
}

#menu-search-empty h3 {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.87);
}

#menu-search-empty .tag {
    display: inline-block;
    padding: 2px 12px;
    background: #00A862;
    font-size: 14px;
    color: #FFF;
}

body.page-about-careers-old {
    background-color: #FFF;
}

body.page-about-careers-old #content {
    padding-bottom: 0;
}

body.page-about-careers-old #content .padded-t {
    padding-top: 24px;
}

body.page-about-careers-old #content .padded-0 {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
}

body.page-about-careers-old #content .padded-b-1 {
    padding-bottom: 24px;
}

body.page-about-careers-old #content .min-h100 {
    min-height: 100%;
}

body.page-about-careers-old #content .margin-b-0 {
    margin-bottom: 0;
}

body.page-about-careers-old #content .divider {
    border-bottom: 1px solid #EDEBE9;
}

body.page-about-careers-old #content .hero {
    background-color: rgba(0, 0, 0, 0.87);
    min-height: 640px;
    position: relative;
    margin-bottom: 0;
}

body.page-about-careers-old #content .hero .hidden {
    display: none;
}

body.page-about-careers-old #content .hero .wrapper.section.title {
    padding-top: 36px;
    padding-bottom: 24px;
}

body.page-about-careers-old #content .image {
    bottom: 0;
    background-image: url(/images/pages/careers-bg-line.svg);
    background-position: 50% 50%;
    background-size: cover;
    height: 100%;
    position: absolute;
    width: 100%;
}

body.page-about-careers-old #content ul.grid {
    margin: 0 auto;
    width: 100%;
}

body.page-about-careers-old #content li.margin {
    margin-bottom: 24px;
}

body.page-about-careers-old #content .card.thumbnail.rect {
    height: 100%;
    min-height: 264px;
    width: 100%;
}

@media (max-width: 1024px) {
    body.page-about-careers-old #content .card.thumbnail.rect {
        min-height: auto;
        max-width: 100%;
    }
}

body.page-about-careers-old #content .card.thumbnail.rect .preview {
    max-height: 144px;
}

body.page-about-careers-old #content .card.thumbnail.rect .button {
    display: block;
    width: 150px;
    margin-left: auto;
    margin-right: auto;
}

body.page-about-careers-old #content .cup {
    background-image: url(/images/pages/careers-cup.png);
    background-size: cover;
    height: 72px;
    width: 70%;
}

body.page-about-careers-old #content .divider-image {
    background-size: cover;
    height: 84px;
    margin: 0 6px;
}

body.page-about-careers-old #content .bg-line-2 img {
    position: absolute;
    top: 0;
}

body.page-about-careers-old #content .wrapper.section.fluid img {
    display: block;
    width: 100%;
}

body.page-about-careers-old #content .bg-icon-stars,
body.page-about-careers-old #content .bg-icon-apron,
body.page-about-careers-old #content .bg-icon-scu {
    background-position: right bottom;
    background-repeat: no-repeat;
}

body.page-about-careers-old #content .bg-icon-stars {
    background-image: url(/images/pages/careers-icon-stars.svg);
}

body.page-about-careers-old #content .bg-icon-apron {
    background-image: url(/images/pages/careers-icon-apron.png);
}

body.page-about-careers-old #content .bg-icon-scu {
    background-image: url(/images/pages/careers-icon-xxs.png);
    background-size: 138px 138px;
}

body.page-about-careers-old #content .promote {
    background-image: url(/images/pages/careers-bg-black.png);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 288px;
    width: 100%;
}

body.page-about-careers-old #content .qrcode {
    border: 12px solid #000;
    background-size: cover;
    height: 132px;
    width: 132px;
}

@media (min-width: 641px) {
    body.page-about-careers-old #content .tablet-padded-x-1 {
        padding-left: 24px;
        padding-right: 24px;
    }

    body.page-about-careers-old #content .section.space {
        padding-bottom: 36px;
        padding-top: 24px;
    }

    body.page-about-careers-old #content .cup {
        height: 120px;
        width: 45%;
    }

    body.page-about-careers-old #content .divider {
        border-bottom: none;
        border-right: 1px solid #EDEBE9;
    }

    body.page-about-careers-old #content .divider-image {
        height: 144px;
    }

    body.page-about-careers-old #content .bg-icon-apron {
        background-position: left bottom;
    }
}

body.page-about-careers #content {
    padding-top: 0;
    background-color: #fff;
}

body.page-about-careers .about-top-title {
    margin-top: 30px;
    margin-bottom: 40px;
}

body.page-about-careers .padded-l-r {
    padding-left: 36px;
    padding-right: 36px;
}

body.page-about-careers .new-about-career ul, body.page-about-careers .new-about-career li {
    list-style: none;
    margin: 0;
}

body.page-about-careers .new-about-career li {
    width: 20%;
    box-sizing: border-box;
    float: left;
}

body.page-about-careers .new-about-career li img {
    transition: all 0.5s;
}

body.page-about-careers .new-about-career li a:hover img {
    transform: scale(1.2);
}

body.page-about-careers .img-txt-wrapper {
    margin-bottom: 96px;
}

body.page-about-careers .img-txt-wrapper > img {
    margin-bottom: 30px;
}

body.page-about-careers .title {
    display: flex;
    align-items: baseline;
    margin-bottom: 24px;
}

body.page-about-careers .title-en {
    font-family: 'LanderGrande';
    margin-bottom: 14px;
}

body.page-about-careers .main-title {
    font-size: 24px;
    font-weight: bold;
    margin-right: 12px;
}

body.page-about-careers .sub-title {
    font-size: 18px;
}

body.page-about-careers .content {
    position: relative;
    font-size: 16px;
    font-family: auto;
    color: #686868;
}

body.page-about-careers .content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -30px;
    width: 20px;
    height: 40px;
    background-image: url("/images/pages/yinhaoshang.png");
    background-repeat: no-repeat;
    background-size: contain;
}

body.page-about-careers .content::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -25px;
    width: 20px;
    height: 20px;
    background: url("/images/pages/yinghaoxia.png");
    background-repeat: no-repeat;
    background-size: contain;
}

body.page-about-careers .content-bottom {
    text-align: right;
    margin-top: 10px;
    font-weight: bold;
    line-height: 32px;
    font-family: auto;
}

body.page-about-careers .bottom-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
    background: url("/images/pages/careers-bottom-bg.png") no-repeat;
    background-size: 100% 100%;
    background-position: right bottom;
}

body.page-about-careers .bottom-content .bottom-icon {
    width: 72px;
    height: 72px;
    margin-right: 36px;
}

body.page-about-careers .bottom-content .join-us {
    width: 80px;
}

body.page-about-careers .name-img {
    width: 40px;
    vertical-align: middle;
    margin-top: -2px;
}

body.page-about-careers .careers-ul-zh a {
    display: block;
    margin: 0 25%;
}

body.page-about-careers .careers-ul-en a {
    display: block;
    margin: 0 5%;
}

@media (max-width: 640px) {
    body.page-about-careers .txt-wrapper {
        padding-left: 12px;
        padding-right: 12px;
    }

    body.page-about-careers .new-about-career .margin-2 {
        margin-bottom: 24px;
    }

    body.page-about-careers .new-about-career .careers-ul-zh a {
        margin: 0 12%;
    }

    body.page-about-careers .new-about-career .careers-ul-en li {
        padding-left: 0;
        padding-right: 0;
    }

    body.page-about-careers .new-about-career .careers-ul-en a {
        margin: 0;
    }

    body.page-about-careers .bottom-content .bottom-icon.bottom-icon-en {
        margin-right: 12px;
    }

    body.page-about-careers .title {
        margin-bottom: 18px;
    }

    body.page-about-careers .content {
        font-size: 12px;
    }

    body.page-about-careers .content::after {
        right: -20px;
    }

    body.page-about-careers .about-top-title {
        font-size: 16px;
        line-height: 28px;
        margin-top: 18px;
        margin-bottom: 26px;
    }

    body.page-about-careers .img-txt-wrapper > img {
        margin-bottom: 36px;
    }

    body.page-about-careers .main-title {
        font-size: 20px;
    }

    body.page-about-careers .sub-title {
        font-size: 16px;
    }

    body.page-about-careers .ft {
        font-size: 12px;
        font-size: 1.2rem;
    }

    body.page-about-careers .not-show {
        display: block;
    }

    body.page-about-careers .should-hiddle {
        display: none;
    }

    body.page-about-careers .join-txt {
        line-height: 18px;
    }

    body.page-about-careers .name-img {
        width: 32px;
    }
}

@media (min-width: 640px) and (max-width: 1366px) {
    body.page-about-careers .txt-wrapper {
        padding-left: 48px;
        padding-right: 48px;
    }

    body.page-about-careers .about-top-title {
        font-size: 20px;
        line-height: 32px;
        margin-top: 20px;
        margin-bottom: 30px;
    }

    body.page-about-careers .ft {
        font-size: 14px;
        font-size: 1.4rem;
    }

    body.page-about-careers .not-show {
        display: none;
    }

    body.page-about-careers .img-txt-wrapper {
        display: flex;
        align-items: center;
    }

    body.page-about-careers .content {
        font-size: 14px;
    }

    body.page-about-careers .bottom-content .bottom-icon {
        width: 96px;
        height: 96px;
        margin-right: 48px;
    }

    body.page-about-careers .new-about-career {
        margin-bottom: 15px;
    }
}

@media (min-width: 1366px) {
    body.page-about-careers .txt-wrapper {
        padding-left: 108px;
        padding-right: 108px;
    }

    body.page-about-careers .about-top-title {
        font-size: 24px;
        line-height: 36px;
    }

    body.page-about-careers .img-txt-wrapper {
        display: flex;
        align-items: center;
    }

    body.page-about-careers .ft {
        font-size: 17px;
        font-size: 1.7rem;
    }

    body.page-about-careers .new-about-career {
        margin-bottom: 30px;
    }

    body.page-about-careers .not-show {
        display: none;
    }

    body.page-about-careers .bottom-content .bottom-icon {
        width: 144px;
        height: 144px;
        margin-right: 72px;
    }

    body.page-about-careers .padded-l-r {
        padding-left: 48px;
        padding-right: 48px;
    }
}

.info-disclosure {
    padding: 0 36px;
}

.info-disclosure h1 {
    padding: 36px 0 24px;
}

.info-disclosure p {
    text-indent: 2em;
    text-align: justify;
}

.info-disclosure .footer {
    text-align: right;
}

.info-disclosure .footer .text-wrapper {
    text-align: center;
    display: inline-block;
}

.page-front #nav .secondary .display-1 {
    margin-bottom: 24px;
}

@media (max-width: 1024px) {
    .page-front #nav .secondary .display-1 {
        margin-bottom: 16px;
    }
}

.page-front #nav .secondary .logo {
    width: 30px;
    margin: -2px 12px -2px 0px;
}

.page-front #nav .secondary .account {
    margin: 0;
    width: 100%;
}

@media (max-width: 1024px) {
    .page-front #nav .secondary .account {
        margin-top: 0px;
        margin-left: -16px;
        margin-right: -16px;
        width: calc(100% + 32px);
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .page-front #nav .secondary .account {
        margin: 0;
        width: 100%;
        height: auto;
    }

    .page-front #nav .secondary .account .sign-in,
    .page-front #nav .secondary .account .register {
        margin-bottom: 12px;
    }
}

.page-front #nav .secondary .account .account-info {
    box-sizing: border-box;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    display: table;
    padding: 18px 0;
    width: 92%;
    max-width: 408px;
}

@media (max-width: 1024px) {
    .page-front #nav .secondary .account .account-info {
        padding: 12px 16px 16px;
        max-width: 100%;
        width: 100%;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .page-front #nav .secondary .account .account-info {
        padding: 12px 24px;
        margin: 0px;
        margin-left: -24px;
        margin-right: -24px;
        width: calc(100% + 48px);
        max-width: calc(100% + 48px);
    }
}

.page-front #nav .secondary .account .account-info a {
    color: rgba(0, 0, 0, 0.87);
}

.page-front #nav .secondary .account .account-info a:hover {
    color: rgba(0, 0, 0, 0.56);
}

.page-front #nav .secondary .account .account-info .left {
    box-sizing: border-box;
    display: inline-block;
    position: relative;
    padding-right: 24px;
    width: 120px;
}

.page-front #nav .secondary .account .account-info .left > div {
    width: 85%;
}

.page-front #nav .secondary .account .account-info .left > div .counter {
    font-size: 14px;
    font-size: 1.4rem;
    white-space: nowrap;
}

.page-front #nav .secondary .account .account-info .left > div .counter strong {
    font-size: 21px;
    font-size: 2.1rem;
}

.page-front #nav .secondary .account .account-info .left > div .counter > img {
    margin-left: 8px;
    width: 32px;
    height: 32px;
    vertical-align: bottom;
}

.page-front #nav .secondary .account .account-info .left > div .gauge {
    position: relative;
}

.page-front #nav .secondary .account .account-info .left > div .gauge .fill {
    padding: 2px 0;
    min-height: 4px;
}

.page-front #nav .secondary .account .account-info .left > div .gauge > img {
    position: absolute;
    left: calc(100% + 12px);
    bottom: 0;
    width: 20px;
    height: 20px;
}

.page-front #nav .secondary .account .account-info .left svg {
    position: absolute;
    right: 0px;
    bottom: 0px;
}

.page-front #nav .secondary .account .account-info .my-rewards {
    display: table-cell;
    text-align: right;
    width: calc(100% - 120px);
    vertical-align: middle;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 140%;
    padding-top: 4px;
}

@media (max-width: 640px) {
    .page-front #nav .secondary .account .account-info .my-rewards {
        font-size: 14px;
        font-size: 1.4rem;
    }
}

.page-front #nav .secondary .account .account-info .my-rewards a.link.gold {
    font-weight: normal;
}

.page-front #nav .secondary .account .account-info .my-rewards a.link.gold:hover {
    color: #af9557;
}

.page-front #nav .secondary .account .account-info:hover {
    color: rgba(0, 0, 0, 0.56);
}

.page-front #nav .secondary .account .account-info.welcome-level .fill {
    background: rgba(0, 0, 0, 0.26);
}

.page-front #nav .secondary .account .account-info.welcome-level svg polygon {
    fill: rgba(0, 0, 0, 0.26);
}

.page-front #nav .secondary .account .account-info.green-level .fill {
    background: #00A862;
}

.page-front #nav .secondary .account .account-info.green-level svg polygon {
    fill: #00A862;
}

.page-front #nav .secondary .account .account-info.gold-level .fill {
    background: #C2A661;
}

.page-front #nav .secondary .account .account-info.gold-level svg polygon {
    fill: #C2A661;
}

.page-front .section .wrapper.center .light {
    margin: 0 10%;
    width: 80%;
}

.page-front .notice {
    display: block;
}

.page-front .notice a {
    display: inline-block;
    text-decoration: none;
}

.page-front .carousel-home img {
    width: 100%;
}

.page-front .carousel-home .video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.page-front .carousel-home .slick-slide {
    min-height: 240px;
}

.page-front .carousel-home .slick-prev {
    display: none !important;
}

.page-front .carousel-home .slick-next {
    background-size: contain;
    border: 0;
    background: url("./icons/icon-arrow-white.svg") transparent no-repeat center center;
    content: '';
    font-size: 0;
    height: 48px;
    line-height: 0;
    outline: none;
    padding: 0px;
    position: absolute;
    right: 24px;
    top: 50%;
    margin-top: -25px;
    width: 48px;
}

@media (max-width: 640px) {
    .page-front .carousel-home .slick-next {
        height: 36px;
        width: 36px;
        right: 12px;
    }
}

.page-front .carousel-home .slick-next:hover {
    right: 16px;
}

.page-front .carousel-home .slick-next:active {
    right: 6px;
}

.page-front .carousel-home .play-btn {
    width: 50px;
    margin-left: -25px;
    margin-top: -25px;
    z-index: 90;
    position: absolute;
    left: 50%;
    top: 50%;
    cursor: pointer;
}

.page-front .carousel-home a {
    position: relative;
}

.page-front .carousel-home a span {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 5%;
    top: 50%;
    -ms-transform: translate3d(0, -50%, 0);
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    max-width: 40%;
}

.page-front .carousel-home a span p {
    display: block;
    line-height: 100%;
}

.page-front .carousel-home a span p small {
    font-size: 14px;
    font-size: 1.4rem;
}

.page-front .carousel-home a span.animated {
    opacity: 1;
    left: 10%;
    visibility: visible;
}

@media (max-width: 640px) {
    .page-front .carousel-home a span {
        top: 22%;
        width: 80%;
    }

    .page-front .carousel-home a span p {
        margin-bottom: 18px;
    }

    .page-front .carousel-home a span.animated {
        max-width: 80%;
        text-align: center;
    }
}

.page-front .carousel-home .play-video {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 174px;
    height: 42px;
    background: url("/assets/images/homepage/play-video.png") no-repeat center/cover;
}

@media (max-width: 640px) {
    .page-front .carousel-home .play-video {
        bottom: 0;
        width: 212px;
        height: 46px;
        background-image: url("/assets/images/homepage/play-video-mobile.png");
    }
}

.page-front .program-msr {
    clear: both;
}

.page-front .program-msr::after {
    clear: both;
    content: "";
    display: table;
}

.page-front .program-msr .wrapper {
    overflow: hidden;
    position: relative;
}

.page-front .program-msr .wrapper .grid {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}

.page-front .program-msr .wrapper .grid::after {
    clear: both;
    content: "";
    display: table;
}

.page-front .program-msr .wrapper .grid > * {
    box-sizing: border-box;
    clear: none;
    float: left;
    margin: 0;
    padding: 0;
    width: 50%;
}

.page-front .program-msr .wrapper .grid > *:nth-child(2n + 1) {
    clear: left;
}

.page-front .program-msr .wrapper .grid div:first-child {
    padding-top: 36px;
    padding-bottom: 36px;
}

.page-front .program-msr .wrapper .grid div:first-child h2,
.page-front .program-msr .wrapper .grid div:first-child p {
    clear: both;
}

.page-front .program-msr .wrapper .grid div:first-child h2::after,
.page-front .program-msr .wrapper .grid div:first-child p::after {
    clear: both;
    content: "";
    display: table;
}

.page-front .program-msr .wrapper .grid div:first-child h2 a,
.page-front .program-msr .wrapper .grid div:first-child p a {
    vertical-align: middle;
}

.page-front .program-msr .wrapper .grid div:first-child .button {
    margin-right: 6px;
}

.page-front .program-msr .wrapper .grid div:first-child .button.link {
    color: #C2A661;
}

.page-front .program-msr .wrapper .grid div.image {
    position: static;
}

.page-front .program-msr .wrapper .grid div.image img {
    height: 72px;
    top: 50%;
    position: absolute;
    margin-top: -36px;
    right: 0px;
    transform: translate3d(0, 0, 0);
}

@media (max-width: 640px) {
    .page-front .program-msr .wrapper .grid {
        list-style: none;
        margin: 0;
        padding: 0;
        text-align: center;
    }

    .page-front .program-msr .wrapper .grid::after {
        clear: both;
        content: "";
        display: table;
    }

    .page-front .program-msr .wrapper .grid > * {
        box-sizing: border-box;
        clear: none;
        float: left;
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .page-front .program-msr .wrapper .grid > *:nth-child(1n + 1) {
        clear: left;
    }

    .page-front .program-msr .wrapper .grid div:first-child {
        padding-top: 24px;
        padding-bottom: 0;
    }

    .page-front .program-msr .wrapper .grid div.image {
        height: 160px;
        padding-bottom: 24px;
    }

    .page-front .program-msr .wrapper .grid div.image img {
        position: relative;
    }
}

.page-front .tmall {
    padding-top: 36px;
    padding-bottom: 36px;
}

.page-front .tmall ul {
    padding-top: 48px !important;
}

.page-front .tmall ul li {
    padding: 12px !important;
}

@media (min-width: 641px) {
    .page-front .tmall ul li {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .page-front .tmall ul li::after {
        clear: both;
        content: "";
        display: table;
    }

    .page-front .tmall ul li > * {
        box-sizing: border-box;
        clear: none;
        float: left;
        margin: 0;
        padding: 0;
        width: 50%;
    }

    .page-front .tmall ul li > *:nth-child(2n + 1) {
        clear: left;
    }
}

@media (max-width: 640px) {
    .page-front .tmall ul li:nth-child(1) {
        margin-bottom: 48px;
    }
}

.page-front .tmall ul li a {
    box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.12);
    box-sizing: border-box;
    background: #fff;
    border-radius: 2px;
    display: inline-block;
    position: relative;
    padding: 0 6px;
    text-align: center;
    width: 100%;
}

.page-front .tmall ul li a p {
    font-size: 14px;
    font-size: 1.4rem;
}

.page-front .tmall ul li a p.margin2 {
    color: rgba(0, 0, 0, 0.56) !important;
}

.page-front .tmall ul li a p.title-1 {
    font-size: 16px;
    font-size: 1.6rem;
}

.page-front .tmall ul li a .title-1 {
    color: rgba(0, 0, 0, 0.87);
    margin-top: 8px;
    margin-bottom: 8px;
}

.page-front .tmall ul li a img {
    margin-top: -36px;
    height: 72px;
}

.page-front .tmall ul li a .caption {
    font-size: 1.2rem;
    color: #C2A661;
    font-weight: 400;
    opacity: 0.7;
    text-transform: none;
}

.page-front .tmall ul li a:hover {
    box-shadow: 0 1px 3px 2px rgba(0, 0, 0, 0.12);
    -ms-transform: translate3d(0, -4px, 0);
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
}

@media (max-width: 640px) {
    .page-front .tmall ul li a:hover {
        -ms-transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.page-front .tmall ul li a:hover .title-1 {
    color: rgba(0, 0, 0, 0.87);
}

.page-front .tmall ul li a:hover p {
    color: rgba(0, 0, 0, 0.56);
}

.page-front .tmall ul li a:hover .caption {
    color: #887035;
}

.page-front .tmall ul li:nth-child(1) a img {
    margin-top: -48px;
    height: 72px;
    margin-bottom: -24px;
}

.page-front .tmall ul li:nth-child(1) a p.title-1 {
    margin-top: 26px;
}

@media (min-width: 641px) and (max-width: 1024px) {
    .page-front .promotion .grid.columns-3 {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .page-front .promotion .grid.columns-3::after {
        clear: both;
        content: "";
        display: table;
    }

    .page-front .promotion .grid.columns-3 > * {
        box-sizing: border-box;
        clear: none;
        float: left;
        margin: 0;
        padding: 0;
        width: 33.3333333333%;
    }

    .page-front .promotion .grid.columns-3 > *:nth-child(3n + 1) {
        clear: left;
    }

    .page-front .promotion .grid.padded-2 > * {
        padding: 12px;
    }
}

.page-front .promotion a img {
    float: left;
    box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.12);
    border-radius: 2px;
}

.page-front .promotion a:hover {
    -ms-transform: translate3d(0, -4px, 0);
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
}

@media (max-width: 640px) {
    .page-front .promotion a:hover {
        -ms-transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.page-front .promotion a:hover img {
    box-shadow: 0 1px 3px 2px rgba(0, 0, 0, 0.12);
}

.page-front .coffeehouse {
    background-image: linear-gradient(-180deg, #FCFCFC 0%, #FFF 100%);
    padding: 36px 0 36px 0;
    margin-bottom: -24px;
}

.page-front .coffeehouse .thumbnail.rect.card strong {
    white-space: initial;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.page-front .coffeehouse .scroll-wrapper {
    position: relative;
}

.page-front .coffeehouse .scroll-wrapper .wrapper {
    position: relative;
}

.page-front .coffeehouse .scroll {
    margin-right: 24px;
}

.page-front .coffeehouse .scroll .wrapper > div {
    display: table;
}

.lang-en.page-front .tmall ul li a p.title-1, .lang-en.page-front .tmall ul li a p.margin2 {
    min-height: 48px;
}

@media screen and (max-width: 320px) {
    .lang-en.page-front .tmall ul li a p.title-1, .lang-en.page-front .tmall ul li a p.margin2 {
        min-height: 72px;
    }
}

.page-account-program-svc .hero,
.page-starbucks-gift-card .hero {
    padding-top: 72px;
}

.page-account-program-svc .space,
.page-starbucks-gift-card .space {
    padding-top: 24px;
    padding-bottom: 12px;
}

.page-account-program-svc .caption.icon::before,
.page-starbucks-gift-card .caption.icon::before {
    content: url(/images/pages/svc-icon.svg);
    height: 100%;
    margin-right: 12px;
}

.page-account-program-svc img.cards,
.page-starbucks-gift-card img.cards {
    margin: 0 auto;
    width: 55%;
}

.page-account-program-svc a.button.white,
.page-starbucks-gift-card a.button.white {
    border-color: #FFF;
    color: #FFF;
}

.page-account-program-svc .wave .grid.padded-2.columns-3,
.page-starbucks-gift-card .wave .grid.padded-2.columns-3 {
    margin: 0px;
}

@media (min-width: 641px) and (max-width: 1024px) {
    .page-account-program-svc .wave .grid.padded-2.columns-3,
    .page-starbucks-gift-card .wave .grid.padded-2.columns-3 {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .page-account-program-svc .wave .grid.padded-2.columns-3::after,
    .page-starbucks-gift-card .wave .grid.padded-2.columns-3::after {
        clear: both;
        content: "";
        display: table;
    }

    .page-account-program-svc .wave .grid.padded-2.columns-3 > *,
    .page-starbucks-gift-card .wave .grid.padded-2.columns-3 > * {
        box-sizing: border-box;
        clear: none;
        float: left;
        margin: 0;
        padding: 0;
        width: 33.3333333333%;
    }

    .page-account-program-svc .wave .grid.padded-2.columns-3 > *:nth-child(3n + 1),
    .page-starbucks-gift-card .wave .grid.padded-2.columns-3 > *:nth-child(3n + 1) {
        clear: left;
    }
}

.page-account-program-svc .wave:before,
.page-starbucks-gift-card .wave:before {
    content: '';
    position: absolute;
    height: 84px;
    width: 100%;
    background-image: url(/images/pages/svc-wave.svg?);
    background-repeat: repeat-x;
    top: -24px;
    z-index: 1;
}

.page-account-program-svc #content .promotion-tmall,
.page-account-program-svc #content .promotion-say,
.page-account-program-svc #content .promotion-company,
.page-starbucks-gift-card #content .promotion-tmall,
.page-starbucks-gift-card #content .promotion-say,
.page-starbucks-gift-card #content .promotion-company {
    padding-top: 24px;
}

.page-account-program-svc #content .promotion-tmall .wrapper.section,
.page-account-program-svc #content .promotion-say .wrapper.section,
.page-account-program-svc #content .promotion-company .wrapper.section,
.page-starbucks-gift-card #content .promotion-tmall .wrapper.section,
.page-starbucks-gift-card #content .promotion-say .wrapper.section,
.page-starbucks-gift-card #content .promotion-company .wrapper.section {
    padding-bottom: 0;
    padding-left: 12px;
    padding-right: 12px;
}

.page-account-program-svc #content .promotion-tmall,
.page-starbucks-gift-card #content .promotion-tmall {
    padding-top: 60px;
    padding-bottom: 10%;
    background-color: #C7BC87;
}

.page-account-program-svc #content .promotion-tmall .tmall1,
.page-starbucks-gift-card #content .promotion-tmall .tmall1 {
    padding: 12px;
}

.page-account-program-svc #content .promotion-tmall .caption,
.page-starbucks-gift-card #content .promotion-tmall .caption {
    color: #AA7A4A;
}

.page-account-program-svc #content .promotion-tmall .button,
.page-starbucks-gift-card #content .promotion-tmall .button {
    margin: 24px 0 0;
}

.page-account-program-svc #content .promotion-tmall img,
.page-starbucks-gift-card #content .promotion-tmall img {
    margin: 12px 0;
}

.page-account-program-svc #content .promotion-tmall img.tmall2,
.page-starbucks-gift-card #content .promotion-tmall img.tmall2 {
    bottom: 0px;
    position: absolute;
    left: 50%;
    margin: 0px;
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 80%;
}

@media (max-width: 640px) {
    .page-account-program-svc #content .promotion-tmall,
    .page-starbucks-gift-card #content .promotion-tmall {
        padding-bottom: 20%;
    }

    .page-account-program-svc #content .promotion-tmall img.tmall2,
    .page-starbucks-gift-card #content .promotion-tmall img.tmall2 {
        width: 50%;
    }
}

.page-account-program-svc #content .promotion-say,
.page-starbucks-gift-card #content .promotion-say {
    background-image: linear-gradient(-180deg, #36B35F 3%, #00A862 98%);
}

.page-account-program-svc #content .promotion-say .caption,
.page-starbucks-gift-card #content .promotion-say .caption {
    color: rgba(255, 255, 255, 0.7);
}

.page-account-program-svc #content .promotion-say img.say1,
.page-starbucks-gift-card #content .promotion-say img.say1 {
    width: 30%;
}

.page-account-program-svc #content .promotion-say img.say2,
.page-starbucks-gift-card #content .promotion-say img.say2 {
    width: 70%;
}

.page-account-program-svc #content .promotion-company,
.page-starbucks-gift-card #content .promotion-company {
    background-color: #EDEBE9;
    padding-bottom: 15%;
}

.page-account-program-svc #content .promotion-company img,
.page-starbucks-gift-card #content .promotion-company img {
    bottom: 0px;
    left: 50%;
    margin: 0px;
    position: absolute;
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 80%;
}

@media (max-width: 640px) {
    .page-account-program-svc #content .promotion-company,
    .page-starbucks-gift-card #content .promotion-company {
        padding-bottom: 30%;
    }

    .page-account-program-svc #content .promotion-company img,
    .page-starbucks-gift-card #content .promotion-company img {
        width: 50%;
    }
}

.page-account-program-svc .thumbnail,
.page-starbucks-gift-card .thumbnail {
    margin-right: 16px;
    width: 100%;
}

.page-account-program-svc .thumbnail.rect,
.page-starbucks-gift-card .thumbnail.rect {
    width: 288px;
}

.page-account-program-svc .thumbnail.rect .preview,
.page-starbucks-gift-card .thumbnail.rect .preview {
    height: 168px;
    width: calc(100% + 38px);
}

.page-account-program-svc .thumbnail.rect strong,
.page-starbucks-gift-card .thumbnail.rect strong {
    color: rgba(0, 0, 0, 0.56);
    font-weight: normal;
    text-align: left;
}

@media (min-width: 1025px) {
    .page-account-program-svc .gift-card-list ul,
    .page-starbucks-gift-card .gift-card-list ul {
        display: box;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
    }

    .page-account-program-svc .gift-card-list ul li a,
    .page-starbucks-gift-card .gift-card-list ul li a {
        height: 100%;
    }
}

.page-account-program-svc a.thumbnail.rect.card,
.page-starbucks-gift-card a.thumbnail.rect.card {
    width: 100%;
    margin: 0px;
}

@media (min-width: 641px) {
    .page-account-program-svc #content .promotion-tmall,
    .page-account-program-svc #content .promotion-say,
    .page-account-program-svc #content .promotion-company,
    .page-starbucks-gift-card #content .promotion-tmall,
    .page-starbucks-gift-card #content .promotion-say,
    .page-starbucks-gift-card #content .promotion-company {
        padding-top: 72px;
    }

    .page-account-program-svc #content .promotion-say img.say1,
    .page-starbucks-gift-card #content .promotion-say img.say1 {
        width: 60%;
    }

    .page-account-program-svc #content .promotion-say img.say2,
    .page-starbucks-gift-card #content .promotion-say img.say2 {
        width: 100%;
    }

    .page-account-program-svc .tablet-min-h13,
    .page-starbucks-gift-card .tablet-min-h13 {
        min-height: 312px;
    }
}

.page-account-program-msr .margin-r-2,
.page-my-starbucks-rewards .margin-r-2 {
    margin-right: 12px;
}

.page-account-program-msr a:hover svg #download,
.page-my-starbucks-rewards a:hover svg #download {
    fill: #000;
}

.page-account-program-msr .join-rewards,
.page-my-starbucks-rewards .join-rewards {
    display: none;
    background: rgba(255, 255, 255, 0.3);
    padding-bottom: 24px;
}

.page-account-program-msr .join-rewards > .box,
.page-my-starbucks-rewards .join-rewards > .box {
    position: relative;
    padding-left: 0;
    padding-right: 0;
}

.page-account-program-msr .join-rewards > .box > div:first-child img,
.page-my-starbucks-rewards .join-rewards > .box > div:first-child img {
    width: 100%;
    height: 100%;
    box-shadow: none;
    border-radius: 0;
}

.page-account-program-msr .join-rewards > .box .close,
.page-my-starbucks-rewards .join-rewards > .box .close {
    position: absolute;
    top: 4px;
    right: 4px;
}

.page-account-program-msr .hero .wrapper,
.page-my-starbucks-rewards .hero .wrapper {
    padding-bottom: 60px;
}

@media (max-width: 640px) {
    .page-account-program-msr .hero .wrapper,
    .page-my-starbucks-rewards .hero .wrapper {
        padding-bottom: 0;
    }
}

.page-account-program-msr .hero .wrapper .grid,
.page-my-starbucks-rewards .hero .wrapper .grid {
    position: relative;
}

.page-account-program-msr .hero .wrapper .grid .image,
.page-my-starbucks-rewards .hero .wrapper .grid .image {
    position: relative;
    overflow: hidden;
    text-align: center;
}

@media (min-width: 641px) {
    .page-account-program-msr .hero .wrapper .grid .image,
    .page-my-starbucks-rewards .hero .wrapper .grid .image {
        padding: 16% 5% 15%;
    }
}

.page-account-program-msr .hero .wrapper .grid .image img,
.page-my-starbucks-rewards .hero .wrapper .grid .image img {
    position: relative;
    width: 100%;
    max-width: 360px;
}

@media (max-width: 640px) {
    .page-account-program-msr .hero .wrapper .grid,
    .page-my-starbucks-rewards .hero .wrapper .grid {
        padding-top: 120px;
    }

    .page-account-program-msr .hero .wrapper .grid .image,
    .page-my-starbucks-rewards .hero .wrapper .grid .image {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }

    .page-account-program-msr .hero .wrapper .grid .image img,
    .page-my-starbucks-rewards .hero .wrapper .grid .image img {
        width: 260px;
        float: left;
    }

    .page-account-program-msr .hero .wrapper .grid .caption,
    .page-account-program-msr .hero .wrapper .grid .display-2,
    .page-my-starbucks-rewards .hero .wrapper .grid .caption,
    .page-my-starbucks-rewards .hero .wrapper .grid .display-2 {
        display: none;
    }
}

.page-account-program-msr .levels .level-info > div,
.page-my-starbucks-rewards .levels .level-info > div {
    cursor: default;
    height: auto;
    margin-bottom: 24px;
    overflow: hidden;
    position: relative;
}

.page-account-program-msr .levels .level-info > div p,
.page-my-starbucks-rewards .levels .level-info > div p {
    margin-bottom: 10px;
}

.page-account-program-msr .levels .level-info > div:hover,
.page-my-starbucks-rewards .levels .level-info > div:hover {
    height: auto;
}

@media (min-width: 1025px) {
    .page-account-program-msr .levels .level-info > div,
    .page-my-starbucks-rewards .levels .level-info > div {
        height: 144px;
        margin-bottom: -12px;
    }

    .page-account-program-msr .levels .level-info > div:hover,
    .page-my-starbucks-rewards .levels .level-info > div:hover {
        height: 264px;
    }

    .page-account-program-msr .levels .level-info > div:first-child:hover,
    .page-my-starbucks-rewards .levels .level-info > div:first-child:hover {
        height: 360px;
    }

    .page-account-program-msr .levels .level-info > div:last-child,
    .page-my-starbucks-rewards .levels .level-info > div:last-child {
        margin-bottom: 0px;
    }

    .page-account-program-msr .levels .level-info > div:last-child:hover,
    .page-my-starbucks-rewards .levels .level-info > div:last-child:hover {
        height: 336px;
    }
}

.page-account-program-msr .levels .level-info > div > div,
.page-my-starbucks-rewards .levels .level-info > div > div {
    border-radius: 8px;
    padding: 24px 5% 48px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 640px) {
    .page-account-program-msr .levels .level-info > div > div,
    .page-my-starbucks-rewards .levels .level-info > div > div {
        padding-right: 0px;
        padding: 24px 24px 48px;
    }
}

.page-account-program-msr .levels .level-info > div > div .flex > div,
.page-my-starbucks-rewards .levels .level-info > div > div .flex > div {
    position: relative;
    z-index: 1;
}

.page-account-program-msr .levels .level-info > div > div .flex > div ul,
.page-my-starbucks-rewards .levels .level-info > div > div .flex > div ul {
    list-style: none;
}

.page-account-program-msr .levels .level-info > div > div .flex > div ul li,
.page-my-starbucks-rewards .levels .level-info > div > div .flex > div ul li {
    position: relative;
}

.page-account-program-msr .levels .level-info > div > div .flex > div ul li:before,
.page-my-starbucks-rewards .levels .level-info > div > div .flex > div ul li:before {
    background: url("/assets/icons/icon-star-dark.svg") no-repeat center center;
    content: '';
    height: 24px;
    left: -24px;
    opacity: 0.2;
    position: absolute;
    top: 0px;
    width: 18px;
}

.page-account-program-msr .levels .level-info > div > div .flex > div:first-child,
.page-my-starbucks-rewards .levels .level-info > div > div .flex > div:first-child {
    text-align: center;
}

@media (max-width: 640px) {
    .page-account-program-msr .levels .level-info > div > div .flex > div:first-child,
    .page-my-starbucks-rewards .levels .level-info > div > div .flex > div:first-child {
        padding-right: 0px;
    }
}

.page-account-program-msr .levels .level-info > div > div .artwork,
.page-my-starbucks-rewards .levels .level-info > div > div .artwork {
    margin-top: 24px;
    margin-bottom: 24px;
}

.page-account-program-msr .levels .level-info > div > div .elements,
.page-my-starbucks-rewards .levels .level-info > div > div .elements {
    position: absolute;
}

.page-account-program-msr .levels .level-info > div.welcome-level .artwork,
.page-my-starbucks-rewards .levels .level-info > div.welcome-level .artwork {
    width: 180px;
}

.page-account-program-msr .levels .level-info > div.welcome-level .elements:nth-child(1),
.page-my-starbucks-rewards .levels .level-info > div.welcome-level .elements:nth-child(1) {
    bottom: 5%;
    left: -3%;
}

.page-account-program-msr .levels .level-info > div.welcome-level .elements:nth-child(2),
.page-my-starbucks-rewards .levels .level-info > div.welcome-level .elements:nth-child(2) {
    top: 10%;
    right: -3%;
}

.page-account-program-msr .levels .level-info > div.welcome-level .elements:nth-child(3),
.page-my-starbucks-rewards .levels .level-info > div.welcome-level .elements:nth-child(3) {
    bottom: -10%;
    right: -3%;
}

.page-account-program-msr .levels .level-info > div.green-level .artwork,
.page-my-starbucks-rewards .levels .level-info > div.green-level .artwork {
    width: 150px;
    margin-left: -30px;
    margin-top: 12px;
}

@media (max-width: 640px) {
    .page-account-program-msr .levels .level-info > div.green-level .artwork,
    .page-my-starbucks-rewards .levels .level-info > div.green-level .artwork {
        margin-left: 0px;
    }
}

.page-account-program-msr .levels .level-info > div.green-level .elements:nth-child(1),
.page-my-starbucks-rewards .levels .level-info > div.green-level .elements:nth-child(1) {
    top: 10%;
    right: -3%;
}

.page-account-program-msr .levels .level-info > div.green-level .elements:nth-child(2),
.page-my-starbucks-rewards .levels .level-info > div.green-level .elements:nth-child(2) {
    bottom: 5%;
    left: -3%;
}

.page-account-program-msr .levels .level-info > div.gold-level .artwork,
.page-my-starbucks-rewards .levels .level-info > div.gold-level .artwork {
    width: 205px;
    max-width: 205px;
    margin-left: -24px;
    margin-top: 12px;
}

@media (max-width: 640px) {
    .page-account-program-msr .levels .level-info > div.gold-level .artwork,
    .page-my-starbucks-rewards .levels .level-info > div.gold-level .artwork {
        margin-left: 0px;
    }
}

.page-account-program-msr .levels .level-info > div.gold-level .elements:nth-child(1),
.page-my-starbucks-rewards .levels .level-info > div.gold-level .elements:nth-child(1) {
    bottom: 30%;
    left: 3%;
}

.page-account-program-msr .levels .level-info > div.gold-level .elements:nth-child(2),
.page-my-starbucks-rewards .levels .level-info > div.gold-level .elements:nth-child(2) {
    top: 10%;
    right: -5%;
}

.page-account-program-msr .login-column,
.page-my-starbucks-rewards .login-column {
    background: #FFF;
    padding: 48px 0;
}

.page-account-program-msr .login-column div.grid > div:first-child,
.page-my-starbucks-rewards .login-column div.grid > div:first-child {
    border-right: 1px solid rgba(0, 0, 0, 0.12);
}

@media (max-width: 640px) {
    .page-account-program-msr .login-column div.grid > div:first-child,
    .page-my-starbucks-rewards .login-column div.grid > div:first-child {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    }
}

.page-account-program-msr .program.app,
.page-my-starbucks-rewards .program.app {
    background: #EDEBE9;
    margin-top: 48px;
    margin-bottom: -24px;
}

.page-account-program-msr .program.app .image,
.page-my-starbucks-rewards .program.app .image {
    padding-bottom: 0px;
}

.page-account-program-msr .program.app .image img,
.page-my-starbucks-rewards .program.app .image img {
    width: 50%;
}

.page-account-program-msr .program.app .download,
.page-my-starbucks-rewards .program.app .download {
    margin-top: 24px;
    margin-bottom: 24px;
}

@media (min-width: 641px) {
    .page-account-program-msr .login-column,
    .page-my-starbucks-rewards .login-column {
        padding: 48px;
    }

    .page-account-program-msr .program.app .image,
    .page-my-starbucks-rewards .program.app .image {
        margin-right: 24px;
    }

    .page-account-program-msr .program.app .image img,
    .page-my-starbucks-rewards .program.app .image img {
        width: 100%;
    }
}

.page-starbucks-reserve .hero {
    position: relative;
}

.page-starbucks-reserve .hero .wrapper {
    padding-top: 48px;
    padding-bottom: 48px;
}

.page-starbucks-reserve .hero .wrapper h1 {
    color: #C48D69;
}

.page-starbucks-reserve .hero .wrapper img {
    max-width: 72px;
    margin-bottom: 24px;
}

.page-starbucks-reserve .hero .image {
    left: 0;
    background: url(/assets/images/reserve/hero.jpg);
    background-position: 50% 50%;
    background-size: cover;
    height: 100%;
    top: 0;
    width: 100%;
    position: absolute;
}

.page-starbucks-reserve .hero .image:before {
    background-image: linear-gradient(-180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.7) 81%);
    content: '';
    height: 100%;
    position: absolute;
    width: 100%;
}

.page-starbucks-reserve .seelist {
    background: url(/assets/images/reserve/map.jpg);
    background-position: 50% 50%;
    background-size: cover;
    padding: 48px 0;
}

.page-starbucks-reserve .seelist p {
    padding: 0 10%;
}

.page-starbucks-reserve .new {
    background-color: #231F20;
    position: relative;
}

.page-starbucks-reserve .new .caption,
.page-starbucks-reserve .new h2 {
    color: #C48D69;
}

.page-starbucks-reserve .new .center {
    margin: 0px;
    position: relative;
    z-index: 1;
}

.page-starbucks-reserve .new .product li {
    box-sizing: border-box;
    margin-right: -4px;
    display: inline-block;
    padding: 18px;
    vertical-align: top;
    width: 25%;
}

.page-starbucks-reserve .new .product li::after {
    clear: both;
    content: "";
    display: table;
}

.page-starbucks-reserve .new .product li .circle {
    border: 1px solid #eee;
}

.page-starbucks-reserve .new .product li a {
    margin: 0px;
}

.page-starbucks-reserve .new .product li div {
    margin-bottom: 12px;
}

@media (max-width: 640px) {
    .page-starbucks-reserve .new .product li {
        width: 48.5%;
    }
}

.page-starbucks-reserve .new .product li strong {
    color: #FFF;
}

.page-starbucks-reserve .new .footer {
    float: left;
    margin-bottom: 0;
    width: 100%;
}

.page-starbucks-reserve .new .footer img {
    width: 100%;
}

.page-starbucks-reserve .footer {
    position: relative;
    width: 100%;
    margin-bottom: -24px;
}

.page-starbucks-reserve .footer .pattern {
    display: inherit;
    width: 100%;
}

.page-starbucks-reserve .footer .reserve-logo {
    position: absolute;
    bottom: 15%;
    left: 5%;
    max-width: 288px;
    margin: 0 12px;
    width: 40%;
}

body.type-posts #content .hero.space,
body.type-articles #content .hero.space {
    border-top: 2px solid #f7f7f7;
    padding-top: 36px;
    padding-bottom: 24px;
}

@media (min-width: 1025px) {
    body.type-posts #content .hero.space,
    body.type-articles #content .hero.space {
        border-top: 2px solid #00A862;
    }
}

.image-wrapper {
    display: flex;
}

@media (max-width: 640px) {
    .image-wrapper {
        flex-wrap: wrap;
    }
}

.image-wrapper img {
    max-width: 50%;
}

.image-wrapper img:first-of-type {
    margin-right: 10px;
}

@media (max-width: 640px) {
    .image-wrapper img {
        max-width: 100%;
    }

    .image-wrapper img:first-of-type {
        margin-bottom: 10px;
    }
}

.join-form {
    position: relative;
    background-image: linear-gradient(-180deg, #FCFCFC 0%, #FFF 100%);
    padding: 24px 0;
}

.join-form .login-strategy-switcher {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}

.join-form .login-strategy-switcher p {
    text-align: right;
    padding-right: 2px;
    font-size: 12px;
    white-space: nowrap;
}

body.lang-zh .join-form .login-strategy-switcher p {
    padding-right: 12px;
}

.join-form .qrcode-login-tip {
    width: 100px;
    height: 100px;
    background: url("../assets/images/account/qrcode-login-tip.png") no-repeat;
    background-size: contain;
}

.join-form .email-login-tip {
    width: 100px;
    height: 100px;
    background: url("../assets/images/account/email-login-tip.png") no-repeat;
    background-size: contain;
}

.join-form .card {
    padding: 36px 15%;
}

@media (max-width: 640px) {
    .join-form {
        background: none;
        padding: 0 0 24px 0;
    }

    .join-form .card {
        padding: 24px;
    }

    .join-form .login-strategy-switcher {
        display: none;
    }
}

.join-form .wrapper {
    overflow: hidden;
    max-width: 480px;
}

.join-form .login-form > p {
    float: right;
    margin: 0px;
    padding-top: 6px;
    position: relative;
    z-index: 1;
}

.join-form .login-form .field.checkbox {
    padding-top: 0px;
    margin-top: 6px;
    display: inline-block;
}

.join-form .login-form .field.checkbox label:after {
    width: 32px;
    height: 32px;
    top: -4px;
    left: 0;
}

.join-form .login-form .field.captcha {
    display: inline-block;
    padding-top: 0px;
    width: 100%;
}

.join-form .login-form .qrcode-area {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 95px;
    margin-bottom: 74px;
}

.join-form .login-form .qrcode-area .qrcode {
    position: relative;
    width: 258px;
    border: 8px solid #ccc;
    padding: 6px;
    background-color: white;
    margin-right: 40px;
}

.join-form .login-form .qrcode-area .qrcode .qrcode-overlay {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    color: #00A862;
}

.join-form .login-form .qrcode-area .qrcode .qrcode-overlay div:first-of-type {
    margin-bottom: 14px;
}

.join-form .login-form .qrcode-area .qrcode .qrcode-overlay .grey {
    color: rgba(0, 0, 0, 0.38);
}

.join-form .login-form .qrcode-tip {
    width: 100%;
    text-align: center;
}

@media (max-width: 640px) {
    .join-form .login-form > p {
        font-size: 13px;
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 320px) {
    .join-form .login-form .field.checkbox {
        float: none;
        margin-bottom: 12px;
    }

    .join-form .login-form > p {
        float: none;
        padding-top: 0px;
        width: 100%;
        margin-bottom: 0;
    }
}

.join-form .login-form .form-field {
    position: relative;
}

.join-form .login-form .form-field .toggle-password {
    top: 30px;
    cursor: pointer;
    right: 8px;
    width: 24px;
    height: 24px;
    position: absolute;
    z-index: 500;
}

.join-form .login-form .form-field .toggle-password.show {
    background: url("../assets/icons/icon-show-password.svg") no-repeat;
    background-size: contain;
}

.join-form .login-form .form-field .toggle-password.hide {
    background: url("../assets/icons/icon-hide-password.svg") no-repeat;
    background-size: contain;
}

.join-form .login-form .sign-in-forgot-password {
    font-weight: normal;
}

.join-form .login-form .captchaWrapper {
    display: inline-block;
    width: 100%;
}

@media (max-width: 640px) {
    .join-form .login-form .captchaWrapper {
        background: #fff;
        box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.12);
        border-radius: 2px;
        margin-bottom: 3px;
    }
}

@media screen and (max-width: 320px) {
    .join-form .login-form .captchaWrapper > * {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        transform-origin: left top;
        -webkit-transform-origin: left top;
    }
}

.join-form .login-form .captchaWrapper label {
    display: none;
}

.join-form .login-form .captchaWrapper.validated {
    height: 48px;
}

.join-form .login-form .captchaWrapper .passed {
    height: 48px;
    width: 100%;
    float: left;
    margin-bottom: 24px;
}

.join-form .login-form .captchaWrapper .passed p {
    margin: 12px 0 0 0px;
}

.join-form .login-form .actions {
    float: left;
    width: 100%;
}

.join-form .login-form .field:last-child {
    float: left;
    width: 100%;
}

.join-form .form-field .field:nth-child(2) {
    margin-bottom: 0px;
}

.join-form .form-field .password-group-field {
    position: relative;
}

.page-account-register_ccc,
.page-account-register {
    background-image: linear-gradient(-180deg, #FCFCFC 0%, #FFF 100%);
}

#account-register-ccc #overlay-what-pin-code.overlay.active > .body,
#account-register #overlay-what-pin-code.overlay.active > .body {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -webkit-align-items: center;
    -webkit-justify-content: center;
}

@media (max-width: 640px) {
    #account-register-ccc #overlay-what-pin-code.overlay.active > .body,
    #account-register #overlay-what-pin-code.overlay.active > .body {
        padding-left: 0;
        padding-right: 0;
    }
}

#account-register-ccc #overlay-what-pin-code.overlay.active > .body img,
#account-register #overlay-what-pin-code.overlay.active > .body img {
    display: inline-block;
    width: 80%;
    max-width: 550px;
    margin-bottom: 48px;
}

@media (max-width: 640px) {
    #account-register-ccc #overlay-what-pin-code.overlay.active > .body img,
    #account-register #overlay-what-pin-code.overlay.active > .body img {
        width: 100%;
    }
}

#account-register-ccc .register-tab-title .register-by-app,
#account-register .register-tab-title .register-by-app {
    padding: 4px 20px;
    font-size: 14px;
    color: #00A862;
    border: 1px solid #00A862;
    border-radius: 30px 0 0 30px;
}

@media (max-width: 640px) {
    #account-register-ccc .register-tab-title .register-by-app,
    #account-register .register-tab-title .register-by-app {
        text-align: right;
    }
}

#account-register-ccc .register-tab-title .register-by-app.no-entry,
#account-register .register-tab-title .register-by-app.no-entry {
    border-radius: 30px;
}

#account-register-ccc .register-tab-title .register-by-card,
#account-register .register-tab-title .register-by-card {
    padding: 4px 20px;
    font-size: 14px;
    color: #00A862;
    border: 1px solid #00A862;
    border-radius: 0 30px 30px 0;
}

#account-register-ccc .register-tab-title .active,
#account-register .register-tab-title .active {
    background-color: #00A862;
    color: white;
}

#account-register-ccc .register-form .wrapper,
#account-register .register-form .wrapper {
    overflow: visible;
}

#account-register-ccc .register-form .wrapper-app,
#account-register .register-form .wrapper-app {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -webkit-align-items: center;
    -webkit-justify-content: center;
}

@media (max-width: 640px) {
    #account-register-ccc .register-form .wrapper-app,
    #account-register .register-form .wrapper-app {
        flex-direction: column;
        -webkit-flex-direction: column;
    }
}

#account-register-ccc .register-form .wrapper-app .app-register-desc,
#account-register .register-form .wrapper-app .app-register-desc {
    width: 480px;
    margin-right: 24px;
}

@media (max-width: 640px) {
    #account-register-ccc .register-form .wrapper-app .app-register-desc,
    #account-register .register-form .wrapper-app .app-register-desc {
        width: 100%;
        margin-right: 0;
        box-sizing: border-box;
        padding: 0 24px;
    }
}

#account-register-ccc .register-box,
#account-register .register-box {
    margin-top: 24px;
    padding: 12px 24px;
}

#account-register-ccc .register-box span,
#account-register .register-box span {
    color: rgba(0, 0, 0, 0.56);
}

#account-register-ccc .register-box h2 span,
#account-register .register-box h2 span {
    color: #000;
}

#account-register-ccc .register-box .apron-green span,
#account-register .register-box .apron-green span {
    color: #00A862;
}

#account-register-ccc .register-box h2,
#account-register .register-box h2 {
    margin: 0;
    display: inline-block;
}

#account-register-ccc .register-box .float-right span,
#account-register .register-box .float-right span {
    display: inline-block;
    width: 18px;
}

#account-register-ccc .register-box .float-right span:first-child,
#account-register .register-box .float-right span:first-child {
    float: right;
    margin-left: 12px;
}

#account-register-ccc .register-box .separator,
#account-register .register-box .separator {
    margin: 12px -24px;
}

@media (max-width: 640px) {
    #account-register-ccc .register-box,
    #account-register .register-box {
        background: #fff;
        box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.12);
        border-radius: 2px;
        padding: 12px;
    }

    #account-register-ccc .register-box .separator,
    #account-register .register-box .separator {
        margin: 12px -12px;
    }
}

#account-register-ccc .password-container,
#account-register .password-container {
    position: relative;
}

#account-register-ccc .password-container #sign-up-what-is-this,
#account-register .password-container #sign-up-what-is-this {
    bottom: -36px;
    font-size: 1.4rem;
    position: absolute;
    left: 0px;
    z-index: 500;
}

#account-register-ccc .register-notice,
#account-register .register-notice {
    margin-top: 60px;
    color: rgba(0, 0, 0, 0.56);
}

#account-register-ccc .field.last-child,
#account-register .field.last-child {
    padding: 0px;
}

#account-register-ccc .center .button.small,
#account-register .center .button.small {
    margin: -10px 0 -10px 10px;
}

#account-register-ccc .date-selector,
#account-register .date-selector {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

#account-register-ccc .date-selector .select,
#account-register .date-selector .select {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    flex: 1;
}

#account-register-ccc .action-with-back-button,
#account-register .action-with-back-button {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

#account-register-ccc #registration-success-dialog.dialog .dialog-box,
#account-register #registration-success-dialog.dialog .dialog-box {
    max-width: 600px;
    overflow: hidden;
}

#account-register-ccc #registration-success-dialog.dialog .body,
#account-register #registration-success-dialog.dialog .body {
    position: relative;
}

#account-register-ccc #registration-success-dialog.dialog .body p,
#account-register #registration-success-dialog.dialog .body p {
    text-align: left;
}

#account-register-ccc #registration-success-dialog.dialog .body .memo,
#account-register #registration-success-dialog.dialog .body .memo {
    box-sizing: border-box;
    width: 50%;
    float: left;
    padding: 24px 0px 24px 24px;
}

#account-register-ccc #registration-success-dialog.dialog .body .device,
#account-register #registration-success-dialog.dialog .body .device {
    text-align: center;
    width: 50%;
    float: right;
    margin-bottom: -45%;
}

#account-register-ccc #registration-success-dialog.dialog .body .device img,
#account-register #registration-success-dialog.dialog .body .device img {
    width: 80%;
}

@media (max-width: 640px) {
    #account-register-ccc #registration-success-dialog.dialog .body .dialog-box,
    #account-register #registration-success-dialog.dialog .body .dialog-box {
        overflow: hidden;
    }

    #account-register-ccc #registration-success-dialog.dialog .body .memo,
    #account-register #registration-success-dialog.dialog .body .memo {
        width: 100%;
        padding: 0;
        margin-bottom: 48px;
    }

    #account-register-ccc #registration-success-dialog.dialog .body .device,
    #account-register #registration-success-dialog.dialog .body .device {
        margin-bottom: -50%;
        width: 100%;
    }

    #account-register-ccc #registration-success-dialog.dialog .body .device img,
    #account-register #registration-success-dialog.dialog .body .device img {
        width: 60%;
    }

    #account-register-ccc #registration-success-dialog.dialog .body .app-download-btn,
    #account-register #registration-success-dialog.dialog .body .app-download-btn {
        display: block;
    }
}

#account-register-ccc .app-download-button-group,
#account-register .app-download-button-group {
    display: inline-block;
    width: 100%;
    text-align: center;
}

#account-register-ccc .app-download-button-group a,
#account-register .app-download-button-group a {
    display: inline-block;
    float: none !important;
}

#account-register-ccc .app-download-button-group .desktop-button,
#account-register .app-download-button-group .desktop-button {
    display: none;
}

@media (min-width: 1025px) {
    #account-register-ccc .app-download-button-group .desktop-button,
    #account-register .app-download-button-group .desktop-button {
        display: block;
    }

    #account-register-ccc .app-download-button-group .mobile-button,
    #account-register .app-download-button-group .mobile-button {
        display: none;
    }
}

@media (max-width: 640px) {
    #account-register-ccc .app-download-button-group .mobile-download,
    #account-register .app-download-button-group .mobile-download {
        bottom: 136px;
    }
}

#account-register-ccc .terms-frame,
#account-register .terms-frame {
    width: 100%;
    height: 250px;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    overflow: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

#account-register-ccc .terms-frame iframe,
#account-register .terms-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media all and (-ms-high-contrast: none) {
    #account-register-ccc .terms-frame,
    #account-register .terms-frame {
        overflow: hidden;
    }
}

@supports (-ms-accelerator: true) {
    #account-register-ccc .terms-frame,
    #account-register .terms-frame {
        overflow: hidden;
    }
}

.page-help-legal-my-starbucks-rewards-program-terms-and-conditions, .page-help-legal-starbucks-rewards-program-terms-and-conditions-overall {
    max-width: 100vw;
    width: 100px;
    min-width: 100%;
}

.page-help-legal-my-starbucks-rewards-program-terms-and-conditions #nav,
.page-help-legal-my-starbucks-rewards-program-terms-and-conditions .frap,
.page-help-legal-my-starbucks-rewards-program-terms-and-conditions h1.black-3,
.page-help-legal-my-starbucks-rewards-program-terms-and-conditions .primary-mobile,
.page-help-legal-my-starbucks-rewards-program-terms-and-conditions .WCLSurvey, .page-help-legal-starbucks-rewards-program-terms-and-conditions-overall #nav,
.page-help-legal-starbucks-rewards-program-terms-and-conditions-overall .frap,
.page-help-legal-starbucks-rewards-program-terms-and-conditions-overall h1.black-3,
.page-help-legal-starbucks-rewards-program-terms-and-conditions-overall .primary-mobile,
.page-help-legal-starbucks-rewards-program-terms-and-conditions-overall .WCLSurvey {
    display: none;
}

#react-svc-query table {
    width: 100%;
}

@media (max-width: 640px) {
    #react-svc-query table.transactions thead {
        display: none;
    }

    #react-svc-query table.transactions tbody tr {
        display: block;
        border: 0;
        border-top: 1px solid rgba(0, 0, 0, 0.12);
        margin-bottom: 24px;
    }

    #react-svc-query table.transactions tbody td {
        border-top: 1px solid rgba(0, 0, 0, 0.12);
        padding-left: 0;
        padding-top: 12px;
        padding-bottom: 12px;
        padding-right: 12px;
        display: block;
        text-align: right;
    }

    #react-svc-query table.transactions tbody td:first-child {
        border-top-width: 4px;
    }

    #react-svc-query table.transactions tbody td:before {
        content: attr(data-label);
        float: left;
    }
}

#react-svc-query .tips {
    font-size: 1.2rem;
}

#react-svc-query .captchaWrapper.spinning {
    position: relative;
}

#react-svc-query .captchaWrapper.spinning:before {
    -webkit-animation: spin 1s infinite linear;
    animation: spin 1s infinite linear;
    border-bottom: 3px solid rgba(0, 168, 98, 0.1);
    border-left: 3px solid rgba(0, 168, 98, 0.1);
    border-right: 3px solid rgba(0, 168, 98, 0.1);
    border-top: 3px solid rgba(0, 168, 98, 0.4);
    border-radius: 100%;
    content: '';
    height: 20px;
    left: 50%;
    margin: -13px 0 0 -13px;
    top: 50%;
    width: 20px;
    position: absolute;
    z-index: 1;
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

#react-svc-query .captchaWrapper .passed {
    text-align: center;
}

#react-svc-query .captchaWrapper .passed .apron-green {
    margin: 0 !important;
}

#react-svc-query .captchaWrapper .passed + div {
    display: none !important;
}

#react-svc-query .captchaWrapper .passed .icon-check_circle:before {
    font-family: icon;
    font-variant: normal;
    font-weight: 400;
    speak: none;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    font-size: 32px;
    font-size: 3.2rem;
    color: rgba(0, 168, 98, 0.4);
    content: '\E86C';
    display: block;
}

#react-invoice table {
    width: 100%;
}

#react-invoice .i-have-two-buttons {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

/* Slider */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
}

.slick-track:before, .slick-track:after {
    content: "";
    display: table;
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none;
}

[dir="rtl"] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.page-404 #content, .page-maintenance #content, .page-500 #content {
    padding-top: 0;
    padding-bottom: 0;
}

@media (min-width: 1025px) {
    .page-404 #content .min-h100vh, .page-maintenance #content .min-h100vh, .page-500 #content .min-h100vh {
        min-height: 100vh;
    }
}

.page-404 #content .logo, .page-maintenance #content .logo, .page-500 #content .logo {
    background-image: url(/assets/images/logo.svg);
    background-size: cover;
    height: 216px;
    opacity: 0.2;
    width: 216px;
}

.page-404 #content .align-center, .page-maintenance #content .align-center, .page-500 #content .align-center {
    text-align: center;
}

.empty-states {
    height: auto;
    margin: 24px;
    min-height: 360px;
}

.empty-states div > img {
    display: inherit;
    margin: 0 auto 36px auto;
    width: 168px;
}

@media (min-width: 1025px) {
    .empty-states {
        height: 100vh;
        margin: -24px 0;
    }
}

@media (max-width: 640px) {
    .empty-states div > img {
        width: 50%;
    }
}

.page-menu-food-dragon-dumpling h2 {
    font-size: 26px;
    font-size: 2.6rem;
}

.page-menu-food-dragon-dumpling h3 {
    font-size: 22px;
    font-size: 2.2rem;
}

@media (max-width: 640px) {
    .page-menu-food-dragon-dumpling h3 {
        font-size: 16px;
        font-size: 1.6rem;
    }
}

.page-menu-food-dragon-dumpling #content {
    background: url("/images/campaigns/dragon-dumpling/dd-bg.jpg") repeat-y center center;
    background-color: #eeeef0;
    background-size: contain;
}

.page-menu-food-dragon-dumpling #content .headline {
    margin: 20% 0% 20% 30%;
    z-index: 1;
    position: relative;
    width: 70%;
}

.page-menu-food-dragon-dumpling #content .fruit {
    top: -5%;
    margin-left: -15%;
    width: 50%;
    max-width: 350px;
    z-index: 1;
}

.page-menu-food-dragon-dumpling #content .pattern {
    opacity: 0.9;
    max-width: 700px;
    width: 100%;
}

@media (max-width: 640px) {
    .page-menu-food-dragon-dumpling #content .pattern {
        width: 110%;
    }
}

.page-menu-food-dragon-dumpling #content .pattern.pattern-1 {
    top: -10%;
    left: -60%;
    -ms-transform: rotate(310deg);
    -webkit-transform: rotate(310deg);
    transform: rotate(310deg);
}

.page-menu-food-dragon-dumpling #content .pattern.pattern-2 {
    top: -80%;
    right: -30%;
    -ms-transform: rotate(277deg);
    -webkit-transform: rotate(277deg);
    transform: rotate(277deg);
}

.page-menu-food-dragon-dumpling #content .pattern.pattern-3 {
    bottom: -80%;
    right: -70%;
    -ms-transform: rotate(195deg);
    -webkit-transform: rotate(195deg);
    transform: rotate(195deg);
}

.page-menu-food-dragon-dumpling #content .pattern.pattern-4 {
    position: absolute;
    bottom: -180%;
    right: -80%;
    -ms-transform: rotate(29deg);
    -webkit-transform: rotate(29deg);
    transform: rotate(29deg);
}

.page-menu-food-dragon-dumpling #content .pattern.pattern-5 {
    position: absolute;
    top: -50%;
    left: -80%;
    -ms-transform: rotate(357deg);
    -webkit-transform: rotate(357deg);
    transform: rotate(357deg);
}

.page-menu-food-dragon-dumpling #content .products {
    position: relative;
}

.page-menu-food-dragon-dumpling #content .products .img {
    text-align: center;
}

.page-menu-food-dragon-dumpling #content .products .img img {
    max-width: 380px;
    width: 100%;
    margin-top: -10%;
}

@media (max-width: 640px) {
    .page-menu-food-dragon-dumpling #content .products {
        padding: 0 5%;
        width: 90%;
    }

    .page-menu-food-dragon-dumpling #content .products .text {
        text-align: center;
    }
}

.page-menu-food-dragon-dumpling #content .products .coldbrew {
    margin-top: 48px;
}

.page-menu-food-dragon-dumpling #content .products .coldbrew,
.page-menu-food-dragon-dumpling #content .products .coldbrew h2 {
    color: #361C13;
}

.page-menu-food-dragon-dumpling #content .products .coldbrew .img,
.page-menu-food-dragon-dumpling #content .products .coldbrew h2 .img {
    text-align: center;
}

@media (max-width: 640px) {
    .page-menu-food-dragon-dumpling #content .products .coldbrew .img,
    .page-menu-food-dragon-dumpling #content .products .coldbrew h2 .img {
        width: 100%;
    }
}

.page-menu-food-dragon-dumpling #content .products .coldbrew .img img,
.page-menu-food-dragon-dumpling #content .products .coldbrew h2 .img img {
    max-width: 290px;
}

.page-menu-food-dragon-dumpling #content .products .teavana,
.page-menu-food-dragon-dumpling #content .products .teavana h2 {
    color: #ee806d;
}

@media (min-width: 641px) {
    .page-menu-food-dragon-dumpling #content .products .teavana .img,
    .page-menu-food-dragon-dumpling #content .products .teavana h2 .img {
        float: right;
    }
}

.page-menu-food-dragon-dumpling #content .products .matcha,
.page-menu-food-dragon-dumpling #content .products .matcha h2 {
    color: #698e3d;
}

.page-menu-food-dragon-dumpling #content .products .hazelnut,
.page-menu-food-dragon-dumpling #content .products .hazelnut h2 {
    color: #553520;
}

.page-menu-food-dragon-dumpling #content .products .hazelnut .img,
.page-menu-food-dragon-dumpling #content .products .hazelnut h2 .img {
    text-align: center;
}

@media (max-width: 640px) {
    .page-menu-food-dragon-dumpling #content .products .hazelnut .img,
    .page-menu-food-dragon-dumpling #content .products .hazelnut h2 .img {
        width: 100%;
    }
}

.page-menu-food-dragon-dumpling #content .products .hazelnut .img img,
.page-menu-food-dragon-dumpling #content .products .hazelnut h2 .img img {
    max-width: 260px;
}

@media (min-width: 641px) {
    .page-menu-food-dragon-dumpling #content .products .hazelnut .img,
    .page-menu-food-dragon-dumpling #content .products .hazelnut h2 .img {
        float: right;
    }
}

.page-menu-food-dragon-dumpling #content .products .mango,
.page-menu-food-dragon-dumpling #content .products .mango h2 {
    color: #ce9b3d;
}

.page-menu-food-dragon-dumpling #content .products .mango .img span,
.page-menu-food-dragon-dumpling #content .products .mango h2 .img span {
    color: rgba(0, 0, 0, 0.56);
    display: block;
}

.page-menu-food-dragon-dumpling #content .products > div {
    padding: 48px 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 640px) {
    .page-menu-food-dragon-dumpling #content .products > div {
        padding: 36px 0;
    }
}

.page-menu-food-dragon-dumpling #content .products > div.img {
    max-width: 350px;
}

.page-menu-food-dragon-dumpling #content .products .patterns {
    position: inherit;
    padding: 0px;
    z-index: 0;
}

.page-menu-food-dragon-dumpling #content .promotion > div {
    padding: 48px 0;
}

@media (max-width: 640px) {
    .page-menu-food-dragon-dumpling #content .promotion > div {
        padding: 36px 0;
    }
}

.page-menu-food-dragon-dumpling #content .promotion .img {
    display: block;
    margin: 0 auto;
    max-width: 230px;
}

.page-menu-food-dragon-dumpling #content .promotion .text,
.page-menu-food-dragon-dumpling #content .promotion .comment {
    max-width: 420px;
    margin: 0 auto;
    width: 80%;
}

.page-menu-food-dragon-dumpling #content .promotion .p-2 .text {
    width: 20%;
}

@media (max-width: 640px) {
    .page-menu-food-dragon-dumpling #content .promotion .p-2 .text p {
        font-size: 12px;
        font-size: 1.2rem;
        line-height: 160%;
    }
}

.page-menu-food-dragon-dumpling #content .promotion .p-2 .imgwrapper {
    width: 60%;
}

.page-menu-food-dragon-dumpling #content .promotion .p-2 .imgwrapper .img {
    width: 100%;
    max-width: 320px;
}

@media (max-width: 640px) {
    .page-menu-food-dragon-dumpling #content .promotion .p-2 .grid.columns-3 {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .page-menu-food-dragon-dumpling #content .promotion .p-2 .grid.columns-3::after {
        clear: both;
        content: "";
        display: table;
    }

    .page-menu-food-dragon-dumpling #content .promotion .p-2 .grid.columns-3 > * {
        box-sizing: border-box;
        clear: none;
        float: left;
        margin: 0;
        padding: 0;
        width: 33.3333333333%;
    }

    .page-menu-food-dragon-dumpling #content .promotion .p-2 .grid.columns-3 > *:nth-child(3n + 1) {
        clear: left;
    }

    .page-menu-food-dragon-dumpling #content .promotion .p-2 .grid.columns-3 .text {
        width: 20%;
    }

    .page-menu-food-dragon-dumpling #content .promotion .p-2 .grid.columns-3 .imgwrapper {
        width: 60%;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .page-menu-food-dragon-dumpling #content .promotion .p-2 .grid.columns-3 {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .page-menu-food-dragon-dumpling #content .promotion .p-2 .grid.columns-3::after {
        clear: both;
        content: "";
        display: table;
    }

    .page-menu-food-dragon-dumpling #content .promotion .p-2 .grid.columns-3 > * {
        box-sizing: border-box;
        clear: none;
        float: left;
        margin: 0;
        padding: 0;
        width: 33.3333333333%;
    }

    .page-menu-food-dragon-dumpling #content .promotion .p-2 .grid.columns-3 > *:nth-child(3n + 1) {
        clear: left;
    }

    .page-menu-food-dragon-dumpling #content .promotion .p-2 .grid.columns-3 .text {
        width: 20%;
    }

    .page-menu-food-dragon-dumpling #content .promotion .p-2 .grid.columns-3 .imgwrapper {
        width: 60%;
    }
}

.page-menu-food-dragon-dumpling #content .promotion .p-4 table {
    margin: 0 auto;
    width: 320px;
}

.page-menu-food-dragon-dumpling #content .promotion .p-4 table tbody tr:first-child {
    border-top-width: 0;
}

.page-menu-food-dragon-dumpling #content .promotion .p-4 table td {
    color: rgba(0, 0, 0, 0.87);
    font-size: 19px;
    font-size: 1.9rem;
    text-align: center;
    border: 1px solid #00A862;
    padding: 4px 12px;
    font-weight: bold;
}

.page-menu-food-dragon-dumpling #content footer small {
    width: 70%;
    float: left;
    line-height: 160%;
    padding-right: 24px;
    box-sizing: border-box;
}

.page-menu-food-dragon-dumpling #content footer img {
    float: right;
    width: 30%;
}

.page-menu-beverages-teavana #teavana a {
    color: #000;
}

.page-menu-beverages-teavana #teavana a:hover {
    color: #000;
    text-decoration: none;
}

.page-menu-beverages-teavana #teavana .thumbnail {
    background-color: transparent !important;
    border: none !important;
}

body.image-campaign #content {
    padding-top: 0;
}

body.image-campaign #content img, body.image-campaign #content video {
    display: block;
    width: 100%;
}

body.page-menu-beverages-teavana #content .banner, body.page-menu-beverages-modern-mixology #content .banner {
    padding-top: 40%;
}

@media (max-width: 640px) {
    body.page-menu-beverages-teavana #content .banner, body.page-menu-beverages-modern-mixology #content .banner {
        padding-top: 60%;
    }
}

body.page-menu-beverages-teavana #content #intro, body.page-menu-beverages-modern-mixology #content #intro {
    color: #481600;
    font-size: 17px;
    font-size: 1.7rem;
    line-height: 160%;
    padding-bottom: 48px;
    padding-top: 48px;
    text-align: center;
}

@media (min-width: 641px) {
    body.page-menu-beverages-teavana #content #intro, body.page-menu-beverages-modern-mixology #content #intro {
        padding-bottom: 96px;
        padding-top: 96px;
    }
}

body.page-menu-beverages-teavana #content .product-details, body.page-menu-beverages-modern-mixology #content .product-details {
    margin-bottom: 96px;
    margin-top: 96px;
    position: relative;
}

@media (min-width: 641px) {
    body.page-menu-beverages-teavana #content .product-details, body.page-menu-beverages-modern-mixology #content .product-details {
        margin-bottom: 144px;
        margin-top: 144px;
    }
}

body.page-menu-beverages-teavana #content .product-details h2,
body.page-menu-beverages-teavana #content .product-details h3,
body.page-menu-beverages-teavana #content .product-details h4, body.page-menu-beverages-modern-mixology #content .product-details h2,
body.page-menu-beverages-modern-mixology #content .product-details h3,
body.page-menu-beverages-modern-mixology #content .product-details h4 {
    color: inherit;
}

body.page-menu-beverages-teavana #content .product-details h2, body.page-menu-beverages-modern-mixology #content .product-details h2 {
    font-size: 24px;
    font-size: 2.4rem;
}

body.page-menu-beverages-teavana #content .product-details small, body.page-menu-beverages-modern-mixology #content .product-details small {
    color: #000;
    line-height: 160%;
}

@media (min-width: 641px) {
    body.page-menu-beverages-teavana #content .product-details .pitch, body.page-menu-beverages-modern-mixology #content .product-details .pitch {
        display: inline-block;
        position: relative;
        width: 60%;
        z-index: 999;
    }

    body.page-menu-beverages-teavana #content .product-details .preview, body.page-menu-beverages-modern-mixology #content .product-details .preview {
        position: absolute;
        top: 0;
        width: 80%;
    }

    body.page-menu-beverages-teavana #content .product-details#blacktea .preview, body.page-menu-beverages-modern-mixology #content .product-details#blacktea .preview {
        left: 0;
        transform: translate(60%, -5%);
    }

    body.page-menu-beverages-teavana #content .product-details#greentea .preview, body.page-menu-beverages-modern-mixology #content .product-details#greentea .preview {
        right: 0;
        transform: translate(-60%, -5%);
    }
}

body.page-menu-beverages-teavana #content #blacktea, body.page-menu-beverages-modern-mixology #content #blacktea {
    color: #ca391b;
}

body.page-menu-beverages-teavana #content #greentea, body.page-menu-beverages-modern-mixology #content #greentea {
    color: #dc8005;
}

@media (min-width: 641px) {
    body.page-menu-beverages-teavana #content #greentea, body.page-menu-beverages-modern-mixology #content #greentea {
        text-align: right;
    }
}

body.page-menu-beverages-modern-mixology #content {
    background-image: none;
    background-color: #ffffff;
    padding-top: 0;
}

.page-starbucks-delivers-info .chatgirl-desktop {
    position: absolute;
    bottom: 0;
    left: 14%;
    width: 22%;
}

.page-starbucks-delivers-info .chatgirl-desktop-en {
    position: absolute;
    bottom: 0.1%;
    left: 14%;
    width: 20%;
}

.page-starbucks-delivers-info .chatgirl-mobile {
    position: absolute;
    bottom: 1.5%;
    left: 8%;
    width: 25%;
}

.page-starbucks-delivers-info .chatgirl-mobile-en {
    position: absolute;
    bottom: 0;
    left: 8%;
    width: 25%;
}

.page-starbucks-delivers-info .faq-btn {
    position: absolute;
    right: 9%;
    bottom: 4%;
    width: 22%;
    height: 7%;
}

.page-starbucks-delivers-info .faq-btn a {
    display: block;
    width: 100%;
    height: 100%;
}

.page-starbucks-delivers-info .faq-btn-mobile {
    position: absolute;
    right: 3%;
    bottom: 4%;
    width: 29%;
    height: 5%;
}

.page-starbucks-delivers-info .faq-btn-mobile a {
    display: block;
    width: 100%;
    height: 100%;
}

.page-starbucks-delivers-info .faq-btn-mobile-en {
    position: absolute;
    right: 3%;
    bottom: 3%;
    width: 29%;
    height: 5%;
}

.page-starbucks-delivers-info .faq-btn-mobile-en a {
    display: block;
    width: 100%;
    height: 100%;
}

.page-starbucks-delivers-info .app-download-button-group-desktop {
    position: absolute;
    top: 28%;
    left: 2%;
    width: 28%;
    height: 15%;
}

.page-starbucks-delivers-info .app-download-button-group-desktop a {
    display: block;
    width: 100%;
    height: 50%;
}

.page-starbucks-delivers-info .app-download-button-group-mobile {
    position: absolute;
    top: 5.5%;
    left: 2%;
    width: 34%;
    height: 10%;
}

.page-starbucks-delivers-info .app-download-button-group-mobile a {
    display: block;
    width: 100%;
    height: 50%;
}

.page-starbucks-delivers-info .app-download-button-group-desktop-en {
    position: absolute;
    top: 28%;
    left: 2%;
    width: 28%;
    height: 15%;
}

.page-starbucks-delivers-info .app-download-button-group-desktop-en a {
    display: block;
    width: 100%;
    height: 50%;
}

.page-starbucks-delivers-info .app-download-button-group-mobile-en {
    position: absolute;
    top: 25%;
    left: 2%;
    width: 71%;
    height: 5%;
}

.page-starbucks-delivers-info .app-download-button-group-mobile-en a {
    display: inline-block;
    width: 47%;
    height: 100%;
}

.page-starbucks-delivers-info .separator {
    width: 100%;
    height: 50px;
}

#delivery-map {
    height: 500px;
}

#delivery-map .city-count {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #00A862;
    color: #FFF;
    font-size: 13px;
}

.page-starbucks-delivers-info .updated .deliver-banner {
    text-align: center;
    padding-bottom: 15px;
}

.page-starbucks-delivers-info .updated .deliver-banner img {
    width: 78%;
}

@media (max-width: 640px) {
    .page-starbucks-delivers-info .updated .deliver-banner {
        padding-bottom: 20px;
    }
}

.page-starbucks-delivers-info .updated .banner-separator {
    box-sizing: border-box;
    height: 15px;
    border-width: 2px 0;
    border-color: #045D38;
    border-style: solid;
    margin: auto;
    width: 87%;
    margin-bottom: 30px;
}

@media (max-width: 640px) {
    .page-starbucks-delivers-info .updated .banner-separator {
        height: 10px;
    }
}

.page-starbucks-delivers-info .updated .deliver-video {
    box-sizing: border-box;
    width: 87%;
    text-align: center;
    padding-left: 1.5%;
    padding-right: 1.5%;
    padding-top: 80px;
    padding-bottom: 10px;
    border: 2px solid #045D38;
    border-bottom: none;
    margin: auto;
}

@media (max-width: 640px) {
    .page-starbucks-delivers-info .updated .deliver-video {
        padding-top: 40px;
        padding-bottom: 5px;
    }
}

.page-starbucks-delivers-info .updated .border-mask {
    position: absolute;
    width: 2px;
    background: #f7f7f7;
    height: 80px;
    top: -2px;
    left: -2px;
}

@media (max-width: 640px) {
    .page-starbucks-delivers-info .updated .border-mask {
        height: 40px;
    }
}

.page-starbucks-delivers-info .updated .deliver-nav {
    position: absolute;
    left: 0;
    top: 0;
    margin-top: -27px;
    width: 91%;
    border-radius: 16px;
}

.page-starbucks-delivers-info .updated .deliver-nav .deliver-nav-item {
    overflow-y: visible;
    position: relative;
    background: #F1F1F1;
    float: left;
    display: inline-block;
    width: 25%;
    padding: 9px 0;
    cursor: pointer;
}

.page-starbucks-delivers-info .updated .deliver-nav .deliver-nav-item img {
    height: 36px;
    margin: auto;
    position: relative;
    top: 2px;
}

@media (max-width: 640px) {
    .page-starbucks-delivers-info .updated .deliver-nav .deliver-nav-item img {
        height: 24px;
    }
}

.page-starbucks-delivers-info .updated .deliver-nav .deliver-nav-item.first {
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}

.page-starbucks-delivers-info .updated .deliver-nav .deliver-nav-item.last {
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
}

.page-starbucks-delivers-info .updated .deliver-nav .deliver-nav-item.selected, .page-starbucks-delivers-info .updated .deliver-nav .deliver-nav-item.clicked {
    background: white;
    border-radius: 0;
}

.page-starbucks-delivers-info .updated .deliver-nav .deliver-nav-item.clicked .deliver-nav-menu {
    display: inherit;
}

.page-starbucks-delivers-info .updated .deliver-nav .deliver-nav-item .deliver-nav-menu {
    z-index: 100;
    position: absolute;
    left: 0;
    right: 0;
    transform: translateY(9px);
    display: none;
}

.page-starbucks-delivers-info .updated .deliver-nav .deliver-nav-item .deliver-nav-menu-item {
    font-size: 12px;
    vertical-align: middle;
    line-height: 50px;
    height: 50px;
    background: white;
    color: #00A862;
    cursor: pointer;
}

.page-starbucks-delivers-info .updated .deliver-nav .deliver-nav-item .deliver-nav-menu-item:hover, .page-starbucks-delivers-info .updated .deliver-nav .deliver-nav-item .deliver-nav-menu-item.selected {
    background-color: #00A862;
    color: white;
}

.page-starbucks-delivers-info .updated .deliver-nav .deliver-nav-item .deliver-nav-menu-item.last {
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.page-starbucks-delivers-info .updated .deliver-nav .divider {
    z-index: 101;
    display: inline-block;
    width: 1px;
    background: #045D38;
    height: 100%;
    position: absolute;
    padding: 9px 0;
    box-sizing: border-box;
    background-clip: content-box;
}

.page-starbucks-delivers-info .updated .deliver-nav .divider.divider-1 {
    left: 25%;
}

.page-starbucks-delivers-info .updated .deliver-nav .divider.divider-2 {
    left: 50%;
}

.page-starbucks-delivers-info .updated .deliver-nav .divider.divider-3 {
    left: 75%;
}

.page-starbucks-delivers-info .updated .deliver-headline {
    padding: 20px 10px;
    border: 1px solid #00A862;
    margin-bottom: 40px;
    border-radius: 16px;
    text-align: left;
}

@media (max-width: 640px) {
    .page-starbucks-delivers-info .updated .deliver-headline {
        padding: 10px 5px;
        margin-bottom: 20px;
        font-size: 12px;
    }
}

.page-starbucks-delivers-info .updated .deliver-title {
    font-size: 20px;
    color: #00A862;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: left;
}

@media (max-width: 640px) {
    .page-starbucks-delivers-info .updated .deliver-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
}

.page-starbucks-delivers-info .updated .deliver-carousel {
    position: relative;
}

.page-starbucks-delivers-info .updated .deliver-carousel-nav {
    z-index: 10;
    position: absolute;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.2);
    top: 50%;
    margin-top: -23px;
    cursor: pointer;
}

.page-starbucks-delivers-info .updated .deliver-carousel-nav img {
    height: 26px;
}

@media (max-width: 640px) {
    .page-starbucks-delivers-info .updated .deliver-carousel-nav {
        margin-top: -19px;
    }

    .page-starbucks-delivers-info .updated .deliver-carousel-nav img {
        height: 16px;
    }
}

.page-starbucks-delivers-info .updated .deliver-carousel-nav.deliver-carousel-forward {
    right: 0;
}

.page-starbucks-delivers-info .updated .deliver-carousel-nav.deliver-carousel-backward {
    left: 0;
}

.page-starbucks-delivers-info .updated .deliver-carousel-indicator-container {
    z-index: 10;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 40px;
}

@media (max-width: 640px) {
    .page-starbucks-delivers-info .updated .deliver-carousel-indicator-container {
        bottom: 20px;
    }
}

.page-starbucks-delivers-info .updated .deliver-carousel-indicator-container .indicator {
    border-radius: 50%;
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-left: 5px;
    margin-right: 5px;
    background: rgba(0, 0, 0, 0.2);
}

@media (max-width: 640px) {
    .page-starbucks-delivers-info .updated .deliver-carousel-indicator-container .indicator {
        width: 10px;
        height: 10px;
    }
}

.page-starbucks-delivers-info .updated .deliver-carousel-indicator-container .indicator.current {
    background: #00A862;
}

.page-starbucks-delivers-info .updated .deliver-carousel .videos {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
}

.page-starbucks-delivers-info .updated .deliver-carousel .videos .video {
    width: 100%;
    display: inline-block;
    transition: transform 1s;
    position: relative;
}

.page-starbucks-delivers-info .updated .deliver-carousel .videos .video video {
    width: 100%;
}

.page-starbucks-delivers-info .updated .deliver-carousel .videos .video video.playing {
    cursor: pointer;
}

.page-starbucks-delivers-info .updated .deliver-carousel .videos .video video::-webkit-media-controls {
    display: none !important;
}

.page-starbucks-delivers-info .updated .deliver-carousel .videos .video .play-btn {
    width: 50px;
    margin-left: -25px;
    margin-top: -25px;
    z-index: 90;
    position: absolute;
    left: 50%;
    top: 50%;
    cursor: pointer;
}

@media (max-width: 640px) {
    .page-starbucks-delivers-info .updated .deliver-carousel .videos .video .play-btn {
        width: 40px;
        margin-left: -20px;
        margin-top: -20px;
    }
}

.page-starbucks-delivers-info .updated .deliver-map {
    width: 87%;
    margin: auto;
    margin-top: 50px;
    margin-bottom: 20px;
}

@media (max-width: 640px) {
    .page-starbucks-delivers-info .updated .deliver-map {
        margin-top: 40px;
    }
}

.page-starbucks-delivers-info .updated .app-download {
    position: relative;
    box-sizing: border-box;
    margin-left: 6.5%;
    margin-top: 50px;
    margin-bottom: 20px;
}

@media (max-width: 640px) {
    .page-starbucks-delivers-info .updated .app-download {
        margin-top: 30px;
    }
}

.page-starbucks-delivers-info .updated .app-download .text {
    position: absolute;
    top: 0;
    font-size: 20px;
    font-weight: bold;
}

@media (max-width: 640px) {
    .page-starbucks-delivers-info .updated .app-download .text {
        font-size: 14px;
    }
}

.page-starbucks-delivers-info .updated .app-download .text p {
    margin-bottom: 10px;
}

@media (max-width: 640px) {
    .page-starbucks-delivers-info .updated .app-download .text p {
        margin-bottom: 5px;
    }
}

.page-starbucks-delivers-info .updated .app-download-link {
    position: absolute;
    bottom: 0;
    left: 2%;
}

@media (max-width: 640px) {
    .page-starbucks-delivers-info .updated .app-download-link {
        bottom: 0;
    }
}

.page-starbucks-delivers-info .updated .app-download-link img {
    width: 60%;
}

.page-starbucks-delivers-info .updated .app-download-link a img {
    width: 25%;
    display: block;
    margin: 10px 0;
}

.page-starbucks-delivers-info .updated .app-download-bg {
    width: 50%;
    margin-left: 50%;
    margin-top: 50px;
}

.page-starbucks-delivers-info .updated .footer-separator {
    margin-bottom: 20px;
}

.page-starbucks-delivers-info .updated .deliver-faq {
    position: relative;
}

.page-starbucks-delivers-info .updated .deliver-faq .chatgirl {
    margin-left: 6.5%;
    width: 30%;
}

.page-starbucks-delivers-info .updated .deliver-faq .text {
    margin-left: 3.5%;
    width: 30%;
    position: relative;
    bottom: 100px;
}

@media (max-width: 640px) {
    .page-starbucks-delivers-info .updated .deliver-faq .text {
        bottom: 50px;
    }
}

.page-starbucks-delivers-info .updated .deliver-faq-btn {
    position: absolute;
    width: 20%;
    top: 30%;
    right: 0;
}

@media (max-width: 640px) {
    .page-starbucks-delivers-info .updated .deliver-faq {
        margin-bottom: 40px;
    }
}

.page-starbucks-delivers-info .delivery-carousel {
    margin-bottom: 15px;
}

.page-starbucks-delivers-info .delivery-carousel img {
    width: 100%;
}

.page-starbucks-delivers-info .delivery-carousel .slick-slide {
    min-height: 240px;
}

.page-starbucks-delivers-info .delivery-carousel .slick-prev {
    display: none !important;
}

.page-starbucks-delivers-info .delivery-carousel .slick-next {
    background-size: contain;
    border: 0;
    background: url("./icons/icon-arrow-white.svg") transparent no-repeat center center;
    content: '';
    font-size: 0;
    height: 48px;
    line-height: 0;
    outline: none;
    padding: 0px;
    position: absolute;
    right: 24px;
    top: 50%;
    margin-top: -25px;
    width: 48px;
}

@media (max-width: 640px) {
    .page-starbucks-delivers-info .delivery-carousel .slick-next {
        height: 36px;
        width: 36px;
        right: 12px;
    }
}

.page-starbucks-delivers-info .delivery-carousel .slick-next:hover {
    right: 16px;
}

.page-starbucks-delivers-info .delivery-carousel .slick-next:active {
    right: 6px;
}

.page-starbucks-delivers-info .delivery-carousel a {
    position: relative;
}

.page-starbucks-delivers-info .delivery-carousel a span {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 5%;
    top: 50%;
    -ms-transform: translate3d(0, -50%, 0);
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    max-width: 40%;
}

.page-starbucks-delivers-info .delivery-carousel a span p {
    display: block;
    line-height: 100%;
}

.page-starbucks-delivers-info .delivery-carousel a span p small {
    font-size: 14px;
    font-size: 1.4rem;
}

.page-starbucks-delivers-info .delivery-carousel a span.animated {
    opacity: 1;
    left: 10%;
    visibility: visible;
}

@media (max-width: 640px) {
    .page-starbucks-delivers-info .delivery-carousel a span {
        top: 22%;
        width: 80%;
    }

    .page-starbucks-delivers-info .delivery-carousel a span p {
        margin-bottom: 18px;
    }

    .page-starbucks-delivers-info .delivery-carousel a span.animated {
        max-width: 80%;
        text-align: center;
    }
}

.delivery-stores {
    padding: 30px 40px;
    overflow: auto;
}

@media (max-width: 640px) {
    .delivery-stores {
        padding: 20px 10px;
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .delivery-stores {
        padding: 25px 35px;
    }
}

.delivery-stores .loc-filter {
    cursor: pointer;
    position: relative;
    overflow-y: visible;
    margin-bottom: 10px;
    margin-top: 40px;
}

.delivery-stores .loc-filter .selector {
    padding: 0;
    background: none;
    border: none;
    white-space: nowrap;
}

.delivery-stores .loc-filter .selector:before {
    content: "";
    position: relative;
    top: 4px;
    margin-right: 6px;
    display: inline-block;
    width: 14px;
    height: 18px;
    background: url(./icons/icon-locator-green.svg) no-repeat center/contain;
}

.delivery-stores .loc-filter .selector span {
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: bottom;
    font-size: 14px;
    font-size: 1.4rem;
}

@media (max-width: 640px) {
    .delivery-stores .loc-filter .selector span {
        font-size: 12px;
        font-size: 1.2rem;
    }
}

.delivery-stores .loc-filter .selector:after {
    content: "";
    position: relative;
    top: -1px;
    margin-left: 6px;
    display: inline-block;
    width: 10px;
    height: 8px;
    background: url(./icons/icon-locator-arrow.svg) no-repeat center/contain;
}

.delivery-stores .loc-filter .options {
    opacity: 0;
    transform: translateY(10px);
    position: absolute;
    left: 0;
    top: 35px;
    border-radius: 5px;
    margin: 0;
    padding: 0;
    box-shadow: 0 4px 9px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.35s ease-out;
    z-index: -1;
    list-style: none;
    max-height: 80vh;
    overflow: hidden;
}

.delivery-stores .loc-filter .options.visible {
    opacity: 1;
    transform: translateY(0);
    z-index: 100;
    overflow-y: auto;
}

.delivery-stores .loc-filter .options li {
    background: #fff;
    margin: 0;
    transition: background 0.25s ease-out;
}

.delivery-stores .loc-filter .options li a {
    display: block;
    padding: 15px 25px;
    color: #000;
    text-align: center;
    min-width: 100px;
}

@media (max-width: 640px) {
    .delivery-stores .loc-filter .options li a {
        min-width: 80px;
    }
}

.delivery-stores .loc-filter .options li:not(:last-of-type) a {
    border-bottom: 1px solid #e0e0e0;
}

.delivery-stores .loc-filter .options li:first-of-type a {
    border-radius: 5px 5px 0 0;
}

.delivery-stores .loc-filter .options li:last-of-type a {
    border-radius: 0 0 5px 5px;
}

.delivery-stores .loc-filter .options li:hover, .delivery-stores .loc-filter .options li.selected a {
    background: #e0e0e0;
}

.delivery-stores .stores {
    background-color: #FFF;
    padding: 8px;
    min-height: 200px;
}

@media (max-width: 640px) {
    .delivery-stores .stores {
        padding: 0 8px;
    }
}

.delivery-stores .stores .store,
.delivery-stores .stores .heading {
    padding: 8px 12px;
}

@media (min-width: 641px) {
    .delivery-stores .stores .store,
    .delivery-stores .stores .heading {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .delivery-stores .stores .store::after,
    .delivery-stores .stores .heading::after {
        clear: both;
        content: "";
        display: table;
    }

    .delivery-stores .stores .store > *,
    .delivery-stores .stores .heading > * {
        box-sizing: border-box;
        clear: none;
        float: left;
        margin: 0;
        padding: 0;
        width: 25%;
    }

    .delivery-stores .stores .store > *:nth-child(4n + 1),
    .delivery-stores .stores .heading > *:nth-child(4n + 1) {
        clear: left;
    }
}

.delivery-stores .stores .store > *,
.delivery-stores .stores .heading > * {
    position: relative;
}

.delivery-stores .stores .heading {
    border-bottom: 3px solid rgba(0, 0, 0, 0.12);
    font-weight: bold;
}

@media (max-width: 640px) {
    .delivery-stores .stores .heading {
        display: none;
    }
}

.delivery-stores .stores .store {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    display: none;
}

.delivery-stores .stores .store.active {
    display: block;
}

.delivery-stores .stores .detail > * {
    position: relative;
}

@media (max-width: 640px) {
    .delivery-stores .stores .detail {
        list-style: none;
        margin: 0;
        padding: 0;
        padding: 4px 0;
    }

    .delivery-stores .stores .detail::after {
        clear: both;
        content: "";
        display: table;
    }

    .delivery-stores .stores .detail > * {
        box-sizing: border-box;
        clear: none;
        float: left;
        margin: 0;
        padding: 0;
        width: 50%;
    }

    .delivery-stores .stores .detail > *:nth-child(2n + 1) {
        clear: left;
    }
}

@media (min-width: 641px) {
    .delivery-stores .stores .detail {
        width: 30%;
        text-align: left;
        padding: 18px 10px;
    }
}

@media (min-width: 641px) {
    .delivery-stores .stores .detail:nth-of-type(1) {
        width: 17%;
        padding-left: 6%;
    }
}

@media (min-width: 641px) {
    .delivery-stores .stores .detail:nth-of-type(2) {
        width: 23%;
    }
}

@media (max-width: 640px) {
    .delivery-stores .stores .detail .title {
        display: block;
        width: 31%;
        font-weight: bold;
    }
}

@media (min-width: 641px) {
    .delivery-stores .stores .detail .title {
        display: none;
    }
}

.delivery-stores .stores .detail .content {
    width: 100%;
}

@media (max-width: 640px) {
    .delivery-stores .stores .detail .content {
        width: 69%;
    }
}

.delivery-stores .stores .detail p {
    margin: 0;
}

.delivery-stores .stores .subcompany > * {
    position: relative;
}

@media (max-width: 640px) {
    .delivery-stores .stores .subcompany {
        list-style: none;
        margin: 0;
        padding: 0;
        padding: 4px 0;
    }

    .delivery-stores .stores .subcompany::after {
        clear: both;
        content: "";
        display: table;
    }

    .delivery-stores .stores .subcompany > * {
        box-sizing: border-box;
        clear: none;
        float: left;
        margin: 0;
        padding: 0;
        width: 50%;
    }

    .delivery-stores .stores .subcompany > *:nth-child(2n + 1) {
        clear: left;
    }
}

@media (min-width: 641px) {
    .delivery-stores .stores .subcompany {
        width: 30%;
        text-align: left;
        padding: 18px 10px;
    }
}

@media (min-width: 641px) {
    .delivery-stores .stores .subcompany:nth-of-type(1) {
        width: 40%;
        padding-left: 6%;
    }
}

@media (max-width: 640px) {
    .delivery-stores .stores .subcompany .title {
        display: block;
        width: 31%;
        font-weight: bold;
    }
}

@media (min-width: 641px) {
    .delivery-stores .stores .subcompany .title {
        display: none;
    }
}

.delivery-stores .stores .subcompany .content {
    width: 100%;
}

@media (max-width: 640px) {
    .delivery-stores .stores .subcompany .content {
        width: 69%;
    }
}

.delivery-stores .stores .subcompany p {
    margin: 0;
}

.page-libra-info {
    background-color: white;
}

.page-libra-info #app-view-wrapper {
    min-width: 360px;
    max-width: 1920px;
    margin: auto;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
}

.page-libra-info section {
    margin-top: -9px;
}

.page-libra-info small {
    font-size: 0.75vw;
    line-height: 0.5vw;
    vertical-align: top;
}

@media (max-width: 640px) {
    .page-libra-info small {
        font-size: 10px;
        line-height: inherit;
    }
}

.page-libra-info .title {
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -18vw;
    width: 36vw;
    height: 8vw;
    background: url("../assets/images/libra/icons/title_bg.svg") no-repeat center;
    background-size: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 2vw;
    line-height: 2.5vw;
    font-weight: 700;
}

@media (max-width: 640px) {
    .page-libra-info .title {
        width: 86%;
        margin-left: -43%;
        font-size: 16px;
        margin-top: 10px;
    }
}

.page-libra-info .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page-libra-info .row-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.page-libra-info .sub-title {
    text-align: center;
    margin: 2vw 0;
    z-index: 100;
}

.page-libra-info .sub-title b {
    padding: 0.5vw 1vw;
    font-size: 1.5vw;
    text-align: center;
    border: 2px solid black;
}

@media (max-width: 640px) {
    .page-libra-info .sub-title {
        margin: 10px 0;
        font-size: 24px;
    }

    .page-libra-info .sub-title b {
        padding: 0 18px;
        font-size: 24px;
    }
}

.page-libra-info .sub-title small {
    font-size: 1vw;
}

.page-libra-info .sub-title-white {
    margin: 2vw auto;
    font-size: 1.5vw;
    text-align: center;
    color: white;
    z-index: 999;
}

@media (max-width: 640px) {
    .page-libra-info .sub-title-white {
        margin: 10px 0;
        font-size: 24px;
    }

    .page-libra-info .sub-title-white b {
        padding: 0 18px;
        font-size: 24px;
    }
}

.page-libra-info .libra-items {
    position: absolute;
    top: 0;
    width: 100%;
}

.page-libra-info .libra-items .item {
    width: 30%;
    height: 15vw;
    text-align: left;
}

.page-libra-info .libra-items .item .image {
    width: 8vw;
    height: 8vw;
    margin-right: 0.2vw;
}

.page-libra-info .libra-items .item .content {
    height: 15vw;
}

.page-libra-info .libra-items .item .content h2 {
    width: 18vw;
    color: white;
    font-size: 2vw;
    letter-spacing: 6px;
    margin-bottom: 0.5vw;
    text-align: left;
}

.page-libra-info .libra-items .item .content p {
    width: 18.5vw;
    font-size: 1.5vw;
    line-height: 2vw;
    color: white;
}

.page-libra-info .libra-items-mobile {
    position: absolute;
    top: 0;
    width: 100%;
    padding-top: 16px;
}

.page-libra-info .libra-items-mobile .item {
    width: 100%;
    height: 80px;
    text-align: left;
    margin: 12px 0;
    align-items: flex-start !important;
}

.page-libra-info .libra-items-mobile .item .image {
    width: 80px;
    height: 80px;
    margin-right: 20px;
}

.page-libra-info .libra-items-mobile .item .content {
    padding-top: 13px;
}

.page-libra-info .libra-items-mobile .item .content h2 {
    width: 200px;
    font-size: 18px;
    color: white;
    margin-bottom: 6px;
}

.page-libra-info .libra-items-mobile .item .content p {
    width: 200px;
    font-size: 14px;
    line-height: 18px;
    color: white;
}

.page-libra-info .libra {
    position: absolute;
    top: 15vw;
    left: 50%;
    margin-left: -40vw;
    width: 80vw;
}

@media (max-width: 640px) {
    .page-libra-info .libra {
        top: 360px;
    }
}

.page-libra-info .libra .img {
    position: absolute;
    top: 0;
    left: 0;
}

.page-libra-info .libra .text {
    position: absolute;
    top: 4vw;
    left: 0;
    width: 80vw;
}

@media (max-width: 640px) {
    .page-libra-info .libra .text {
        top: 40px;
    }
}

.page-libra-info .libra .text p {
    width: 100%;
    margin: auto;
    text-align: center;
    color: #C2A661;
    font-size: 1.25vw;
    line-height: 2vw;
}

@media (max-width: 640px) {
    .page-libra-info .libra .text p {
        font-size: 12px;
        line-height: 20px;
    }
}

.page-libra-info .membership {
    position: absolute;
    top: 6vw;
    width: 100%;
}

@media (max-width: 640px) {
    .page-libra-info .membership .row-content {
        flex-wrap: wrap;
    }
}

.page-libra-info .membership .row-content {
    width: 100%;
}

.page-libra-info .membership .row-content .item {
    width: 17%;
    height: 15vw;
}

.page-libra-info .membership .row-content .item .image {
    width: 120px;
    height: 120px;
}

.page-libra-info .membership .row-content .item p {
    width: 100%;
    margin-top: 1vw;
    font-size: 1.25vw;
    text-align: center;
    line-height: 1.1vw;
    min-height: 50px;
}

@media (max-width: 640px) {
    .page-libra-info .membership .row-content .item {
        width: 180px;
        height: 120px;
    }

    .page-libra-info .membership .row-content .item .image {
        width: 60px;
        height: 60px;
    }

    .page-libra-info .membership .row-content .item p {
        width: 100%;
        height: 60px;
        margin-top: 6px;
        font-size: 11px;
        line-height: 11px;
    }
}

@media (max-width: 640px) {
    .page-libra-info .membership {
        top: 15vw;
    }
}

.page-libra-info .acquire-star {
    position: absolute;
    top: 6vw;
    width: 100%;
}

@media (max-width: 640px) {
    .page-libra-info .acquire-star {
        top: 6%;
    }

    .page-libra-info .acquire-star .row-content {
        flex-wrap: wrap;
    }
}

.page-libra-info .acquire-star .row-content {
    width: 100%;
}

.page-libra-info .acquire-star .row-content .item {
    width: 25%;
}

.page-libra-info .acquire-star .row-content .item .image {
    width: 12vw;
    height: 10vw;
}

.page-libra-info .acquire-star .row-content .item p {
    font-size: 1.25vw;
    text-align: center;
    height: 10%;
    color: white;
}

@media (max-width: 640px) {
    .page-libra-info .acquire-star .row-content .item {
        width: 180px;
        height: 120px;
    }

    .page-libra-info .acquire-star .row-content .item .image {
        width: 120px;
        height: 120px;
    }

    .page-libra-info .acquire-star .row-content .item p {
        margin-top: 8px;
        height: 50px;
        font-size: 13px;
        line-height: 16px;
    }
}

.page-libra-info .gift {
    width: 80vw;
    margin-top: 6vw;
    padding-top: 6vw;
}

.page-libra-info .gift .img {
    position: absolute;
    top: 0;
    left: 0;
}

.page-libra-info .gift .row-content {
    width: 100%;
}

.page-libra-info .gift .row-content .item {
    width: 25vw;
}

.page-libra-info .gift .row-content .item .image {
    width: 10vw;
    height: 12vw;
}

.page-libra-info .gift .row-content .item p {
    font-size: 1.25vw;
    text-align: center;
    height: 10vw;
    line-height: 1.25vw;
}

@media (max-width: 640px) {
    .page-libra-info .gift .row-content .item {
        width: 120px;
        height: 160px;
    }

    .page-libra-info .gift .row-content .item .image {
        width: 120px;
        height: 120px;
    }

    .page-libra-info .gift .row-content .item p {
        margin-top: 8px;
        height: 50px;
        font-size: 13px;
        line-height: 16px;
    }
}

.page-libra-info .star-desc {
    position: absolute;
    top: 16vw;
    width: 100%;
}

.page-libra-info .star-desc .row-content {
    width: 100%;
}

.page-libra-info .star-desc .row-content .item {
    position: relative;
    width: 25%;
}

.page-libra-info .star-desc .row-content .item .image, .page-libra-info .star-desc .row-content .item img {
    width: 15vw;
    height: 14vw;
}

.page-libra-info .star-desc .row-content .item b {
    position: absolute;
    top: 4.6vw;
    left: 50%;
    margin-left: -5vw;
    width: 10vw;
    font-size: 1.25vw;
    color: #fff;
    text-align: center;
}

.page-libra-info .star-desc .row-content .item p {
    width: 25vw;
    height: 10vw;
    margin-top: 2vw;
    font-size: 1.5vw;
    text-align: center;
    line-height: 2vw;
}

.page-libra-info .star-desc-mobile {
    position: absolute;
    top: 4%;
    width: 100%;
}

.page-libra-info .star-desc-mobile .item {
    position: relative;
    width: 100%;
    margin: 8px 0;
}

.page-libra-info .star-desc-mobile .item:first-child {
    margin-top: 25px;
}

.page-libra-info .star-desc-mobile .item:nth-child(2) {
    margin-top: -20px;
}

.page-libra-info .star-desc-mobile .item:last-child {
    margin-top: 20px;
}

.page-libra-info .star-desc-mobile .item .image, .page-libra-info .star-desc-mobile .item img {
    position: relative;
    width: 120px;
    height: 120px;
}

.page-libra-info .star-desc-mobile .item b {
    position: absolute;
    top: 80px;
    left: 40px;
    font-size: 14px;
    color: #fff;
}

.page-libra-info .star-desc-mobile .item p {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 160px;
    height: 160px;
    font-size: 14px;
    text-align: left;
    line-height: 22px;
    margin-left: 20px;
    margin-bottom: 0;
}

.page-libra-info .cookbook {
    position: absolute;
    top: 12vw;
    width: 100%;
}

@media (max-width: 640px) {
    .page-libra-info .cookbook {
        top: 8%;
    }
}

.page-libra-info .cookbook h3 {
    text-align: center;
}

.page-libra-info .cookbook h3 p {
    margin: auto;
    width: 60%;
    font-size: 1.5vw;
    line-height: 2vw;
    text-align: center;
}

@media (max-width: 640px) {
    .page-libra-info .cookbook h3 p {
        font-size: 14px;
        line-height: 18px;
    }
}

.page-libra-info .cookbook .carousel-libra {
    position: relative;
    width: 100%;
}

.page-libra-info .cookbook .carousel-libra .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.page-libra-info .cookbook .carousel-libra .slick-dots li {
    display: block;
    width: 0.8vw;
    height: 0.8vw;
    margin: 0 0.2vw;
    background-color: black;
    border-radius: 50%;
}

@media (max-width: 640px) {
    .page-libra-info .cookbook .carousel-libra .slick-dots li {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }
}

.page-libra-info .cookbook .carousel-libra .slick-dots li button {
    visibility: hidden;
}

.page-libra-info .cookbook .carousel-libra .slick-dots li.slick-active {
    background-color: #00A862;
}

.page-libra-info .cookbook .carousel-libra .item-container {
    width: 100vw;
    height: 25vw;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

@media (max-width: 640px) {
    .page-libra-info .cookbook .carousel-libra .item-container {
        width: 280px;
        height: 420px;
    }
}

.page-libra-info .cookbook .carousel-libra .item-container .item {
    position: relative;
    width: 50vw;
    height: 20vw;
    border: 1px solid #ccc;
    border-radius: 16px;
    box-shadow: 0 3px 30px 0 rgba(0, 0, 0, 0.38);
    background: url("../assets/images/libra/slider_bg.png") no-repeat center;
    background-size: cover;
}

@media (max-width: 640px) {
    .page-libra-info .cookbook .carousel-libra .item-container .item {
        width: 280px;
        height: 360px;
        background: url("../assets/images/libra/slider_bg_m.png") no-repeat center;
        flex-direction: column !important;
    }
}

.page-libra-info .cookbook .carousel-libra .item-container .item .image {
    width: 100%;
    height: 100%;
}

.page-libra-info .cookbook .carousel-libra .item-container .item p {
    width: 24vw;
    height: 14vw;
    margin-left: 6vw;
    font-size: 1.25vw;
    line-height: 2vw;
    text-align: left;
    word-break: break-all;
}

@media (max-width: 640px) {
    .page-libra-info .cookbook .carousel-libra .item-container .item p {
        width: 240px;
        height: 140px;
        margin-top: 10px;
        text-align: center;
        font-size: 14px;
        line-height: 18px;
    }
}

.page-libra-info .cookbook .slick-prev {
    position: absolute;
    top: 13vw;
    left: 10vw;
    width: 2vw;
    height: 2vw;
    z-index: 999;
}

@media (max-width: 640px) {
    .page-libra-info .cookbook .slick-prev {
        top: 280px;
        left: 20px;
        width: 20px;
        height: 20px;
    }
}

.page-libra-info .cookbook .slick-next {
    position: absolute;
    top: 13vw;
    right: 10vw;
    width: 2vw;
    height: 2vw;
    z-index: 999;
}

@media (max-width: 640px) {
    .page-libra-info .cookbook .slick-next {
        top: 280px;
        right: 20px;
        width: 20px;
        height: 20px;
    }
}

.page-libra-info .cookbook .stars-right {
    position: absolute;
    top: 2vw;
    right: 8vw;
    width: 4vw;
    height: 8vw;
    background: url("../assets/images/libra/icons/stars-right.svg") no-repeat center;
    background-size: contain;
}

@media (max-width: 640px) {
    .page-libra-info .cookbook .stars-right {
        top: 70px;
        right: 10px;
        width: 40px;
        height: 80px;
    }
}

.page-libra-info .cookbook .stars-left {
    position: absolute;
    top: 18vw;
    left: 8vw;
    width: 4vw;
    height: 8vw;
    background: url("../assets/images/libra/icons/stars-left.svg") no-repeat center;
    background-size: contain;
}

@media (max-width: 640px) {
    .page-libra-info .cookbook .stars-left {
        top: 430px;
        left: 10px;
        width: 40px;
        height: 80px;
    }
}

.page-libra-info .faq {
    padding: 8vw 0;
}

@media (max-width: 640px) {
    .page-libra-info .faq {
        padding: 16vw 0 4vw 0;
    }
}

.page-libra-info .faq .card {
    box-shadow: none;
    padding-left: 4vw;
    padding-right: 4vw;
}

.page-libra-info .faq .card h2 {
    font-size: 2.5vw;
}

@media (max-width: 640px) {
    .page-libra-info .faq .card h2 {
        font-size: 3.6vw;
    }
}

.page-libra-info .faq .card .header img {
    display: inline-block;
    width: 4vw;
    height: auto;
    vertical-align: middle;
}

@media (max-width: 640px) {
    .page-libra-info .faq .card .header img {
        width: 8vw;
    }
}

.page-libra-info .faq .card .header h2 {
    margin-left: 4vw;
    display: inline-block;
}

.page-libra-info .faq .card:nth-child(odd) {
    background-color: #EFEEEC;
}

.page-libra-info .faq .padding-2em {
    padding-left: 2em;
}

.page-libra-info .faq .table {
    width: 99%;
    margin: 0 auto;
    border-spacing: 0;
}

.page-libra-info .faq .table td {
    border: 1px solid black;
}

.page-libra-info .footer-desc {
    padding-top: 2vw;
    left: 0;
    width: 100%;
    padding-top: 70px;
    padding-bottom: 105px;
}

@media (max-width: 640px) {
    .page-libra-info .footer-desc {
        padding-top: 2vw;
        padding-bottom: 2vw;
    }
}

.page-libra-info .footer-desc p {
    font-size: 1vw;
    line-height: 1.25vw;
    margin: auto;
    text-align: center;
    color: white;
    width: 100%;
}

.page-libra-info .footer-desc p b {
    font-size: 1vw;
    line-height: 1.25vw;
}

.page-libra-info .footer-desc p a {
    font-size: 1vw;
    line-height: 1.25vw;
    color: white;
}

@media (max-width: 640px) {
    .page-libra-info .footer-desc p {
        width: 68%;
        font-size: 6px;
        line-height: 10px;
    }

    .page-libra-info .footer-desc p b {
        font-size: 6px;
        line-height: 10px;
    }

    .page-libra-info .footer-desc p a {
        font-size: 6px;
        line-height: 10px;
    }
}

.page-libra-info .footer-desc a {
    font-size: 1.25vw;
    line-height: 1.25vw;
    color: #ccc;
}

@media (max-width: 640px) {
    .page-libra-info .footer-desc a {
        font-size: 6px;
        line-height: 8px;
    }
}

.page-libra-info .tips {
    position: absolute;
    bottom: 100px;
    width: 100%;
    text-align: center;
    font-size: 1vw;
}

@media (max-width: 640px) {
    .page-libra-info .tips {
        font-size: 12px;
        line-height: 12px;
        bottom: 50px;
    }
}

.page-libra-info .tips.white {
    color: white;
}

.page-libra-info .bottom2 {
    bottom: 2vw;
}

@media (max-width: 640px) {
    .page-libra-info .bottom4 {
        bottom: 20px;
    }
}

.page-libra-info .bottom8 {
    bottom: 160px;
}

@media (max-width: 640px) {
    .page-libra-info .bottom8 {
        bottom: 40px;
    }
}

.page-libra-info .collapsible .table td:first-child {
    padding-left: 12px;
}

.page-libra-info sup {
    top: -0.3em;
}

.page-libra-info section.footer {
    background: url("../assets/images/libra/footer.png") no-repeat center;
    background-size: cover;
}

@media (max-width: 640px) {
    .page-libra-info section.footer {
        background: url("../assets/images/libra/footer-m.jpg") no-repeat center;
        background-size: cover;
    }
}

@media only screen and (min-device-width: 414px) and (max-device-width: 736px) {
    .page-libra-info section img.desktop-hidden:nth-child(2) {
        width: 100%;
    }

    .page-libra-info section.first img.desktop-hidden:nth-child(2) {
        height: 600px;
    }

    .page-libra-info section.second img.desktop-hidden:nth-child(2) {
        height: 800px;
    }

    .page-libra-info section.third img.desktop-hidden:nth-child(2), .page-libra-info section.fourth img.desktop-hidden:nth-child(2), .page-libra-info section.fifth img.desktop-hidden:nth-child(2) {
        height: 670px;
    }
}

.page-libra-info.lang-en .libra-items .item h2 {
    width: 15vw;
    color: white;
    font-size: 1.5vw;
    letter-spacing: 0;
    margin-bottom: 0.2vw;
}

.page-libra-info.lang-en .libra-items .item p {
    width: 15vw;
    font-size: 1.25vw;
    line-height: 1.5vw;
    color: white;
}

@media (max-width: 640px) {
    .page-libra-info.lang-en .title {
        font-size: 14px;
        line-height: 16px;
        margin-top: 10px;
    }
}

@media (max-width: 640px) {
    .page-libra-info.lang-en .sub-title b {
        padding: 0 10px;
        font-size: 14px;
        border: 1px solid black;
    }
}

@media (max-width: 640px) {
    .page-libra-info.lang-en .sub-title-white b {
        padding: 0 18px;
        font-size: 16px;
    }
}

.page-libra-info.lang-en .membership {
    top: 6vw;
}

.page-libra-info.lang-en .membership .item {
    width: 22%;
}

@media (max-width: 640px) {
    .page-libra-info.lang-en .membership .item {
        width: 45%;
        height: 140px;
        margin-bottom: 0 !important;
    }
}

.page-libra-info.lang-en .libra-items-mobile .image {
    margin-right: 10px;
}

.page-libra-info.lang-en .libra-items-mobile .content h2 {
    width: 240px;
    font-size: 16px;
    margin-bottom: 0;
}

.page-libra-info.lang-en .libra-items-mobile .content p {
    width: 240px;
    font-size: 12px;
}

@media (max-width: 640px) {
    .page-libra-info.lang-en .libra-mobile .text p {
        font-size: 12px;
        line-height: 14px;
    }
}

@media (max-width: 640px) {
    .page-libra-info.lang-en .star-desc-mobile .item b {
        position: absolute;
        top: 50px;
        left: 32px;
        font-size: 12px;
        width: 60px;
        text-align: center;
    }

    .page-libra-info.lang-en .star-desc-mobile .item p {
        display: block;
        width: 170px;
        font-size: 12px;
        line-height: 14px;
        margin-bottom: 0 !important;
    }

    .page-libra-info.lang-en .star-desc-mobile .item p span {
        display: block;
        margin-top: 7px;
    }

    .page-libra-info.lang-en .star-desc-mobile .item:first-child span:first-child {
        margin-top: 60px;
    }
}

@media (max-width: 640px) {
    .page-libra-info.lang-en .faq .card h2 {
        width: 65%;
        vertical-align: top;
        font-size: 12px;
    }
}

.page-libra-info.lang-en .footer-desc p {
    width: 60%;
}

@media (max-width: 640px) {
    .page-libra-info.lang-en .footer-desc p {
        width: 70%;
    }
}

.page-libra-info.lang-en section.second .title {
    margin-top: 0;
}

@media only screen and (min-device-width: 414px) and (max-device-width: 736px) {
    .page-libra-info.lang-en section.fifth img.desktop-hidden:nth-child(2) {
        height: 700px;
    }
}

@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) {
    .page-libra-info.lang-en section.fifth img.desktop-hidden:nth-child(2) {
        height: 700px;
    }
}

.page-membership-migration section {
    width: 100%;
    margin: 8px auto;
}

.page-membership-migration section .title b {
    font-weight: 500;
    font-size: 14px;
}

.page-membership-migration p, .page-membership-migration small {
    color: #666666;
}

.page-membership-migration .tal {
    text-align: left !important;
}

.page-membership-migration b, .page-membership-migration strong {
    color: #000000;
}

.page-membership-migration small {
    line-height: 16px;
}

.page-membership-migration .wrapper {
    padding: 0 8px 80px 8px !important;
}

.page-membership-migration .logo {
    display: block;
    margin: auto;
}

.page-membership-migration .welcome-level {
    color: #848180;
}

.page-membership-migration .green-level {
    color: #00A862;
}

.page-membership-migration .gold-level {
    color: #C2A661;
}

.page-membership-migration .upgrade > div:first-child {
    border-right: 1px dashed #979797;
}

.page-membership-migration .upgrade > div {
    width: 50%;
    height: 50px;
}

.page-membership-migration .upgrade > div small {
    color: #000000;
}

.page-membership-migration .dear {
    font-size: 14px;
}

.page-membership-migration .dear strong {
    font-size: 16px;
}

.page-membership-migration .card {
    padding: 18px 12px !important;
    border-radius: 8px !important;
}

.page-membership-migration .card .header {
    height: 40px;
}

.page-membership-migration .card .header .title {
    position: relative;
}

.page-membership-migration .card .header .title hr {
    position: absolute;
    top: 20px;
    left: 50%;
    margin-left: -30%;
    width: 60%;
    height: 1px;
    opacity: 0.48;
}

.page-membership-migration .card .header .title b {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 96px;
    margin-left: -48px;
    text-align: center;
    background-color: white;
}

.page-membership-migration .card .header .title img {
    position: absolute;
    top: -6px;
    left: 50%;
    margin-left: -6px;
    width: 12px;
    height: 12px;
}

.page-membership-migration .card .header .title.green-level hr {
    background-color: #00A862;
}

.page-membership-migration .card .header .title.green-level b {
    color: #00A862;
}

.page-membership-migration .card .header .title.gold-level hr {
    background-color: #C2A661;
}

.page-membership-migration .card .header .title.gold-level b {
    color: #C2A661;
}

.page-membership-migration .card .body .content {
    position: relative;
}

.page-membership-migration .card .body .content > div {
    width: 50%;
    height: 100px;
}

.page-membership-migration .card .body .content > div b {
    font-size: 20px;
}

.page-membership-migration .card .body .content .arrow-left-short {
    position: absolute;
    top: 25px;
    left: 50%;
    margin-left: -25px;
    width: 50px;
    height: 50px;
}

.page-membership-migration .card .body .content .arrow-left-long {
    position: absolute;
    top: -5px;
    left: 50%;
    margin-left: -89px;
    width: 178px;
    height: 178px;
}

.page-membership-migration .card .body small.tips {
    display: block;
    text-align: center;
    margin: 0 auto;
}

.page-membership-migration .anniversary .title hr {
    margin-left: -40% !important;
    width: 80% !important;
}

.page-membership-migration .anniversary .title b {
    width: 140px !important;
    margin-left: -70px !important;
}

.page-membership-migration .anniversary .body .content small {
    height: 20px;
}

.page-membership-migration .anniversary .body .content small, .page-membership-migration .anniversary .body .content strong {
    width: 80px;
    text-align: left;
}

.page-membership-migration .anniversary .body .content strong {
    width: auto;
}

.page-membership-migration .tier-stars .body .content > div {
    width: 50%;
    height: auto !important;
}

.page-membership-migration .tier-stars .body .content > div small {
    width: 80px;
}

.page-membership-migration .tier-stars .body .content .stars {
    position: relative;
    width: 122px;
    height: 122px;
    margin-bottom: 12px;
}

.page-membership-migration .tier-stars .body .content .stars .circle {
    width: 122px;
    height: 122px;
}

.page-membership-migration .tier-stars .body .content .stars b {
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100px;
    margin-left: -50px;
    text-align: center;
    font-size: 10px;
    color: white;
}

.page-membership-migration .tier-stars .body .content .stars b strong {
    font-size: 16px;
    color: white;
}

.page-membership-migration .tier-stars .body .content .stars b.green-level {
    color: #00A862;
}

.page-membership-migration .tier-stars .body .content .stars b.green-level strong {
    color: #00A862;
}

.page-membership-migration .tier-stars .body .content .stars b.gold-level {
    color: #C2A661;
}

.page-membership-migration .tier-stars .body .content .stars b.gold-level strong {
    color: #C2A661;
}

.page-membership-migration .tier-stars .body .content .stars-desc {
    width: 100%;
    height: 122px;
    padding: 0 10px;
    box-sizing: border-box;
    line-height: 16px;
}

.page-membership-migration .tier-stars .body .content .stars-desc b {
    font-size: 12px;
}

.page-membership-migration .tier-stars .body .content .arrow-left-long + .flex .stars-desc {
    padding-left: 0;
}

.page-membership-migration .tier-stars .body .content .flex + .flex .stars-desc {
    padding-right: 0;
}

.page-membership-migration .star-gift .card {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.page-membership-migration .star-gift .card .body .content {
    margin: 10px 0;
    padding: 18px 0;
    background-color: #2d2926;
}

.page-membership-migration .star-gift .card .body .content strong {
    font-size: 28px;
    margin-bottom: 12px;
}

.page-membership-migration .star-gift .card .body .content strong img {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 7px;
}

.page-membership-migration .star-gift .card .body .content small {
    color: white;
}

.page-membership-migration .star-gift .card .body .tips {
    padding: 0 18px !important;
    text-align: left;
}

.page-membership-migration .star-gift .card .body .gold-level-gift {
    position: relative;
    background-color: #2d2926;
}

.page-membership-migration .star-gift .card .body .gold-level-gift > div {
    width: 50%;
    height: 260px;
}

.page-membership-migration .star-gift .card .body .gold-level-gift .arrow-left-middle {
    position: absolute;
    top: 22px;
    left: 50%;
    margin-left: -83.5px;
    width: 167px;
    height: 167px;
}

.page-membership-migration .star-gift .card .body .gold-level-gift .gift {
    width: 100%;
    height: 110px;
}

.page-membership-migration .star-gift .card .body .gold-level-gift .gift strong {
    position: relative;
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.page-membership-migration .star-gift .card .body .gold-level-gift .gift strong .sg-, .page-membership-migration .star-gift .card .body .gold-level-gift .gift strong .sg {
    font-size: 2.0rem;
}

.page-membership-migration .star-gift .card .body .gold-level-gift .gift strong img {
    display: inline-block;
    vertical-align: text-bottom;
    margin-bottom: -2px;
}

.page-membership-migration .star-gift .card .body .gold-level-gift .gift strong .progress {
    position: absolute;
    left: 0px;
    bottom: -2px;
}

.page-membership-migration .star-gift .card .body .gold-level-gift .gift small {
    display: block;
    color: white;
    padding: 0 18px;
    height: 32px;
}

.page-membership-migration .star-gift .card .body .gold-level-gift .gift-desc {
    width: 100%;
    height: 150px;
    background-color: #fff;
}

.page-membership-migration .star-gift .card .body .gold-level-gift .gift-desc small {
    display: block;
    padding: 14px;
}

.page-membership-migration .star-gift .card .tips {
    display: block;
    line-height: 16px;
    padding: 0 18px;
}

.page-membership-migration .new-benefit .coupon {
    margin: 12px 4px;
}

.page-membership-migration .new-benefit .coupon img {
    margin-right: 12px;
}

.page-membership-migration .new-benefit .coupon .coupon-desc p {
    margin: 0;
    line-height: 16px;
}

.page-membership-migration .new-benefit .coupon .coupon-desc p small {
    line-height: 16px;
}

.page-membership-migration .new-benefit .coupon .coupon-desc img {
    margin-right: 6px;
}

.page-membership-migration .new-benefit .coupon .coupon-desc p:nth-child(2) {
    margin: -5px 0 4px;
}

.page-membership-migration .new-benefit .coupon .coupon-desc p:nth-child(2) b {
    line-height: initial;
}

.page-membership-migration .new-benefit .coupon .coupon-desc b {
    color: #000000;
}

.page-membership-migration .new-benefit .special {
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.57);
    line-height: initial;
    width: 85%;
    margin: 0 auto;
}

.page-membership-migration .new-benefit .special b {
    color: rgba(0, 0, 0, 0.57);
}

.page-membership-migration .new-benefit .collapsible .header {
    display: block;
    text-align: center;
}

.page-membership-migration .new-benefit .collapsible .body .container {
    padding: 18px;
}

.page-membership-migration .green-bg {
    width: 80%;
    margin: 12px auto;
    padding: 10px 12px;
    background-color: #EBF8F3;
}

.page-membership-migration .green-bg p {
    font-size: 14px;
    line-height: 18px;
    margin: 0 0 4px 0;
    padding: 0;
}

.page-membership-migration .green-bg strong {
    font-size: 18px;
    margin-bottom: 6px;
}

.page-membership-migration .gold-bg {
    margin: 12px auto;
    padding: 10px 12px;
    background-color: #F8F5ED;
    width: 80%;
}

.page-membership-migration .gold-bg p {
    font-size: 14px;
    line-height: 18px;
    margin: 0 0 4px 0;
    padding: 0;
}

.page-membership-migration .gold-bg strong {
    font-size: 18px;
    margin-bottom: 6px;
}

@media (max-width: 640px) {
    .page-membership-migration .gold-bg {
        width: 80%;
    }
}

.page-membership-migration .notification {
    font-size: 12px;
    text-align: center;
    display: block;
}

.page-membership-migration .rules {
    width: 80%;
    margin: 12px auto;
    padding: 10px 12px;
}

.lang-en.page-membership-migration .card .header .title b {
    width: 160px;
    margin-left: -80px;
}

.lang-en.page-membership-migration .star-gift .card .tips {
    margin-top: 30px;
}

.lang-en.page-membership-migration .anniversary .title b {
    width: 260px !important;
    margin-left: -130px !important;
}

.lang-en.page-membership-migration .anniversary .body .content strong {
    width: 90px;
}

.lang-en.page-membership-migration .tier-stars .body .content .stars-desc {
    height: 172px;
}

.lang-en.page-membership-migration .tier .content > div b {
    font-size: 1.4rem;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 568px) {
    .lang-en.page-membership-migration .tier .content > div b {
        font-size: 1.2rem;
    }
}

.lang-en.page-membership-migration .star-gift .card .body .gold-level-gift > div {
    height: auto;
}

.lang-en.page-membership-migration .star-gift .card .body .gold-level-gift .gift-desc {
    height: 220px;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 568px) {
    .lang-en.page-membership-migration .star-gift .card .body .gold-level-gift .gift-desc {
        height: 260px;
    }
}

.lang-en.page-membership-migration .star-gift .card .body .gold-level-gift .gift strong {
    font-size: 1.8rem;
}

.lang-en.page-membership-migration .star-gift .card .body .gold-level-gift .gift strong .sg {
    font-size: 2.0rem;
}

.page-account-starbucks-rewards {
    background-color: #FFFFFF;
}

.page-account-starbucks-rewards #app-view-wrapper {
    margin: auto;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
}

.page-account-starbucks-rewards section {
    margin-top: -8px;
}

.page-account-starbucks-rewards section .padded {
    padding: 0 12px;
    box-sizing: border-box;
}

.page-account-starbucks-rewards section .padded-2 {
    padding: 0;
    box-sizing: border-box;
}

@media (max-width: 640px) {
    .page-account-starbucks-rewards section .padded-2 {
        padding: 0 5%;
    }
}

.page-account-starbucks-rewards section .title {
    width: 640px;
    height: auto;
    margin: auto;
    color: #FFFFFF;
    text-align: center;
}

.page-account-starbucks-rewards section .title img {
    max-height: 70px;
}

.page-account-starbucks-rewards section .title img:last-child {
    display: none;
}

.page-account-starbucks-rewards section .title img:first-child {
    display: inline-block;
}

@media (max-width: 640px) {
    .page-account-starbucks-rewards section .title {
        width: 100%;
    }

    .page-account-starbucks-rewards section .title img:first-child {
        display: none;
    }

    .page-account-starbucks-rewards section .title img:last-child {
        display: inline-block;
    }
}

.page-account-starbucks-rewards section .wrapper {
    width: 100%;
    max-width: 1200px;
}

@media (max-width: 640px) {
    .page-account-starbucks-rewards section:last-of-type {
        margin-bottom: 30px;
    }
}

.page-account-starbucks-rewards .hero {
    margin-top: 0px;
}

.page-account-starbucks-rewards .hero a {
    display: block;
    background-color: #14767c;
}

.page-account-starbucks-rewards .hero img {
    width: 100%;
    display: inline-block;
}

.page-account-starbucks-rewards #content {
    margin-top: 0px;
    padding-top: 0;
    padding-bottom: 0;
}

.page-account-starbucks-rewards .tips {
    left: 0;
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 16px;
    font-size: 12px;
    padding: 0 16px;
    line-height: 140%;
    box-sizing: border-box;
}

@media (max-width: 640px) {
    .page-account-starbucks-rewards .tips {
        font-size: 10px;
        bottom: 30px;
    }
}

.page-account-starbucks-rewards .tips p {
    margin-bottom: 0px;
}

@media (max-width: 640px) {
    .page-account-starbucks-rewards .tips .small {
        font-size: 8px;
    }
}

.page-account-starbucks-rewards .tips.white {
    color: #FFFFFF;
}

.page-account-starbucks-rewards .tooltip {
    font-size: 10px;
    line-height: 120%;
}

.page-account-starbucks-rewards .bg-dark {
    background-color: #023529;
}

.page-account-starbucks-rewards .bg-grey {
    background-color: #EBF3F5;
}

.page-account-starbucks-rewards .bg-light-grey {
    background-color: #FFFFFF;
}

.page-account-starbucks-rewards .new-sbux-rewards {
    position: relative;
    width: 100%;
    padding: 48px 0 60px;
}

.page-account-starbucks-rewards .new-sbux-rewards::before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    border-width: 14px;
    border-style: solid;
    border-color: #14767c transparent transparent transparent;
}

@media (max-width: 640px) {
    .page-account-starbucks-rewards .new-sbux-rewards {
        padding: 48px 0 72px 0;
    }

    .page-account-starbucks-rewards .new-sbux-rewards::before {
        content: none;
    }

    .page-account-starbucks-rewards .new-sbux-rewards .padded {
        padding: 0 8px;
    }
}

.page-account-starbucks-rewards .new-sbux-rewards .title {
    margin-bottom: 24px;
}

.page-account-starbucks-rewards .new-sbux-rewards .item .image {
    width: 100%;
    display: inline-block;
    text-align: center;
    margin: 0 auto;
    text-align: center;
}

.page-account-starbucks-rewards .new-sbux-rewards .item .image img {
    width: 120px;
}

.page-account-starbucks-rewards .new-sbux-rewards .item:first-child .content {
    max-width: 90%;
}

.page-account-starbucks-rewards .new-sbux-rewards .item .content {
    max-width: 200px;
    margin: 0 auto;
}

.page-account-starbucks-rewards .new-sbux-rewards .item .content h2 {
    font-size: 18px;
    color: #FFFFFF;
    text-align: center;
    margin: 0;
}

.page-account-starbucks-rewards .new-sbux-rewards .item .content p {
    font-size: .5vw;
    color: #FFFFFF;
    text-align: center;
    line-height: 140%;
    margin: 6px 0;
}

@media (max-width: 1280px) {
    .page-account-starbucks-rewards .new-sbux-rewards .item .content p {
        font-size: .7vw;
    }
}

@media (min-width: 1281px) {
    .page-account-starbucks-rewards .new-sbux-rewards .item .content p {
        font-size: .55vw;
    }
}

@media (max-width: 1024px) {
    .page-account-starbucks-rewards .new-sbux-rewards .item .content p {
        font-size: 1vw;
    }
}

@media (max-width: 640px) {
    .page-account-starbucks-rewards .new-sbux-rewards .item {
        margin-bottom: 24px;
    }

    .page-account-starbucks-rewards .new-sbux-rewards .item .image img {
        width: 80px;
    }

    .page-account-starbucks-rewards .new-sbux-rewards .item .content h2 {
        font-size: 14px;
        line-height: 140%;
    }

    .page-account-starbucks-rewards .new-sbux-rewards .item .content p {
        font-size: 2.1vw;
        line-height: 150%;
    }
}

.page-account-starbucks-rewards .membership-discount {
    width: 100%;
}

.page-account-starbucks-rewards .membership-discount .membership-discount-container {
    position: relative;
    width: 80%;
    margin: auto;
    padding: 48px 0;
}

@media (max-width: 640px) {
    .page-account-starbucks-rewards .membership-discount .membership-discount-container {
        padding: 48px 0 72px 0;
    }
}

.page-account-starbucks-rewards .membership-discount .membership-discount-container .title {
    position: relative;
    width: 100%;
    margin-bottom: 24px;
    z-index: 100;
}

.page-account-starbucks-rewards .membership-discount .membership-discount-container .title img {
    width: 240px;
}

.page-account-starbucks-rewards .membership-discount .membership-discount-container .img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 80;
}

.page-account-starbucks-rewards .membership-discount .membership-discount-container .discount-image {
    width: 180px;
}

.page-account-starbucks-rewards .membership-discount .membership-discount-container .content {
    margin-left: 48px;
    width: 560px;
    color: #FFFFFF;
}

.page-account-starbucks-rewards .member-upgrade {
    width: 100%;
    padding: 30px 0 60px;
}

@media (max-width: 640px) {
    .page-account-starbucks-rewards .member-upgrade {
        padding: 30px 0 72px 0;
    }

    .page-account-starbucks-rewards .member-upgrade .grid {
        width: 100%;
        margin: 0 3%;
    }
}

.page-account-starbucks-rewards .member-upgrade .title {
    margin-bottom: 24px;
}

.page-account-starbucks-rewards .member-upgrade .item .image {
    width: 154px;
    margin: 0 auto;
    display: block;
}

@media (max-width: 640px) {
    .page-account-starbucks-rewards .member-upgrade .item h3 {
        font-size: 16px;
    }
}

.page-account-starbucks-rewards .member-upgrade .item .content {
    width: 100%;
    display: inline-block;
}

.page-account-starbucks-rewards .member-upgrade .item .content p {
    font-size: 16px;
    color: #000000;
    text-align: center;
    max-width: 300px;
    margin: 0px auto;
    line-height: 140%;
}

.page-account-starbucks-rewards .member-upgrade .item .content p b.silver {
    color: #DDDDDD;
}

.page-account-starbucks-rewards .member-upgrade .item .content p b.green {
    color: #00A862;
}

.page-account-starbucks-rewards .member-upgrade .item .content p b.gold {
    color: #C2A661;
}

@media (max-width: 640px) {
    .page-account-starbucks-rewards .member-upgrade .item {
        margin-bottom: 16px;
        padding-left: 125px;
        position: relative;
    }

    .page-account-starbucks-rewards .member-upgrade .item .image {
        width: 74px;
        margin-right: 20px;
        position: absolute;
        top: 50%;
        margin-top: -28px;
        left: 10px;
    }

    .page-account-starbucks-rewards .member-upgrade .item .content {
        position: relative;
        left: -20px;
    }

    .page-account-starbucks-rewards .member-upgrade .item .content p {
        font-size: 13px;
        text-align: left;
    }
}

@media (max-width: 1024px) {
    .page-account-starbucks-rewards .member-upgrade .grid.columns-3 > *:nth-child(2n + 1) {
        clear: none;
    }

    .page-account-starbucks-rewards .member-upgrade .grid.columns-3 > * {
        clear: none;
        width: 33.3333%;
    }
}

@media (max-width: 640px) {
    .page-account-starbucks-rewards .member-upgrade .grid.columns-3 > *:nth-child(2n + 1) {
        clear: left;
    }

    .page-account-starbucks-rewards .member-upgrade .grid.columns-3 > * {
        clear: left;
        width: 100%;
    }
}

.page-account-starbucks-rewards .member-gift {
    width: 100%;
    padding: 30px 0;
    box-sizing: border-box;
}

@media (max-width: 640px) {
    .page-account-starbucks-rewards .member-gift {
        padding: 30px 0 72px 0;
    }
}

.page-account-starbucks-rewards .member-gift .title {
    margin-bottom: 24px;
}

.page-account-starbucks-rewards .member-gift .item {
    position: relative;
}

.page-account-starbucks-rewards .member-gift .item span {
    width: 24px;
    height: 2px;
    margin: 20px auto 20px;
    display: block;
}

@media (max-width: 640px) {
    .page-account-starbucks-rewards .member-gift .item span {
        display: none;
    }
}

.page-account-starbucks-rewards .member-gift .item .image {
    margin: 0 auto;
    display: inherit;
    width: 140px;
}

.page-account-starbucks-rewards .member-gift .item:nth-child(1) span {
    background: #DDDDDD;
}

.page-account-starbucks-rewards .member-gift .item:nth-child(1) ul li:before {
    background: #DDDDDD;
}

.page-account-starbucks-rewards .member-gift .item:nth-child(2) span {
    background: #00A862;
}

.page-account-starbucks-rewards .member-gift .item:nth-child(2) ul li:before {
    background: #00A862;
}

.page-account-starbucks-rewards .member-gift .item:nth-child(3) span {
    background: #C2A661;
}

.page-account-starbucks-rewards .member-gift .item:nth-child(3) ul li:before {
    background: #C2A661;
}

.page-account-starbucks-rewards .member-gift .item .content {
    margin-top: 12px;
}

@media (max-width: 640px) {
    .page-account-starbucks-rewards .member-gift .item .content {
        position: relative;
        left: 20px;
    }
}

.page-account-starbucks-rewards .member-gift .item .content ul {
    list-style: none;
    padding-left: 20px;
    margin: 0px auto;
    max-width: 190px;
}

@media (max-width: 640px) {
    .page-account-starbucks-rewards .member-gift .item .content ul {
        padding-left: 0;
        max-width: 300px;
    }
}

.page-account-starbucks-rewards .member-gift .item .content ul li {
    font-size: 15px;
    color: #000000;
    text-align: left;
    padding-left: 14px;
    position: relative;
    line-height: 140%;
    margin-bottom: 10px;
}

.page-account-starbucks-rewards .member-gift .item .content ul li:before {
    position: absolute;
    left: 0px;
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 10px;
    top: 7px;
}

@media (max-width: 640px) {
    .page-account-starbucks-rewards .member-gift .item {
        padding-left: 100px;
        margin-bottom: 12px;
        flex-direction: row !important;
        align-items: flex-start !important;
        justify-content: space-around !important;
    }

    .page-account-starbucks-rewards .member-gift .item .image {
        top: 50%;
        position: absolute;
        left: 20px;
        margin-top: -38px;
        width: 70px;
        padding-left: 0px;
    }

    .page-account-starbucks-rewards .member-gift .item .content ul li {
        text-align: left;
        font-size: 13px;
        line-height: 140%;
        padding-left: 10px;
        margin-bottom: 6px;
    }

    .page-account-starbucks-rewards .member-gift .item .content ul li:before {
        width: 5px;
        height: 5px;
        top: 7px;
    }
}

@media (max-width: 1024px) {
    .page-account-starbucks-rewards .member-gift .grid.columns-3 > *:nth-child(2n + 1) {
        clear: none;
    }

    .page-account-starbucks-rewards .member-gift .grid.columns-3 > * {
        clear: none;
        width: 33.3333%;
    }
}

@media (max-width: 640px) {
    .page-account-starbucks-rewards .member-gift .grid.columns-3 > *:nth-child(2n + 1) {
        clear: left;
    }

    .page-account-starbucks-rewards .member-gift .grid.columns-3 > * {
        clear: left;
        width: 100%;
    }
}

.page-account-starbucks-rewards .member-package {
    width: 100%;
    padding: 48px 0 48px 0;
}

.page-account-starbucks-rewards .member-package .title {
    margin-bottom: 24px;
}

.page-account-starbucks-rewards .member-package .item:first-of-type .image {
    width: 80%;
    max-width: 265px;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .page-account-starbucks-rewards .member-package .item:first-of-type .image {
        width: 80%;
        max-width: 210px;
        margin: 0 auto;
    }
}

.page-account-starbucks-rewards .member-package .item {
    padding: 0 20px;
    text-align: center;
}

.page-account-starbucks-rewards .member-package .item h3 {
    font-weight: bold;
    font-size: 16px;
}

@media (max-width: 640px) {
    .page-account-starbucks-rewards .member-package .item h3 {
        font-size: 16px;
    }
}

.page-account-starbucks-rewards .member-package .item .image {
    width: 100%;
}

@media (max-width: 640px) {
    .page-account-starbucks-rewards .member-package .item .image {
        width: 100%;
        max-width: 280px;
    }

    .page-account-starbucks-rewards .member-package .item .image h4 {
        font-size: 16px;
        line-height: 140%;
    }
}

.page-account-starbucks-rewards .member-package .item ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.page-account-starbucks-rewards .member-package .item ul li {
    font-size: 15px;
    color: #000000;
    text-align: left;
    padding-left: 14px;
    position: relative;
    line-height: 140%;
    margin-bottom: 10px;
}

.page-account-starbucks-rewards .member-package .item ul li:first-child:before {
    display: none;
}

.page-account-starbucks-rewards .member-package .item ul li:before {
    position: absolute;
    left: 0px;
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 10px;
    top: 7px;
    background-color: #C2A661;
}

@media (max-width: 640px) {
    .page-account-starbucks-rewards .member-package .item ul li {
        text-align: left;
        font-size: 13px;
        line-height: 140%;
        padding-left: 10px;
    }

    .page-account-starbucks-rewards .member-package .item ul li:first-child {
        font-size: 14px;
        line-height: 140%;
    }

    .page-account-starbucks-rewards .member-package .item ul li:before {
        width: 5px;
        height: 5px;
        top: 7px;
    }
}

.page-account-starbucks-rewards .member-package .item p {
    box-sizing: border-box;
    width: 100%;
    margin: 0 0 12px 0;
    font-size: 12px;
    color: #000000;
    text-align: left;
    line-height: 140%;
    padding-left: 14px;
}

@media (max-width: 640px) {
    .page-account-starbucks-rewards .member-package .item p {
        padding-left: 12px;
    }
}

.page-account-starbucks-rewards .member-package .item p small {
    font-size: 10px;
    line-height: 100%;
}

@media (max-width: 640px) {
    .page-account-starbucks-rewards .member-package .item {
        margin-bottom: 24px;
    }
}

.page-account-starbucks-rewards .member-star-acquire {
    padding: 48px 0 72px;
}

.page-account-starbucks-rewards .member-star-acquire .padded {
    padding: 0 10px;
}

.page-account-starbucks-rewards .member-star-acquire .member-star-acquire-title {
    font-size: 22px;
}

@media (max-width: 640px) {
    .page-account-starbucks-rewards .member-star-acquire {
        padding-bottom: 60px;
    }

    .page-account-starbucks-rewards .member-star-acquire .member-star-acquire-title {
        font-size: 18px;
        margin-bottom: 0;
    }
}

.page-account-starbucks-rewards .member-star-acquire .tips {
    bottom: 24px;
}

.page-account-starbucks-rewards .member-star-acquire .title {
    margin-bottom: 24px;
}

.page-account-starbucks-rewards .member-star-acquire h2 {
    color: #FFFFFF;
    margin-bottom: 24px;
    font-weight: 500;
    text-align: center;
}

@media (max-width: 640px) {
    .page-account-starbucks-rewards .member-star-acquire h2 {
        font-size: 16px;
    }
}

.page-account-starbucks-rewards .member-star-acquire .padded-2.left {
    width: 66.666%;
}

@media (max-width: 640px) {
    .page-account-starbucks-rewards .member-star-acquire .padded-2.left {
        width: 100%;
    }
}

.page-account-starbucks-rewards .member-star-acquire .padded-2.right {
    width: 33.3333%;
}

@media (max-width: 640px) {
    .page-account-starbucks-rewards .member-star-acquire .padded-2.right {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .page-account-starbucks-rewards .member-star-acquire .padded-2.left .columns-3 {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .page-account-starbucks-rewards .member-star-acquire .padded-2.left .columns-3::after {
        clear: both;
        content: "";
        display: table;
    }

    .page-account-starbucks-rewards .member-star-acquire .padded-2.left .columns-3 > * {
        box-sizing: border-box;
        clear: none;
        float: left;
        margin: 0;
        padding: 0;
        width: 33.3333333333%;
    }

    .page-account-starbucks-rewards .member-star-acquire .padded-2.left .columns-3 > *:nth-child(3n + 1) {
        clear: left;
    }

    .page-account-starbucks-rewards .member-star-acquire .padded-2.right .columns-2 {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .page-account-starbucks-rewards .member-star-acquire .padded-2.right .columns-2::after {
        clear: both;
        content: "";
        display: table;
    }

    .page-account-starbucks-rewards .member-star-acquire .padded-2.right .columns-2 > * {
        box-sizing: border-box;
        clear: none;
        float: left;
        margin: 0;
        padding: 0;
        width: 50%;
    }

    .page-account-starbucks-rewards .member-star-acquire .padded-2.right .columns-2 > *:nth-child(2n + 1) {
        clear: left;
    }
}

@media (max-width: 640px) {
    .page-account-starbucks-rewards .member-star-acquire .padded-2:last-of-type {
        margin-top: 40px;
    }
}

.page-account-starbucks-rewards .member-star-acquire .item {
    text-align: center;
}

.page-account-starbucks-rewards .member-star-acquire .item .image {
    max-width: 150px;
    margin: 0 auto;
    width: 100%;
}

@media (max-width: 640px) {
    .page-account-starbucks-rewards .member-star-acquire .item .image {
        width: 72px;
        margin: 0 auto;
    }
}

.page-account-starbucks-rewards .member-star-acquire .item .image-small {
    max-width: 92px;
    width: 100%;
}

@media (max-width: 640px) {
    .page-account-starbucks-rewards .member-star-acquire .item .image-small {
        width: 64px;
    }
}

.page-account-starbucks-rewards .member-star-acquire .item p {
    font-size: 15px;
    color: #FFFFFF;
    text-align: center;
    line-height: 140%;
    margin-top: 6px;
    display: inline-block;
    width: 100%;
}

@media (max-width: 640px) {
    .page-account-starbucks-rewards .member-star-acquire .item {
        margin: 0;
    }

    .page-account-starbucks-rewards .member-star-acquire .item p {
        font-size: 13px;
    }
}

.page-account-starbucks-rewards .member-star-acquire .vertical-line {
    width: 1px;
    height: 140px;
    background-color: #C2A661;
}

.page-account-starbucks-rewards .member-join {
    padding: 48px 0 72px;
}

@media (max-width: 640px) {
    .page-account-starbucks-rewards .member-join {
        padding: 48px 0 72px 0;
    }
}

.page-account-starbucks-rewards .member-join .title {
    margin-bottom: 24px;
}

.page-account-starbucks-rewards .member-join .ga-msr-intro-sign-up, .page-account-starbucks-rewards .member-join .ga-msr-intro-sign-in {
    background-color: #15767C;
    border: none;
    color: #FFFFFF;
    font-size: 14px;
    padding: 0 22px;
}

.page-account-starbucks-rewards .member-join .item {
    text-align: center;
}

.page-account-starbucks-rewards .member-join .item.padded-2 {
    padding-right: 0 5%;
}

.page-account-starbucks-rewards .member-join .item h2 {
    font-weight: 500;
    display: block;
}

.page-account-starbucks-rewards .member-join .item div {
    display: inline-block;
    width: 100%;
}

.page-account-starbucks-rewards .member-join .item p {
    text-align: center;
    line-height: 140%;
    max-width: 350px;
    margin: 0 auto 24px;
    display: block;
}

@media (max-width: 640px) {
    .page-account-starbucks-rewards .member-join .item {
        width: 96%;
        margin-left: 3%;
        margin-right: 3%;
    }

    .page-account-starbucks-rewards .member-join .item:first-child {
        margin-bottom: 48px;
    }

    .page-account-starbucks-rewards .member-join .item p {
        font-size: 13px;
    }

    .page-account-starbucks-rewards .member-join .item h2 {
        text-align: center;
        font-size: 16px;
    }
}

.page-account-starbucks-rewards .member-join .grid > .item:first-of-type::after {
    content: " ";
    display: block;
    position: absolute;
    height: 100%;
    width: 1px;
    top: 0px;
    background-color: rgba(0, 0, 0, 0.56);
    left: 100%;
}

@media (max-width: 640px) {
    .page-account-starbucks-rewards .member-join .grid > .item:first-of-type::after {
        content: " ";
        height: 1px;
        width: 80%;
        left: 10%;
        top: 120%;
    }
}

.page-account-starbucks-rewards .member-join .vertical-line {
    width: 1px;
    height: 140px;
    background-color: grey;
}

.page-account-starbucks-rewards .member-faq {
    background-color: #fff;
    padding: 30px 0;
}

.page-account-starbucks-rewards .member-faq .wrapper {
    position: relative;
}

@media (max-width: 640px) {
    .page-account-starbucks-rewards .member-faq .container {
        font-size: 14px;
    }
}

.page-account-starbucks-rewards .member-faq .title {
    margin-bottom: 24px;
}

.page-account-starbucks-rewards .member-faq .card {
    box-shadow: none;
    padding-left: 20px;
    padding-right: 20px;
}

.page-account-starbucks-rewards .member-faq .card .header:before {
    padding: 34px 0px;
}

@media (max-width: 640px) {
    .page-account-starbucks-rewards .member-faq .card .header:before {
        padding: 11px 0px;
    }
}

.page-account-starbucks-rewards .member-faq .card .header img {
    display: inline-block;
    width: 54px;
    height: auto;
    vertical-align: middle;
}

@media (max-width: 640px) {
    .page-account-starbucks-rewards .member-faq .card .header img {
        width: 30px;
    }
}

.page-account-starbucks-rewards .member-faq .card .header h2 {
    font-weight: 500;
    font-size: 20px;
    margin-left: 40px;
    display: inline-block;
    vertical-align: middle;
    box-sizing: border-box;
}

@media (max-width: 640px) {
    .page-account-starbucks-rewards .member-faq .card .header h2 {
        margin-left: 16px;
        font-size: 16px;
        width: 60%;
        vertical-align: middle;
        padding: 0px;
        font-size: 16px;
    }
}

.page-account-starbucks-rewards .member-faq .card:nth-child(odd) {
    background-color: #EBF3F5;
}

.page-account-starbucks-rewards .member-faq .padding-2em {
    padding-left: 2em;
}

.page-account-starbucks-rewards .libra-msr-footer {
    background: url("../../assets/images/libra/footer-new.jpeg") no-repeat 0 -18px #013529;
    background-size: cover;
    margin-top: 0;
}

@media (max-width: 640px) {
    .page-account-starbucks-rewards .libra-msr-footer {
        background-size: contain;
    }
}

.page-account-starbucks-rewards .libra-msr-footer .footer-desc {
    text-align: center;
    left: 0;
    width: 100%;
    padding-top: 48px;
    padding-bottom: 60px;
    max-width: 640px;
    margin: 0 auto;
}

.page-account-starbucks-rewards .libra-msr-footer .footer-desc p, .page-account-starbucks-rewards .libra-msr-footer .footer-desc .license {
    display: inline-block;
    font-size: 14px;
    line-height: 140%;
    margin: 0 auto 8px;
    text-align: center;
    color: white;
    width: 100%;
}

.page-account-starbucks-rewards .libra-msr-footer .footer-desc p b, .page-account-starbucks-rewards .libra-msr-footer .footer-desc .license b {
    font-size: 12px;
    line-height: 140%;
}

.page-account-starbucks-rewards .libra-msr-footer .footer-desc p a, .page-account-starbucks-rewards .libra-msr-footer .footer-desc .license a {
    line-height: 140%;
    color: white;
}

.page-account-starbucks-rewards .libra-msr-footer .footer-desc p:last-child, .page-account-starbucks-rewards .libra-msr-footer .footer-desc .license:last-child {
    margin-bottom: 0;
}

@media (max-width: 640px) {
    .page-account-starbucks-rewards .libra-msr-footer .footer-desc p, .page-account-starbucks-rewards .libra-msr-footer .footer-desc .license {
        transform: scale(0.9);
    }
}

.page-account-starbucks-rewards .libra-msr-footer .footer-desc a {
    line-height: 12px;
    color: #ccc;
}

@media (max-width: 640px) {
    .page-account-starbucks-rewards .libra-msr-footer .footer-desc {
        padding-top: 30px;
        padding-bottom: 60px;
        max-width: 85%;
    }

    .page-account-starbucks-rewards .libra-msr-footer .footer-desc p {
        font-size: 12px;
    }
}

@media (max-width: 640px) {
    .page-account-starbucks-rewards.lang-en .member-gift {
        padding: 30px 5% 96px 5%;
    }
}

.page-account-starbucks-rewards.lang-en .member-gift .item .content ul {
    max-width: 220px;
}

@media (max-width: 640px) {
    .page-account-starbucks-rewards.lang-en .member-star-acquire {
        padding-bottom: 96px;
    }
}

.ie11 .member-package .flex, .ie11 .member-package .flex-column, .ie11 .member-package .tablet-flex-row {
    display: inline-block;
}

.page-starbucks-now #content,
.page-legalterms #content {
    padding: 0;
    background-color: #F2EFEA;
}

.page-starbucks-now #content img,
.page-legalterms #content img {
    margin-top: -10px;
}

/*** BROWSER HACKS (for more see http://browserhacks.com/) ***/
@media (max-width: 640px) {
    body.chrome {
        padding-bottom: 0px;
    }

    body.chrome #app-view-wrapper {
        box-sizing: border-box;
        height: 100%;
        padding-bottom: 55px;
        overflow-y: auto;
        position: absolute;
        width: 100%;
        -webkit-overflow-scrolling: touch;
        z-index: 995;
    }

    body.chrome.with-overlay #app-view-wrapper, body.chrome.with-overlay-nav #app-view-wrapper {
        overflow: hidden;
        z-index: 997;
    }

    body.chrome.lang-en {
        padding-bottom: 0px;
    }

    body.chrome.lang-en #app-view-wrapper {
        padding-bottom: 67px;
    }
}

@media only screen and (max-width: 640px) and (device-width: 375px) and (device-height: 812px) and (-webkit-device-pixel-ratio: 3) {
    body.chrome.lang-en #app-view-wrapper {
        padding-bottom: 82px;
    }
}

@media (max-width: 640px) {
    body.chrome.page-stores {
        padding-bottom: 0px;
    }

    body.chrome.page-stores #app-view-wrapper {
        position: initial;
        -webkit-overflow-scrolling: auto;
    }
}