﻿@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
    visibility: hidden;
  }

  100% {
    opacity: 1;
    visibility: visible;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
    visibility: hidden;
  }

  100% {
    opacity: 1;
    visibility: visible;
  }
}

@-webkit-keyframes fade-out {
  0% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes fade-out {
  0% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes draw-stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes draw-stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes checkmark-fill {
  100% {
    -webkit-box-shadow: inset 0px 0px 0px 30px #323232;
    box-shadow: inset 0px 0px 0px 30px #323232;
  }
}

@keyframes checkmark-fill {
  100% {
    -webkit-box-shadow: inset 0px 0px 0px 30px #323232;
    box-shadow: inset 0px 0px 0px 30px #323232;
  }
}

@-webkit-keyframes scale-up-bounce {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

  40% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scale-up-bounce {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

  40% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes scale-up-bounce-spring {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

  20% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scale-up-bounce-spring {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

  20% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes scale-down-bounce {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  20% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}

@keyframes scale-down-bounce {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  20% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}

@-webkit-keyframes scale-up {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scale-up {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(50, 50, 50, 0.5);
    box-shadow: 0 0 0 0 rgba(50, 50, 50, 0.5);
  }

  50% {
    -webkit-box-shadow: 0 0 0 15px rgba(50, 50, 50, 0);
    box-shadow: 0 0 0 15px rgba(50, 50, 50, 0);
  }
}

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(50, 50, 50, 0.5);
    box-shadow: 0 0 0 0 rgba(50, 50, 50, 0.5);
  }

  50% {
    -webkit-box-shadow: 0 0 0 15px rgba(50, 50, 50, 0);
    box-shadow: 0 0 0 15px rgba(50, 50, 50, 0);
  }
}

@-webkit-keyframes wobble {
  0%,
  100% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
}

@keyframes wobble {
  0%,
  100% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
}

@-webkit-keyframes modal-open {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20%);
    transform: translateY(20%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
  }
}

@keyframes modal-open {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20%);
    transform: translateY(20%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
  }
}

@-webkit-keyframes modal-close {
  0% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20%);
    transform: translateY(20%);
  }
}

@keyframes modal-close {
  0% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20%);
    transform: translateY(20%);
  }
}

@media (max-width: 999px) {
  .quirks-fix--ios-instagram {
    height: auto;
    min-height: 100%;
    padding-bottom: 250px;
  }
}

html,
body {
  margin: 0;
  width: 100%;
  height: auto;
}

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  overflow-x: hidden;
}

body {
  color: #545454;
  background: white;
}

iframe {
  margin: 0;
  padding: 0;
  border: 0;
}
@media screen and (max-width: 640px) {
    iframe {
        height: 184px;
    }
}

b,
strong {
  font-weight: 500;
}

small {
  font-size: 0.875em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  margin: 0;
  line-height: 1em;
}

p {
  margin: 0;
}

sub,
sup {
  font-size: 0.75em;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

img {
  border: 0;
  max-width: 100%;
}

figure {
  margin: 0;
}

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

form {
  margin: 0;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-font-smoothing: inherit;
  border: none;
  background: transparent;
  line-height: normal;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
input[type='button'],
input[type='reset'],
input[type='submit'] {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  cursor: pointer;
}

button:-moz-focusring,
input[type='button']:-moz-focusring,
input[type='reset']:-moz-focusring,
input[type='submit']:-moz-focusring {
  outline: 1px dotted;
}

button[disabled],
input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input[type='checkbox'],
input[type='radio'] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  height: auto;
}

input[type='search'] {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

select::-ms-expand {
  display: none;
}

optgroup {
  font-weight: bold;
}

option {
  background-color: #fff;
  color: #000;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1em;
}

td,
th {
  padding: 0;
  font-weight: normal;
}

body {
  font-size: 14px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol', sans-serif;
  line-height: 1.3em;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  -webkit-font-smoothing: subpixel-antialiased;
}

.text-container > * + * {
  margin-top: 0.57143em;
}

.text-container * + .heading-1,
.text-container * + .heading-2,
.text-container * + .heading-3 {
  margin-top: 1.42857em;
}

a,
.link {
  text-decoration: none;
  color: #323232;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}

a:hover,
.link:hover {
  color: #202020;
}

.link--muted {
  color: inherit;
  text-decoration: underline;
}

h1,
.heading-1 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol', sans-serif;
  font-size: 1.71429em;
  line-height: 1.3em;
}

@media (min-width: 750px) {
  h1,
  .heading-1 {
    font-size: 2em;
  }
}

h2,
.heading-2 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol', sans-serif;
  font-size: 1.28571em;
  line-height: 1.3em;
}

.main h2,
.main .heading-2 {
  color: #333333;
}

.sidebar h2,
.sidebar .heading-2 {
  color: #323232;
}

.content-box h2,
.content-box .heading-2 {
  color: #333333;
}

.default-background h2,
.default-background .heading-2 {
  color: #333333;
}

h3,
.heading-3 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol', sans-serif;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.3em;
}

.main h3,
.main .heading-3 {
  color: #333333;
}

.sidebar h3,
.sidebar .heading-3 {
  color: #323232;
}

.content-box h3,
.content-box .heading-3 {
  color: #333333;
}

.default-background h3,
.default-background .heading-3 {
  color: #333333;
}

p {
  line-height: 1.5em;
}

.emphasis {
  font-weight: 500;
}

.icon {
  background-position: center center;
  background-repeat: no-repeat;
  display: inline-block;
}

input {
  color: inherit;
  font: inherit;
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  -webkit-font-smoothing: inherit;
  background: transparent;
  line-height: normal;
  width: 100%;
  outline: none;
  border: none;
  box-sizing: border-box;
}

input[name='number']:not(:-webkit-autofill) {
  animation-name: AutofillCancel;
  animation-duration: 1s;
}

.anyflexbox .body,
.anyflexbox .content,
.anyflexbox .content .wrap,
.anyflexbox .main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  font-size: 14px;
}

.content {
  overflow: hidden;
}

.anyflexbox .content .wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.wrap {
  display: block;
  margin: 0 auto;
  max-width: 40em;
  zoom: 1;
}

.wrap:after,
.wrap:before {
  content: '';
  display: table;
}

.wrap:after {
  clear: both;
}

.logo {
  display: block;
  vertical-align: middle;
}

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

.logo__text .main h2,
.main .heading-2 {
  color: #333;
}

h1,
.heading-1 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol', sans-serif;
  font-size: 1.71429em;
  line-height: 1.3em;
}

.breadcrumb--center {
  text-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.breadcrumb__item {
  display: inline;
  color: #737373;
}

.breadcrumb__item a {
  color: #666;
}

.anyflexbox .breadcrumb__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.icon-svg {
  display: inline-block;
  vertical-align: middle;
  fill: currentColor;
}

.icon-svg--size-10 {
  width: 10px;
  height: 10px;
}

.icon-svg--size-12 {
  width: 12px;
  height: 12px;
}

.icon-svg--size-16 {
  width: 16px;
  height: 16px;
}

.icon-svg--size-18 {
  width: 18px;
  height: 18px;
}

.icon-svg--size-24 {
  width: 24px;
  height: 24px;
}

.icon-svg--size-64 {
  width: 64px;
  height: 64px;
}

button[disabled],
input[disabled] {
  cursor: default;
}

.breadcrumb__chevron-icon {
  margin: 0 0.64286em;
}

.main .icon-svg--color-adaptive-light {
  color: #737373;
  fill: currentColor;
}

.breadcrumb__item--current a {
  font-weight: 500;
  color: #000;
}

.breadcrumb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
}

.dynamic-checkout__title {
  color: #333;
  font-size: 1em;
  font-weight: 500;
  margin: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  text-align: center;
}

.anyflexbox .main__content {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.section {
  position: relative;
  padding-top: 2em;
}

.section:first-child {
  padding-top: 0;
}

.content-box {
  background: #fff;
  background-clip: padding-box;
  border: 1px solid;
  border-radius: 5px;
  color: #545454;
}

.content-box,
.content-box-spacing {
  margin-top: 1em;
}

.main .content-box {
  border-color: #d9d9d9;
}

.content-box:first-of-type,
.content-box-spacing:first-of-type {
  margin-top: 0;
}

.content-box__row {
  padding: 1.14286em;
  position: relative;
  zoom: 1;
}

.content-box__row--tight-spacing-vertical {
  padding-top: 0.85714em;
  padding-bottom: 0.85714em;
}

.display-table .content-box__row {
  display: table;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}

.content-box__row:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.content-box__row:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.content-box__row:after,
.content-box__row:before {
  content: '';
  display: table;
}

.content-box__row:after {
  clear: both;
}

.review-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.review-block ~ .review-block {
  margin-top: 0.85714em;
  padding-top: 0.85714em;
  border-top: 1px solid #e6e6e6;
}

.review-block__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.review-block__content {
  -webkit-box-flex: 8;
  -webkit-flex: 8;
  -ms-flex: 8;
  flex: 8;
  color: #333;
  padding-right: 1.14286em;
}

.review-block__link {
  max-width: 10em;
  font-size: 0.85714em;
}

.review_visibyinit {
  visibility: initial;
}

.review_visibyhidden {
  visibility: hidden;
}

.visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  clip: rect(0 0 0 0);
  width: 2px;
  height: 2px;
  margin: -2px;
  overflow: hidden;
  padding: 0;
  position: absolute;
}

.review-block__label {
  color: #737373;
  padding-right: 1.14286em;
  -webkit-box-flex: 0;
  -webkit-flex: 2;
  -ms-flex: 2;
  flex: 2;
}

.address {
  font-style: normal;
  line-height: 1.5em;
}

.address--tight {
  line-height: inherit;
}

.section__header {
  position: relative;
  margin-bottom: 1em;
}

.section__title {
  color: #333;
}

.section__content {
  zoom: 1;
}

.pp-default-cont {
  text-align: center;
  padding: 1.15em 4.5em;
}

.pp-default-cont > img {
  margin-bottom: 15px;
}

.pp-default-cont > span {
  font-size: 14px;
  color: #545454;
}

.cc-img-list {
    float: right;
    max-width: 330px;
    text-align: right;
}

.cc-img-list > img {
  width: 38px;
  height: 24px;
  margin:2px;
}

.user-message {
  display: flex;
  align-items: center;
}

.headImg {
  margin-right: 14px;
  background: #d8d8d8;
  border-radius: 5px;
}

.headImg img {
  width: 50px;
  height: 50px;
}

.radio-wrapper,
.checkbox-wrapper {
  zoom: 1;
  margin-bottom: 1em;
}

.display-table .radio-wrapper,
.display-table .checkbox-wrapper {
  display: table;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}

.radio-wrapper:last-child,
.checkbox-wrapper:last-child {
  margin-bottom: 0;
}

.radio-wrapper:after,
.radio-wrapper:before,
.checkbox-wrapper:after,
.checkbox-wrapper:before {
  content: '';
  display: table;
}

.radio-wrapper:after,
.checkbox-wrapper:after {
  clear: both;
}

.radio__input,
.checkbox__input {
  padding-right: 0.75em;
  white-space: nowrap;
}

.display-table .radio__input,
.display-table .checkbox__input {
  display: table-cell;
}

.input-checkbox,
.input-radio {
  width: 18px;
  height: 18px;
  -webkit-box-shadow: 0 0 0 0 #323232 inset;
  box-shadow: 0 0 0 0 #323232 inset;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: relative;
  cursor: pointer;
  vertical-align: -4px;
  border: 1px solid;
}

.input-radio {
  border-radius: 50%;
  outline: none;
}

.main .input-checkbox,
.main .input-radio {
  border-color: #d9d9d9;
  background-color: white;
}

.content-box .input-checkbox,
.content-box .input-radio {
  border-color: #d9d9d9;
  background-color: white;
}

.input-checkbox:checked,
.input-radio:checked {
  border: none;
  -webkit-box-shadow: 0 0 0 10px #323232 inset;
  box-shadow: 0 0 0 10px #323232 inset;
}

.input-checkbox:after,
.input-radio:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: scale(0.2);
  transform: scale(0.2);
  -webkit-transition: all 0.2s ease-in-out 0.1s;
  transition: all 0.2s ease-in-out 0.1s;
  opacity: 0;
}

.input-radio:after {
  width: 4px;
  height: 4px;
  margin-left: -2px;
  margin-top: -2px;
  background-color: #fff;
  border-radius: 50%;
}

.input-checkbox:checked:after,
.input-radio:checked:after {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.radio__label,
.checkbox__label,
.label-radio {
  cursor: pointer;
  vertical-align: middle;
}

.display-table .checkbox__label {
  display: table-cell;
  width: 100%;
}

.display-table .radio__label {
  display: table-cell;
  width: 100%;
}
/* .display-table .radio__label span {
  display: flex;
  align-items: center
} */

.display-table .label-radio {
  display: inline-block;
  width: 100%;
  padding: 0 1.14286em;
}

.radio__label__primary {
  cursor: inherit;
  font-family: inherit;
  vertical-align: top;
}

.display-table .radio__label__primary {
  display: table-cell;
  width: 100%;
}

.radio__label__accessory {
  text-align: right;
  padding-left: 0.75em;
  white-space: nowrap;
}

.display-table .radio__label__accessory {
  display: table-cell;
}

.content-box__emphasis {
  font-weight: 500;
  color: #333;
}

.step__footer {
  z-index: 2;
  position: relative;
  margin-top: 1em;
}

.btn,
.sp-modal-toggle {
  cursor: pointer;
  display: inline-block;
  background-color: #5c5c5c;
  background-clip: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px transparent solid;
  border-radius: 5px;
  color: white;
  font-weight: 500;
  padding: 1.4em 1.7em;
  text-align: center;
  position: relative;
  -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
}

.btn__content {
  position: relative;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.btn--loading .btn__content,
.btn--loading .btn__icon {
  opacity: 0;
}

.icon-svg--spinner-button {
  width: 20px;
  height: 20px;
}

.btn__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -10px;
  margin-left: -10px;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
  animation: rotation 0.6s infinite linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(359deg);
  }
}

.btn--loading .btn__spinner {
  -webkit-animation: rotate 0.5s linear infinite;
  animation: rotate 0.5s linear infinite;
  opacity: 1;
}

.step__footer__previous-link,
.step__footer__info {
  display: block;
}

.icon-svg--color-accent {
  color: var(--color_button_label, #323232);
  fill: currentColor;
}

.previous-link__icon {
  -webkit-transition: all 0.2s cubic-bezier(0.3, 0, 0, 1);
  transition: all 0.2s cubic-bezier(0.3, 0, 0, 1);
  margin-right: 0.25em;
}

.step__footer__previous-link-content {
  vertical-align: middle;
}

.main__footer {
  padding: 1em 0;
  border-top: 1px solid #e6e6e6;
}

.copyright-text {
  font-size: 0.85714em;
  color: #737373;
}

.sidebar {
  position: relative;
  color: #535353;
}

.sidebar::after {
  content: '';
  display: block;
  width: 300%;
  position: absolute;
  top: 0;
  left: -100%;
  bottom: 0;
  background: #fafafa;
  z-index: -1;
  -webkit-box-shadow: 0 -1px 0 #e1e1e1 inset;
  box-shadow: 0 -1px 0 #e1e1e1 inset;
}

.sidebar__header {
  margin-bottom: 2.5em;
  display: none;
}

.js .visually-hidden-if-js {
  border: 0;
  clip: rect(0, 0, 0, 0);
  clip: rect(0 0 0 0);
  width: 2px;
  height: 2px;
  margin: -2px;
  overflow: hidden;
  padding: 0;
  position: absolute;
}

.order-summary__section {
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}

table {
  width: 100%;
}

td,
th {
  padding: 0;
  font-weight: normal;
}

td,
th {
  padding-left: 1em;
}

td:first-child,
th:first-child {
  padding-left: 0;
  text-align: left;
}

td:last-child,
th:last-child {
  text-align: right;
}

.product-table th,
.product-table td {
  padding-top: 0;
  padding-bottom: 0;
}

.product-table-content .CartItem-Variant {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 1em;
  min-width: 100%;
}
.product-table-content .CartItem-Variant span {
  margin-left: 0px;
  width: 1em;
  min-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}
.product-table-content .CartItem-Variant span.image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.product-table-content .CartItem-Variant span img {
  width: 20px;
  max-height: 20px;
  margin-left: 5px;
}
.product-table-content .CartItem-Variant span:first-child {
  margin-left: 0px;
}

.product-table__header th {
  white-space: nowrap;
  font-weight: 500;
  color: #333;
}

.product-table td {
  border-color: #fad9d9;
}

.product td {
  padding-top: 1em;
}

.product:first-child td {
  padding-top: 0;
}

.product-thumbnail {
  width: 4.6em;
  height: 4.6em;
  border-radius: 8px;
  background: #fff;
  position: relative;
}

.product-thumbnail::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 8px;
  border: 1px rgba(0, 0, 0, 0.1) solid;
  z-index: 2;
}

.product-thumbnail__wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  z-index: 1;
}

.product-thumbnail__image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}

.product-thumbnail__quantity {
  font-size: 0.85714em;
  font-weight: 500;
  line-height: 1.75em;
  white-space: nowrap;
  text-align: center;
  border-radius: 1.75em;
  /* background-color: rgba(114, 114, 114, 0.9);
  color: #fff; */

  background-color:var(--color_button,rgba(114, 114, 114, 0.9));
  color: var(--color_button_label,#fff);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 1.75em;
  height: 1.75em;
  padding: 0 0.58333em;
  position: absolute;
  right: -0.75em;
  top: -0.75em;
  z-index: 3;
}

.product__description {
  text-align: left;
  width: 100%;
  padding-left: 1em;
}

.order-summary__emphasis {
  font-weight: 500;
}

.product__description__name.order-summary__emphasis {
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.product__description__name,
.product__description__variant,
.product__description__property {
  display: block;
}

.product__description__name {
  /* min-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%; */
  width: 1em;
  min-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sidebar .order-summary__small-text {
  color: #666;
  font-size: 12px;
}

.product__price {
  white-space: nowrap;
}

.order-summary__emphasis {
  font-weight: 500;
}

.sidebar .order-summary__emphasis {
  color: var(--color_text_titles, #000);
}

.order-summary__scroll-indicator {
  background-color: rgba(50, 50, 50, 0.85);
  border-radius: 2em;
  bottom: 1.5em;
  color: #fafafa;
  font-size: 0.85714em;
  left: 50%;
  opacity: 0;
  padding: 0.6em 1.2em;
  position: absolute;
  -webkit-transform: translateX(-50%) translateY(100%) rotateZ(360deg);
  transform: translateX(-50%) translateY(100%) rotateZ(360deg);
  -webkit-transition: all 0.3s cubic-bezier(0.3, 0, 0, 1);
  transition: all 0.3s cubic-bezier(0.3, 0, 0, 1);
  white-space: nowrap;
  z-index: 2;
}

.order-summary__section--is-scrollable .order-summary__scroll-indicator {
  opacity: 1;
  -webkit-transform: translateX(-50%) translateY(0) rotateZ(360deg);
  transform: translateX(-50%) translateY(0) rotateZ(360deg);
}

.order-summary__scroll-indicator .icon-svg {
  margin-left: 0.21429em;
  margin-top: -0.21429em;
}

.fieldset {
  margin: -0.42857em;
  zoom: 1;
}

.fieldset:after,
.fieldset:before {
  content: '';
  display: table;
}

.fieldset:after {
  clear: both;
}

.field {
  width: 100%;
  float: left;
  padding: 0.42857em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.anyflexbox .field__input-btn-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.field__input-wrapper {
  position: relative;
}

.anyflexbox .field__input-btn-wrapper .field__input-wrapper {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.field__input-btn-wrapper .filed_listcont {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.filed_listcont {
  margin-top: 10px;
}

.filed_listcont .taglist {
  border-radius: 4px;
  background-color: rgba(113, 113, 113, 0.11);
  color: #717171;
  font-size: 0.85714em;
  padding: 0.85714em;
  overflow: hidden;
  width: max-content;
}

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

.fileitemlist .reduction-code__text {
  font-size: 14px;
  padding: 0 5px;
}

.filed_listcont .taglist b {
  font-size: 18px;
  cursor: pointer;
}

.filed_listcont .taglist b:hover {
  color: #000;
}

.filed_listcont .taglist svg {
  width: 18px;
  height: 18px;
}

.field__label {
  text-align: left;
  font-weight: 500;
  margin: 0.5em 0;
  display: none;
}

.field__label--visible {
  display: block;
}

.sidebar .field__label {
  color: #323232;
}

.floating-labels .field__label {
  font-size: 0.85714em;
  font-weight: normal;
  position: absolute;
  top: 0;
  width: 100%;
  margin-top: 0.42857em;
  margin-left: 1px;
  padding: 0 0.91667em;
  z-index: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transform: translateY(3px);
  transform: translateY(3px);
  pointer-events: none;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  opacity: 0;
}

.animate-floating-labels .field__label {
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.floating-labels .sidebar .field__label {
  color: #737373;
}

.floating-labels .field--show-floating-label .field__label {
  -webkit-transform: none;
  transform: none;
  opacity: 1;
}

.field__input {
  border: 1px transparent solid;
  background-clip: padding-box;
  border-radius: 5px;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 10px 0.78571em;
  word-break: normal;
  /* line-height: inherit; */
}

.sidebar .field__input {
  background-color: white;
  color: #333333;
  border-color:unset;
}

.field__input--iframe-container {
  border-color: #fafafa;
  min-height: 3.14286em;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.main .field__input {
  background-color: var(--color_form_background, #fff);
  color: var(--color_form_text, #333);
  border-color: var(--color_form_borders, #d9d9d9);
}

.field__input.field_padding_right {
  padding-right: 40px;
}

.content-box .field__input {
  background-color: white;
  color: #333333;
  border-color: #d9d9d9;
}

.animate-floating-labels .field__input {
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.field__input-wrapper--icon-right .field__input {
  padding-right: 2.85714rem;
}

.card-fields-container--loaded .field__input--iframe-container {
  height: auto;
}

.animate-floating-labels .field__input {
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.field__input:focus,
.field__input-wrapper--flag-focus .field__input {
  outline: none;
  border-color: #323232;
  box-shadow: 0 0 0 1px #323232;
}
.field__input:focus{
  box-shadow:unset;
}
.field__input .field__input_inner {
  color: rgb(51, 51, 51);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol', sans-serif;
  padding: 0.94em 0.8em;
  transition: padding 0.2s ease-out 0s;
}

.field__input .field__input_inner.floating {
  padding: 1.5em 0.8em 0.38em;
}

.floating-labels .field--show-floating-label .field__input {
  padding-top: 1.5em;
  padding-bottom: 0.35714em;
}

.floating-labels .field--show-floating-label .field__input--iframe-container {
  padding-bottom: 0;
  padding-top: 0;
}

@media (-ms-high-contrast: active) {
  .field__input:focus,
  .field__input-wrapper--flag-focus .field__input {
    background-color: highlight;
  }
}

.card-fields-container--loaded .field--active .field__input--iframe-container {
  outline: none;
  border-color: #323232;
  -webkit-box-shadow: 0 0 0 1px #323232;
  box-shadow: 0 0 0 1px #323232;
}

.anyflexbox .field__input-btn {
  width: auto;
  margin-left: 0.85714em;
  white-space: nowrap;
  padding-top: 0;
  padding-bottom: 0;
}

.js .sidebar .btn--disabled {
  cursor: default;
  background: #c8c8c8;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn__content {
  position: relative;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.btn__icon {
  margin-top: -0.28571em;
  margin-bottom: -0.07143em;
}

.order-summary__section ~ .order-summary__section {
  /* border-top: 1px solid rgba(175, 175, 175, 0.34); */
  border-top: 1px solid var(--color_page_borders_and_lines, #afafaf);
}

.total-line__price {
  padding-left: 1.5em;
  text-align: right;
  white-space: nowrap;
}

.total-line th,
.total-line td {
  padding-top: 0.75em;
}

.total-line:first-child th,
.total-line:first-child td {
  padding-top: 0;
}

.total-line-table__tbody + .total-line-table__tbody .total-line:first-child th::before,
.total-line-table__tbody + .total-line-table__tbody .total-line:first-child td::before,
.total-line-table__tbody + .total-line-table__footer .total-line:first-child th::before,
.total-line-table__tbody + .total-line-table__footer .total-line:first-child td::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 0;
  width: 100%;
  height: 1px;
}

.total-line-table__tbody + .total-line-table__tbody .total-line:first-child th,
.total-line-table__tbody + .total-line-table__tbody .total-line:first-child td,
.total-line-table__tbody + .total-line-table__footer .total-line:first-child th,
.total-line-table__tbody + .total-line-table__footer .total-line:first-child td {
  padding-top: 3em;
  position: relative;
}

.sidebar .total-line-table__tbody + .total-line-table__tbody .total-line:first-child th::before,
.sidebar .total-line-table__tbody + .total-line-table__tbody .total-line:first-child td::before,
.sidebar .total-line-table__tbody + .total-line-table__footer .total-line:first-child th::before,
.sidebar .total-line-table__tbody + .total-line-table__footer .total-line:first-child td::before {
  /* background-color: rgba(175, 175, 175, 0.34); */
  background: var(--color_page_borders_and_lines, #afafaf);
}

.sidebar .payment-due-label__total,
.sidebar .payment-due__price {
  color: #323232;
}

.payment-due__currency {
  font-size: 0.85714em;
  vertical-align: 0.2em;
  margin-right: 0.5em;
}

.sidebar .payment-due__currency {
  color: #717171;
}

.payment-due__price {
  font-size: 1.71429em;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1em;
}

.transform-price {
  color: #757575;
  font-size: 20px;
  font-weight: 600;
}
.Text-subdued.currency-tip {
  color: #757575;
  font-weight: 600;
  text-align: right;
  font-size: 16px;
}
.currency-tip.currency-tip-right {
  text-align: right;
}

.banner {
  padding: 1.5em 0;
  background: transparent;
  background-size: cover;
  display: none;
}

.main .logo {
  display: none;
}

.anyflexbox .banner {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.wrap:after,
.wrap:before {
  content: '';
  display: table;
}

.wrap:after {
  clear: both;
}

.order-summary-toggle {
  background: #fafafa;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  padding: 1.25em 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  text-align: left;
  width: 100%;
}

.order-summary-toggle__inner {
  zoom: 1;
}

.display-table .order-summary-toggle__inner {
  display: table;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}

.order-summary-toggle__inner:after,
.order-summary-toggle__inner:before {
  content: '';
  display: table;
}

.order-summary-toggle__inner:after {
  clear: both;
}

.order-summary-toggle__icon-wrapper {
  vertical-align: middle;
  padding-right: 0.75em;
  white-space: nowrap;
}

.display-table .order-summary-toggle__icon-wrapper {
  display: table-cell;
}

.order-summary-toggle__icon {
  fill: var(--color_text_titles, #323232);
  -webkit-transition: fill 0.2s ease-in-out;
  transition: fill 0.2s ease-in-out;
}

.order-summary-toggle:hover .order-summary-toggle__icon,
.order-summary-toggle:focus .order-summary-toggle__icon {
  fill: var(--color_text_titles, #191919);
}

.order-summary-toggle__text {
  color: #323232;
  vertical-align: middle;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  display: none;
}

.order-summary-toggle--show .order-summary-toggle__text--show,
.order-summary-toggle--hide .order-summary-toggle__text--hide {
  display: block;
}

.order-summary-toggle:hover .order-summary-toggle__text,
.order-summary-toggle:focus .order-summary-toggle__text {
  color: #191919;
}

.display-table .order-summary-toggle--show .order-summary-toggle__text--show,
.display-table .order-summary-toggle--hide .order-summary-toggle__text--hide {
  display: table-cell;
  width: 100%;
}

.order-summary-toggle__dropdown {
  vertical-align: middle;
  -webkit-transition: fill 0.2s ease-in-out;
  transition: fill 0.2s ease-in-out;
  fill: var(--color_button_label, #323232);
}

.order-summary-toggle:hover .order-summary-toggle__dropdown,
.order-summary-toggle:focus .order-summary-toggle__dropdown {
  fill: var(--color_button_label, #191919);
}

.order-summary-toggle__total-recap {
  vertical-align: middle;
  text-align: right;
  padding-left: 0.75em;
  white-space: nowrap;
}

.display-table .order-summary-toggle__total-recap {
  display: table-cell;
}

.total-recap__final-price {
  font-size: 1.28571em;
  line-height: 1em;
  color: #333333;
}

.order-summary-toggle--show .order-summary-toggle__text--show,
.order-summary-toggle--hide .order-summary-toggle__text--hide {
  display: block;
}

.display-table .order-summary-toggle--show .order-summary-toggle__text--show,
.display-table .order-summary-toggle--hide .order-summary-toggle__text--hide {
  display: table-cell;
  width: 100%;
}

.no-js .order-summary-toggle--show .order-summary-toggle__text--show,
.no-display-table .order-summary-toggle--show .order-summary-toggle__text--show,
.no-js .order-summary-toggle--hide .order-summary-toggle__text--hide,
.no-display-table .order-summary-toggle--hide .order-summary-toggle__text--hide {
  float: left;
}

.section__text {
  margin-top: 0.25em;
}

.hidden {
  display: none !important;
}

.notice {
  position: relative;
  display: table;
  opacity: 1;
  margin-bottom: 1.42857em;
  padding: 1em;
  border-radius: 4px;
  border: 1px solid #d3e7f5;
  background-color: #eff8ff;
  color: #545454;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

.notice--error {
  border-color: #fad9d9;
  background-color: #ffebeb;
}

.notice__icon {
  color: #197bbd;
  margin-top: -0.14286em;
  margin-right: 0.71429em;
}

.notice--error .notice__icon {
  color: #e32c2b;
}

.notice__content {
  display: table-cell;
  width: 100%;
  padding-right: 1.14286em;
}

.radio__label__accessory {
  text-align: right;
  padding-left: 0.75em;
  white-space: nowrap;
}

.display-table .radio__label__accessory {
  display: table-cell;
}

.payment-method-wrapper .radio__label__accessory {
  vertical-align: middle;
}

.payment-icon {
  display: inline-block;
  width: 38px;
  height: 24px;
  -webkit-transition: opacity 0.5s cubic-bezier(0.3, 0, 0, 1);
  transition: opacity 0.5s cubic-bezier(0.3, 0, 0, 1);
  -webkit-backface-visibility: hidden;
}

.payment-icon--visa {
  background-image: url(../fonts/visa.svg), none;
}

.payment-icon--master {
  background-image: url(../fonts/master.svg), none;
}

.payment-icon--american-express {
  background-image: url(../fonts/american_express.svg), none;
}

.payment-icon--discover {
  background-image: url(../fonts/discover.svg), none;
}

.payment-icon {
  border-radius: 0.21429em;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  width: 2.71429em;
  height: 1.71429em;
}

.radio__label__accessory .payment-icon {
  cursor: default;
  margin: -0.14286em 0 -0.42857em;
}

.payment-icon-list__more {
  vertical-align: middle;
  margin-top: -2px;
  margin-left: 0.25em;
  display: inline-block;
}

.content-box__small-text {
  font-size: 0.85714em;
  color: #737373;
}

.content-box__row--secondary {
  background-color: #fafafa;
}

.content-box__row ~ .content-box__row {
  border-top: 1px solid var(--color_form_borders, #d9d9d9);
}

.radio-wrapper.content-box__row,
.checkbox-wrapper.content-box__row {
  margin-bottom: 0;
}
/* .radio-wrapper.content-box__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
} */
.radio-wrapper.content-box__row>img, .radio-wrapper.content-box__row span img {
  max-width: 20%;
  margin-right: 5%;
  max-height: 30px;
  display: inline-block;
  vertical-align: middle;
}
.radio-wrapper.content-box__row>img:nth-child(n+5) {
  margin-top: 10px;
}
.blank-slate {
  padding: 1.14286em;
  text-align: center;
}

.icon--offsite {
  width: 102px;
  height: 52px;
  background-image: url(../fonts/offsite.svg), none;
}

.blank-slate__icon {
  margin-bottom: 1.14286em;
}

.blank-slate__icon {
  margin-bottom: 1.14286em;
}

.main .icon-svg--color-adaptive-lighter {
  color: #919191;
  fill: currentColor;
}

.content-box .icon-svg--color-adaptive-lighter {
  color: #919191;
  fill: currentColor;
}

.main .field__icon .icon-svg--color-adaptive-lighter,
.main .field__caret .icon-svg--color-adaptive-lighter {
  color: #919191;
  fill: currentColor;
}

.content-box .field__icon .icon-svg--color-adaptive-lighter,
.content-box .field__caret .icon-svg--color-adaptive-lighter {
  color: #919191;
  fill: currentColor;
}

.field {
  width: 100%;
  float: left;
  padding: 0.42857em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.field__input-wrapper {
  position: relative;
}

.floating-labels .main .field__label {
  color: #737373;
}

.floating-labels .content-box .field__label {
  color: #737373;
}

.floating-labels .field__input-wrapper--icon-right .field__label {
  padding-right: 2.85714rem;
}

.chrome .card-fields-container .field__label {
  will-change: transform;
}

.field__icon {
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  width: 2.85714rem;
}

.field__input-wrapper--icon-right .field__icon {
  right: 0;
}

.field__icon-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.field__message {
  line-height: 1.3em;
  margin: 0.57143em 0 0.28571em;
}

.field__message--error {
  display: none;
  color: #cf8724;
}

.field--error .field__message--error {
  display: block;
}

.field--error .field__input {
  border-color: #cf8724;
  -webkit-box-shadow: 0 0 0 1px #cf8724;
  box-shadow: 0 0 0 1px #cf8724;
}

.card-fields-container--loaded .field--error .field__input--iframe-container {
  border-color: #cf8724;
  -webkit-box-shadow: 0 0 0 1px #cf8724;
  box-shadow: 0 0 0 1px #cf8724;
}

.card-fields-container--loaded .field__input--iframe-container {
  height: auto;
}

.card-fields-container--loaded .field__input--iframe-container::after,
.card-fields-container--loaded .field__input--iframe-container::before {
  opacity: 0;
}

.card-fields-container--loaded .field__input--iframe-container::after {
  left: 100%;
}

.card-fields-container--transitioned .field__input--iframe-container::after,
.card-fields-container--transitioned .field__input--iframe-container::before {
  content: none;
}

.field__input--iframe-container::after,
.field__input--iframe-container::before {
  content: '';
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.field__input--iframe-container::before {
  background: #e6e6e6;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
  width: 100%;
}

.field__input--iframe-container::after {
  -webkit-animation: load 1s infinite ease-in-out both;
  animation: load 1s infinite ease-in-out both;
  background: #fafafa;
  border-radius: 8px;
  height: 1em;
  margin-top: -0.5em;
  top: 50%;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.has-tooltip {
  cursor: pointer;
}

.tooltip {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  bottom: 80%;
  right: -0.33333em;
  width: 180px;
  margin: 0 0 5px 0;
  padding: 0.75em 1em;
  border-radius: 4px;
  white-space: normal;
  font-size: 0.85714em;
  font-style: normal;
  text-align: center;
  color: #fff;
  display: block;
  z-index: 200;
  -webkit-transition: all 0.3s cubic-bezier(0.3, 0, 0, 1);
  transition: all 0.3s cubic-bezier(0.3, 0, 0, 1);
  -webkit-transform: rotateX(20deg) scale(0.8);
  transform: rotateX(20deg) scale(0.8);
  -webkit-transform-origin: 90% 120%;
  transform-origin: 90% 120%;
  -webkit-backface-visibility: hidden;
  background-color: rgba(51, 51, 51, 0.9);
  visibility: hidden;
  opacity: 0;
}

.tooltip:after {
  content: '';
  position: absolute;
  top: 100%;
  right: 18px;
  width: 0;
  border: 6px solid transparent;
  border-top-color: rgba(51, 51, 51, 0.9);
}

.has-tooltip:hover .tooltip,
.has-tooltip:focus .tooltip {
  -webkit-transform: rotateX(0deg) scale(1);
  transform: rotateX(0deg) scale(1);
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.field__input-wrapper--icon-right .field__icon {
  right: 0;
}

.offsite-payment-gateway-logo {
    height: 24px;
    display: inline-block;
    margin-top: -2px;
}

.floating-labels .field--show-floating-label .field__label {
  -webkit-transform: none;
  transform: none;
  opacity: 1;
}

.field__caret {
  display: block;
  width: 2.14286em;
  height: 43%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

.main .field__caret {
  border-left: 1px rgba(179, 179, 179, 0.5) solid;
}

.content-box .field__caret {
  border-left: 1px rgba(179, 179, 179, 0.5) solid;
}

.field__caret-svg {
  position: absolute;
  margin-left: -2px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.dynamic-checkout__content {
  border: 1px var(--color_page_borders_and_lines, #e6e6e6) solid;
  border-top: 0;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 0.92857em 1.42857em 1.42857em;
}

.dynamic-checkout__title::before {
  border-right: 0;
  border-top-left-radius: 5px;
  margin-right: 1em;
}

.dynamic-checkout__title::after {
  border-left: 0;
  border-top-right-radius: 5px;
  margin-left: 1em;
}

.dynamic-checkout__title::after,
.dynamic-checkout__title::before {
  content: '';
  border: 1px var(--color_page_borders_and_lines, #e6e6e6) solid;
  border-bottom: 0;
  height: 0.5em;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 2em;
  -ms-flex: 1 0 2em;
  flex: 1 0 2em;
}

.dynamic-checkout__title::before {
  border-right: 0;
  border-top-left-radius: 5px;
  margin-right: 1em;
}

.dynamic-checkout__title::after {
  border-left: 0;
  border-top-right-radius: 5px;
  margin-left: 1em;
}

.paypal-button-container {
  min-width: 300px;
  max-width: 500px;
  font-size: 17px;
}

.paypal-button.paypal-button-shape-rect {
  border-radius: 4px;
}

.paypal-button:not(.paypal-button-card) {
  height: 42px;
  min-height: 42px;
  max-height: 42px;
}

.paypal-button-logo {
  height: 24px;
  max-height: 32px;
  min-height: 22px;
}

.paypal-button {
  background: #ffc439;
  color: #111;
  text-align: center;
}

.dynamic-checkout__buttons {
  width: 300px !important;
  margin: 0 auto !important;
}

.paypal-button .paypal-button-logo,
.paypal-button .paypal-button-text {
  vertical-align: top;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  text-align: left;
}

.main .placeholder-line--animated {
  /* background-image: -webkit-gradient(linear,right top,left top,from(#e6e6e6),color-stop(50%,#cdcdcd),to(#e6e6e6));
    background-image: linear-gradient(to left,#e6e6e6 0,#cdcdcd 50%,#e6e6e6 100%) */
  background: url(../images/paymentbac.png) no-repeat;
  background-color: #ffc439;
}

.placeholder-line--animated {
  /* -webkit-animation: 1.5s linear 0s infinite normal forwards running loading;
    animation: 1.5s linear 0s infinite normal forwards running loading; */
  background-repeat: no-repeat;
  background-size: 200px 100%;
}

.alternative-payment-separator {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 0.85714em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
  color: #737373;
  margin-top: 2.5em;
}

.alternative-payment-separator {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 0.85714em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
  color: #737373;
  margin-top: 2.5em;
}

.alternative-payment-separator::after,
.alternative-payment-separator::before {
  content: '';
  display: inline-block;
  height: 1px;
  background-color: var(--color_page_borders_and_lines, #e6e6e6);
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.alternative-payment-separator__content {
  display: inline-block;
  padding: 0 1em;
}

.layout-flex__item--stretch {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.layout-flex--loose-horizontal .layout-flex__item {
  padding-left: 0.57143rem;
  padding-right: 0.57143rem;
}

.layout-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.alternative-payment-separator {
  margin-bottom: 2em;
}

/* 小于750px */
@media screen and (max-width: 750px) {
  .layout-flex {
    display: block;
  }

  .layout-flex--loose-horizontal h2 {
    margin-bottom: 0.5em;
    font-size: 16px;
  }

  .layout-flex--loose-horizontal .layout-flex__item {
    padding: 0;
  }
}

@-webkit-keyframes loading {
  0% {
    background-position: -200px 0;
  }

  100% {
    background-position: calc(100% + 200px) 0;
  }
}

@keyframes loading {
  0% {
    background-position: -200px 0;
  }

  100% {
    background-position: calc(100% + 200px) 0;
  }
}

.placeholder-line {
  border-radius: 4px;
  border: 1px solid transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #e6e6e6;
  width: 300px;
  margin: 0 auto;
  height: 42px;
}

.flag-selector__select {
  background-color: inherit;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.flag-selector {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  left: auto;
  right: 0;
  -webkit-transition: all 0.2s cubic-bezier(0, 0.34, 0.1, 0.98);
  transition: all 0.2s cubic-bezier(0, 0.34, 0.1, 0.98);
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  padding: 0 0.71429rem;
}

.icon-svg {
  display: inline-block;
  vertical-align: middle;
  fill: currentColor;
}

.icon-svg--size-10 {
  width: 10px;
  height: 10px;
}

.flag-selector__caret {
  display: block;
  margin-left: 0.5em;
}

.main .field__caret .icon-svg--color-adaptive-lighter,
.main .field__icon .icon-svg--color-adaptive-lighter {
  color: #919191;
  fill: currentColor;
}

.flag-selector__select {
  background-color: inherit;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.input-checkbox:checked,
.input-radio:checked {
  border: none;
  box-shadow: 0 0 0 10px var(--color_button,#323232) inset;
  color: var(--color_button_label,#fff);
  /* -webkit-box-shadow: 0 0 0 10px #323232 inset;
  box-shadow: 0 0 0 10px #323232 inset; */
}

.input-checkbox:checked:after,
.input-radio:checked:after {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.checkbox__input,
.radio__input {
  display: table-cell;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-right: 0.75em;
  white-space: nowrap;
  border-color: #d9d9d9;
  background-color: #fff;
}

.input-checkbox {
  border-radius: 4px;
}

.checkbox-wrapper {
  display: table-cell;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}

.input-checkbox:after,
.input-radio:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: scale(0.2);
  transform: scale(0.2);
  -webkit-transition: all 0.2s ease-in-out 0.1s;
  transition: all 0.2s ease-in-out 0.1s;
  opacity: 0;
}

.input-checkbox:after {
  width: 10px;
  height: 8px;
  margin-left: -5px;
  margin-top: -4px;
  background-image: url(../fonts/12.svg);
}

.fieldset-description {
  margin-top: 1.2857em;
}

.dynamic-checkout__skeleton {
  display: none;
}

.dynamic-checkout--loading .dynamic-checkout__skeleton {
  display: block;
}

.dynamic-checkout--loading .dynamic-checkout__skeleton .placeholder-line {
  height: 3.85714em;
}

.dynamic-checkout__buttons {
  display: block;
}

.dynamic-checkout--loading .dynamic-checkout__buttons {
  display: none;
}

.cartitemtitle {
  /* display: inline-block;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 20px;
    min-height: 20px; */
}

.giftcont {
  width: 20px;
  height: 20px;
  display: inline-block;
  background: url(../images/gift.png) no-repeat;
  background-size: 100% 100%;
  margin-right: 5px;
}

@media (min-width: 1003px) {
  .order-summary-toggle {
    display: none;
  }

  .sidebar {
    width: 40%;
    padding-left: 2%;
    background-position: left top;
    float: right;
  }

  .sidebar::after {
    left: 0;
    background-position: left top;
    -webkit-box-shadow: 1px 0 0 #e1e1e1 inset;
    box-shadow: 1px 0 0 #e1e1e1 inset;
  }

  .page--logo-main .breadcrumb {
    margin-top: 1em;
  }

  .anyflexbox .content .wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .wrap {
    padding: 0 5%;
    width: 90%;
    max-width: 84.571429em;
  }

  .page--no-banner .main,
  .page--no-banner .sidebar {
    padding-top: 4em;
  }

  .main__header {
    padding-bottom: 2em;
  }

  .page--logo-main .main .logo {
    display: block;
  }

  .main .logo img {
    max-height: 70px;
  }

  .page--logo-main .breadcrumb {
    margin-top: 1em;
  }

  .main {
    width: 50%;
    padding-right: 6%;
    float: left;
  }

  .order-summary__section {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .order-summary__section--product-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    min-height: 7em;
    max-height: 24em;
    overflow: hidden;
    padding: 0;
    position: relative;
  }

  .order-summary__section:first-child {
    padding-top: 0;
  }

  .order-summary__section--product-list::before,
  .order-summary__section--product-list::after {
    content: '';
    display: block;
    height: 1px;
    left: 0;
    position: absolute;
    -webkit-transition: background-color 0.3s cubic-bezier(0.3, 0, 0, 1);
    transition: background-color 0.3s cubic-bezier(0.3, 0, 0, 1);
    width: 100%;
    z-index: 4;
  }

  .order-summary__section--product-list::before {
    background-color: transparent;
    top: 0;
  }

  .order-summary__section--product-list::after {
    /* background-color: rgba(175, 175, 175, 0.34); */
    background-color: var(--color_page_borders_and_lines, #afafaf);
    opacity: 0.34;
    bottom: 0;
  }

  .order-summary__sections {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: calc(100vh - 4em);
    width: 100%;
  }

  .order-summary__section__content {
    min-width: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .order-summary__section__content {
    min-width: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .no-js .order-summary__section__content,
  .no-touchevents .order-summary__section__content {
    overflow: hidden;
  }

  .order-summary__section--product-list .product-table {
    margin-top: 10px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }

  .order-summary__section--product-list .product-table .product {
    display: table-row;
  }

  .no-js .order-summary__section__content:hover,
  .no-touchevents .order-summary__section__content:hover {
    overflow-y: auto;
  }

  .order-summary__section--product-list + .order-summary__section {
    border: 0;
  }
}

@media (min-width: 750px) {
  .total-line th {
    min-width: 160px;
  }
  .tooltip {
    -webkit-transform-origin: center 120%;
    transform-origin: center 120%;
    right: 50%;
    margin-right: -90px;
  }

  .tooltip:after {
    right: 50%;
    margin-right: -6px;
  }

  .floating-labels .field--half {
    width: 50%;
  }

  .blank-slate {
    padding-left: 4.5em;
    padding-right: 4.5em;
  }

  .step__footer {
    margin-top: 1.5em;
  }

  .anyflexbox .step__footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .step__footer__continue-btn {
    float: right;
  }

  .section__header {
    margin-bottom: 1.5em;
  }

  .section {
    padding-top: 3em;
  }

  h1,
  .heading-1 {
    font-size: 2em;
  }

  .dynamic-checkout {
    margin-top: 1.5em;
  }

  .main__content {
    padding-bottom: 4em;
  }

  .section {
    padding-top: 3em;
  }

  .step__footer__previous-link,
  .step__footer__info {
    float: left;
  }

  .buttonOrder {
    box-sizing: border-box;
    border: 1px transparent solid;
    border-radius: 5px;
    color: #2d1f1d;
    font-weight: 500;
    padding: 1.3em 1.3em;
    text-align: center;
    cursor: pointer;
    background-color: #e09b8f;
    position: relative;
    z-index: 1;
  }

  #buttonPayPaypal.buttonOrder > div {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    min-width: 100% !important;
    height: 100% !important;
    opacity: 0;
    z-index: 2;
  }

  .anyflexbox .step__footer__previous-link,
  .anyflexbox .step__footer__info {
    margin-right: 1em;
  }

  .main {
    padding-top: 1.5em;
  }

  .shown-on-mobile {
    display: none;
  }

  .icon--offsite {
    width: 163px;
    height: 81px;
    background-image: url(../images/offsite.svg), none;
  }

  .floating-labels .address-fields {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .floating-labels .field--third {
    width: 33.33333%;
  }

  .dynamic-checkout--loading .dynamic-checkout__skeleton {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .dynamic-checkout--loading .dynamic-checkout__skeleton .placeholder-line {
    max-width: 300px;
    height: 3em;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }

  .dynamic-checkout--loading .dynamic-checkout__skeleton .placeholder-line + .placeholder-line {
    margin-top: 0;
    margin-left: 0.57143em;
  }
}

@media (max-width: 749px) {
  .review-block__content {
    width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex: 6;
    -ms-flex: 6;
    flex: 6;
  }

  .review-block__label {
    padding-bottom: 0.28571em;
  }

  .review-block__inner {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .step__footer__previous-link,
  .step__footer__info {
    margin-top: 2em;
    text-align: center;
  }

  .main__content {
    padding-bottom: 1.5em;
  }

  .main {
    padding-top: 1.5em;
  }

  .btn,
  .sp-modal-toggle {
    width: 100%;
    padding-top: 1.75em;
    padding-bottom: 1.75em;
  }

  .applyshow {
    display: none;
  }

  .main .placeholder-line--animated {
    width: 100%;
  }

  .dynamic-checkout--loading .dynamic-checkout__skeleton .placeholder-line {
    height: 42px;
  }
  .radio__label .cc-credit-card {
    margin-right: 10px;
  }
  .cc-img-list {
    float: none;
    display: inline-block;
  }
}

@media (max-width: 999px) {
  .wrap {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 1em;
  }

  .banner {
    display: block;
  }

  .order-summary--transition,
  .order-summary--is-collapsed {
    overflow: hidden;
  }

  #order-summary {
    /*height: 0;*/
    display: none;
  }

  .breadcrumb {
    padding-bottom: 1.5em;
  }

  .order-summary--transition {
    -webkit-transition: all 0.3s cubic-bezier(0.3, 0, 0, 1);
    transition: all 0.3s cubic-bezier(0.3, 0, 0, 1);
  }
}

.divshipemptyordertext {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 3px;
  border: 2px solid #323232;
  -webkit-box-shadow: 0 0 0 1px #323232;
  box-shadow: 0 0 0 1px #323232;
  padding: 10px 10px;
  background: #e4c4c4;
  margin-bottom: 20px;
}

.divshipemptyordertext span {
  margin-right: 10px;
}

.divshipemptyordertext span img {
  max-width: 30px;
}

.divshipemptycont {
  border: 1px solid #ccc;
  border-radius: 3px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
}

.divshipemptycont .shippingemptyimg {
  height: 200px;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  align-items: center;
}

.divshipemptycont .shippingemptyimg img {
  max-height: 100px;
}

.divshipemptycont .shippingemptytext {
  color: #999;
  font-size: 14px;
}
.ship_remark {
  margin-top: 1em;
  margin-left: 28px;
  display: none;
}
.integral-btn{
  padding-top: 0;
  padding-bottom: 0;
  margin-left: 0.85714em;
}
.spanIntegralTip{
  /* display: none; */
  margin-top:10px;
  color: #999;
}
.spanIntegralError{
  display: none;
  margin-top:10px;
  color: #FF0000;
}
.field-integral{
  width: 100%;
    float: left;
    padding: 0.42857em;
}
.integral-input{
  width: 72%;
  background-color: white;
    color: #333333;
    border: 1px solid #d5d5d5;
    border-radius: 5px;
    display: flex;
    padding-right: 5px;
}
.integral-delete{
    cursor: pointer;
    padding: 10px 0;
    line-height: 1;
    font-size: 22px;
    margin-left: 10px;
    box-sizing: border-box;
}

@media (max-width: 999px) {
  .integral-btn{
    width: auto;
  }
}