/*
// .address-card
*/
.address-card {
  position: relative;
}

.address-card__badge {
  position: absolute;
  background-color: #002831;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 4px 8px 2px;
  top: -2px;
}

[dir=ltr] .address-card__badge {
  right: .75rem;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}

[dir=rtl] .address-card__badge {
  left: .75rem;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
}

.address-card__body {
  padding: 1.5rem;
  font-size: 15px;
  line-height: 18px;
}

.address-card__name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 1.125rem;
}

.address-card__row + .address-card__row {
  margin-top: .75rem;
}

.address-card__row-title {
  font-size: 12px;
  color: #999;
}

.address-card__footer {
  margin-top: 1.625rem;
}

.address-card--featured .address-card__body {
  padding: 2rem;
}

.address-card--featured .address-card__name {
  font-weight: 700;
}

@media (min-width: 768px) and (max-width: 991px) {
  .address-card--featured .address-card__body {
    padding: 1.5rem;
  }
}

@media (max-width: 767px) {
  .address-card--featured .address-card__body {
    padding: 1.375rem;
  }
}

/*
// .addresses-list
*/
.addresses-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.addresses-list__item {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.addresses-list__item--new {
  border-radius: 2px;
  border: 2px dashed #ebebeb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2rem;
}

.addresses-list__divider:last-child {
  display: none;
}

.addresses-list__plus {
  width: 60px;
  height: 60px;
  border: 2px dashed #ebebeb;
  position: relative;
  border-radius: 30px;
  margin-bottom: 24px;
  -webkit-transition: border-color .2s;
  transition: border-color .2s;
}

.addresses-list__plus::before, .addresses-list__plus::after {
  content: '';
  position: absolute;
  width: 32px;
  height: 4px;
  background-color: #e5e5e5;
  border-radius: 1.5px;
  top: calc(50% - 2px);
  -webkit-transition: background-color .2s;
  transition: background-color .2s;
}

[dir=ltr] .addresses-list__plus::before, [dir=ltr] .addresses-list__plus::after {
  left: calc(50% - 16px);
}

[dir=rtl] .addresses-list__plus::before, [dir=rtl] .addresses-list__plus::after {
  right: calc(50% - 16px);
}

.addresses-list__plus::after {
  -webkit-transform: rotateZ(90deg);
          transform: rotateZ(90deg);
}

.addresses-list__item--new:hover .addresses-list__plus {
  border-color: #e0e0e0;
}

.addresses-list__item--new:hover .addresses-list__plus::before, .addresses-list__item--new:hover .addresses-list__plus::after {
  background-color: #dbdbdb;
}

@media (min-width: 1200px) {
  .addresses-list__item {
    max-width: calc((100% - 32px) / 3);
  }
  .addresses-list__divider:nth-child(2n) {
    width: 16px;
  }
  .addresses-list__divider:nth-child(6n) {
    width: 100%;
    height: 16px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .addresses-list__item {
    max-width: calc((100% - 24px) / 3);
  }
  .addresses-list__divider:nth-child(2n) {
    width: 12px;
  }
  .addresses-list__divider:nth-child(6n) {
    width: 100%;
    height: 12px;
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .addresses-list__item {
    max-width: calc((100% - 12px) / 2);
  }
  .addresses-list__divider:nth-child(2n) {
    width: 12px;
  }
  .addresses-list__divider:nth-child(4n) {
    width: 100%;
    height: 12px;
  }
}

@media (max-width: 479px) {
  .addresses-list__item {
    max-width: calc((100% - 0px) / 1);
  }
  .addresses-list__divider:nth-child(2n) {
    width: 12px;
  }
  .addresses-list__divider:nth-child(2n) {
    width: 100%;
    height: 12px;
  }
}

/*
// .card
*/
.card {
  border: 2px solid #f0f0f0;
  border-radius: 2px;
}

.card-body {
  padding: 2rem;
}

.card-header,
.card-footer {
  padding: 1.5rem 2rem;
  border-top: none;
  border-bottom: none;
  background-color: transparent;
}

.card-header h1, .card-header h2, .card-header h3, .card-header h4, .card-header h5, .card-header h6,
.card-footer h1,
.card-footer h2,
.card-footer h3,
.card-footer h4,
.card-footer h5,
.card-footer h6 {
  margin-bottom: 0;
}

.card-title {
  margin-bottom: 1.75rem;
}

.card-title h1, .card-title h2, .card-title h3, .card-title h4, .card-title h5, .card-title h6 {
  margin-bottom: 0;
}

.card-divider {
  height: 2px;
  background: #f0f0f0;
}

.card-body .card-title:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) and (max-width: 991px) {
  .card-header,
  .card-footer {
    padding: 1.25rem 1.5rem;
  }
  .card-title {
    font-size: 26px;
    margin-bottom: 1.5rem;
  }
  .card-body {
    padding: 1.5rem;
  }
}

@media (max-width: 767px) {
  .card-header,
  .card-footer {
    padding: 1rem 1.375rem;
  }
  .card-title {
    font-size: 26px;
    margin-bottom: 1.5rem;
  }
  .card-body {
    padding: 1.375rem;
  }
}



/*
// .cart
*/
.cart__actions {
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.cart__coupon-form {
  width: calc(50% - 15px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cart__coupon-form .btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

[dir=ltr] .cart__coupon-form .btn {
  margin-left: .5rem;
}

[dir=rtl] .cart__coupon-form .btn {
  margin-right: .5rem;
}

.cart__buttons {
  width: calc(50% - 15px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

[dir=ltr] .cart__update-button {
  margin-left: .5rem;
}

[dir=rtl] .cart__update-button {
  margin-right: .5rem;
}

.cart__totals {
  font-size: 16px;
  line-height: 20px;
  width: 100%;
  margin-bottom: 40px;
}

.cart__totals a:hover {
  text-decoration: underline;
}

.cart__totals th, .cart__totals td {
  vertical-align: top;
  padding: 6px 0;
}

.cart__totals th {
  font-weight: 700;
}

[dir=ltr] .cart__totals tr > :first-child {
  padding-right: 20px;
}

[dir=rtl] .cart__totals tr > :first-child {
  padding-left: 20px;
}

[dir=ltr] .cart__totals tr > :last-child {
  text-align: right;
}

[dir=rtl] .cart__totals tr > :last-child {
  text-align: left;
}

.cart__totals-header tr:last-child > * {
  padding-bottom: 10px;
}

.cart__totals-body tr:first-child > * {
  padding-top: 20px;
  border-top: 1px solid #ebebeb;
}

.cart__totals-body tr:last-child > * {
  padding-bottom: 20px;
  border-bottom: 1px solid #ebebeb;
}

.cart__totals-footer {
  font-size: 24px;
}

.cart__totals-footer th {
  font-weight: 500;
}

.cart__totals-footer tr:first-child > * {
  padding-top: 20px;
}

.cart__calc-shipping {
  margin-top: 2px;
  font-size: 15px;
}

@media (max-width: 767px) {
  .cart__actions {
    margin-top: 1.5rem;
    display: block;
  }
  .cart__coupon-form {
    width: 100%;
  }
  .cart__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 2.5rem;
    width: 100%;
  }
  .cart__update-button {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: .75rem;
  }
  [dir=ltr] .cart__update-button {
    margin-left: 0;
  }
  [dir=rtl] .cart__update-button {
    margin-right: 0;
  }
}

@media (max-width: 479px) {
  .cart__checkout-button {
    font-size: 1.125rem;
    height: calc(2.75rem + 2px);
    padding: .8125rem 2rem;
    line-height: 1;
    font-weight: 500;
  }
  .cart__checkout-button.btn-svg-icon {
    width: calc(2.75rem + 2px);
  }
}

@media (max-width: 379px) {
  .cart__checkout-button {
    font-size: 1rem;
    height: calc(2.25rem + 2px);
    line-height: 1.5;
    padding: .375rem 1.25rem;
    font-weight: 500;
  }
  .cart__checkout-button.btn-svg-icon {
    width: calc(2.25rem + 2px);
  }
}




/*
// .cart-table
*/
.cart-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.cart-table__product-name {
  color: inherit;
}

.cart-table__options {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  font-size: 14px;
  color: #999;
  line-height: 19px;
}

.cart-table__options li {
  position: relative;
}

.cart-table__options li {
  padding-left: 12px;
}

[dir=rtl] .cart-table__options li {
  padding-right: 12px;
}

.cart-table__options li::before {
  content: '';
  display: block;
  position: absolute;
  top: 7px;
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background: currentColor;
}

.cart-table__options li::before {
  left: 1px;
}

[dir=rtl] .cart-table__options li::before {
  right: 1px;
}

@media (min-width: 768px) {
  .cart-table__column {
    padding: 12px 18px;
    border-top: 1px solid #ebebeb;
  }
  .cart-table__column:first-child {
    border-left: 1px solid #ebebeb;
  }
  [dir=rtl] .cart-table__column:first-child {
    border-right: 1px solid #ebebeb;
  }
  .cart-table__column:last-child {
    border-right: 1px solid #ebebeb;
  }
  [dir=rtl] .cart-table__column:last-child {
    border-left: 1px solid #ebebeb;
  }
  .cart-table__head {
    background: #f7f7f7;
    font-size: 15px;
  }
  .cart-table__head .cart-table__column {
    font-weight: 500;
  }
  .cart-table__head .cart-table__column:first-child {
    border-top-left-radius: 2.5px;
  }
  [dir=rtl] .cart-table__head .cart-table__column:first-child {
    border-top-right-radius: 2.5px;
  }
  .cart-table__head .cart-table__column:last-child {
    border-top-right-radius: 2.5px;
  }
  [dir=rtl] .cart-table__head .cart-table__column:last-child {
    border-top-left-radius: 2.5px;
  }
  .cart-table__body .cart-table__column {
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .cart-table__body .cart-table__row:last-child .cart-table__column {
    border-bottom: 1px solid #ebebeb;
  }
  .cart-table__body .cart-table__row:last-child .cart-table__column:first-child {
    border-bottom-left-radius: 2.5px;
  }
  [dir=rtl] .cart-table__body .cart-table__row:last-child .cart-table__column:first-child {
    border-bottom-right-radius: 2.5px;
  }
  .cart-table__body .cart-table__row:last-child .cart-table__column:last-child {
    border-bottom-right-radius: 2.5px;
  }
  [dir=rtl] .cart-table__body .cart-table__row:last-child .cart-table__column:last-child {
    border-bottom-left-radius: 2.5px;
  }
  .cart-table__column--image {
    width: 1px;
    text-align: center;
  }
  .cart-table__column--image img {
    width: 80px;
  }
  .cart-table__column--price {
    width: 170px;
  }
  .cart-table__column--price {
    text-align: right;
  }
  [dir=rtl] .cart-table__column--price {
    text-align: left;
  }
  .cart-table__column--quantity {
    text-align: center;
    width: 1px;
  }
  .cart-table__column--quantity {
    padding-left: 90px;
  }
  [dir=rtl] .cart-table__column--quantity {
    padding-right: 90px;
  }
  .cart-table__column--total {
    width: 170px;
  }
  .cart-table__column--total {
    text-align: right;
  }
  [dir=rtl] .cart-table__column--total {
    text-align: left;
  }
  .cart-table__column--remove {
    width: 1px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .cart-table__column--quantity {
    padding-left: 40px;
  }
  [dir=rtl] .cart-table__column--quantity {
    padding-right: 40px;
  }
  .cart-table__column--price,
  .cart-table__column--total {
    width: 130px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .cart-table__column--quantity {
    padding-left: 0;
    padding-right: 0;
  }
  [dir=rtl] .cart-table__column--quantity {
    padding-right: 0;
    padding-left: 0;
  }
  .cart-table__column--price,
  .cart-table__column--total {
    width: 1px;
  }
  .cart-table__column--remove {
    padding-left: 0;
  }
  [dir=rtl] .cart-table__column--remove {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .cart-table {
    display: block;
  }
  .cart-table__head {
    display: none;
  }
  .cart-table__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .cart-table__row {
    position: relative;
    width: 100%;
    display: block;
    border: 1px solid #ebebeb;
    border-radius: 2px;
  }
  .cart-table__row + .cart-table__row {
    margin-top: 15px;
  }
  .cart-table__column {
    display: block;
    padding: 0;
  }
  .cart-table__column--image {
    padding: 20px 20px 10px;
    text-align: center;
  }
  .cart-table__column--image img {
    width: 100%;
    max-width: 160px;
  }
  .cart-table__column--product {
    text-align: center;
    border-bottom: 1px solid #ebebeb;
    padding: 0 20px 18px;
  }
  .cart-table__column--price,
  .cart-table__column--quantity,
  .cart-table__column--total {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 8px 20px;
  }
  .cart-table__column--price::before,
  .cart-table__column--quantity::before,
  .cart-table__column--total::before {
    font-weight: 500;
    width: 55%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    content: attr(data-title) ": ";
  }
  .cart-table__column--price::before, [dir=ltr]
  .cart-table__column--quantity::before, [dir=ltr]
  .cart-table__column--total::before {
    text-align: right;
  }
  [dir=rtl] .cart-table__column--price::before, [dir=rtl]
  .cart-table__column--quantity::before, [dir=rtl]
  .cart-table__column--total::before {
    text-align: left;
  }
  .cart-table__column--quantity .input-number {
    width: 110px;
  }
  .cart-table__column--price {
    padding-top: 18px;
  }
  .cart-table__column--total {
    padding-bottom: 18px;
  }
  .cart-table__column--remove {
    position: absolute;
    top: 5px;
  }
  .cart-table__column--remove {
    right: 5px;
  }
  [dir=rtl] .cart-table__column--remove {
    left: 5px;
  }
  .cart-table__options li::before {
    display: none;
  }
}


.btn-xs {
    font-size: 10px;
    height: calc(1.5rem + 2px);
    line-height: 1.25;
    padding: 10px 10px;
    font-weight: 500;
}



/*
// .checkout
*/
.checkout__totals {
  font-size: 15px;
  line-height: 19px;
  width: 100%;
  margin-bottom: 40px;
}

.checkout__totals th, .checkout__totals td {
  padding: 4px 0;
}

.checkout__totals th {
  font-weight: 700;
}

[dir=ltr] .checkout__totals tr > :first-child {
  padding-right: 20px;
}

[dir=rtl] .checkout__totals tr > :first-child {
  padding-left: 20px;
}

.checkout__totals tr > :last-child {
  white-space: nowrap;
}

[dir=ltr] .checkout__totals tr > :last-child {
  text-align: right;
}

[dir=rtl] .checkout__totals tr > :last-child {
  text-align: left;
}

.checkout__totals-header tr:last-child > * {
  padding-bottom: 10px;
}

.checkout__totals-products tr:first-child > * {
  padding-top: 20px;
  border-top: 1px solid #ebebeb;
}

.checkout__totals-products tr:last-child > * {
  padding-bottom: 20px;
  border-bottom: 1px solid #ebebeb;
}

.checkout__totals-subtotals tr:first-child > * {
  padding-top: 20px;
}

.checkout__totals-subtotals tr:last-child > * {
  padding-bottom: 20px;
  border-bottom: 1px solid #ebebeb;
}

.checkout__totals-footer {
  font-size: 24px;
}

.checkout__totals-footer th {
  font-weight: 500;
}

.checkout__totals-footer tr:first-child > * {
  padding-top: 20px;
}

.payment-methods {
  margin-bottom: 30px;
}

.payment-methods__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.payment-methods__item {
  border-radius: 2px;
  background: transparent;
  border: 1px solid #e5e5e5;
}

.payment-methods__item:hover {
  background: #f7f7f7;
  border: 1px solid #e5e5e5;
}

.payment-methods__item + .payment-methods__item {
  margin-top: 6px;
}

.payment-methods__item-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .01em;
  cursor: pointer;
  margin-bottom: 0;
}

[dir=ltr] .payment-methods__item-radio {
  margin-right: 10px;
}

[dir=rtl] .payment-methods__item-radio {
  margin-left: 10px;
}

.payment-methods__item-container {
  overflow: hidden;
  height: 0;
  -webkit-transition: height .2s;
  transition: height .2s;
}

.payment-methods__item-description {
  font-size: 15px;
  line-height: 20px;
  padding: 2px 16px 13px 16px;
}

.payment-methods__item--active, .payment-methods__item--active:hover {
  background: #f7f7f7;
  border: 1px solid #e5e5e5;
}

.payment-methods__item--active .payment-methods__item-container {
  height: auto;
}

.checkout__agree {
  margin-bottom: 36px;
}

.checkout__agree a:hover {
  text-decoration: underline;
}