@charset "UTF-8";

@-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 #348338;
    box-shadow: inset 0px 0px 0px 30px #348338;
  }
}

@keyframes checkmark-fill {
  100% {
    -webkit-box-shadow: inset 0px 0px 0px 30px #348338;
    box-shadow: inset 0px 0px 0px 30px #348338;
  }
}

@-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(52,131,56,0.5);
    box-shadow: 0 0 0 0 rgba(52,131,56,0.5);
  }

  50% {
    -webkit-box-shadow: 0 0 0 15px rgba(52,131,56,0);
    box-shadow: 0 0 0 15px rgba(52,131,56,0);
  }
}

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(52,131,56,0.5);
    box-shadow: 0 0 0 0 rgba(52,131,56,0.5);
  }

  50% {
    -webkit-box-shadow: 0 0 0 15px rgba(52,131,56,0);
    box-shadow: 0 0 0 15px rgba(52,131,56,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;
  }
}

.list-tile {
  border-bottom: solid 1px #979797;
  margin: 0 auto 23px;
}

.list-tile .h3,.list-tile .h4,.list-tile .h5,.list-tile .h6,.list-tile h3,.list-tile h4,.list-tile h5,.list-tile h6 {
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: .2px;
}

.list-tile .p,.list-tile p {
  margin-bottom: 0;
}

.bold {
  font-weight: 500;
}

.overflow-hidden {
  overflow: hidden;
}

.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

.align-left {
  text-align: left;
}

.full-width {
  display: block;
  width: 100%;
}

.full-width--mobile {
  display: block;
  width: 100%;
}

@media screen and (min-width:640px) {
  .full-width--mobile {
    display: inline-block;
    width: auto;
  }
}

.is-hidden {
  display: none!important;
  visibility: hidden!important;
}

.is-visibility-hidden {
  visibility: hidden!important;
}

.is-visible {
  display: block;
}

.is-centered {
  text-align: center;
}

@media screen and (max-width:1023px) {
  .black-text--mobile-tablet {
    color: #000;
  }
}

@media screen and (max-width:639px) {
  .hidden-mobile {
    display: none!important;
  }
}

@media screen and (max-width:1023px) {
  .hidden-mobile-tablet {
    display: none!important;
  }
}

.only-desktop--block {
  display: none!important;
}

@media screen and (min-width:1024px) {
  .only-desktop--block {
    display: block!important;
  }
}

@media screen and (min-width:1024px) {
  .only-mobile-tablet {
    display: none!important;
  }
}

@media screen and (min-width:640px) {
  .hidden-desktop {
    display: none!important;
  }
}

.no-margin {
  margin: 0;
}

.checkout-section {
  margin: 20px 0;
}

@media screen and (min-width:640px) {
  .checkout-section {
    margin: 40px 0;
  }
}

.brand .checkout-section,.checkout-main--homepage .checkout-section {
  margin: 60px auto;
}

@media screen and (min-width:640px) {
  .brand .checkout-section,.checkout-main--homepage .checkout-section {
    margin: 100px auto;
  }
}

@media screen and (min-width:640px) {
  .checkout-section--large {
    margin: 60px 0;
  }
}

.checkout-section--huge {
  margin: 0 auto 60px;
}

@media screen and (min-width:640px) {
  .checkout-section--huge {
    margin: 0 auto 100px;
  }
}

.brand .checkout-section--huge,.checkout-main--homepage .checkout-section--huge {
  margin: 60px auto;
}

@media screen and (min-width:640px) {
  .brand .checkout-section--huge,.checkout-main--homepage .checkout-section--huge {
    margin: 100px auto;
  }
}

.checkout-section--outlined {
  border-top: 1px solid #979797;
  border-bottom: 1px solid #979797;
}

.checkout-section--padded {
  padding: 20px 0 0;
}

.checkout-section--padded--large {
  padding: 20px 0 0;
}

@media screen and (min-width:640px) {
  .checkout-section--padded--large {
    padding: 40px 0 20px;
  }
}

.checkout-section--padded--huge {
  padding: 20px 0 0;
}

@media screen and (min-width:640px) {
  .checkout-section--padded--huge {
    padding: 100px 0 80px;
  }
}

.checkout-section--grey {
  background-color: #eaeaea;
}

.checkout-section--grey-lightest {
  background-color: #f4f4f4;
}

.checkout-section--black {
  background-color: #000;
  color: #fff;
}

.checkout-section--rounded--top {
  position: relative;
  margin-top: 80px;
}

@media screen and (min-width:1024px) {
  .checkout-section--rounded--top {
    margin-top: 140px;
  }
}

.checkout-section--rounded--top:before {
  display: block;
  position: absolute;
  background: inherit;
  content: '';
  top: -37px;
  height: 125px;
  border-radius: 50%;
  left: -20%;
  right: -20%;
  z-index: -1;
}

@media screen and (min-width:1024px) {
  .checkout-section--rounded--top:before {
    left: -5%;
    right: -5%;
  }
}

.checkout-section--rounded--bottom {
  position: relative;
  margin-bottom: 120px;
}

@media screen and (min-width:1024px) {
  .checkout-section--rounded--bottom {
    margin-bottom: 140px;
  }
}

.checkout-section--rounded--bottom:after {
  display: block;
  position: absolute;
  background: inherit;
  content: '';
  bottom: -37px;
  height: 125px;
  border-radius: 50%;
  left: -20%;
  right: -20%;
  z-index: -1;
}

@media screen and (min-width:1024px) {
  .checkout-section--rounded--bottom:after {
    left: -5%;
    right: -5%;
  }
}

.checkout-section--cta-banner {
  padding: 40px 60px;
  color: #fff;
  background-color: #4a4a4a;
  text-align: center;
}

.checkout-section--cta-banner h3 {
  color: #fff;
  font-weight: 500;
  font-size: 18px;
}

@media screen and (min-width:1024px) {
  .checkout-section--cta-banner h3 {
    font-size: 28px;
  }
}

.checkout-section--cta-banner-light {
  padding: 30px 0;
  text-align: center;
  margin-left: 15px;
  margin-right: 15px;
}

@media screen and (min-width:640px) {
  .checkout-section--cta-banner-light {
    padding: 30px 0 40px;
    margin: 0;
  }
}

.checkout-section--cta-banner-light h3 {
  font-weight: 500;
  padding: 0 30px;
}

@media screen and (min-width:640px) {
  .checkout-section--cta-banner-light h3 {
    padding: 0;
  }
}

.image-border--thin {
  border: 1px solid #5ea9dc;
  border-radius: 50%;
}

.image-border--medium {
  border: 2px solid #5ea9dc;
  border-radius: 50%;
}

.image-border--thick {
  border: 3px solid #5ea9dc;
  border-radius: 50%;
}

.img--circled {
  position: relative;
  border-radius: 50%;
  width: 100%;
  height: auto;
  background: #fff;
  overflow: hidden;
}

.img--circled img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.v-align--center {
  display: table;
  width: 100%;
}

.v-align--center>* {
  display: table-cell;
  vertical-align: middle;
  height: 100%;
}

.content__divider {
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 50%;
  background-color: #979797;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
}

@media screen and (max-width:1023px) {
  .content__divider {
    display: none;
  }
}

.dont-break-out {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.pac-container {
  z-index: 10000!important;
}

*,::after,::before {
  box-sizing: inherit;
}

::-moz-selection {
  background-color: #1990c6;
}

::selection {
  background-color: #1990c6;
}

html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}


#checkout-content-container {
  display: block!important;
}

#checkout-content-container p {
	line-height: 1.5em;
}

.checkout--enabled a {
  font-weight: 600;
}

.modal__close-button svg {
  display: none;
}

[data-step=payment_method] .checkout-section--reductions {
  display: none;
}

input {
  font-size: 15px;
}

.field--error .field__input {
  border-color: #ee2737;
  box-shadow: 0 0 0 1px #ee2737;
}

.field__message--error {
  color: #ee2737;
  font-weight: 600;
  text-align: center;
  font-size: 15px;
}

.breadcrumb {
  text-align: left;
  text-transform: uppercase;
  padding: 0px;
  margin: 0px;
  background-color: transparent;
}
.breadcrumb>li+li:before {
  padding: 0px;
  content: none;
}

.breadcrumb--center {
  text-align: left;
}

.breadcrumb__item {
  font-size: 14px;
}

.checkout-section__title {
  font-size: 24px;
  font-weight: 600;
}

.layout-flex {
  margin: 0;
}

.layout-flex--loose-horizontal .layout-flex__item {
  padding-left: 0;
  padding-right: 0;
}

.layout-flex--loose-horizontal p.layout-flex__item {
  font-size: 15px;
}

@media screen and (min-width:1024px) {
  .layout-flex--loose-horizontal p.layout-flex__item {
    font-size: 18px;
  }
}

.checkout-btn {
  padding: 10px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media screen and (min-width:1024px) {
  .checkout-btn {
    width: 295px;
  }
}

.checkout-icon {
  display: inline-block;
}

.icon--bag {
  color: #5ea9dc;
}

.icon--chevron-right {
  margin-left: 10px;
  color: #000;
  font-size: 12px;
}

.order-summary-toggle__text--show .icon--chevron-right {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.order-summary-toggle__text--hide .icon--chevron-right {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.checkout-icon--question-mark {
  color: #979797;
  margin-left: 10px;
}

.texticon {
  display: inline-block;
  font-style: inherit;
}

.texticon--info {
  cursor: pointer;
  margin-left: 5px;
}

.texticon--info:after {
  display: inline-block;
  content: '?';
  width: inherit;
  height: inherit;
  width: 12px;
  height: 12px;
  line-height: 10px;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  border: 1px solid #979797;
  border-radius: 50%;
  color: #979797;
}

@media screen and (min-width:640px) {
  .texticon--info:after {
    width: 16px;
    height: 16px;
    line-height: 14px;
    font-size: 12px;
  }
}

.order-summary-toggle {
  border: none;
}

.order-summary-toggle__text span {
  color: #000;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.total-recap__final-price {
  color: #000;
  font-size: 18px;
  font-weight: 600;
}

.checkout-cart__item {
  margin-bottom: 35px;
  color: #000;
}

@media screen and (max-width:639px) {
  .checkout-cart__item:last-child {
    margin-bottom: 0;
  }
}

.checkout-cart__item--image {
  display: inline-block;
  position: relative;
  vertical-align: top;
}

.checkout-cart__item--image img {
  display: block;
}

@media screen and (min-width:640px) {
  .checkout-cart__item--image img {
    width: 72px;
  }
}

.checkout-cart__item--info {
  display: inline-block;
  width: calc(100% - 56px);
  padding-left: 15px;
  vertical-align: top;
  overflow: hidden;
}

@media screen and (min-width:640px) {
  .checkout-cart__item--info {
    width: calc(100% - 72px);
  }
}

.checkout-cart__values {
  padding: 20px 0;
  color: #000;
}

@media screen and (min-width:640px) {
  .checkout-cart__values {
    padding: 15px 0;
  }
}

.checkout-cart__values p {
  margin: 0;
  margin-bottom: 15px;
  font-size: 13px;
}

@media screen and (min-width:640px) {
  .checkout-cart__values p {
    font-size: 15px;
  }
}

.checkout-cart__grand-total {
  color: #000;
}

.checkout-info__vendor {
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

@media screen and (min-width:640px) {
  .checkout-info__vendor {
    font-size: 15px;
  }
}

.checkout-info__line-details .checkout-info__name {
  font-size: 12px;
}
.checkout-info__name {
  max-width: calc(100% - 80px);
  margin-bottom: 0;
  font-weight: 600;
}

@media screen and (min-width:640px) {
  .checkout-info__name {
    font-size: 16px;
  }
}

.checkout-info__sku {
  margin: 0;
  color: #4a4a4a;
  font-size: 12px;
}

@media screen and (min-width:640px) {
  .checkout-info__sku {
    font-size: 16px;
  }
}

.checkout-info__line-details {
  position: relative;
  min-height: 50px;
}

.checkout-info__contents div {
  font-size: 12px;
}

.checkout-info__contents h5 {
  display: inline;
  font-weight: 600;
}

.checkout-info__contents h5,.checkout-info__contents span {
  font-size: 12px;
}

@media screen and (min-width:640px) {
  .checkout-info__contents h5,.checkout-info__contents span {
    font-size: 15px;
  }
}

.checkout-info__line-price,.checkout-info__line-qty {
  position: absolute;
  right: 0;
  font-size: 15px;
  font-weight: 500;
}

.checkout-info__line-price {
  top: 0;
}

@media screen and (min-width:640px) {
  .checkout-info__line-price {
    font-size: 16px;
  }
}

.checkout-info__line-qty {
  top: 25px;
}

@media screen and (min-width:640px) {
  .checkout-info__line-qty {
    font-size: 16px;
  }
}

.order-summary__section--total-lines {
  padding: 0;
}

.totals__copy,.totals__value {
  display: inline-block;
  width: 50%;
}

.totals__copy {
  text-transform: uppercase;
}

.totals__value {
  text-align: right;
}

.totals--grams__text b,.totals--grams__text strong {
  font-weight: 600;
}

.totals--grams__value {
  font-weight: 600;
}

.totals--subtotal__text b,.totals--subtotal__text strong {
  font-weight: 400;
}

.totals--taxes p {
  margin-bottom: 0;
}

.totals--grand-total {
  padding: 15px 0;
  border-top: 1px solid rgba(175,175,175,.35);
}

.totals--grand-total p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}

@media screen and (min-width:640px) {
  .totals--grand-total p {
    font-size: 18px;
  }
}

.delivery_information {
  display: inline-block;
  padding: 5px .45em 10px .45em;
  font-size: 13px;
}

.privacy_information {
  display: inline-block;
  padding: 10px .45em 5px;
  font-size: 13px;
}

.first_nations_disclaimer {
  display: inline-block;
  padding: 10px .45em 10px;
  font-size: 13px;
  margin-top: 0;
}

.personal_info_information {
  display: inline-block;
  padding: 10px .45em 15px;
  margin-top: 0;
  font-size: 13px;
}

.payments_note {
  margin: 15px !important;
}

.billing_information {
  display: inline-block;
  padding: 10px .45em;
  font-size: 13px;
}

html.page--thank-you .checkout-section {
  margin: 0;
}

html.page--thank-you .checkout-section__content__column p {
  font-size: 15px;
}

html.page--thank-you .step {
  padding-bottom: 35px;
  border-bottom: 1px solid #979797;
}

html.page--thank-you .step__footer {
  margin-top: 0;
  padding-top: 35px;
}

html.page--thank-you .step__footer__info {
  flex-wrap: wrap;
  font-size: 18px;
}

html.page--thank-you .step__footer__info .icon {
  display: none;
}

html.page--thank-you .os-header {
  padding: 20px 0 10px 0;
  border-top: 1px solid #979797;
}

html.page--thank-you .os-header__hanging-icon {
  display: none;
}

html.page--thank-you .os-header__title {
  padding: 10px 0;
  font-size: 18px;
  font-weight: 600;
}

html.page--thank-you .map {
  display: none;
}

html.page--thank-you .checkout-section {
  padding-top: 0;
}

html.page--thank-you .os-order-number {
  color: #000;
  font-size: 15px;
}

html.page--thank-you .os-step__title {
  display: none;
}

html.page--thank-you .os-step__description {
  padding-bottom: 20px;
  font-size: 15px;
}

html.page--thank-you.boxshadow .content-box {
  box-shadow: none;
}

html.page--thank-you .content-box {
  margin-top: 0;
  border: none;
}

html.page--thank-you .content-box__row {
  border-top: none;
  padding: 0;
}

html.page--thank-you .content-box__row p {
  margin-top: 0;
}

html.page--thank-you .content-box__row p:last-child {
  padding-bottom: 20px;
}

html.page--thank-you .content-box h2:not(.os-step__title) {
  padding: 20px 0;
  font-size: 24px;
  font-weight: 600;
  border-top: 1px solid #979797;
}

html.page--thank-you .content-box h3 {
  color: #000;
  font-size: 18px;
  font-weight: 600;
}

html.page--thank-you .age_confirmation {
  font-size: 15px;
  max-width: 440px;
}

html.page--thank-you .age_confirmation a {
  color: #717171;
  font-weight: 400;
  text-decoration: underline;
}

html.page--thank-you .payment-method-list__item .payment-icon {
  display: none;
}

html.page--thank-you .payment-method-list__item__info {
  font-size: 15px;
}

html.page--thank-you .payment-method-list__item__amount {
  color: #000;
  font-size: 15px;
  font-weight: 600;
}

html.page--thank-you .shop_email,html.page--thank-you .shop_phone {
  width: 100%;
}

html.page--thank-you .shop_shipping_price {
  color: #000;
  font-weight: 600;
}

html.page--thank-you .tracking-info {
  margin: 10px 0 25px;
  border-bottom: 1px solid #979797;
}

html.page--thank-you .tracking-info hr {
  display: none;
}

.field__input-wrapper.field--disabled input,.field__input-wrapper.field--disabled select {
  background-color: #f4f4f4;
  pointer-events: none;
}

.field__input-wrapper.field--disabled:before {
  display: none;
}

div[data-address-field=phone] {
  /*max-height: 80px!important;*/
}

.accept_terms {
  margin-right: 10px;
  -webkit-appearance: checkbox;
}

.footer__terms {
  text-align: right;
}

[data-shipping-address]+.checkout-section--optional .checkbox-wrapper {
  display: none;
}

.breadcrumb__item {
  position: relative;
}

.breadcrumb__item:not(:last-child):after {
  content: '/';
  position: absolute;
  right: 12px;
  top: 1px;
  font-weight: 400;
  color: #eaeaea;
}

.checkout-main-header__logos {
  text-align: center;
}

.checkout-main-header__logos--mobile {
  display: block;
}

@media screen and (min-width:1000px) {
  .checkout-main-header__logos--mobile {
    display: none;
  }
}

.checkout-main-header__logos--desktop {
  display: none;
}

@media screen and (min-width:1000px) {
  .checkout-main-header__logos--desktop {
    display: block;
  }
}

@media screen and (min-width:1000px) {
  .checkout-main-header__logos {
    padding-bottom: 20px;
    border-bottom: 1px solid #979797;
  }
}

.checkout-main-header__logos .logo {
  display: inline-block!important;
  vertical-align: middle;
}

.checkout-main-header__logos .logo img {
  height: 50px;
  display: block;
}

@media screen and (min-width:1000px) {
  .checkout-main-header__logos .logo img {
    height: 57px;
  }
}

.checkout-main-header__logos .checkout-header__badge {
  margin-left: 33px;
  display: inline-block;
  vertical-align: middle;
  height: 50px;
}

@media screen and (min-width:1000px) {
  .checkout-main-header__logos .checkout-header__badge {
    margin-left: 50px;
    height: 57px;
  }
}

.step__footer__info .icon-svg {
  display: none;
}

.shipment-information__items {
  border-bottom: 1px solid #979797;
  padding-top: 15px;
}

.tooltip__inner {
  padding: 13px 13px 0;
  color: #4a4a4a;
  background-color: #fff;
  border: solid 1px #979797;
  position: relative;
  text-align: left;
}

.tooltip__inner h5,.tooltip__inner p {
  color: #4a4a4a!important;
  font-size: 13px!important;
}

.tooltip__inner h5 {
  font-weight: 500!important;
}

.tooltip__inner p {
  font-weight: 400!important;
  text-transform: none;
  letter-spacing: .3px;
}

.tooltip__arrow {
  position: absolute;
  z-index: 3;
  width: 10px!important;
  height: 10px!important;
  border-width: 0 0 1px 1px;
  border-color: #979797;
  border-style: solid;
  background-color: #fff;
}

.tooltip__hide {
  position: absolute;
  cursor: pointer;
}

@media screen and (min-width:1024px) {
  .tooltip__hide {
    display: none;
  }
}

.touchevents .tooltip__hide {
  display: block;
}

.comculate-tooltip {
  z-index: 9999;
}

.comculate-tooltip[x-placement=right-end] .tooltip__arrow,.comculate-tooltip[x-placement=right-start] .tooltip__arrow,.comculate-tooltip[x-placement=right] .tooltip__arrow {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 5px;
}

.comculate-tooltip[x-placement=right-end] .tooltip__hide,.comculate-tooltip[x-placement=right-start] .tooltip__hide,.comculate-tooltip[x-placement=right] .tooltip__hide {
  right: 3%;
  top: 5%;
}

.comculate-tooltip[x-placement=right-end] .tooltip__inner,.comculate-tooltip[x-placement=right-start] .tooltip__inner,.comculate-tooltip[x-placement=right] .tooltip__inner {
  margin-left: 10px;
}

.comculate-tooltip[x-placement=left-end],.comculate-tooltip[x-placement=left-start],.comculate-tooltip[x-placement=left] {
  -webkit-transform: translate3d(-178px,55px,0);
  transform: translate3d(-178px,55px,0);
}

.comculate-tooltip[x-placement=left-end] .tooltip__arrow,.comculate-tooltip[x-placement=left-start] .tooltip__arrow,.comculate-tooltip[x-placement=left] .tooltip__arrow {
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  right: 5px;
}

.comculate-tooltip[x-placement=left-end] .tooltip__hide,.comculate-tooltip[x-placement=left-start] .tooltip__hide,.comculate-tooltip[x-placement=left] .tooltip__hide {
  right: 3%;
  top: 5%;
}

.comculate-tooltip[x-placement=left-end] .tooltip__inner,.comculate-tooltip[x-placement=left-start] .tooltip__inner,.comculate-tooltip[x-placement=left] .tooltip__inner {
  margin-right: 10px;
}

.comculate-tooltip[x-placement=top-end] .tooltip__arrow,.comculate-tooltip[x-placement=top-start] .tooltip__arrow,.comculate-tooltip[x-placement=top] .tooltip__arrow {
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
  bottom: 5px;
}

.comculate-tooltip[x-placement=top-end] .tooltip__hide,.comculate-tooltip[x-placement=top-start] .tooltip__hide,.comculate-tooltip[x-placement=top] .tooltip__hide {
  right: 3%;
  top: 5%;
}

.comculate-tooltip[x-placement=top-end] .tooltip__inner,.comculate-tooltip[x-placement=top-start] .tooltip__inner,.comculate-tooltip[x-placement=top] .tooltip__inner {
  margin-bottom: 10px;
}

.comculate-tooltip[x-placement=bottom-end] .tooltip__arrow,.comculate-tooltip[x-placement=bottom-start] .tooltip__arrow,.comculate-tooltip[x-placement=bottom] .tooltip__arrow {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  top: 5px;
}

.comculate-tooltip[x-placement=bottom-end] .tooltip__hide,.comculate-tooltip[x-placement=bottom-start] .tooltip__hide,.comculate-tooltip[x-placement=bottom] .tooltip__hide {
  right: 3%;
  top: 5%;
}

.comculate-tooltip[x-placement=bottom-end] .tooltip__inner,.comculate-tooltip[x-placement=bottom-start] .tooltip__inner,.comculate-tooltip[x-placement=bottom] .tooltip__inner {
  margin-top: 10px;
}

.product__description .comculate-tooltip .tooltip__inner,.product__gallery .comculate-tooltip .tooltip__inner {
  width: 225px;
}

@media screen and (min-width:640px) {
  .product__description .comculate-tooltip .tooltip__inner,.product__gallery .comculate-tooltip .tooltip__inner {
    width: 300px;
  }
}

.flyout--filters .comculate-tooltip .tooltip__inner {
  width: 170px;
}

@media screen and (min-width:1024px) {
  .flyout--filters .comculate-tooltip .tooltip__inner {
    width: 200px;
  }
}

.flyout--filters .comculate-tooltip .tooltip__inner h5 {
  text-transform: uppercase;
}

.flyout--filters .comculate-tooltip .tooltip__inner * {
  text-transform: none;
  font-weight: 400;
}

.flyout--filters #stream-subsubcategory-tooltip~.comculate-tooltip .tooltip__inner {
  width: 150px;
}

#grams-tooltip--header-flyout~.comculate-tooltip,#grams-tooltip-exceeded--header-flyout~.comculate-tooltip {
  width: 170px;
}

@media screen and (min-width:1024px) {
  #grams-tooltip--header-flyout~.comculate-tooltip,#grams-tooltip-exceeded--header-flyout~.comculate-tooltip {
    width: 200px;
  }
}

#grams-tooltip--bottom-flyout~.comculate-tooltip {
  width: 220px;
}

@media screen and (min-width:1024px) {
  #grams-tooltip--bottom-flyout~.comculate-tooltip {
    width: 200px;
  }
}

#grams-tooltip--info~.comculate-tooltip {
  width: 230px;
}

@media screen and (min-width:1024px) {
  #grams-tooltip--info~.comculate-tooltip {
    width: 200px;
  }
}

@media screen and (min-width:640px) {
  .tooltip-trigger .icon--question-mark {
    font-size: 20px;
  }
}
.pca {
  margin: 0;
  padding: 0;
  position: static;
  border: none;
}

.pca .pcatext {
  font: 9pt arial;
  color: #333;
}

.pca .pcalist {
  position: relative;
  list-style-type: none;
  list-style-position: outside;
  margin: 0;
  padding: 0;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: #fafafa;
}

.pca .pcaitem {
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 9px 10px 9px 10px;
  text-align: left;
  white-space: nowrap;
  border: solid 1px transparent;
  border-bottom: solid 1px #e5e5e5;
}

.pca .pcaselected {
  color: #333;
  background-color: #e5f0ff;
  border: 1px solid transparent;
  border-bottom: solid 1px #e5e5e5;
}

.pca .pcaitem:last-child {
  border-bottom: none;
}

.pca .pcadisableselect {
  -moz-user-select: none;
  -webkit-user-select: none;
}

.pca .pcaautocomplete {
  margin: 0;
  padding: 0;
  border: 1px solid #ccc;
  border-bottom: 0;
  background: 0;
  width: inherit;
  position: absolute;
  z-index: 100000;
}

.pca .pcaanchor {
  margin: 0;
  padding: 0;
  border: 0;
  background: 0;
}

.pca .pcaanchor .pcachain {
  position: relative;
}

.pca .pcaautocomplete .pcaheader {
  background-color: #ebebeb;
  border-bottom: 1px solid #ccc;
}

.pca .pcaautocomplete .pcamessage {
  padding: 8px 10px;
  color: #777;
}

.pca .pcaautocomplete .pcalist {
  height: 244px;
  width: auto;
  border-bottom: 1px solid #ccc;
}

.pca .pcaautocomplete .pcafooter {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #ccc;
  background-color: #fafafa;
  height: 30px;
  background: #f9f9f9;
  background: -webkit-gradient(linear,left top,left bottom,from(#f9f9f9),to(#ececec));
  background: linear-gradient(to bottom,#f9f9f9 0,#ececec 100%);
}

.pca .pcaautocomplete .pcafooter .pcamessage {
  font: bold 9pt arial;
  color: #969696;
  margin: 8px 5px;
  padding: 0;
  position: relative;
  float: right;
}

.pca .pcamodal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 100000;
}

.pca .pcamodal .pcalist {
  height: 244px;
  width: auto;
  min-width: 200px;
  min-height: 100px;
}

.pca .pcamodal .pcaborder {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  border-radius: 0;
  opacity: .2;
}

.pca .pcamodal .pcaframe {
  position: relative;
  margin: 12px;
  background-color: #f5f7f9;
  border-radius: 0;
  border: 1px solid #c8cacc;
}

.pca .pcamodal .pcacontent {
  position: relative;
  padding: 15px;
}

.pca .pcamodal .pcacontent .pcainputrow {
  width: 450px;
  text-align: right;
}

.pca .pcamodal .pcacontent .pcainputrow input {
  width: 300px;
  border: 1px solid #d4d4d4;
  padding: 8px;
  margin: 15px;
  background: #fff;
}

.pca .pcamodal .pcacontent .pcainputrow .pcahalf {
  width: 126px;
}

.pca .pcamodal .pcacontent .pcainputrow label {
  font: bold 14px arial;
  color: #444;
}

.pca .pcamodal .pcaheader {
  position: relative;
  top: 0;
  left: 0;
  border-top: 1px solid #e1e3e5;
  border-bottom: 1px solid #c8cacc;
  border-radius: 0;
  background: #e1e3e5;
  background: -moz-linear-gradient(top,#e1e3e5 0,#e1e3e5 100%);
  background: -webkit-gradient(linear,left top,left bottom,color-stop(0,#e1e3e5),color-stop(100%,#e1e3e5));
}

.pca .pcamodal .pcaheader .pcatitle {
  font: bold 18px arial;
  color: #005db9;
  margin: 15px;
}

.pca .pcamodal .pcafooter {
  position: relative;
  bottom: 0;
  left: 0;
  border-top: 1px solid #c8cacc;
  background: #fff;
}

.pca .pcamodal .pcafooter .pcabutton {
  width: 150px;
  margin: 15px;
}

.pca .pcafullscreen {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.pca .pcamask {
  background-color: #000;
  opacity: .4;
  z-index: 100000;
}

.pca .pcabutton {
  font: bold 14px arial;
  color: #444;
  border: 1px solid #d4d4d4;
  border-radius: 0;
  padding: 8px;
  cursor: pointer;
  background: #f5f7f9;
  background: -moz-linear-gradient(top,#f5f7f9 0,#f5f7f9 100%);
  background: -webkit-gradient(linear,left top,left bottom,color-stop(0,#f5f7f9),color-stop(100%,#f5f7f9));
}

.pca .pcatooltip {
  position: absolute;
  z-index: 100000;
}

.pca .pcatooltip .pcabackground {
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #000;
  border-radius: 5px;
  opacity: .6;
}

.pca .pcatooltip .pcamessage {
  position: relative;
  padding: 5px;
  font: 9pt arial;
  color: #fff;
}

.pca .pcabutton:hover {
  color: #444;
}

.pca .pcalink {
  font: bold 9pt arial;
  cursor: pointer;
}

.pca .pcaclear {
  clear: both;
}

.pcaflag {
  width: 14px;
  height: 12px;
  position: absolute;
  font-size: 0;
  background-image: url(https://ws1.postescanada-canadapost.ca/images/flags16x16.png);
  box-shadow: 0 1px 2px rgba(128,128,128,.3);
}

.pca .pcaautocomplete .pcafooter .pcaflagbutton {
  width: 32px;
  height: 21px;
  position: relative;
  float: right;
  margin: 5px 6px 0 0;
  cursor: pointer;
  background-image: url(https://ws1.postescanada-canadapost.ca/images/icons/flag_sq_down.png);
}

.pca .pcaautocomplete .pcafooter .pcaflagbutton:hover {
  background-image: url(https://ws1.postescanada-canadapost.ca/images/icons/flag_sq_down_hover.png);
}

.pca .pcaautocomplete .pcafooter .pcaflagbutton .pcaflag {
  top: 4px;
  left: 5px;
}

.pca .pcaautocomplete .pcaflaglabel {
  position: relative;
  left: 26px;
}

.pca .pcacountrylist .pcafooter .pcaflagbutton {
  background-image: url(https://ws1.postescanada-canadapost.ca/images/icons/flag_sq_up.png);
}

.pca .pcacountrylist .pcafooter .pcaflagbutton:hover {
  background-image: url(https://ws1.postescanada-canadapost.ca/images/icons/flag_sq_up_hover.png);
}

.pca .pcaautocomplete .pcafooter .pcalogo {
  width: 66px;
  height: 15px;
  font-size: 0;
  margin: 8px 5px 8px 11px;
  position: relative;
  float: left;
  cursor: pointer;
  background-image: url(https://ws1.postescanada-canadapost.ca/images/icons/captureplus/capture_plus_logo.png);
}

.pca .pcaautocomplete .pcafooter .aclogo {
  width: 112px;
  height: 15px;
  font-size: 0;
  margin: 8px 5px 8px 11px;
  position: relative;
  float: left;
  cursor: pointer;
  background-image: url(https://ws1.postescanada-canadapost.ca/images/icons/captureplus/address_complete_logo_fr.png);
}

.pca .pcaautocomplete .pcafooter .pcalogoen {
  width: 112px;
  height: 15px;
  font-size: 0;
  margin: 8px 5px 8px 11px;
  position: relative;
  float: left;
  cursor: pointer;
  background-image: url(https://ws1.postescanada-canadapost.ca/images/icons/captureplus/address_complete_logo_en.png)!important;
}

.pca .pcaautocomplete .pcafooter .pcalogofr {
  width: 118px!important;
  height: 15px;
  font-size: 0;
  margin: 8px 5px 8px 11px;
  position: relative;
  float: left;
  cursor: pointer;
  background-image: url(https://ws1.postescanada-canadapost.ca/images/icons/captureplus/address_complete_logo_fr.png)!important;
}

.pca .pcaitem .pcadescription {
  font-style: italic;
  color: #888;
  margin-left: 8px;
}
@-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 #348338;
    box-shadow: inset 0px 0px 0px 30px #348338;
  }
}

@keyframes checkmark-fill {
  100% {
    -webkit-box-shadow: inset 0px 0px 0px 30px #348338;
    box-shadow: inset 0px 0px 0px 30px #348338;
  }
}

@-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(52,131,56,0.5);
    box-shadow: 0 0 0 0 rgba(52,131,56,0.5);
  }

  50% {
    -webkit-box-shadow: 0 0 0 15px rgba(52,131,56,0);
    box-shadow: 0 0 0 15px rgba(52,131,56,0);
  }
}

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(52,131,56,0.5);
    box-shadow: 0 0 0 0 rgba(52,131,56,0.5);
  }

  50% {
    -webkit-box-shadow: 0 0 0 15px rgba(52,131,56,0);
    box-shadow: 0 0 0 15px rgba(52,131,56,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,#checkout-content-container {
  margin: 0;
  width: 100%;
  height: 100%;
}

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

#checkout-content-container {
  overflow-x: hidden;
}

iframe {
  margin: 0;
  padding: 0;
  border: 0;
}

b,strong {
  font-weight: 500;
}

small {
  font-size: .875em;
}

.checkout--enabled h1,.checkout--enabled h2,.checkout--enabled h3,.checkout--enabled h4,.checkout--enabled h5,.checkout--enabled h6 {
  font-weight: normal;
  margin: 0;
  line-height: 1em;
}

.checkout--enabled p {
  margin: 0;
}

sub,sup {
  font-size: .75em;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

ul {
  padding: 0;
  list-style-type: none;
}
.checkout-ul {
  margin: 0;
}

img {
  border: 0;
  max-width: 100%;
}

figure {
  margin: 0;
}

.checkout-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;
}

#checkout-content-container {
  font-size: 14px;
  font-family:Calibri,sans-serif !important;
  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;
}


.checkout-link:hover {
  color: #2a692d;
}

.checkout-link--muted {
  color: inherit;
  text-decoration: underline;
}

.checkout--enabled h1,.checkout--enabled .heading-1 {
  font-family: Roboto, sans-serif;
  font-size: 1.71429em;
  line-height: 1.3em;
}

@media (min-width: 750px) {
  .checkout--enabled h1,.checkout--enabled .heading-1 {
    font-size: 2em;
  }
}

.checkout--enabled h2,.checkout--enabled .heading-2 {
  font-family: Roboto, sans-serif;
  font-size: 1.28571em;
  line-height: 1.3em;
}

.checkout-main h2,.checkout-main .heading-2 {
  color: #333333;
}

.checkout--enabled .sidebar h2,.checkout--enabled .sidebar .heading-2 {
  color: #323232;
}

.checkout--enabled .content-box h2,.checkout--enabled .content-box .heading-2 {
  color: #333333;
}

.checkout--enabled .default-background h2,.checkout--enabled .default-background .heading-2 {
  color: #333333;
}

.checkout--enabled h3,.checkout--enabled .heading-3 {
  font-family: Roboto, sans-serif;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.3em;
}

.checkout--enabled .checkout-main h3,.checkout--enabled .checkout-main .heading-3 {
  color: #333333;
}

.checkout--enabled .sidebar h3,.checkout--enabled .sidebar .heading-3 {
  color: #323232;
}

.checkout--enabled .content-box h3,.checkout--enabled .content-box .heading-3 {
  color: #333333;
}

.checkout--enabled .default-background h3,.checkout--enabled .default-background .heading-3 {
  color: #333333;
}

.checkout--enabled p {
  line-height: 1.5em;
}

.emphasis {
  font-weight: 500;
}

.checkout-main .emphasis {
  color: #333333;
}

.sidebar .emphasis {
  color: #323232;
}

.content-box .emphasis {
  color: #333333;
}

.default-background .emphasis {
  color: #333333;
}

.checkout-main .small-text .emphasis {
  color: #545454;
}

.sidebar .small-text .emphasis {
  color: #535353;
}

.content-box .small-text .emphasis {
  color: #545454;
}

.default-background .small-text .emphasis {
  color: #545454;
}

.small-text {
  font-size: 0.85714em;
}

.checkout-main .small-text {
  color: #737373;
}

.sidebar .small-text {
  color: #717171;
}

.content-box .small-text {
  color: #737373;
}

.default-background .small-text {
  color: #737373;
}

.address {
  font-style: normal;
  line-height: 1.5em;
}

.address--tight {
  line-height: inherit;
}

.pickup-instructions {
  width: 200px;
  white-space: initial;
}

@media (max-width: 749px) {
  .hide-on-mobile {
    display: none;
  }
}

@media (min-width: 750px) {
  .show-on-mobile {
    display: none;
  }
}

.layout-flex {
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: -0.28571rem;
}

.layout-flex--wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.layout-flex--tight-vertical {
  margin-bottom: -0.14286rem;
  margin-top: -0.14286rem;
}

.layout-flex--tight-vertical .layout-flex__item {
  padding-bottom: 0.14286rem;
  padding-top: 0.14286rem;
}

.layout-flex--loose-horizontal {
  margin-left: -0.57143rem;
  margin-right: -0.57143rem;
}

.layout-flex--loose-horizontal .layout-flex__item {
  padding-left: 0.57143rem;
  padding-right: 0.57143rem;
}

.layout-flex__item {
  padding: 0.14286rem;
}

.layout-flex__item--stretch {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.icon-svg {
  display: inline-block;
  vertical-align: middle;
  fill: currentColor;
}

.icon-symbols {
  display: none;
}

.icon-svg--block {
  display: block;
}

.icon-svg--color-accent {
  color: #348338;
  fill: currentColor;
}

.icon-svg--color-black {
  color: #000;
  fill: currentColor;
}

.icon-svg--color-blue {
  color: #1990c6;
  fill: currentColor;
}

.icon-svg--color-gray {
  color: #9b9b9b;
  fill: currentColor;
}

.icon-svg--color-gray-dark {
  color: #595959;
  fill: currentColor;
}

.icon-svg--color-gray-light {
  color: #959595;
  fill: currentColor;
}

.icon-svg--color-red {
  color: #ce4549;
  fill: currentColor;
}

.icon-svg--color-white {
  color: #fff;
  fill: currentColor;
}

.icon-svg--color-yellow {
  color: #e7a321;
  fill: currentColor;
}

.checkout-main .icon-svg--color-adaptive-lighter {
  color: #919191;
  fill: currentColor;
}

.sidebar .icon-svg--color-adaptive-lighter {
  color: #8f8f8f;
  fill: currentColor;
}

.content-box .icon-svg--color-adaptive-lighter {
  color: #919191;
  fill: currentColor;
}

.default-background .icon-svg--color-adaptive-lighter {
  color: #919191;
  fill: currentColor;
}

.btn .icon-svg--color-adaptive-lighter,.sp-modal-toggle .icon-svg--color-adaptive-lighter {
  color: #aecdaf;
  fill: currentColor;
}

.checkout-main .field__icon .icon-svg--color-adaptive-lighter,.checkout-main .field__caret .icon-svg--color-adaptive-lighter {
  color: #919191;
  fill: currentColor;
}

.sidebar .field__icon .icon-svg--color-adaptive-lighter,.sidebar .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;
}

.default-background .field__icon .icon-svg--color-adaptive-lighter,.default-background .field__caret .icon-svg--color-adaptive-lighter {
  color: #919191;
  fill: currentColor;
}

.checkout-main .icon-svg--color-adaptive-light {
  color: #737373;
  fill: currentColor;
}

.sidebar .icon-svg--color-adaptive-light {
  color: #717171;
  fill: currentColor;
}

.content-box .icon-svg--color-adaptive-light {
  color: #737373;
  fill: currentColor;
}

.default-background .icon-svg--color-adaptive-light {
  color: #737373;
  fill: currentColor;
}

.btn .icon-svg--color-adaptive-light,.sp-modal-toggle .icon-svg--color-adaptive-light {
  color: #aecdaf;
  fill: currentColor;
}

.checkout-main .field__icon .icon-svg--color-adaptive-light,.checkout-main .field__caret .icon-svg--color-adaptive-light {
  color: #737373;
  fill: currentColor;
}

.sidebar .field__icon .icon-svg--color-adaptive-light,.sidebar .field__caret .icon-svg--color-adaptive-light {
  color: #737373;
  fill: currentColor;
}

.content-box .field__icon .icon-svg--color-adaptive-light,.content-box .field__caret .icon-svg--color-adaptive-light {
  color: #737373;
  fill: currentColor;
}

.default-background .field__icon .icon-svg--color-adaptive-light,.default-background .field__caret .icon-svg--color-adaptive-light {
  color: #737373;
  fill: currentColor;
}

.icon-svg--size-10 {
  width: 10px;
  height: 10px;
}

.icon-svg--size-12 {
  width: 12px;
  height: 12px;
}

.icon-svg--size-14 {
  width: 14px;
  height: 14px;
}

.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-32 {
  width: 32px;
  height: 32px;
}

.icon-svg--size-48 {
  width: 48px;
  height: 48px;
}

.icon-svg--size-64 {
  width: 64px;
  height: 64px;
}

.icon-svg--size-184 {
  width: 184px;
  height: 184px;
}

.icon-svg--rotate-180 {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.icon-svg--inline-before {
  margin-right: 0.28571em;
}

.icon-svg--inline-after {
  margin-left: 0.28571em;
}

.icon-svg--flip-horizontal {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.icon-svg--flip-vertical {
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
}

.checkout-icon {
  background-position: center center;
  background-repeat: no-repeat;
  display: inline-block;
}

.icon-background--payment-gateways {
  fill: #d9d9d9;
}

.icon-svg--spinner-button {
  width: 20px;
  height: 20px;
}


.icon--browse-pay-primary {
  width: 55px;
  height: 16px;
}

.icon--browse-pay {
  width: 55px;
  height: 16px;
}

.icon--browse-pay--dark {
  fill: #000;
}

.icon--browse-pay--light {
  fill: #fff;
}


.icon-svg--spinner {
  -webkit-animation: fade-in 0.5s ease-in-out, rotate 0.5s linear infinite;
  animation: fade-in 0.5s ease-in-out, rotate 0.5s linear infinite;
}

.ie .icon-svg--double-spinner,.edge .icon-svg--double-spinner {
  -webkit-animation: rotate 0.5s linear infinite;
  animation: rotate 0.5s linear infinite;
}

.ie .icon-svg--double-spinner .icon-svg--double-spinner__outer-circle,.edge .icon-svg--double-spinner .icon-svg--double-spinner__outer-circle {
  display: none;
}

.ie .icon-svg--double-spinner .icon-svg--double-spinner__inner-circle,.edge .icon-svg--double-spinner .icon-svg--double-spinner__inner-circle {
  -webkit-animation: none;
  animation: none;
}

.icon-svg--double-spinner__outer-circle {
  opacity: 0.3;
  animation: rotate 1s linear infinite reverse;
  -webkit-transform-origin: center;
  transform-origin: center;
}

.icon-svg--double-spinner__inner-circle {
  -webkit-animation: rotate 0.5s linear infinite;
  animation: rotate 0.5s linear infinite;
  -webkit-transform-origin: center;
  transform-origin: center;
}

.icon-svg--clickable {
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}

.icon-svg--clickable:hover {
  color: #2a692d;
}

.logo {
  display: block;
  vertical-align: middle;
}

.logo__text {
  color: #333333;
}

.logo__image {
  display: inline-block;
}

.logo--right {
  text-align: right;
}

.logo--center {
  text-align: center;
}

.logo__image--small {
  max-height: 2.14286em;
}

.logo__image--medium {
  max-height: 2.85714em;
}

.logo__image--large {
  max-height: 3.57143em;
}

@media (min-width: 1000px) {
  .logo__image--small {
    max-height: 2.85714em;
  }

  .logo__image--medium {
    max-height: 4.28571em;
  }

  .logo__image--large {
    max-height: 5.71429em;
  }
}

#checkout-content-container {
  color: #545454;
  /*background: white;*/
}

.content-checkout {
  overflow: hidden;
}

.wrap {
  display: block;
  margin: 0 auto;
  max-width: 40em;
  zoom: 1;
}

.wrap:after,.wrap:before {
  content: "";
  display: table;
}

.wrap:after {
  clear: both;
}

@media (max-width: 999px) {
  .wrap {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 1em;
  }
}

@media (min-width: 1000px) {
  .wrap {
    padding: 0 5%;
    width: 90%;
    max-width: 78.57143em;
  }
}

@media (max-width: 999px) {
  .no-js .content-checkout .wrap {
    display: table;
  }

  .no-js .content-checkout .wrap .checkout-main {
    display: table-footer-group;
  }

  .no-js .content-checkout .wrap .sidebar {
    display: table-header-group;
  }

  .no-js .content-checkout .wrap .sidebar::after {
    display: none;
  }
}

@media (min-width: 1000px) {
  .checkout-main {
    width: 52%;
    width: 52%;
    padding-right: 6%;
    float: left;
  }
}

.checkout-main .logo {
  display: none;
}

@media (min-width: 1000px) {
  .page--logo-main .checkout-main .logo {
    display: block;
  }
}

.checkout-main__emphasis {
  font-weight: 500;
  color: #333333;
}

.checkout-main__small-text {
  font-size: 0.85714em;
  color: #737373;
}

.sidebar {
  position: relative;
  color: #535353;
}

.no-js .sidebar,.no-generatedcontent .sidebar {
  background: #fafafa;
}

@media (min-width: 1000px) {
  .sidebar {
    width: 38%;
    padding-left: 4%;
    background-position: left top;
    float: right;
  }
}

.sidebar::after {
  content: "";
  display: block;
  width: 300%;
  position: absolute;
  top: 0;
  left: -100%;
  bottom: 0;
  background: #fefefe;
  z-index: -1;
  -webkit-box-shadow: 0 -1px 0 #e1e1e1 inset;
  box-shadow: 0 -1px 0 #e1e1e1 inset;
}

@media (min-width: 1000px) {
  .sidebar::after {
    left: 0;
    background-position: left top;
    -webkit-box-shadow: 1px 0 0 #e1e1e1 inset;
    box-shadow: 1px 0 0 #e1e1e1 inset;
  }
}

.sidebar__header {
  margin-bottom: 2.5em;
  display: none;
}

@media (min-width: 1000px) {
  .page--logo-sidebar .sidebar__header {
    display: block;
  }
}

.anyflexbox body,.anyflexbox .content-checkout,.anyflexbox .content-checkout .wrap,.anyflexbox .checkout-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;
}

.anyflexbox .content-checkout .wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.anyflexbox .checkout-main__content {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.anyflexbox .banner {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media (min-width: 1000px) {
  .anyflexbox .content-checkout .wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

@media (max-width: 749px) {
  .checkout-main {
    padding-top: 1.5em;
  }

  .checkout-main__content {
    padding-bottom: 1.5em;
  }
}

@media (min-width: 750px) {
  .checkout-main {
    padding-top: 1.5em;
  }

  .checkout-main__content {
    padding-bottom: 4em;
  }
}

@media (max-width: 999px) {
  .breadcrumb {
    padding-bottom: 1.5em;
  }
}

@media (min-width: 1000px) {
  .page--no-banner .checkout-main,.page--no-banner .sidebar {
    padding-top: 4em;
  }

  .page--banner .checkout-main,.page--banner .sidebar {
    padding-top: 2em;
  }

  .checkout-main__header {
    padding-bottom: 2em;
  }

  .sidebar__logo {
    margin-bottom: 2em;
  }

  .page--logo-main .breadcrumb {
    margin-top: 1em;
  }
}

.page--hidden-breadcrumbs .breadcrumb,.page--hidden-main-header .checkout-main__header {
  display: none;
}

table {
  width: 100%;
}

td,th {
  padding-left: 1em;
}

td:first-child,th:first-child {
  padding-left: 0;
  text-align: left;
}

.checkout-main--homepage td:last-child,.checkout-main--homepage th:last-child {
  text-align: right;
}

.product-table th,.product-table td {
  padding-top: 0;
  padding-bottom: 0;
}

.product-table__header th {
  white-space: nowrap;
  font-weight: 500;
  color: #333333;
}

.product-table--loose th,.product-table--loose td {
  padding-top: 1.14286em;
  padding-bottom: 1.14286em;
}

.product-table--extra-loose th,.product-table--extra-loose td {
  padding-top: 1.71429em;
  padding-bottom: 1.71429em;
}

.product-table--bordered td,.product-table--bordered th {
  border-bottom: 1px solid #e6e6e6;
}

.product-table--bordered tr:last-child td {
  border-bottom: 0;
}

.banner {
  padding: 1.5em 0;
  background: transparent;
  background-size: cover;
  display: none;
}

.page--logo-sidebar .banner {
  background: transparent;
}

@media (max-width: 999px) {
  .banner {
    display: block;
  }
}

.page--banner .banner {
  display: block;
}

@media (min-width: 1000px) {
  .page--banner .banner {
    padding-top: 6em;
    padding-bottom: 2em;
  }
}


.checkout--enabled a,.checkout-link {
  text-decoration: none;
  color: #348338;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}

.checkout-btn,.sp-modal-toggle {
  cursor: pointer;
  display: inline-block;
  background-color: #348338;
  background-clip: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px transparent solid;
  border-radius: 5px;
  /*color: white !important;*/
  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;
}
.sp-modal-toggle {
  color: white;
}

.checkout-btn:hover,.sp-modal-toggle:hover {
  background-color: #265e28;
  color: white;
}

.checkout-btn:active,.sp-modal-toggle:active {
  outline: none;
}


@media (max-width: 749px) {
  .checkout-btn,.sp-modal-toggle {
    width: 100%;
    padding-top: 1.75em;
    padding-bottom: 1.75em;
  }
}

.btn--size-small {
  padding: 0.92857em;
}

.btn--subdued {
  background-color: transparent;
  border-color: rgba(179,179,179,0.5);
  color: #348338;
  font-weight: normal;
}

.btn--subdued:hover {
  background-color: rgba(52,131,56,0.06);
  color: #2a692d;
}

.btn--subdued:focus,.btn--subdued:active {
  border-color: #265e28;
  -webkit-box-shadow: 0 0 0 1px #265e28 inset;
  box-shadow: 0 0 0 1px #265e28 inset;
}

.btn--loading {
  pointer-events: none;
  cursor: default;
}

.btn--loading .btn__content,.btn--loading .btn__icon {
  opacity: 0;
}

.btn--loading .btn__spinner {
  -webkit-animation: rotate 0.5s linear infinite;
  animation: rotate 0.5s linear infinite;
  opacity: 1;
}

.js .checkout-main .btn--disabled {
  cursor: default;
  background: #cccccc;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.js .sidebar .btn--disabled {
  cursor: default;
  background: #c8c8c8;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.js .content-box .btn--disabled {
  cursor: default;
  background: #cccccc;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.js .default-background .btn--disabled {
  cursor: default;
  background: #cccccc;
  -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;
}

.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;
}

.step__footer {
  z-index: 2;
  position: relative;
  margin-top: 1em;
}

.no-js .step__footer,.no-anyflexbox .step__footer {
  zoom: 1;
}

.no-js .step__footer:after,.no-js .step__footer:before,.no-anyflexbox .step__footer:after,.no-anyflexbox .step__footer:before {
  content: "";
  display: table;
}

.no-js .step__footer:after,.no-anyflexbox .step__footer:after {
  clear: both;
}

@media (min-width: 750px) {
  .step__footer {
    margin-top: 1.5em;
  }
}

.step__footer__previous-link-content {
  vertical-align: middle;
}

.step__footer__previous-link,.step__footer__info {
  display: block;
}

@media (max-width: 749px) {
  .step__footer__previous-link,.step__footer__info {
    padding-top: 1.5em;
    text-align: center;
  }
}

@media (min-width: 750px) {
  .step__footer__previous-link,.step__footer__info {
    float: left;
  }
}

.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:hover .previous-link__icon {
  fill: #2a692d;
  -webkit-transform: translateX(-5px) "";
  transform: translateX(-5px) "";
}

@media (min-width: 750px) {
  .step__footer__continue-btn {
    float: right;
  }
}

@media (min-width: 750px) {
  .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;
  }

  .anyflexbox .step__footer__previous-link,.anyflexbox .step__footer__info {
    margin-right: 1em;
  }
}

.edit-link {
  display: block;
  margin-top: 0.75em;
}

.checkout-section--express-checkout-selection-group-test {
  display: table;
  width: 100%;
}

@media (min-width: 750px) {
  .checkout-section--express-checkout-selection-group-test .checkout-section--contact-information {
    display: table-header-group;
  }
}

@media (min-width: 750px) {
  .checkout-section--express-checkout-selection-group-test .checkout-section--express-checkout-selection {
    padding-top: 3em !important;
    display: block;
  }
}

.checkout-section--express-checkout-selection-group-control {
  display: table;
  width: 100%;
}

.checkout-section--express-checkout-selection-group-control .checkout-section--contact-information {
  display: table-header-group;
}

.checkout-section--express-checkout-selection-group-control .checkout-section--express-checkout-selection {
  padding-top: 3em !important;
}

.checkout-notice+.step__sections {
  margin-top: 1.5em;
}

@media (min-width: 750px) {
  .checkout-notice+.step__sections {
    margin-top: 2.5em;
  }
}

.step__sections+form {
  padding-top: 2em;
}

@media (min-width: 1000px) {
  .step__sections+form {
    padding-top: 0;
  }
}

.checkout-section {
  position: relative;
  padding-top: 2em;
}

@media (min-width: 750px) {
  .checkout-section {
    padding-top: 3em;
  }
}

.checkout-section:first-child {
  padding-top: 0;
}

.checkout-section--half-spacing-top,.checkout-section--half-spacing-bottom+.checkout-section {
  padding-top: 1em;
}

@media (min-width: 750px) {
  .checkout-section--half-spacing-top,.checkout-section--half-spacing-bottom+.checkout-section {
    padding-top: 1.5em;
  }
}

.checkout-section__header {
  position: relative;
  margin-bottom: 1em;
}

@media (min-width: 750px) {
  .checkout-section__header {
    margin-bottom: 1.5em;
  }
}

.checkout-section__title {
  color: #333333;
}

.checkout-section__text {
  margin-top: 0.25em;
}

.checkout-section__hanging-icon {
  margin-bottom: 1em;
}

@media (min-width: 750px) and (max-width: 999px) {
  .checkout-section__hanging-icon {
    position: absolute;
    right: 100%;
    top: -0.4em;
    margin-right: 1.5em;
  }
}

@media (min-width: 1300px) {
  .checkout-section__hanging-icon {
    position: absolute;
    right: 100%;
    top: -0.4em;
    margin-right: 1.5em;
  }
}

.checkout-section__content {
  zoom: 1;
}

.checkout-section__content:after,.checkout-section__content:before {
  content: "";
  display: table;
}

.checkout-section__content:after {
  clear: both;
}

.checkout-section__content__text {
  margin-top: 0.75em;
}

.checkout-section__content__policy {
  margin-top: 1em;
}

.checkout-section__content__column {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 2em;
}

.checkout-section__content__column:first-of-type {
  margin-top: 0;
}

@media (min-width: 750px) {
  .checkout-section__content__column {
    margin-top: 0;
    float: left;
  }
}

@media (min-width: 750px) {
  .checkout-section__content__column--half {
    padding: 0 0.75em;
    width: 50%;
  }

  .checkout-section__content__column--half:first-child {
    padding-left: 0;
  }

  .checkout-section__content__column--half:last-child {
    padding-right: 0;
  }
}

.checkout-section__footer {
  zoom: 1;
  margin-top: 1em;
}

.checkout-section__footer:after,.checkout-section__footer:before {
  content: "";
  display: table;
}

.checkout-section__footer:after {
  clear: both;
}

@media (min-width: 750px) {
  .checkout-section__footer {
    margin-top: 1.5em;
  }
}

@media (min-width: 750px) and (max-width: 999px) {
  .checkout-section--page-title {
    margin-top: 1em;
  }
}

.has-modal body {
  overflow: hidden;
}

.modal-backdrop, .content-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.js .modal-backdrop, .js .content-modal-backdrop {
  -webkit-transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out, background-color 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out, background-color 0.5s ease-in-out;
}

.modal-backdrop.modal-backdrop--centered-content, .content-modal-backdrop.modal-backdrop--centered-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.modal-backdrop.modal-backdrop--is-closing.modal-backdrop--fade-out-white, .content-modal-backdrop.modal-backdrop--is-closing.modal-backdrop--fade-out-white {
  background-color: rgba(255,255,255,0.8);
}

.modal-backdrop--is-visible, .content-modal-backdrop--is-visible {
  visibility: visible;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 1;
}

.modal {
  background: #fff;
  -webkit-box-shadow: 0 5px 30px rgba(0,0,0,0.2);
  box-shadow: 0 5px 30px rgba(0,0,0,0.2);
  color: #545454;
  min-height: auto;
  visibility: hidden;
}

@media (min-width: 750px) {
  .modal {
    border-radius: 8px;
    margin: 4em auto 5%;
    max-width: 60em;
    min-height: initial;
    width: 90%;
  }
}

.modal.modal--centered {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

.modal-backdrop--is-visible .modal, .content-modal-backdrop--is-visible .modal {
  -webkit-animation: modal-open 0.5s cubic-bezier(0.2, 0.9, 0.3, 1);
  animation: modal-open 0.5s cubic-bezier(0.2, 0.9, 0.3, 1);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.no-cssanimations .modal-backdrop--is-visible .modal, .no-cssanimations .content-modal-backdrop--is-visible .modal {
  visibility: visible;
}

.modal-backdrop--is-closing .modal, .content-modal-backdrop--is-closing .modal {
  -webkit-animation: modal-close 0.25s ease-in-out;
  animation: modal-close 0.25s ease-in-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.modal__header {
  padding: 1.5em;
}

@media (min-width: 750px) {
  .modal__header {
    padding: 1.5em 2.5em;
  }
}

.modal__header {
  border-bottom: 1px solid #e6e6e6;
  zoom: 1;
}

.modal__header:after,.modal__header:before {
  content: "";
  display: table;
}

.modal__header:after {
  clear: both;
}

.display-table .modal__header {
  display: table;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}

.modal__header__title {
  color: #333333;
}

.display-table .modal__header__title {
  display: table-cell;
  width: 100%;
}

.no-js .modal__header__title,.no-display-table .modal__header__title {
  float: left;
}

.modal__content {
  padding: 1.5em;
}

@media (min-width: 750px) {
  .modal__content {
    padding: 2.5em;
  }

  .modal__content p {
    font-size: 1.14286em;
  }
}

.modal__iframe {
  width: 100%;
}

.modal__loading-icon {
  display: block;
  margin: 1em auto;
}

.modal__close {
  position: relative;
  -webkit-transition: color 0.3s cubic-bezier(0.3, 0, 0, 1);
  transition: color 0.3s cubic-bezier(0.3, 0, 0, 1);
  vertical-align: middle;
  padding-left: 0.75em;
  white-space: nowrap;
}

.display-table .modal__close {
  display: table-cell;
}

.no-js .modal__close,.no-display-table .modal__close {
  float: right;
}

.modal__close-button {
  color: #737373;
}

.modal__close-button:hover {
  color: #545454;
}

.fieldset {
  margin: -0.42857em;
  zoom: 1;
}

.fieldset:after,.fieldset:before {
  content: "";
  display: table;
}

.fieldset:after {
  clear: both;
}

.fieldset--inline {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.fieldset--inline .field {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media (max-width: 749px) {
  .fieldset--inline {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.fieldset--inline .btn,.fieldset--inline .sp-modal-toggle {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0.42857em;
  width: auto;
}

@media (min-width: 750px) {
  .anyflexbox .fieldset--inline .btn,.anyflexbox .fieldset--inline .sp-modal-toggle {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.fieldset-description {
  margin-top: 0.92857em;
}

.field {
  width: 100%;
  float: left;
  padding: 0.42857em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media (min-width: 750px) {
  .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%;
  }
  .floating-labels .field--third-third {
    width: 33.33333%;
    margin-right: 30%;
  }

  .floating-labels .field--two-thirds {
    width: 66.66667%;
  }

  .floating-labels .field--half {
    width: 50%;
  }

  .floating-labels .field--three-eights {
    width: 37.5%;
  }

  .floating-labels .field--quarter {
    width: 25%;
  }
  .floating-labels .field--quarter-full {
    width: 25%;
    margin-right: 100%;
  }
  .floating-labels .field--auto {
    width: auto;
  }
}

.field__message {
  line-height: 1.3em;
  margin: 0.57143em 0 0.28571em;
}

.field__message--error {
  display: none;
  color: #ff6d6d;
  margin-top: -15px !important;
}

.field--error .field__message--error {
  display: block;
}

.field__message__icon {
  margin-right: 0.25em;
  vertical-align: -3px;
}

.field__label {
  text-align: left;
  font-weight: 500;
  margin: 0.5em 0;
  display: none;
}

.checkout-main .field__label {
  color: #333333;
}

.floating-labels .checkout-main .field__label {
  color: #737373;
}

.sidebar .field__label {
  color: #323232;
}

.floating-labels .sidebar .field__label {
  color: #737373;
}

.content-box .field__label {
  color: #333333;
}

.floating-labels .content-box .field__label {
  color: #737373;
}

.default-background .field__label {
  color: #333333;
}

.floating-labels .default-background .field__label {
  color: #737373;
}

.checkout-main .field--active .field__label {
  color: #545454;
}

.sidebar .field--active .field__label {
  color: #545454;
}

.content-box .field--active .field__label {
  color: #545454;
}

.default-background .field--active .field__label {
  color: #545454;
}

.no-js .field__label {
  display: block;
}

.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;
}

.floating-labels .field--show-floating-label .field__label {
  -webkit-transform: none;
  transform: none;
  opacity: 1;
}

.floating-labels .field__input-wrapper--icon-left .field__label {
  padding-left: 2.85714rem;
}

.floating-labels .field__input-wrapper--icon-right .field__label {
  padding-right: 2.85714rem;
}

.animate-floating-labels .field__label {
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.field__label--visible {
  display: block;
}

.field__input-wrapper {
  position: relative;
}

.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: 0.92857em 0.78571em;
  word-break: normal;
  line-height: inherit;
}

.checkout-main .field__input {
  background-color: white;
  color: #333333;
  border-color: #d9d9d9;
}

.checkout-main .field__input::-webkit-input-placeholder {
  color: #737373;
}

.checkout-main .field__input:-moz-placeholder {
  color: #737373;
  opacity: 1;
}

.checkout-main .field__input::-moz-placeholder {
  color: #737373;
  opacity: 1;
}

.checkout-main .field__input:-ms-input-placeholder {
  color: #737373;
}

.sidebar .field__input {
  background-color: white;
  color: #333333;
  border-color: #d5d5d5;
}

.sidebar .field__input::-webkit-input-placeholder {
  color: #737373;
}

.sidebar .field__input:-moz-placeholder {
  color: #737373;
  opacity: 1;
}

.sidebar .field__input::-moz-placeholder {
  color: #737373;
  opacity: 1;
}

.sidebar .field__input:-ms-input-placeholder {
  color: #737373;
}

.content-box .field__input {
  background-color: white;
  color: #333333;
  border-color: #d9d9d9;
}

.content-box .field__input::-webkit-input-placeholder {
  color: #737373;
}

.content-box .field__input:-moz-placeholder {
  color: #737373;
  opacity: 1;
}

.content-box .field__input::-moz-placeholder {
  color: #737373;
  opacity: 1;
}

.content-box .field__input:-ms-input-placeholder {
  color: #737373;
}

.default-background .field__input {
  background-color: white;
  color: #333333;
  border-color: #d9d9d9;
}

.default-background .field__input::-webkit-input-placeholder {
  color: #737373;
}

.default-background .field__input:-moz-placeholder {
  color: #737373;
  opacity: 1;
}

.default-background .field__input::-moz-placeholder {
  color: #737373;
  opacity: 1;
}

.default-background .field__input:-ms-input-placeholder {
  color: #737373;
}

.animate-floating-labels .field__input {
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.floating-labels .field--show-floating-label .field__input {
  padding-top: 1.3em;
  padding-bottom: 0.05714em;
}

.floating-labels .field--show-floating-label .field__input::-webkit-input-placeholder {
  color: transparent;
}

.floating-labels .field--show-floating-label .field__input:-moz-placeholder {
  color: transparent;
  opacity: 1;
}

.floating-labels .field--show-floating-label .field__input::-moz-placeholder {
  color: transparent;
  opacity: 1;
}

.floating-labels .field--show-floating-label .field__input:-ms-input-placeholder {
  color: transparent;
}

.field__input:focus,.field__input-wrapper--flag-focus .field__input {
  outline: none;
  border-color: #348338;
  -webkit-box-shadow: 0 0 0 1px #348338;
  box-shadow: 0 0 0 1px #348338;
}

@media (-ms-high-contrast: active) {
  .field__input:focus,.field__input-wrapper--flag-focus .field__input {
    background-color: highlight;
  }
}

.field--error .field__input {
  border-color: #ff6d6d;
  -webkit-box-shadow: 0 0 0 1px #ff6d6d;
  box-shadow: 0 0 0 1px #ff6d6d;
}

.field__input-wrapper--icon-left .field__input {
  padding-left: 2.85714rem;
}

.field__input-wrapper--icon-right .field__input {
  padding-right: 2.85714rem;
}

.field__input-wrapper--flag-right .field__input {
  padding-right: 4.71429rem;
}

.chrome .card-fields-container .field__label {
  will-change: transform;
}

.field__input--iframe-container {
  border-color: #fafafa;
  min-height: 3.14286em;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.floating-labels .field--show-floating-label .field__input--iframe-container {
  padding-bottom: 0;
  padding-top: 0;
}

.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;
}

.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;
}

.card-fields-container--loaded .field--active .field__input--iframe-container {
  outline: none;
  border-color: #348338;
  -webkit-box-shadow: 0 0 0 1px #348338;
  box-shadow: 0 0 0 1px #348338;
}

.card-fields-container--loaded .field--error .field__input--iframe-container {
  border-color: #ff6d6d;
  -webkit-box-shadow: 0 0 0 1px #ff6d6d;
  box-shadow: 0 0 0 1px #ff6d6d;
}

@-webkit-keyframes load {
  0% {
    left: 1em;
    width: 0;
  }

  50% {
    left: 1em;
    width: calc(100% - 2em);
  }

  100% {
    left: calc(100% - 1em);
    width: 0;
  }
}

@keyframes load {
  0% {
    left: 1em;
    width: 0;
  }

  50% {
    left: 1em;
    width: calc(100% - 2em);
  }

  100% {
    left: calc(100% - 1em);
    width: 0;
  }
}

.card-fields-iframe {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  color: inherit;
  display: block;
  font: inherit;
  -webkit-font-smoothing: inherit;
  height: 3.14286em;
  line-height: normal;
  width: 100%;
}

.card-fields-styling-options {
  display: none;
  position: relative;
  background-color: white;
  color: #333333;
  z-index: 22;
}

.field__input--zip {
  text-transform: uppercase;
}

.field__input--zip::-webkit-input-placeholder {
  text-transform: none;
}

.field__input--zip:-moz-placeholder {
  text-transform: none;
  opacity: 1;
}

.field__input--zip::-moz-placeholder {
  text-transform: none;
  opacity: 1;
}

.field__input--zip:-ms-input-placeholder {
  text-transform: none;
}

.field__input--select {
  padding-right: 2.07143em;
  white-space: nowrap;
}

.field__input--select:-moz-focusring {
  color: transparent;
  -webkit-transition: color 0ms;
  transition: color 0ms;
}

.checkout-main .field__input--select:-moz-focusring {
  text-shadow: 0 0 0 #333333;
}

.sidebar .field__input--select:-moz-focusring {
  text-shadow: 0 0 0 #333333;
}

.content-box .field__input--select:-moz-focusring {
  text-shadow: 0 0 0 #333333;
}

.default-background .field__input--select:-moz-focusring {
  text-shadow: 0 0 0 #333333;
}

.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%);
  text-align: center;
}

.checkout-main .field__caret {
  border-left: 1px rgba(179,179,179,0.5) solid;
}

.sidebar .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;
}

.default-background .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%);
}

.field__icon {
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  width: 2.85714rem;
}

.field__icon:focus {
  outline: none;
}

.field__input-wrapper--icon-right .field__icon {
  right: 0;
}

.field__input-wrapper--icon-left .field__icon {
  left: 0;
}

.field__icon-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.anyflexbox .field__input-btn-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.anyflexbox .field__input-btn-wrapper .field__input-wrapper {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.anyflexbox .field__input-btn {
  width: auto;
  margin-left: 0.85714em;
  white-space: nowrap;
  padding-top: 0;
  padding-bottom: 0;
}

.no-js .field__input-btn,.no-anyflexbox .field__input-btn {
  margin-top: 0.85714em;
  padding: 1em 1.5em;
}

.combo-box {
  background-color: #fff;
  background-clip: padding-box;
  border: 1px rgba(2,2,2,0.15) solid;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0 6px 19px 0 rgba(0,0,0,0.23);
  box-shadow: 0 6px 19px 0 rgba(0,0,0,0.23);
  margin-top: 0.42857em;
  position: absolute;
  top: 100%;
  left: -1px;
  width: calc(100% + 2px);
  z-index: 3;
}

.combo-box--hidden {
  display: none;
}

.combo-box--with-footer .combo-box__options {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.combo-box--with-footer .combo-box__option:last-child {
  border-radius: 0;
}

.combo-box__options {
  display: block;
  overflow-y: auto;
  max-height: 230px;
}

.combo-box__option {
  color: #545454;
  cursor: pointer;
}

.combo-box__option:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.combo-box__option--selected {
  background-color: rgba(0,0,0,0.08);
  border: 1px transparent solid;
}

.combo-box__option--selected .combo-box__content {
  margin: -1px;
}

.combo-box__content {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: left;
  width: 100%;
  padding: 0.92857em 0.78571em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.combo-box__content * {
  pointer-events: none;
}

.combo-box__header {
  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;
  padding: 0.78571em;
}

.combo-box__header__title {
  font-size: 0.85714em;
  font-weight: 400;
  line-height: 1.3em;
  margin: 0;
  text-transform: uppercase;
}

.checkout-main .combo-box__header__title {
  color: #737373;
}

.sidebar .combo-box__header__title {
  color: #737373;
}

.content-box .combo-box__header__title {
  color: #737373;
}

.default-background .combo-box__header__title {
  color: #737373;
}

.combo-box__header__button {
  color: #737373;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  padding: 0.78571em;
  margin: -0.78571em;
}

.combo-box__header__button:hover {
  color: #545454;
}

.combo-box__footer {
  background-color: rgba(0,0,0,0.02);
  padding: 0.74286em 0.78571em;
  position: relative;
  z-index: 4;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.content-box {
  background: #fff;
  background-clip: padding-box;
  border: 1px solid;
  border-radius: 5px;
  color: #545454;
}

.checkout-main .content-box {
  border-color: #d9d9d9;
}

.content-box .content-box {
  border-color: #d9d9d9;
}

.content-box,.content-box-spacing {
  margin-top: 1em;
}

.content-box:first-of-type,.content-box-spacing:first-of-type {
  margin-top: 0;
}

.content-box__emphasis {
  font-weight: 500;
  color: #333333;
}

.content-box__small-text {
  font-size: 0.85714em;
  color: #737373;
}

.content-box__sub-content {
  padding-top: 0.28571em;
  font-size: 1em;
  color: #737373;
}

.content-box__row {
  padding: 1.14286em;
  position: relative;
  zoom: 1;
}

.content-box__row ~ .content-box__row {
  border-top: 1px solid #d9d9d9;
}

.content-box__row:after,.content-box__row:before {
  content: "";
  display: table;
}

.content-box__row:after {
  clear: both;
}

.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--main-content {
  display: table-row;
}

.content-box__row--main-content .apple-pay-logo {
  height: 19px;
  width: 47px;
  background-color: white;
  display: block;
  background-image: -webkit-named-image(apple-pay-logo-black);
}

.content-box__row--sub-content {
  display: table-row;
}

.content-box__row--tight-spacing-vertical {
  padding-top: 0.85714em;
  padding-bottom: 0.85714em;
}

.content-box__row--secondary {
  background-color: #fafafa;
}

.content-box__row--no-border {
  padding-bottom: 0;
}

.content-box__row+.content-box__row--no-border {
  border-top: none;
  padding-top: 0;
}

.content-box__row--no-border+.content-box__row {
  border-top: none;
}

.content-box__row--no-padding {
  padding: 0;
}

.content-box__row--with-footer {
  padding-bottom: 0.85714em;
}

.content-box__panel {
  padding: 1.14286em;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  background-color: #fafafa;
}

.display-table .content-box__row__stretch {
  display: table-cell;
  width: 100%;
}

.no-js .content-box__row__stretch,.no-display-table .content-box__row__stretch {
  float: left;
}

.content-box__row__right {
  padding-left: 0.75em;
  white-space: nowrap;
}

.display-table .content-box__row__right {
  display: table-cell;
}

.no-js .content-box__row__right,.no-display-table .content-box__row__right {
  float: right;
}

.content-box__hr {
  border: 0;
  border-bottom: 1px solid #e6e6e6;
  margin: 1.14286em 0;
}

.content-box__hr--tight {
  margin: 0.85714em 0;
}

.content-box--applied-reduction-code-list {
  margin-top: 0.85714em;
  background-color: #fafafa;
}

.content-box__header {
  zoom: 1;
}

.content-box__header:after,.content-box__header:before {
  content: "";
  display: table;
}

.content-box__header:after {
  clear: both;
}

.display-table .content-box__header {
  display: table;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}

.content-box__header ~ .content-box__header {
  margin-top: 1.14286em;
}

.display-table .content-box__header__title {
  display: table-cell;
  width: 100%;
}

.no-js .content-box__header__title,.no-display-table .content-box__header__title {
  float: left;
}

.content-box__footer {
  border-top: 1px solid #e6e6e6;
  padding-top: 0.85714em;
  margin-top: 0.85714em;
}

@media (max-width: 999px) {
  .order-summary--transition,.order-summary--is-collapsed {
    overflow: hidden;
  }
}

@media (max-width: 999px) {
  .js .order-summary--is-collapsed {
    height: 0;
    visibility: hidden;
  }
}

.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);
}

.order-summary__section {
  padding-top: 1.5em;
  padding-bottom: 1.5em;
}

.order-summary__section ~ .order-summary__section {
  border-top: 1px solid rgba(175,175,175,0.34);
}

@media (min-width: 1000px) {
  .order-summary__section {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .order-summary__section:first-child {
    padding-top: 0;
  }
}

@media (min-width: 1000px) {
  .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;
    height: calc(100vh - 8em);
    width: 100%;
  }

  .no-js .order-summary__sections,.no-anyflexbox .order-summary__sections {
    height: 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;
    overflow: hidden;
    margin: 10px 0px 0px 0px;
    padding: 0px;
    position: relative;
  }

  .order-summary__section--product-list+.order-summary__section {
    border: 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);
    bottom: 0;
  }

  .order-summary__section--product-list .product-table {
    margin-top: 0.75em;
    margin-bottom: 1.5em;
    position: relative;
    z-index: 1;
  }

  .order-summary__section--has-scroll::before {
    background-color: rgba(175,175,175,0.34);
  }

  .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;
  }

  .no-js .order-summary__section__content:hover,.no-touchevents .order-summary__section__content:hover {
    overflow-y: auto;
  }
}

.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__section--has-scroll .order-summary__scroll-indicator {
  -webkit-transform: translateX(-50%) translateY(-100%) rotateZ(360deg);
  transform: translateX(-50%) translateY(-100%) rotateZ(360deg);
}

.order-summary__scroll-indicator .icon-svg {
  margin-left: 0.21429em;
  margin-top: -0.21429em;
}

.order-summary__emphasis {
  font-weight: 500;
}

.sidebar .order-summary__emphasis {
  color: #323232;
}

.content-box .order-summary__emphasis {
  color: #333333;
}

.order-summary__small-text {
  font-size: 0.85714em;
}

.sidebar .order-summary__small-text {
  color: #717171;
}

.content-box .order-summary__small-text {
  color: #737373;
}

.total-line th,.total-line td {
  padding-top: 0.75em;
}

.total-line:first-child th,.total-line:first-child td {
  padding-top: 0;
}

.content-box .total-line__name {
  color: #737373;
}

.total-line__name .reduction-code {
  margin-left: 0.57143em;
}

.total-line__name--top-aligned {
  vertical-align: top;
}

.total-line__price {
  padding-left: 1.5em;
  text-align: right;
  white-space: nowrap;
}

.total-line--shipping-policy-link {
  padding-top: 0.25em;
}

.total-line__duties-container {
  position: relative;
  display: inline;
}

.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;
}

.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: 1.5em;
  left: 0;
  width: 100%;
  height: 1px;
}

.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);
}

.content-box .total-line-table__tbody+.total-line-table__tbody .total-line:first-child th::before,.content-box .total-line-table__tbody+.total-line-table__tbody .total-line:first-child td::before,.content-box .total-line-table__tbody+.total-line-table__footer .total-line:first-child th::before,.content-box .total-line-table__tbody+.total-line-table__footer .total-line:first-child td::before {
  background-color: rgba(179,179,179,0.34);
}

.payment-due-label__total {
  font-size: 1.14286em;
}

.sidebar .payment-due-label__total {
  color: #323232;
}

.content-box .payment-due-label__total {
  color: #333333;
}

.payment-due-label__taxes {
  display: block;
}

.sidebar .payment-due-label__taxes {
  color: #717171;
}

.content-box .payment-due-label__taxes {
  color: #737373;
}

.payment-due__price {
  font-size: 1.71429em;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1em;
}

.sidebar .payment-due__price {
  color: #323232;
}

.content-box .payment-due__price {
  color: #333333;
}

.payment-due__currency {
  font-size: 0.85714em;
  vertical-align: 0.2em;
  margin-right: 0.5em;
}

.sidebar .payment-due__currency {
  color: #717171;
}

.content-box .payment-due__currency {
  color: #737373;
}

.reduction-code__icon {
  margin-right: 0.14286em;
  vertical-align: top;
}

.reduction-code__text {
  font-size: 1em;
}

.sidebar .reduction-code__text {
  color: #323232;
}

.content-box .reduction-code__text {
  color: #333333;
}

.full-page-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  text-align: center;
  overflow: auto;
  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;
  background: white;
  color: #545454;
}

.full-page-overlay__wrap {
  margin: auto;
  width: 100%;
  padding: 10% 0;
}

.full-page-overlay__title {
  color: #333333;
  margin-bottom: 0.5em;
}

.full-page-overlay__content {
  margin: 0 auto;
  max-width: 36em;
  padding-left: 1em;
  padding-right: 1em;
  zoom: 1;
}

.full-page-overlay__content:after,.full-page-overlay__content:before {
  content: "";
  display: table;
}

.full-page-overlay__content:after {
  clear: both;
}

.full-page-overlay__content form {
  margin: 1.5em 0;
}

.full-page-overlay__content:focus {
  outline: 0;
}

.full-page-overlay__icon {
  margin-bottom: 1.5em;
}

.full-page-overlay__illustration {
  margin-bottom: 1.5em;
}

.full-page-overlay__action {
  margin-top: 1.5em;
}

.checkout-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: 12px;
  font-style: normal; 
  font-family:Calibri,sans-serif !important;
  /*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;
}

.checkout-tooltip:after {
  content: "";
  position: absolute;
  top: 100%;
  right: 18px;
  width: 0;
  border: 6px solid transparent;
  border-top-color: rgba(51,51,51,0.9);
}

@media (min-width: 750px) {
  .checkout-tooltip {
    -webkit-transform-origin: center 120%;
    transform-origin: center 120%;
    right: 50%;
    margin-right: -90px;
  }

  .checkout-tooltip:after {
    right: 50%;
    margin-right: -6px;
  }
}

.has-tooltip {
  cursor: pointer;
}

.has-tooltip:hover .checkout-tooltip,.has-tooltip:focus .checkout-tooltip {
  -webkit-transform: rotateX(0deg) scale(1);
  transform: rotateX(0deg) scale(1);
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.checkout-tooltip--right-align {
  right: -130px;
  bottom: 108%;
}

.checkout-tooltip--right-align:after {
  right: 130px;
}

@media (min-width: 750px) {
  .checkout-tooltip--right-align {
    -webkit-transform-origin: center 120%;
    transform-origin: center 120%;
    right: 50%;
    margin-right: -90px;
  }

  .checkout-tooltip--right-align:after {
    right: 50%;
    margin-right: -6px;
  }
}

.breadcrumb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.breadcrumb__item {
  display: inline;
  font-size: 0.85714em;
  color: #737373;
}

.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;
}

.breadcrumb__item--current {
  font-weight: 500;
  color: #333333;
}

.breadcrumb__chevron-icon {
  margin: 0 0.64286em;
}

.breadcrumb--center {
  text-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.checkout-main__footer {
  padding: 1em 0;
  border-top: 1px solid #e6e6e6;
    clear: both;
}

.copyright-text {
  font-size: 0.85714em;
  color: #737373;
}

.policy-list {
  zoom: 1;
}

.policy-list:after,.policy-list:before {
  content: "";
  display: table;
}

.policy-list:after {
  clear: both;
}

.policy-list__item {
  float: left;
  font-size: 0.85714em;
  margin-right: 1.5em;
  margin-bottom: 0.5em;
}

.input-checkbox,.input-radio {
  width: 18px;
  height: 18px;
  -webkit-box-shadow: 0 0 0 0 #348338 inset;
  box-shadow: 0 0 0 0 #348338 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;
}

.checkout-main .input-checkbox,.checkout-main .input-radio {
  border-color: #d9d9d9;
  background-color: white;
}

.checkout-main .input-checkbox:hover,.checkout-main .input-radio:hover {
  border-color: #cccccc;
}

.checkout-main .input-checkbox:disabled,.checkout-main .input-radio:disabled {
  background-color: #fafafa;
  border-color: #cccccc;
}

.sidebar .input-checkbox,.sidebar .input-radio {
  border-color: #d5d5d5;
  background-color: white;
}

.sidebar .input-checkbox:hover,.sidebar .input-radio:hover {
  border-color: #c8c8c8;
}

.sidebar .input-checkbox:disabled,.sidebar .input-radio:disabled {
  background-color: whitesmoke;
  border-color: #c8c8c8;
}

.content-box .input-checkbox,.content-box .input-radio {
  border-color: #d9d9d9;
  background-color: white;
}

.content-box .input-checkbox:hover,.content-box .input-radio:hover {
  border-color: #cccccc;
}

.content-box .input-checkbox:disabled,.content-box .input-radio:disabled {
  background-color: #fafafa;
  border-color: #cccccc;
}

.default-background .input-checkbox,.default-background .input-radio {
  border-color: #d9d9d9;
  background-color: white;
}

.default-background .input-checkbox:hover,.default-background .input-radio:hover {
  border-color: #cccccc;
}

.default-background .input-checkbox:disabled,.default-background .input-radio:disabled {
  background-color: #fafafa;
  border-color: #cccccc;
}

.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:focus,.input-radio:focus {
  border: 2px solid #348338;
}

.input-checkbox:checked,.input-radio:checked {
  border: none;
  -webkit-box-shadow: 0 0 0 10px #348338 inset;
  box-shadow: 0 0 0 10px #348338 inset;
}

.input-checkbox:checked:after,.input-radio:checked:after {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.input-checkbox:checked:focus,.input-radio:checked:focus {
  border-color: #265e28;
}

.input-radio {
  border-radius: 50%;
}

.input-radio:after {
  width: 4px;
  height: 4px;
  margin-left: -2px;
  margin-top: -2px;
  background-color: #fff;
  border-radius: 50%;
}

.input-checkbox {
  border-radius: 4px;
}

.input-checkbox:after {
  width: 10px;
  height: 8px;
  margin-left: -5px;
  margin-top: -4px;
}

.radio-wrapper,.checkbox-wrapper {
  zoom: 1;
  margin-bottom: 1em;
}

.radio-wrapper:after,.radio-wrapper:before,.checkbox-wrapper:after,.checkbox-wrapper:before {
  content: "";
  display: table;
}

.radio-wrapper:after,.checkbox-wrapper:after {
  clear: both;
}

.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.content-box__row,.checkbox-wrapper.content-box__row {
  margin-bottom: 0;
}

.radio__input,.checkbox__input {
  padding-right: 0.75em;
  white-space: nowrap;
}

.display-table .radio__input,.display-table .checkbox__input {
  display: table-cell;
}

.no-js .radio__input,.no-display-table .radio__input,.no-js .checkbox__input,.no-display-table .checkbox__input {
  float: left;
}

.radio__label,.checkbox__label {
  cursor: pointer;
  vertical-align: middle;
}

.display-table .radio__label,.display-table .checkbox__label {
  display: table-cell;
  width: 100%;
}

.no-js .radio__label,.no-display-table .radio__label,.no-js .checkbox__label,.no-display-table .checkbox__label {
  float: left;
}

.radio__label--inactive {
  cursor: default;
}

.radio__label__primary {
  cursor: inherit;
  font-family: inherit;
  vertical-align: top;
}

.display-table .radio__label__primary {
  display: table-cell;
  width: 100%;
}

.no-js .radio__label__primary,.no-display-table .radio__label__primary {
  float: left;
}
.payments-credit-card-icons {
  padding: 10px;
}
.radio__label__accessory {
  text-align: right;
  padding-left: 0.75em;
  white-space: nowrap;
}

.display-table .radio__label__accessory {
  display: table-cell;
}

.no-js .radio__label__accessory,.no-display-table .radio__label__accessory {
  float: right;
}

.payment-method-wrapper .radio__label__accessory {
  vertical-align: middle;
}

@media (max-width: 749px) {
  .payment-method-wrapper .radio-wrapper {
    display: block;
  }

  .payment-method-wrapper .radio__label,.payment-method-wrapper .radio__label__accessory {
    display: block;
    padding-left: 0;
    text-align: left;
  }

  .payment-method-wrapper .radio__label__primary::after {
    content: '';
    display: block;
    height: 0.65em;
  }
}

.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;
}

.blank-slate .payment-icon {
  vertical-align: middle;
}

.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--known {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-box-shadow: 0 6px 19px 0 rgba(0,0,0,0.05);
  box-shadow: 0 6px 19px 0 rgba(0,0,0,0.05);
}

.payment-icon--unknown {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.5;
}

.offsite-payment-gateway-logo {
  height: 24px;
  display: block;
  margin-top: -2px;
}

.payment-method-list__item+.payment-method-list__item {
  margin-top: 0.5em;
}

.payment-method-list__item-icon {
  vertical-align: middle;
  margin: -0.1em 0.25em 0 0;
}

.payment-icon-list__more {
  vertical-align: middle;
  margin-top: -2px;
  margin-left: 0.25em;
  display: inline-block;
}

.wallet-card-summary-logo {
  display: inline-block;
  height: 1.28em;
  vertical-align: middle;
  width: auto;
}

.amazon-payments__widget {
  width: 100%;
  height: 400px;
}

.amazon-payments__link {
  display: block;
  margin-top: 1.5em;
}

.venmo__logo {
  width: 6.78571em;
  height: auto;
  margin: -2px;
  display: block;
}

.blank-slate {
  padding: 1.14286em;
  text-align: center;
}

@media (min-width: 750px) {
  .blank-slate {
    padding-left: 4.5em;
    padding-right: 4.5em;
  }
}

.blank-slate__title {
  display: block;
  margin-bottom: 0.57143em;
}

.blank-slate__icon {
  margin-bottom: 1.14286em;
}

.blank-slate__btn {
  margin-top: 1.14286em;
}

.checkout-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;
}

.step__sections+.checkout-notice {
  margin-top: 0.71429em;
}

.checkout-notice+.step__footer {
  margin-top: 0;
}

.checkout-notice .product-table {
  margin-top: 1.5em;
}

.checkout-notice .product-table td {
  border-color: #d3e7f5;
}

.checkout-notice .product-table tr:last-child td {
  padding-bottom: 0;
}

.checkout-notice__content {
  display: table-cell;
  width: 100%;
  padding-right: 1.14286em;
}

.checkout-notice__complementary {
  margin-top: 0.75em;
}

.checkout-notice__action {
  margin-top: 1.5em;
  border-color: #d3e7f5;
  color: #545454;
}

.checkout-notice__action:hover {
  background-color: rgba(211,231,245,0.06);
  color: #545454;
}

.checkout-notice__action:focus,.checkout-notice__action:active {
  border-color: #d3e7f5;
  -webkit-box-shadow: 0 0 0 1px #d3e7f5 inset;
  box-shadow: 0 0 0 1px #d3e7f5 inset;
}

.checkout-notice__icon {
  color: #197bbd;
  margin-top: -0.14286em;
  margin-right: 0.71429em;
}

.checkout-notice__controls {
  position: relative;
  padding: 1.14286em;
  margin: -1.14286em;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}

.checkout-notice__controls:hover {
  color: #333333;
}

.checkout-notice--success {
  border-color: #d1ecd4;
  background-color: #e9f8ec;
}

.checkout-notice--success .checkout-notice__icon {
  color: #0ca227;
}

.checkout-notice--success .checkout-notice__separator {
  border-color: #d1ecd4;
}

.checkout-notice--success .checkout-notice__action {
  border-color: #d1ecd4;
}

.checkout-notice--success .checkout-notice__action:hover {
  background-color: rgba(209,236,212,0.06);
}

.checkout-notice--success .checkout-notice__action:focus,.checkout-notice--success .checkout-notice__action:active {
  border-color: #d1ecd4;
  -webkit-box-shadow: 0 0 0 1px #d1ecd4 inset;
  box-shadow: 0 0 0 1px #d1ecd4 inset;
}

.product-table td {
  border-color: #d1ecd4;
}

.checkout-notice--warning {
  border-color: #f0e4bc;
  background-color: #fff8de;
}

.checkout-notice--warning .checkout-notice__icon {
  color: #b88600;
}

.checkout-notice--warning .checkout-notice__separator {
  border-color: #f0e4bc;
}

.checkout-notice--warning .checkout-notice__action {
  border-color: #f0e4bc;
}

.checkout-notice--warning .checkout-notice__action:hover {
  background-color: rgba(240,228,188,0.06);
}

.checkout-notice--warning .checkout-notice__action:focus,.checkout-notice--warning .checkout-notice__action:active {
  border-color: #f0e4bc;
  -webkit-box-shadow: 0 0 0 1px #f0e4bc inset;
  box-shadow: 0 0 0 1px #f0e4bc inset;
}

.product-table td {
  border-color: #f0e4bc;
}

.checkout-notice--error {
  border-color: #fad9d9;
  background-color: #ffebeb;
}

.checkout-notice--error .checkout-notice__icon {
  color: #e32c2b;
}

.checkout-notice--error .checkout-notice__separator {
  border-color: #fad9d9;
}

.checkout-notice--error .checkout-notice__action {
  border-color: #fad9d9;
}

.checkout-notice--error .checkout-notice__action:hover {
  background-color: rgba(250,217,217,0.06);
}

.checkout-notice--error .checkout-notice__action:focus,.checkout-notice--error .checkout-notice__action:active {
  border-color: #fad9d9;
  -webkit-box-shadow: 0 0 0 1px #fad9d9 inset;
  box-shadow: 0 0 0 1px #fad9d9 inset;
}

.product-table td {
  border-color: #fad9d9;
}

.checkout-notice--hide {
  opacity: 0;
}

.checkout-notice--collapsed .checkout-notice__complementary {
  display: none;
}

.checkout-notice--collapsed .icon-svg--rotate-180 {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.checkout-product td {
  padding-top: 1em;
}

.checkout-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--small {
  width: 3em;
  height: 3em;
  border-radius: 6px;
}

.product-thumbnail--small::after {
  border-radius: 6px;
}

.product-thumbnail--small .product-thumbnail__wrapper {
  border-radius: 6px;
}

.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;
  -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__price {
  white-space: nowrap;
}

.product__description__name,.product__description__variant,.product__description__property {
  display: block;
}

.product__description {
  text-align: left;
  width: 100%;
}

.product__description .reduction-code {
  margin-top: 0.28571em;
}

.product__description .reduction-code__text {
  color: #717171;
}

.product__description__name {
  width: 1em;
  min-width: 100%;
}

.product__status {
  position: relative;
  white-space: nowrap;
}

.product__status--sold-out {
  color: #ff6d6d;
}

.product__status__icon {
  vertical-align: -0.15em;
}

.product__clear-btn {
  position: absolute;
  right: -2.5em;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 749px) {
  .product__clear-btn {
    display: none;
  }
}

.logged-in-customer-information {
  zoom: 1;
}

.logged-in-customer-information:after,.logged-in-customer-information:before {
  content: "";
  display: table;
}

.logged-in-customer-information:after {
  clear: both;
}

.display-table .logged-in-customer-information {
  display: table;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}

.logged-in-customer-information__avatar-wrapper {
  padding-right: 1em;
  white-space: nowrap;
  vertical-align: middle;
}

.display-table .logged-in-customer-information__avatar-wrapper {
  display: table-cell;
}

.no-js .logged-in-customer-information__avatar-wrapper,.no-display-table .logged-in-customer-information__avatar-wrapper {
  float: left;
}

.logged-in-customer-information__avatar {
  border-radius: 8px;
  background-size: cover;
  position: relative;
  max-width: none;
  width: 50px;
  height: 50px;
  overflow: hidden;
}

.logged-in-customer-information__avatar:before {
  background-repeat: no-repeat;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.logged-in-customer-information__paragraph {
  padding-top: 0.25em;
  vertical-align: middle;
}

.display-table .logged-in-customer-information__paragraph {
  display: table-cell;
  width: 100%;
}

.no-js .logged-in-customer-information__paragraph,.no-display-table .logged-in-customer-information__paragraph {
  float: left;
}

.logged-in-customer-newsletter {
  margin-top: 1.5em;
}

@media (min-width: 1000px) {
  .alt-payment-list-container {
    padding-top: 1.5em;
  }
}

@media (min-width: 1000px) {
  .alt-payment-list--center {
    text-align: center;
  }
}

.alt-payment-list {
  font-size: 0;
}

.alt-payment-list__item {
  position: relative;
  display: block;
  margin: 0 0 0.5em;
  border-radius: 4px;
  font-size: 14px;
  text-align: center;
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
  vertical-align: middle;
}

@media (min-width: 750px) {
  .alt-payment-list__item {
    display: inline-block;
    margin: 0.5em 0 0.5em 0.5em;
  }

  .alt-payment-list__item:first-child {
    margin-left: 0;
  }
}

.alt-payment-list__item__link {
  display: block;
  padding: 1.28571em 0;
  min-width: 100%;
}

@media (min-width: 750px) {
  .alt-payment-list__item__link {
    padding: 0.85714em 0;
    min-width: 10.71429em;
  }
}

.alt-payment-list__item__logo {
  display: block;
  margin: 0 auto;
  width: auto;
  height: 1.28571em;
}

.alt-payment-list__item--amazon {
  background: #fad676;
}

.alt-payment-list__item--amazon:hover {
  background-color: #f9ca4f;
}

.no-js .alt-payment-list__item--amazon {
  display: none;
}

.alt-payment-list__item--amazon .alt-payment-list__item__logo {
  -webkit-transform: translateY(0.28571em);
  transform: translateY(0.28571em);
  width: 6.57143em;
  height: 1.28571em;
}

.alt-payment-list-amazon-button-image {
  max-height: none !important;
  opacity: 0 !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.alt-payment-list__item--paypal {
  background-color: #ffc520;
}

.alt-payment-list__item--paypal:hover {
  background-color: #f6b600;
}

.alt-payment-list__item--paypalv4 .alt-payment-list__item__link {
  padding: 0 !important;
  margin: 0 !important;
  vertical-align: top;
  line-height: 0 !important;
}

.alt-payment-list__item--paypalv4 .alt-payment-list__item--paypal-btn--mobile {
  display: none;
}

@media (max-width: 749px) {
  .alt-payment-list__item--paypalv4 .alt-payment-list__item--paypal-btn--desktop {
    display: none;
  }

  .alt-payment-list__item--paypalv4 .alt-payment-list__item--paypal-btn--mobile {
    display: block;
  }
}

.alt-payment-list__item--apple-pay {
  background-color: #000;
  font-family: -apple-system, 'Helvetica Neue', sans-serif;
  font-weight: normal;
  text-transform: none;
  text-decoration: none;
  white-space: nowrap;
}

.alt-payment-list__item--apple-pay .alt-payment-list__item__link {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  color: #fff;
}

@media (min-width: 750px) {
  .alt-payment-list__item--apple-pay .alt-payment-list__item__link {
    padding: 0.85714em 0;
  }
}

.alt-payment-list__item--apple-pay .alt-payment-list__item__link .alt-payment-list__item__logo {
  width: 3em;
  background: -webkit-named-image(apple-pay-logo-white) center center no-repeat;
  background-size: auto 100%;
}

.google-pay-iframe-container {
  padding: 0;
}

.gpay-iframe {
  border-radius: 4px;
  height: 54px;
  width: 100%;
  display: block;
}

@media (min-width: 750px) {
  .gpay-iframe {
    height: 42px;
    width: 10.71429em;
  }
}

.alt-payment-list__item--google-pay {
  height: 54px;
  display: none;
}

@media (min-width: 750px) {
  .alt-payment-list__item--google-pay {
    height: 42px;
    width: 10.71429em;
  }
}

.alt-payment-list__item--google-pay-visible {
  display: block;
}

@media (min-width: 750px) {
  .alt-payment-list__item--google-pay-visible {
    display: inline-block;
  }
}

.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;
}

@media (max-width: 749px) {
  .alternative-payment-separator {
    padding-bottom: 2em;
  }
}

@media (min-width: 750px) and (max-width: 999px) {
  .alternative-payment-separator {
    margin-bottom: 2em;
  }
}

.alternative-payment-separator::after,.alternative-payment-separator::before {
  content: '';
  display: inline-block;
  height: 1px;
  background-color: #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;
}

@media (min-width: 750px) {
  .dynamic-checkout {
    margin-top: 1.5em;
  }
}

.dynamic-checkout__title {
  color: #737373;
  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;
}

.dynamic-checkout__title::before,.dynamic-checkout__title::after {
  content: '';
  border: 1px #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;
}

.dynamic-checkout__content {
  border: 1px #e6e6e6 solid;
  border-top: 0;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 0.92857em 1.42857em 1.42857em;
}

.dynamic-checkout__skeleton {
  display: none;
}

.dynamic-checkout__buttons {
  display: block;
}

.dynamic-checkout--loading .dynamic-checkout__skeleton {
  display: block;
}

.dynamic-checkout--loading .dynamic-checkout__skeleton .placeholder-line {
  height: 3.85714em;
}

@media (min-width: 750px) {
  .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: 18.71429em;
    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;
  }
}

.dynamic-checkout--loading .dynamic-checkout__buttons {
  display: none;
}

.hidden {
  display: none !important;
}

.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;
}

@media (max-width: 749px) {
  .visually-hidden-on-mobile {
    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;
  }
}

@media (min-width: 1000px) {
  .visually-hidden-on-desktop {
    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;
  }
}

.visible-on-focus {
  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;
}

.visible-on-focus:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.no-js .shown-if-js {
  display: none;
}

.js .hidden-if-js {
  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;
}

@media (max-width: 749px) {
  .hidden-on-mobile {
    display: none;
  }
}

@media (min-width: 750px) {
  .shown-on-mobile {
    display: none;
  }
}

.no-margin {
  margin: 0  !important;
}

@media (min-width: 750px) and (max-width: 999px) {
  .hidden-on-tablet {
    display: none;
  }
}

@media (max-width: 749px) and (min-width: 1000px) {
  .shown-on-tablet {
    display: none;
  }
}

@media (min-width: 1000px) {
  .hidden-on-desktop {
    display: none;
  }
}

@media (max-width: 999px) {
  .shown-on-desktop {
    display: none;
  }
}

.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%;
}

@media (min-width: 1000px) {
  .order-summary-toggle {
    display: none;
  }
}

.order-summary-toggle__inner {
  zoom: 1;
}

.order-summary-toggle__inner:after,.order-summary-toggle__inner:before {
  content: "";
  display: table;
}

.order-summary-toggle__inner:after {
  clear: both;
}

.display-table .order-summary-toggle__inner {
  display: table;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}

.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;
}

.no-js .order-summary-toggle__icon-wrapper,.no-display-table .order-summary-toggle__icon-wrapper {
  float: left;
}

.order-summary-toggle__icon {
  fill: #348338;
  -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: #265e28;
}

.order-summary-toggle__text {
  color: #348338;
  vertical-align: middle;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  display: none;
}

.order-summary-toggle:hover .order-summary-toggle__text,.order-summary-toggle:focus .order-summary-toggle__text {
  color: #265e28;
}

.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;
}

.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;
}

.no-js .order-summary-toggle__total-recap,.no-display-table .order-summary-toggle__total-recap {
  float: right;
}

.total-recap__original-price {
  font-size: 0.85714em;
  color: #737373;
  display: block;
}

.total-recap__final-price {
  font-size: 1.28571em;
  line-height: 1em;
  color: #333333;
}

.order-summary-toggle__dropdown {
  vertical-align: middle;
  -webkit-transition: fill 0.2s ease-in-out;
  transition: fill 0.2s ease-in-out;
  fill: #348338;
}

.order-summary-toggle:hover .order-summary-toggle__dropdown,.order-summary-toggle:focus .order-summary-toggle__dropdown {
  fill: #265e28;
}

.g-recaptcha {
  border-radius: 4px;
  display: inline-block;
}

.field--error .g-recaptcha {
  border-color: #ff6d6d;
  -webkit-box-shadow: 0 0 0 1px #ff6d6d;
  box-shadow: 0 0 0 1px #ff6d6d;
}

.no-js .g-recaptcha {
  display: none;
}

.g-recaptcha-nojs {
  max-width: 100%;
  width: 302px;
}

.g-recaptcha-nojs__iframe {
  height: 423px;
  width: 100%;
}

.g-recaptcha-nojs__input-wrapper {
  background: #f9f9f9;
  border: 1px #c1c1c1 solid;
  border-radius: 3px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 0.5em;
  padding: 0.75em;
}

.g-recaptcha-nojs__input {
  background-color: #fff;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 5em;
  padding: 0.42857em;
  resize: vertical;
  width: 100%;
}

.field--error .g-recaptcha-nojs__input {
  border-color: #ff6d6d;
  -webkit-box-shadow: 0 0 0 1px #ff6d6d;
  box-shadow: 0 0 0 1px #ff6d6d;
}

.sp-modal__button-wrapper {
  position: relative;
  overflow: hidden;
  padding: 1px;
}

.sp-modal-toggle {
  opacity: 0;
  bottom: 0;
  border-radius: 0 5px 5px 0;
  margin: 1px;
  padding: 0 1em;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
  z-index: 1;
  -webkit-animation: sp-fade-in 0.7s forwards cubic-bezier(0.2, 0.9, 0.3, 1);
  animation: sp-fade-in 0.7s forwards cubic-bezier(0.2, 0.9, 0.3, 1);
}

@media (max-width: 749px) {
  .sp-modal-toggle {
    -webkit-animation-name: fade-in;
    animation-name: fade-in;
  }
}

.sp-modal-toggle:hover .sp-modal-toggle__phone-wrapper::after {
  border-color: #265e28;
}

.sp-modal-toggle:focus {
  outline-offset: -3px;
  outline-color: -webkit-focus-ring-color;
  outline-width: 4px;
}

.sp-modal-toggle__icon-wrapper {
  display: block;
  position: relative;
}

.sp-modal-toggle__icon-wrapper .sp-modal-toggle__icon {
  -webkit-animation: wobble 100ms 250ms linear 6;
  animation: wobble 100ms 250ms linear 6;
}

.sp-modal-toggle__icon-wrapper::after {
  content: '';
  position: absolute;
  top: 3px;
  right: 8px;
  height: 6px;
  width: 6px;
  background-color: #fff;
  border: 1px solid #348338;
  border-radius: 50%;
  -webkit-animation: scale-up-bounce 400ms 850ms both;
  animation: scale-up-bounce 400ms 850ms both;
}

.has-sp-modal body {
  height: auto;
  position: relative;
  min-height: 100%;
}

.sp-modal-backdrop {
  background-color: transparent;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: visibility 1s cubic-bezier(0.2, 0.9, 0.3, 1),background-color 1s cubic-bezier(0.2, 0.9, 0.3, 1);
  transition: visibility 1s cubic-bezier(0.2, 0.9, 0.3, 1),background-color 1s cubic-bezier(0.2, 0.9, 0.3, 1);
  visibility: hidden;
  z-index: 999;
  overflow-y: scroll;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.sp-modal-backdrop--visible {
  background-color: rgba(0,0,0,0.18);
  visibility: visible;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.sp-modal {
  color: #545454;
  opacity: 0;
  outline: none;
  position: absolute;
  -webkit-transform: scale(0.1) matrix3d(1, 0, 0, 0, 0, 0.8, 0.5, -0.002, 0, -0.4, 0.8, 0, 0, 0, 0, 1);
  transform: scale(0.1) matrix3d(1, 0, 0, 0, 0, 0.8, 0.5, -0.002, 0, -0.4, 0.8, 0, 0, 0, 0, 1);
  -webkit-transform-origin: 0% 15%;
  transform-origin: 0% 15%;
  -webkit-transition: opacity 0.2s 0.2s cubic-bezier(0.2, 0.9, 0.3, 1),height 0.2s cubic-bezier(0.2, 0.9, 0.3, 1),-webkit-transform 0.2s 0.2s cubic-bezier(0.2, 0.9, 0.3, 1);
  transition: opacity 0.2s 0.2s cubic-bezier(0.2, 0.9, 0.3, 1),height 0.2s cubic-bezier(0.2, 0.9, 0.3, 1),-webkit-transform 0.2s 0.2s cubic-bezier(0.2, 0.9, 0.3, 1);
  transition: transform 0.2s 0.2s cubic-bezier(0.2, 0.9, 0.3, 1),opacity 0.2s 0.2s cubic-bezier(0.2, 0.9, 0.3, 1),height 0.2s cubic-bezier(0.2, 0.9, 0.3, 1);
  transition: transform 0.2s 0.2s cubic-bezier(0.2, 0.9, 0.3, 1),opacity 0.2s 0.2s cubic-bezier(0.2, 0.9, 0.3, 1),height 0.2s cubic-bezier(0.2, 0.9, 0.3, 1),-webkit-transform 0.2s 0.2s cubic-bezier(0.2, 0.9, 0.3, 1);
  visibility: hidden;
}

@media (max-width: 749px) {
  .sp-modal {
    left: 50%;
    top: 2em;
    -webkit-transform: scale(1) translateX(-50%);
    transform: scale(1) translateX(-50%);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: opacity 0.3s 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);
    transition: opacity 0.3s 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);
  }
}

.sp-modal-backdrop--visible .sp-modal {
  opacity: 1;
  -webkit-transform: scale(1) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  transform: scale(1) matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  visibility: visible;
}

@media (max-width: 749px) {
  .sp-modal-backdrop--visible .sp-modal {
    -webkit-transform: scale(1) translateX(-50%);
    transform: scale(1) translateX(-50%);
  }
}

.sp-modal--hidden .sp-modal {
  opacity: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.2, 0.9, 0.3, 1);
  transition: all 0.2s cubic-bezier(0.2, 0.9, 0.3, 1);
  -webkit-transform: scale(0.1) matrix3d(1, 0, 0, 0, 0, 0.8, 0.5, -0.002, 0, -0.4, 0.8, 0, 0, 0, 0, 1);
  transform: scale(0.1) matrix3d(1, 0, 0, 0, 0, 0.8, 0.5, -0.002, 0, -0.4, 0.8, 0, 0, 0, 0, 1);
}

@media (max-width: 749px) {
  .sp-modal--hidden .sp-modal {
    -webkit-transform: scale(1) translateX(-50%);
    transform: scale(1) translateX(-50%);
  }
}

.sp-modal::before {
  background: #dddddd;
  background: linear-gradient(45deg, white 0%, #ddd 50%);
  border-radius: 4px;
  content: '';
  display: block;
  height: 25px;
  left: 2px;
  margin-left: -8px;
  position: absolute;
  top: 1.8em;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 25px;
}

@media (max-width: 749px) {
  .sp-modal::before {
    display: none;
  }
}

.sp-modal::after {
  -webkit-box-shadow: 0 19px 47px rgba(0,0,0,0.35);
  box-shadow: 0 19px 47px rgba(0,0,0,0.35);
  content: '';
  display: block;
  height: 100%;
  left: 5%;
  position: absolute;
  right: 5%;
  top: 0;
  width: 90%;
  z-index: -1;
}

.sp-modal__frame {
  -webkit-transition: height 0.2s cubic-bezier(0.2, 0.9, 0.3, 1);
  transition: height 0.2s cubic-bezier(0.2, 0.9, 0.3, 1);
  max-width: initial;
}

.sp-modal--top {
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
}

.sp-modal--top::before {
  background: linear-gradient(135deg, white 0%, #ddd 50%);
  left: 50%;
  bottom: -8px;
  margin-left: -12.5px;
  top: auto;
}

.sp-modal--center {
  left: 50%;
  top: 50%;
  position: fixed;
}

.sp-modal-backdrop--visible .sp-modal--center {
  -webkit-transition: opacity 0.3s 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);
  transition: opacity 0.3s 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin-left: 0;
}

.sp-modal--center::before {
  display: none;
}

.sp-modal--bottom-right,.sp-modal--bottom-left {
  -webkit-transform-origin: 95% 0%;
  transform-origin: 95% 0%;
}

.sp-modal--bottom-right::before,.sp-modal--bottom-left::before {
  background: linear-gradient(135deg, white 0%, #ddd 50%);
  left: auto;
  margin-left: -8px;
  right: 7px;
  top: -6px;
}

.sp-modal--bottom-right {
  -webkit-transform-origin: 5% 0%;
  transform-origin: 5% 0%;
}

.sp-modal__content {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.sp-modal__close {
  position: absolute;
  z-index: 2;
  top: 1em;
  right: 1em;
  height: 1em;
  width: 1em;
  color: #737373;
  -webkit-transition: color 0.3s cubic-bezier(0.3, 0, 0, 1);
  transition: color 0.3s cubic-bezier(0.3, 0, 0, 1);
}

.sp-modal__close:focus,.sp-modal__close:hover,.sp-modal__close:active {
  color: #545454;
}

@-webkit-keyframes sp-fade-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0.5em);
    transform: translateX(0.5em);
    visibility: hidden;
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    visibility: visible;
  }
}

@keyframes sp-fade-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0.5em);
    transform: translateX(0.5em);
    visibility: hidden;
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    visibility: visible;
  }
}

.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;
}

@media (max-width: 749px) {
  .review-block__inner {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.review-block__label {
  color: #737373;
  padding-right: 1.14286em;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 7em;
  -ms-flex: 0 1 7em;
  flex: 0 1 7em;
}

@media (max-width: 749px) {
  .review-block__label {
    padding-bottom: 0.28571em;
  }
}

.review-block__content {
  -webkit-box-flex: 5;
  -webkit-flex: 5;
  -ms-flex: 5;
  flex: 5;
  color: #333333;
  padding-right: 1.14286em;
}

@media (max-width: 749px) {
  .review-block__content {
    width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
  }
}

.review-block__link {
  max-width: 10em;
  font-size: 0.85714em;
}

.review-block__billing-address {
  margin-top: 0.25em;
}

.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;
}

.no-js .flag-selector,.no-anyflexbox .flag-selector {
  display: table;
}

.flag-selector::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -10px;
  height: 20px;
  border-left: 1px solid transparent;
}

.flag-selector--visible::after {
  border-left-color: #d9d9d9;
  -webkit-animation: scale-up 0.1s cubic-bezier(0, 0.34, 0.1, 0.98) forwards;
  animation: scale-up 0.1s cubic-bezier(0, 0.34, 0.1, 0.98) forwards;
}

.flag-selector--hidden {
  display: none;
}

.flag-selector--focus {
  background: rgba(52,131,56,0.25);
}

.flag-selector--focus::after {
  display: none;
}

.flag-selector__caret {
  display: block;
  margin-left: 0.5em;
}

.no-js .flag-selector__caret,.no-anyflexbox .flag-selector__caret {
  display: table-cell;
  vertical-align: middle;
}

.flag-selector--visible .flag-selector__caret {
  -webkit-animation: fade-in 0.2s cubic-bezier(0, 0.34, 0.1, 0.98) forwards;
  animation: fade-in 0.2s cubic-bezier(0, 0.34, 0.1, 0.98) forwards;
}

.flag-selector--focus .flag-selector__caret {
  fill: #348338;
}

.flag-selector__icon {
  height: 20px;
  width: 27px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 2px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-filter: saturate(1.3) hue-rotate(-5deg);
  filter: saturate(1.3) hue-rotate(-5deg);
  opacity: 0;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

.no-js .flag-selector__icon,.no-anyflexbox .flag-selector__icon {
  display: table-cell;
  vertical-align: middle;
}

.flag-selector--visible .flag-selector__icon {
  -webkit-animation: scale-up-bounce 0.2s cubic-bezier(0, 0.34, 0.1, 0.98) forwards;
  animation: scale-up-bounce 0.2s cubic-bezier(0, 0.34, 0.1, 0.98) forwards;
}

.flag-selector--hidden .flag-selector__icon {
  -webkit-animation: scale-down-bounce 0.2s cubic-bezier(0.57, 0.31, 0.42, 0.91) forwards;
  animation: scale-down-bounce 0.2s cubic-bezier(0.57, 0.31, 0.42, 0.91) forwards;
}

.flag-selector__select {
  background-color: inherit;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.placeholder-line {
  height: 1em;
  border-radius: 4px;
  border: 1px solid transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #e6e6e6;
}

.placeholder-line+.placeholder-line {
  margin-top: 0.5em;
}

.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%;
}

.checkout-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%);
}

.sidebar .placeholder-line--animated {
  background-image: -webkit-gradient(linear, right top, left top, from(#e1e1e1), color-stop(50%, #c8c8c8), to(#e1e1e1));
  background-image: linear-gradient(to left, #e1e1e1 0%, #c8c8c8 50%, #e1e1e1 100%);
}

.content-box .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%);
}

.default-background .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%);
}

.placeholder-line--loose-vertical+.placeholder-line--loose-vertical {
  margin-top: 1em;
}

.placeholder-line--40 {
  width: 40%;
}

.placeholder-line--45 {
  width: 45%;
}

.placeholder-line--50 {
  width: 50%;
}

.placeholder-line--60 {
  width: 60%;
}

.placeholder-line--70 {
  width: 70%;
}

.placeholder-line--75 {
  width: 75%;
}

.placeholder-line--90 {
  width: 90%;
}

.placeholder-line--100 {
  width: 100%;
}

@-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;
  }
}

.skip-to-content {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: white;
  text-align: center;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip: rect(1px 1px 1px 1px);
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
  margin: -1px;
}

.skip-to-content:focus {
  margin: 0;
  padding: 1em;
  clip: auto;
  width: 100%;
  height: auto;
  overflow: visible;
}

.tags-list {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.tags-list .tag {
  margin-top: 0.85714em;
  margin-right: 0.85714em;
}

.tags-list .tag:last-child {
  margin-right: 0;
}

@media (min-width: 1000px) {
  .tags-list {
    float: left;
  }
}

.tag {
  border-radius: 4px;
  background-color: rgba(113,113,113,0.11);
  color: #717171;
  font-size: 0.85714em;
  padding: 0.85714em;
  overflow: hidden;
}

.tag__wrapper {
  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;
  width: 100%;
}

.tag__text {
  color: #323232;
  font-size: 1.14286em;
  font-weight: 500;
  overflow: hidden;
  display: inline-block;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tag__button {
  margin-left: 0.85714em;
}

.tag__button .icon-svg {
  stroke: rgba(113,113,113,0.9);
}

.tag__button:hover .icon-svg,.tag__button:focus .icon-svg {
  stroke: #323232;
}

.list {
  padding-left: 1.5em;
  list-style: disc outside;
  line-height: 1.5em;
}

.list+.list {
  margin-top: 1.5em;
}

.list__item>.list {
  margin-top: 0.5em;
}

.list__item {
  margin-top: 0.5em;
}

.list__item:first-child {
  margin-top: 0;
}

.tabs__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.tabs__item {
  width: 100%;
}

.tabs__button {
  width: 100%;
  height: 100%;
  padding: 1.14286em;
  -webkit-box-shadow: inset 0 -3px 0 0 #d9d9d9;
  box-shadow: inset 0 -3px 0 0 #d9d9d9;
  color: #737373;
  font-weight: 500;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  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: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.tabs__button:hover {
  -webkit-box-shadow: inset 0 -3px 0 0 #919191;
  box-shadow: inset 0 -3px 0 0 #919191;
  color: #545454;
}

.tabs__button>* {
  pointer-events: none;
}

.tabs__button--active,.tabs__button--active:hover {
  -webkit-box-shadow: inset 0 -3px 0 0 #348338;
  box-shadow: inset 0 -3px 0 0 #348338;
  color: #348338;
}

.page--stock-problems.page--logo-main .breadcrumb,.page--stock-problems.page--logo-sidebar .checkout-main__header,.page--stock-problems.page--logo-banner .checkout-main__header {
  display: none;
}

.stock-problem-table {
  border-bottom: 1px solid #e6e6e6;
}

.exclamation-mark {
  color: #737373;
  fill: currentColor;
  stroke: currentColor;
}

.exclamation-mark__circle {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transform-origin: 50% 50% 0;
  transform-origin: 50% 50% 0;
}

.cssanimations .exclamation-mark__circle {
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  -webkit-animation: draw-stroke 0.6s 0.4s cubic-bezier(0.3, 0, 0, 1) forwards;
  animation: draw-stroke 0.6s 0.4s cubic-bezier(0.3, 0, 0, 1) forwards;
}

.cssanimations .exclamation-mark__line {
  stroke-dasharray: 18;
  stroke-dashoffset: 18;
  -webkit-animation: draw-stroke 0.3s 0.8s cubic-bezier(0.3, 0, 0, 1) forwards;
  animation: draw-stroke 0.3s 0.8s cubic-bezier(0.3, 0, 0, 1) forwards;
}

.exclamation-mark__dot {
  -webkit-transform-origin: 50% 50% 0;
  transform-origin: 50% 50% 0;
}

.cssanimations .exclamation-mark__dot {
  -webkit-animation: scale-up 0.3s 1.01s cubic-bezier(0.3, 0, 0, 1) both;
  animation: scale-up 0.3s 1.01s cubic-bezier(0.3, 0, 0, 1) both;
}

.os-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
}

@media (min-width: 750px) {
  .os-header {
    margin: 0 0 -0.5em;
  }
}

.os-header__heading {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.os-order-number {
  display: block;
  margin-bottom: 0.25em;
}

.os-header__title {
  font-size: 1.57143em;
}

.os-header__hanging-icon {
  margin-right: 0.75em;
  stroke: #348338;
}

@media (min-width: 750px) and (max-width: 999px) {
  .os-header__hanging-icon {
    position: absolute;
    right: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-right: 1.5em;
  }
}

@media (min-width: 1300px) {
  .os-header__hanging-icon {
    position: absolute;
    right: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-right: 1.5em;
  }
}

.map {
  overflow: hidden;
}

.content-box__row:first-child .map {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.map__iframe {
  display: block;
  height: 200px;
  width: calc(100% + 1px);
  border: 0;
  z-index: 0;
}

.map__placeholder {
  height: 200px;
  width: 100%;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.gm-style .gm-style-iw {
  color: #333333;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.5em;
  font-weight: 400;
  padding-top: 5px;
  text-align: center;
  width: 100%;
}

.gm-style .gm-style-iw+div {
  display: none;
}

.os-timeline {
  margin: 0;
  padding: 0;
}

.os-timeline-step__title {
  display: block;
  color: #737373;
}

.os-timeline-step__date {
  display: none;
}

.os-timeline-step--selected .os-timeline-step__icon {
  fill: #348338;
}

.os-timeline-step--selected .os-timeline-step__title {
  color: #348338;
  font-weight: 500;
}

.os-timeline-step--selected .os-timeline-step__date {
  display: block;
  font-size: 0.85714em;
  color: #737373;
}

@media (max-width: 749px) {
  .os-timeline-step:not(.os-timeline-step--current) {
    display: none;
  }

  .os-timeline-step {
    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;
  }

  .os-timeline-step__title {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}

@media (min-width: 750px) {
  .os-timeline {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    overflow: hidden;
  }

  .os-timeline-step {
    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-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;
    text-align: center;
    max-width: 25%;
    position: relative;
    padding-top: 20px;
  }

  .os-timeline-step:before,.os-timeline-step:after {
    content: "";
    display: block;
    height: 2px;
    position: absolute;
    top: 8.5px;
    right: 50%;
  }

  .os-timeline-step:before {
    background: #e6e6e6;
    width: 2000px;
  }

  .os-timeline-step:first-child:after {
    background: #fff;
    left: 0;
    z-index: 2;
  }

  .os-timeline-step__icon {
    fill: #b3b3b3;
    background: #fff;
    background: #fff;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 3;
  }

  .os-timeline-step__title {
    display: block;
    color: #737373;
  }

  .os-timeline-step__date {
    display: none;
  }

  .os-timeline-step--selected:before {
    background: #348338;
    z-index: 1;
  }

  .os-timeline-step--selected .os-timeline-step__icon {
    fill: #348338;
  }

  .os-timeline-step--selected .os-timeline-step__title {
    color: #348338;
    font-weight: 500;
  }

  .os-timeline-step--selected .os-timeline-step__date {
    display: block;
  }
}

.os-step__info {
  margin-top: 1em;
}

.os-step__info-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;
  margin-top: 0.75em;
}

.os-step__special-description+.os-step__special-description {
  border-top: 1px #e6e6e6 solid;
  margin-top: 1.5em;
  padding-top: 1.5em;
}

.tracking-info {
  border-top: 1px solid #e6e6e6;
  margin-top: 1.14286em;
  padding-top: 1.14286em;
}

.tracking-info__number {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  color: #737373;
}

.shipment-information {
  padding: 1em;
}

.shipment-information__items td {
  padding-top: 1em;
}

.shipment-information__item:first-child td {
  padding-top: 0;
}

.shipment-information__image {
  width: 2.5em;
}

.shipment-information__image .product-thumbnail {
  width: 2.5em;
  height: 2.5em;
  border-right: 6px;
}

.shipment-information__image .product-thumbnail__wrapper {
  border-right: 6px;
}

.shipment-information__image .product-thumbnail__quantity {
  font-size: 11px;
  top: -0.65em;
  padding: 0 0.55em;
}

.arrive-phone-description {
  margin: 8px 0 6px;
  color: #545454;
  font-size: 0.85714em;
  line-height: 135%;
}

.checkout-bopis-float-selections {
	float: right;
}
