/**
 * TABLE OF CONTENTS
 *
 * SETTINGS
 * Global..................Globally-available variables and config.
 *
 * TOOLS
 * Mixins..................Useful mixins.
 *
 * COMPONENTS
 * 
 * 
 * MODULES
 *
 */
/*------------------------------------*\
  #SETTINGS
\*------------------------------------*/
/**
 * Returns the value of the `$key` value of a provided `$map`.
 */
/**
 * Uses `getProperty()` to return a value from the `$colors` map.
 */
/**
 * Uses `getProperty()` to return a value from the `$breakpoints` map.
 */
/*------------------------------------*\
  #TYPOGRAPHY
\*------------------------------------*/
/*------------------------------------*\
  #COLORS
\*------------------------------------*/
/*------------------------------------*\
  #ELEMENT-DEFAULTS
\*------------------------------------*/
/*------------------------------------*\
  #HEADER-DEFAULTS
\*------------------------------------*/
/*------------------------------------*\
  #HORIZONTAL-SPACING
\*------------------------------------*/
/*------------------------------------*\
  #BREAKPOINTS
\*------------------------------------*/
/*------------------------------------*\
  #TRANSITIONS
\*------------------------------------*/
/*------------------------------------*\
  #TOOLS
\*------------------------------------*/
/**
 * Responsive Mixin
 * This mixin is designed for a _cleaner_ first approach
 * This means that css isn't overridden but rather replaced for
 * different viewport widths; making it easier to inspect/debug css
 *
 * Usage:
 * @include media-query(exclude-medium)    { ... }
 * @include media-query(medium-up-to-site) 	   { ... }
 * ... etc
 */
/**
 * [Adds styles to allow an element's height scale proportionatelly]
 * @param  {[Number]} $width
 * @param  {[Number]} $height
 */
/**
 * [Calculates the percentage aspect ratio (what % height is compared to the width)]
 * @param  {[Number]} $width
 * @param  {[Number]} $height
 * @return {[Number(%)]}
 */
/**
 * *****REMEMBER TO USE MARGIN OR PADDING AND NOT TOP/BOTTOM******
 * [Calculates the center of an element in relation to a provided width and height.
 * Useful to place an absolute element at the center of another when
 * the positioned element cannot be the target's child ]
 * @param  {[Number]} $width
 * @param  {[Number]} $height
 * @return {[Number(%)]}
 */
/**
 * [In the  awful case you can't use Flexbox to vertically align something]
 * @param  {[type]} $transform:       false         [Use transforms to align instead of the absolute trick]
 * @param  {[type]} $pos:             absolute      [position type]
 * @param  {[type]} $posAdj:          0             [position adjustment. If $transform is true, this value only affects the 'top' property.]
 * @param  {[type]} $alignHorizontal: false         [Includes horizontal alignment]
 */
/**
 * Generate Enumerated Class
 * Iterates from 0 to the specified length and generates classes that set the specified property
 * @param  {[String]} $classname:       required      [Required: Specify the class name]
 * @param  {[String]} $property:        $classname    [Optional: Specify the enumerated property (if it's different from the name of the class)]
 * @param  {[Number]} $length:          10            [Optional: Specify the end of the loop]
 * @param  {[String]} $units:           null          [Optional: specify units to append to the enumerated property]
 */
/**
 * [Strip the pesky units from values]
 * @param  {[Number]} $value
 */
/**
 * [Fluid Type]
 */
/*------------------------------------*\
  #EXTERNALS
\*------------------------------------*/
label.store-locator__result-content a.link.link--underline-hover.store-hours {
  text-decoration: underline; }

.store-locator__detect-location {
  margin-top: 2rem;
  margin-bottom: 2rem; }

.store-locator__result-check:checked + .store-locator__result-content {
  background-color: #E6E9ED; }

.store-locator__result-content {
  display: block;
  padding: 1.25rem 0; }
  .store-locator__result-content:hover {
    cursor: pointer;
    background-color: #F6F6F8; }

.store-locator__results {
  overflow: auto; }
  .store-locator__results::-webkit-scrollbar {
    width: 8px;
    background-color: #f0f0f0;
    border-radius: 2px; }
  .store-locator__results::-webkit-scrollbar-thumb {
    width: 8px;
    background-color: #d5d5d5;
    border-radius: 2px; }

.store-locator__result-item {
  position: relative;
  border-bottom: solid 0.0625rem #E6E9ED; }

.store-locator__no-results {
  margin: auto; }

.store-locator__actions {
  padding-top: 1rem;
  padding-bottom: 1rem; }

.store-locator__container .product-pickup__selected {
  padding-left: 0; }

@media (min-width: 48rem) {
  .store-locator__results {
    max-height: 30rem; } }

@media (max-width: 47.9375rem) {
  .store-locator--modal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: inherit; }
    .store-locator--modal .store-locator__form {
      -ms-flex-negative: 0;
          flex-shrink: 0; }
    .store-locator--modal .store-locator__results {
      -ms-flex-negative: 1;
          flex-shrink: 1;
      max-height: none; }
    .store-locator--modal .store-locator__actions {
      margin-top: auto; }
  .store-locator__results {
    max-height: 22rem; } }

/*------------------------------------*\
  #COMPONENTS
\*------------------------------------*/
.free-gift-promo__description {
  font-size: 0.75rem; }

.free-gift-promo__icon {
  font-size: 5rem;
  margin: 0 auto 1rem; }

@media (max-width: 47.9375rem) {
  .free-gift-promo__cta {
    padding: 0.325em 1.5em; }
  .free-gift-promo__title {
    font-size: 0.875rem; } }

@media (min-width: 48rem) {
  .free-gift-promo__description {
    font-size: 0.875rem; } }

.cart__main {
  max-width: 105.25rem; }
  @media (max-width: 64rem) {
    .cart__main {
      padding: 0 1.25rem; } }

@media (max-width: 64rem) {
  .cart .cart-page-products {
    margin-bottom: 1.875rem; } }

.cart span.product-line-item__attribute-value {
  padding-left: 4px; }

.cart label.product-line-item__qty-label {
  width: 26px;
  color: #1e1e1e; }

@media (min-width: 48rem) {
  .cart .cart__items .product-line-item__attributes {
    margin: 15px 0 0 0; } }

.cart .cart__items .product-line-item__availability .product-line-item__attributes {
  font-size: 0.813rem;
  font-weight: 400;
  color: #ff5252;
  text-transform: uppercase;
  margin-top: 0; }
  @media (min-width: 48rem) {
    .cart .cart__items .product-line-item__availability .product-line-item__attributes {
      font-size: 1rem; } }

.cart .wishlist__items a.product-line-item__name.link {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%; }

.cart .wishlist__items .product-line-item__qty-pricing {
  margin-top: 0; }

.cart .product-pickup .product-pickup__selected {
  padding-left: 0; }

.cart .product-pickup button {
  font-size: 0.875rem;
  border: 0;
  padding: 0;
  text-decoration: underline;
  font-weight: bold; }
  .cart .product-pickup button:hover {
    background-color: transparent !important;
    border: 0;
    color: #1e1e1e !important; }

.cart .product-pickup .store-details--short p {
  font-size: 0.875rem;
  font-weight: normal; }

.cart .bundled-line-item .product-line-item__remove button[data-line-item-component="remove-action"] {
  margin-left: -3px; }

.cart .price-strike-promotion {
  padding: 25px 0 4px 0; }

.cart .cart-free-gift .icon {
  margin: -5px 10px 0 0;
  width: 18px;
  height: 20px; }

.cart .product-line-item__main.cart-wish {
  margin-bottom: 30px; }

.cart .empty-cart {
  font-size: 28px; }

.cart .cart-wishlist {
  margin-bottom: 30px; }
  @media (min-width: 48rem) {
    .cart .cart-wishlist {
      margin-top: 72px; } }
  .cart .cart-wishlist h1 {
    font-size: 28px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .cart .cart-wishlist span {
    margin-left: 16px;
    font-size: 14px; }

.cart .cart-wish .product-line-item__header {
  height: 50px;
  padding-top: 20px; }

.cart .wishlist__items button.slick-arrow {
  display: none !important; }

.cart .product-line-item__action {
  margin-right: 1.5rem;
  margin-bottom: 0; }

.cart section.promo-banner-list {
  padding: 0; }

@media (max-width: 47.9375rem) {
  .cart .product-line-item:last-child {
    border-bottom: none; } }

.cart .saveforlater {
  padding: 0;
  border: 0;
  margin-top: 2rem; }
  .cart .saveforlater .product-line-item__edit {
    visibility: hidden; }
  .cart .saveforlater .save-add .product-line-item__wishlist {
    visibility: hidden; }
  .cart .saveforlater .save-wishlis .save-wishlis-remove {
    visibility: hidden; }
  .cart .saveforlater span.price__sales.sales {
    font-weight: 500; }
  .cart .saveforlater a.product-line-item__name.link {
    position: relative;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%; }
  .cart .saveforlater .product-line-item__actions {
    margin-top: 0;
    white-space: nowrap; }
  .cart .saveforlater .save-add-to-bag {
    padding-left: 0; }
  .cart .saveforlater .product-line-item:not(:last-child) {
    border-bottom: 0; }
  .cart .saveforlater .saveforlater__header-title {
    font-size: 28px;
    margin: 0px 0 10px 0;
    text-align: center; }
    .cart .saveforlater .saveforlater__header-title span {
      color: #828282; }
  .cart .saveforlater ul.product-line-item__availability {
    display: none; }
  .cart .saveforlater p.line-item-pricing-info {
    display: none; }
  .cart .saveforlater .product-line-item__header {
    font-size: 0.875rem;
    margin-top: .75rem; }
  .cart .saveforlater button.slick-arrow {
    top: 30%; }
  .cart .saveforlater .price {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 0.875rem;
    -ms-flex-wrap: inherit;
        flex-wrap: inherit;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row; }
  .cart .saveforlater .save-add {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .cart .saveforlater .button--primary:hover:not([disabled]):not(.disabled) {
    text-transform: uppercase;
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: transparent;
    border-color: transparent;
    color: #B59862;
    font-weight: normal; }
  .cart .saveforlater .product-line-item__main {
    padding-left: 0.625rem;
    padding-right: 0.625rem; }

.cart .saveforlater__add-to-cart-cta {
  font-size: 1rem;
  letter-spacing: normal;
  width: 84%;
  margin: .5rem 0;
  text-transform: uppercase;
  padding: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: transparent;
  border-color: transparent;
  color: #B59862;
  font-weight: 500 !important; }

.cart .product-line-item__qty-pricing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; }

.cart .product-line-item__total-price {
  -webkit-box-orient: inherit;
  -webkit-box-direction: inherit;
      -ms-flex-direction: inherit;
          flex-direction: inherit; }
  .cart .product-line-item__total-price > p {
    display: none; }

.cart .cart__summary-container .cart__summary .cart__summary-section.cart__totals {
  padding: 1.3125rem 1.25rem;
  margin-bottom: 1.375rem;
  background-color: #EFEFEF;
  border: 1px solid #D5D5D5; }
  @media (max-width: 56rem) {
    .cart .cart__summary-container .cart__summary .cart__summary-section.cart__totals {
      padding: 1.3125rem 0.625rem 1.375rem; } }
  .cart .cart__summary-container .cart__summary .cart__summary-section.cart__totals .orderSummaryCheckout {
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    text-align: center;
    color: #000; }

.cart .product-line-item__qty-input {
  border: 0;
  height: 1.25rem;
  padding: 0 18px 0px 2px;
  cursor: pointer; }

.cart .product-line-item__qty-form {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 0px 3px 8px;
  background: #F5F5F5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .cart .product-line-item__qty-form .product-line-item__qty-label {
    color: #1e1e1e;
    margin-right: 5px; }
  .cart .product-line-item__qty-form.giftCertificateCart {
    display: none; }

.cart .product-line-item__attributes {
  margin: 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .cart .product-line-item__attributes .product-line-item__attribute-key {
    margin-right: 2px; }

.cart .cart__line-item .product-line-item__attributes {
  display: inline-block; }
  .cart .cart__line-item .product-line-item__attributes .product-line-item__attribute--color,
  .cart .cart__line-item .product-line-item__attributes .product-line-item__attribute--size {
    margin-right: 20px;
    margin-bottom: 0; }

.cart .cart__items-footer.row {
  display: none; }

.cart .fixit-placeholder {
  display: none; }

.cart ul li.product-line-item__attributes {
  border-radius: 4px;
  font-size: 14px;
  padding: 10px 0px 0 0;
  border: 0;
  margin-top: 0; }

.cart .product-line-item__main .price__original.text-decoration--strike.strike-through {
  padding-left: 1rem;
  letter-spacing: 2px; }

.cart .product-line-item__promotions {
  font-size: 0.875rem;
  color: #ff787d;
  padding-left: 1rem; }

.cart .product-line-item__quantity {
  padding-left: 0; }

.cart .product-availability__message {
  border: 1px solid #ff787d;
  border-radius: 3px;
  color: #ff787d;
  padding: 5px 10px;
  margin-left: 25px;
  line-height: normal; }

.cart .slider--dots-right .slick-dots {
  margin-top: 3rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.cart .cart__main .may-like h1 {
  font-size: 1.75rem;
  margin-bottom: 1.75rem;
  margin-top: 6.25rem;
  margin: auto; }

.cart .product-pickup__options > label {
  display: none; }

.cart .product-pickup__options .form-check-list__item:not(:last-child) {
  display: none; }

.cart .cart__items {
  border-top: solid .0625rem #fff; }
  @media (min-width: 48rem) {
    .cart .cart__items {
      border-bottom: solid 0.0625rem #eeeeee; } }

.cart .product-line-item__change {
  cursor: pointer; }

.cart__main .approaching-discounts__item {
  border: transparent;
  background-color: #fce689; }

.cart__main .slick-arrow {
  background: transparent; }

.cart__main button.slick-arrow.slick-next svg {
  visibility: hidden; }

.cart__main button.slick-arrow.slick-next:after {
  content: "";
  width: 40px;
  height: 40px;
  background: url(../images/rightarrow.svg) no-repeat;
  top: 16px;
  right: 15px;
  left: 0;
  position: absolute;
  display: inline-block; }

@media (max-width: 47.9375rem) {
  .cart__main button.slick-arrow.slick-next:after {
    visibility: hidden; } }

.cart__main button.slick-arrow.slick-prev svg {
  visibility: hidden; }

.cart__main button.slick-arrow.slick-prev:after {
  content: "";
  width: 40px;
  height: 40px;
  background: url(../images/rightarrow.svg) no-repeat;
  top: 16px;
  right: 0;
  left: 15px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  position: absolute;
  display: inline-block; }

@media (max-width: 47.9375rem) {
  .cart__main button.slick-arrow.slick-prev:after {
    visibility: hidden; } }

.cart .cart__summary-container {
  background: none;
  padding: 0; }

.cart[data-cart-component="cart-container"] {
  padding-top: 0;
  padding-bottom: 2.25rem;
  padding-top: 2.25rem; }
  .cart[data-cart-component="cart-container"] .cart__header {
    margin-bottom: 0; }

.cart__items-footer {
  padding-top: 1rem;
  padding-bottom: 1rem; }

.may-like section.product-list {
  padding: 0; }

@media (min-width: 48rem) {
  .product-line-item__qty-input {
    position: relative;
    top: 0; } }

.cart__empty-message.heading-type {
  display: none; }

@media (max-width: 47.9375rem) {
  .cart__line-item .icon-cart-three {
    margin: 10px 0 0 0; }
  .product-line-item__header {
    font-size: 0.875rem; }
  .cart__line-item .product-pickup {
    margin-top: 0.5rem; }
  .product-line-item__qty-pricing {
    margin-top: 0.3rem; }
  .cart .pricing.line-item-total-price-amount {
    padding-right: 6px; }
  .cart .product-line-item__promotions {
    padding-top: 4px; }
  .cart .product-line-item__action.product-line-item__saveforlater .product-line-item__saveforlater-add {
    font-size: 0.75rem; }
  .cart .product-line-item__qty-form .product-line-item__qty-label {
    margin-top: 1px;
    font-size: 0.75rem; }
  .cart .product-line-item__action {
    margin: 0 1rem 0 0;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end; }
  .cart .product-line-item__actions {
    margin-top: 0; }
  .save-add .save-wishlis-remove:after {
    left: -56px !important; }
  .saveforlater .save-wishlis .product-line-item__action.product-line-item__wishlist button.product-line-item__wishlist-remove:after {
    left: 83% !important; }
  .saveforlater .save-wishlis .product-line-item__action.product-line-item__wishlist button.product-line-item__wishlist-add:after {
    left: 83% !important; }
  .promotion-baner-desktop {
    display: none; }
  .product-pickup__options label.form-check-label--radio {
    margin: 10px 0 0 0;
    font-size: 0.75rem; }
  .cart .product-line-item__change, .cart .product-line-item__saveforlater {
    margin-right: 0;
    font-size: 0.75rem; }
  .cart .product-line-item__availability .product-line-item__attributes {
    font-size: 13px !important; }
  .cart .cart__items .product-line-item__attributes {
    font-size: 0.75rem;
    margin: 10px 0 0 0; }
  .cart .price-strike-promotion {
    margin: 7px 0 0 0;
    padding: 0px 0 4px 0; }
  .cart .cart-wish .product-line-item__unit-price {
    display: contents; }
  .cart .cart-wish .price {
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
    margin-left: 5px; }
  .cart .cart__main .may-like h1 {
    margin-top: 30px; }
  .cart .may-like .price {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row; }
  .cart ul li.product-line-item__attributes {
    font-size: 12px;
    padding: 2px 2px; }
  .cart .save-add .product-line-item__action.product-line-item__remove button.link--underline:after {
    left: -6px; }
  .cart .cart__summary-section.fixit-element--from-bottom.fixit--active {
    position: fixed;
    z-index: 1; }
  .cart .cart__summary-section.cart__totals {
    padding: 25px; }
  .cart .saveforlater__price-qty {
    margin-top: 0; }
    .cart .saveforlater__price-qty .price__sales.sales {
      font-weight: 500; }
  .cart .saveforlater__add-to-cart-cta {
    font-weight: bold;
    font-size: 0.75rem; }
  .cart .product-line-item__qty-input {
    height: 16px;
    width: 37px;
    padding: 0 18px 0 4px; }
  .cart .product-line-item__qty-form {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content; }
    .cart .product-line-item__qty-form .product-line-item__qty-label {
      margin-bottom: 0; }
  .cart .product-line-item__attributes {
    margin: 0;
    position: relative; }
  .cart .product-line-item__attribute--color {
    margin: 0 0 10px 0 !important;
    width: 100%; }
  .cart .product-line-item__promotions {
    padding-left: 0.7rem; }
  .cart .product-line-item__main .price__original.text-decoration--strike.strike-through {
    padding-left: 0; }
  .cart .product-list {
    padding: 0; }
  .cart .product-line-item__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .cart .cart__title {
    display: none; } }

.save-wishlis-remove {
  font-size: 0; }

.save-add .save-wishlis-remove {
  position: relative; }
  .save-add .save-wishlis-remove:after {
    content: "";
    width: 18px;
    height: 18px;
    background: url(../images/Trash.svg) no-repeat;
    top: -1px;
    right: 0;
    left: -32px;
    position: absolute;
    display: inline-block;
    background-size: contain; }

span.save-wishlis {
  position: relative; }

span.save-wishlis .product-line-item__actions {
  width: 100%;
  position: absolute; }

.saveforlater .save-wishlis .product-line-item__action.product-line-item__wishlist button.product-line-item__wishlist-remove {
  font-size: 0; }
  .saveforlater .save-wishlis .product-line-item__action.product-line-item__wishlist button.product-line-item__wishlist-remove:after {
    content: "";
    width: 26px;
    height: 23px;
    background: url(../images/wishlistfilled.svg) no-repeat;
    background-size: 20px;
    top: 10px;
    right: 0;
    left: 90%;
    position: absolute;
    display: inline-block; }

.saveforlater .save-wishlis .product-line-item__action.product-line-item__wishlist button.product-line-item__wishlist-add {
  font-size: 0; }
  .saveforlater .save-wishlis .product-line-item__action.product-line-item__wishlist button.product-line-item__wishlist-add:after {
    content: "";
    width: 20px;
    height: 20px;
    background: url(../images/heart.svg) no-repeat;
    top: 10px;
    right: 0;
    left: 90%;
    position: absolute;
    display: inline-block; }

.bg--bg-secondary {
  background-color: #fce689; }

.modal-loyalty__details .window-modal__content {
  min-height: auto; }

.your-cartempty {
  text-align: center; }
  .your-cartempty img {
    padding-top: 30px;
    margin: 0 auto; }
    @media (max-width: 47.9375rem) {
      .your-cartempty img {
        padding-top: 50px; } }
  .your-cartempty .empty-cart-page.heading-type {
    color: #000;
    font-size: 28px;
    margin: 20px 0 12px 0; }
    @media (max-width: 47.9375rem) {
      .your-cartempty .empty-cart-page.heading-type {
        font-size: 24px;
        margin: 24px 0 14px 0; } }
  .your-cartempty .empty-cart-pagetext {
    color: #27251F;
    margin-bottom: 22px;
    letter-spacing: 0.44px;
    font-size: 16px; }
    @media (max-width: 47.9375rem) {
      .your-cartempty .empty-cart-pagetext {
        font-size: 14px;
        width: 75%;
        margin: 0 auto; } }
  .your-cartempty a {
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 50px;
    color: #fff;
    width: 334px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    letter-spacing: 2px;
    margin: 0 auto; }
    @media (max-width: 47.9375rem) {
      .your-cartempty a {
        margin-top: 22px;
        width: 290px; } }

@media (min-width: 48rem) {
  .cart .product-line-item__qty-form {
    width: 77px;
    height: 28px; } }

.loyalty-text.loyalty-point-number {
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0.4px;
  color: #1e1e1e; }
  .loyalty-text.loyalty-point-number span {
    font-weight: 500; }

.product-line-item__attributes .productlineitemNoStock {
  position: absolute;
  left: 0;
  top: 130px; }

.cart__line-item img {
  width: 119px;
  height: auto; }
  @media (max-width: 47.9375rem) {
    .cart__line-item img {
      width: 104px; } }

.cart--empty h1 {
  font-size: 28px;
  margin: 60px 0 30px 0; }

span.cart-wishlist {
  margin-left: 16px;
  font-size: 14px; }
  @media (max-width: 47.9375rem) {
    span.cart-wishlist {
      display: block;
      margin-top: 10px !important;
      margin-bottom: 0px !important; } }

.cart-coupon,
.cart-promotion {
  margin-bottom: 1rem;
  padding: .75rem 1rem;
  border-radius: 0.125rem; }
  .cart-coupon:first-child,
  .cart-promotion:first-child {
    margin-top: 2rem; }

.cart-apply-coupon {
  background-color: #EFEFEF;
  border: 1px solid #D5D5D5;
  margin-bottom: 1.375rem;
  padding: 1.4375rem; }
  @media (max-width: 47.9375rem) {
    .cart-apply-coupon {
      padding: 0.625rem;
      margin-bottom: 2.25rem; } }
  .cart-apply-coupon .cart-apply-coupon-section {
    border-bottom: 0; }
    .cart-apply-coupon .cart-apply-coupon-section .couponCodeParent {
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin-bottom: 1.3125rem; }
      @media (max-width: 47.9375rem) {
        .cart-apply-coupon .cart-apply-coupon-section .couponCodeParent {
          margin-bottom: 0.4375rem; } }
      .cart-apply-coupon .cart-apply-coupon-section .couponCodeParent .couponIcon {
        background-image: url(../images/coupon.svg);
        width: 1.25rem;
        height: 1.25rem;
        position: absolute;
        left: 0.9375rem; }
      .cart-apply-coupon .cart-apply-coupon-section .couponCodeParent #couponCode {
        padding: 1.25rem 38% 1.25rem 3.125rem;
        background-color: #FFF;
        border: 1px solid #B7B7B7;
        font: 400 0.875rem/1.0625rem "Montserrat", Helvetica, Arial, sans-serif;
        color: #000;
        height: 3.75rem; }
        @media (max-width: 47.9375rem) {
          .cart-apply-coupon .cart-apply-coupon-section .couponCodeParent #couponCode {
            font: 400 0.625rem/0.75rem "Montserrat", Helvetica, Arial, sans-serif;
            height: 3.125rem; } }
        .cart-apply-coupon .cart-apply-coupon-section .couponCodeParent #couponCode::-webkit-input-placeholder {
          font: 400 0.875rem/1.0625rem "Montserrat", Helvetica, Arial, sans-serif;
          color: #B7B7B7;
          letter-spacing: 0; }
        .cart-apply-coupon .cart-apply-coupon-section .couponCodeParent #couponCode::-moz-placeholder {
          font: 400 0.875rem/1.0625rem "Montserrat", Helvetica, Arial, sans-serif;
          color: #B7B7B7;
          letter-spacing: 0; }
        .cart-apply-coupon .cart-apply-coupon-section .couponCodeParent #couponCode:-ms-input-placeholder {
          font: 400 0.875rem/1.0625rem "Montserrat", Helvetica, Arial, sans-serif;
          color: #B7B7B7;
          letter-spacing: 0; }
        .cart-apply-coupon .cart-apply-coupon-section .couponCodeParent #couponCode::-ms-input-placeholder {
          font: 400 0.875rem/1.0625rem "Montserrat", Helvetica, Arial, sans-serif;
          color: #B7B7B7;
          letter-spacing: 0; }
        .cart-apply-coupon .cart-apply-coupon-section .couponCodeParent #couponCode::placeholder {
          font: 400 0.875rem/1.0625rem "Montserrat", Helvetica, Arial, sans-serif;
          color: #B7B7B7;
          letter-spacing: 0; }
          @media (max-width: 47.9375rem) {
            .cart-apply-coupon .cart-apply-coupon-section .couponCodeParent #couponCode::-webkit-input-placeholder {
              font: 400 0.625rem/1.0625rem "Montserrat", Helvetica, Arial, sans-serif; }
            .cart-apply-coupon .cart-apply-coupon-section .couponCodeParent #couponCode::-moz-placeholder {
              font: 400 0.625rem/1.0625rem "Montserrat", Helvetica, Arial, sans-serif; }
            .cart-apply-coupon .cart-apply-coupon-section .couponCodeParent #couponCode:-ms-input-placeholder {
              font: 400 0.625rem/1.0625rem "Montserrat", Helvetica, Arial, sans-serif; }
            .cart-apply-coupon .cart-apply-coupon-section .couponCodeParent #couponCode::-ms-input-placeholder {
              font: 400 0.625rem/1.0625rem "Montserrat", Helvetica, Arial, sans-serif; }
            .cart-apply-coupon .cart-apply-coupon-section .couponCodeParent #couponCode::placeholder {
              font: 400 0.625rem/1.0625rem "Montserrat", Helvetica, Arial, sans-serif; } }
      .cart-apply-coupon .cart-apply-coupon-section .couponCodeParent #apply-coupon {
        position: absolute;
        right: 1.875rem;
        background-color: #B59862;
        padding: 0.25rem 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        text-transform: uppercase;
        font: 600 1rem/1.21875rem "Montserrat", Helvetica, Arial, sans-serif;
        color: #FFF;
        min-width: 6.6875rem;
        min-height: 1.8125rem; }
        @media (max-width: 47.9375rem) {
          .cart-apply-coupon .cart-apply-coupon-section .couponCodeParent #apply-coupon {
            font: 600 0.625rem/0.75rem "Montserrat", Helvetica, Arial, sans-serif;
            min-width: 4.375rem;
            min-height: 1.75rem;
            right: 0.625rem; } }
    .cart-apply-coupon .cart-apply-coupon-section .availaleOffers {
      color: #000;
      margin-bottom: 0.6875rem;
      display: inline-block;
      width: 100%;
      font-weight: 500; }
      @media (max-width: 47.9375rem) {
        .cart-apply-coupon .cart-apply-coupon-section .availaleOffers {
          margin-bottom: 0.5rem; } }
    .cart-apply-coupon .cart-apply-coupon-section .promoBlockParent {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      margin-bottom: 0.875rem; }
      .cart-apply-coupon .cart-apply-coupon-section .promoBlockParent .cart-coupon-error {
        display: none; }
        .cart-apply-coupon .cart-apply-coupon-section .promoBlockParent .cart-coupon-error.show {
          display: inline-block; }
      @media (max-width: 47.9375rem) {
        .cart-apply-coupon .cart-apply-coupon-section .promoBlockParent {
          margin-bottom: 0.4375rem; } }
      .cart-apply-coupon .cart-apply-coupon-section .promoBlockParent.active .promo-block {
        display: block; }
    .cart-apply-coupon .cart-apply-coupon-section .promo-block {
      display: none; }
      .cart-apply-coupon .cart-apply-coupon-section .promo-block:first-child {
        display: block; }
      .cart-apply-coupon .cart-apply-coupon-section .promo-block:last-child .availablePromoParent {
        margin-bottom: 0; }
      .cart-apply-coupon .cart-apply-coupon-section .promo-block .availablePromoParent {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        background-color: #FFF;
        height: 4.625rem;
        padding: 1.1875rem 1.6875rem;
        border: 1px solid #B7B7B7;
        margin-bottom: 0.9375rem;
        gap: 10px; }
        @media (max-width: 47.9375rem) {
          .cart-apply-coupon .cart-apply-coupon-section .promo-block .availablePromoParent {
            padding: 0.6875rem 0.5rem;
            height: 3.125rem;
            margin-bottom: 0.8125rem; } }
        .cart-apply-coupon .cart-apply-coupon-section .promo-block .availablePromoParent .coupon-code-values .view-p-coupons {
          font: 600 1rem/1.1875rem "Montserrat", Helvetica, Arial, sans-serif;
          margin-bottom: 0.25rem;
          color: #B59862; }
          @media (max-width: 47.9375rem) {
            .cart-apply-coupon .cart-apply-coupon-section .promo-block .availablePromoParent .coupon-code-values .view-p-coupons {
              font: 600 0.75rem/0.875rem "Montserrat", Helvetica, Arial, sans-serif; } }
        .cart-apply-coupon .cart-apply-coupon-section .promo-block .availablePromoParent .coupon-code-values .coupon-details-tq {
          font: 400 0.75rem/0.875rem "Montserrat", Helvetica, Arial, sans-serif; }
          @media (max-width: 47.9375rem) {
            .cart-apply-coupon .cart-apply-coupon-section .promo-block .availablePromoParent .coupon-code-values .coupon-details-tq {
              font: 400 0.625rem/0.75rem "Montserrat", Helvetica, Arial, sans-serif; } }
        .cart-apply-coupon .cart-apply-coupon-section .promo-block .availablePromoParent .coupon-code-apply-btn button {
          border: 1px solid #A77E51;
          background-color: transparent;
          color: #A77E51;
          padding: 0.3125rem 0;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          font: 700 1rem/1.1875rem "Montserrat", Helvetica, Arial, sans-serif;
          min-width: 6.6875rem;
          text-transform: uppercase; }
          @media (max-width: 47.9375rem) {
            .cart-apply-coupon .cart-apply-coupon-section .promo-block .availablePromoParent .coupon-code-apply-btn button {
              min-width: 4.375rem;
              font: 700 0.625rem/0.75rem "Montserrat", Helvetica, Arial, sans-serif;
              min-height: 1.75rem; } }
    .cart-apply-coupon .cart-apply-coupon-section .coupon-remove-pop button {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
    .cart-apply-coupon .cart-apply-coupon-section .cart-coupon-error,
    .cart-apply-coupon .cart-apply-coupon-section .coupon-error {
      font: 400 0.75rem/normal "Montserrat", Helvetica, Arial, sans-serif;
      margin-bottom: 0.625rem;
      color: #e30000; }
      @media (max-width: 47.9375rem) {
        .cart-apply-coupon .cart-apply-coupon-section .cart-coupon-error,
        .cart-apply-coupon .cart-apply-coupon-section .coupon-error {
          font-size: 0.625rem;
          margin-top: 0; } }
    .cart-apply-coupon .cart-apply-coupon-section .appliedCouponParent {
      background-color: #FFF;
      padding: 0.9375rem 1.5rem; }
      @media (max-width: 47.9375rem) {
        .cart-apply-coupon .cart-apply-coupon-section .appliedCouponParent {
          padding: 0.9375rem 0.5rem; } }
      .cart-apply-coupon .cart-apply-coupon-section .appliedCouponParent .inline-prompt {
        top: -2.375rem; }
      .cart-apply-coupon .cart-apply-coupon-section .appliedCouponParent .applied-coupon-text {
        font: 600 1rem/1.1875rem "Montserrat", Helvetica, Arial, sans-serif;
        margin-bottom: 0.25rem;
        text-transform: uppercase;
        margin-top: 0; }
        @media (max-width: 47.9375rem) {
          .cart-apply-coupon .cart-apply-coupon-section .appliedCouponParent .applied-coupon-text {
            font: 600 0.75rem/0.875rem "Montserrat", Helvetica, Arial, sans-serif; } }
      .cart-apply-coupon .cart-apply-coupon-section .appliedCouponParent #coupon-applied {
        font: 600 0.875rem/1.0625rem "Montserrat", Helvetica, Arial, sans-serif;
        margin-top: 0;
        margin-left: 2.3125rem;
        color: #B59862; }
        @media (max-width: 47.9375rem) {
          .cart-apply-coupon .cart-apply-coupon-section .appliedCouponParent #coupon-applied {
            font: 600 0.625rem/0.75rem "Montserrat", Helvetica, Arial, sans-serif; } }
      .cart-apply-coupon .cart-apply-coupon-section .appliedCouponParent .cart-coupon__remove-action {
        border: 1px dashed #A77E51;
        padding: 0.625rem 1rem;
        padding-left: 0.3125rem;
        background-color: #F4EBD6;
        color: #A77E51;
        text-decoration: none;
        position: relative;
        min-width: 7.3125rem;
        letter-spacing: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        word-break: break-all; }
        @media (max-width: 47.9375rem) {
          .cart-apply-coupon .cart-apply-coupon-section .appliedCouponParent .cart-coupon__remove-action {
            font: 400 0.75rem/0.875rem "Montserrat", Helvetica, Arial, sans-serif;
            min-width: 5.3125rem; } }
        .cart-apply-coupon .cart-apply-coupon-section .appliedCouponParent .cart-coupon__remove-action::after {
          content: '';
          display: block;
          position: absolute;
          right: -0.75rem;
          top: 0.6875rem;
          background-image: url(../images/close.svg);
          width: 1.875rem;
          height: 1.875rem;
          background-repeat: no-repeat;
          background-size: 0.75rem; }
    @media (max-width: 47.9375rem) {
      .cart-apply-coupon .cart-apply-coupon-section .coupon-promo-apply {
        background: #F5F5F5;
        border-bottom: none;
        margin-left: -1.25rem;
        margin-right: -1.25rem;
        padding: 1.25rem 1.25rem; } }
    .cart-apply-coupon .cart-apply-coupon-section .apply-coupon-wrapper {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
    .cart-apply-coupon .cart-apply-coupon-section .apply-coupon-label,
    .cart-apply-coupon .cart-apply-coupon-section .coupon-applybtn {
      display: inline-block;
      padding: 0;
      font-weight: 600; }
      @media (min-width: 48rem) {
        .cart-apply-coupon .cart-apply-coupon-section .apply-coupon-label,
        .cart-apply-coupon .cart-apply-coupon-section .coupon-applybtn {
          font-weight: 500; } }
    .cart-apply-coupon .cart-apply-coupon-section .apply-coupon-label {
      color: #1e1e1e;
      font-size: 0.875rem;
      font-weight: 700; }
      @media (min-width: 48rem) {
        .cart-apply-coupon .cart-apply-coupon-section .apply-coupon-label {
          font-size: 1rem; } }
      .cart-apply-coupon .cart-apply-coupon-section .apply-coupon-label img {
        display: inline-block;
        margin-right: 0.5rem;
        vertical-align: middle;
        max-width: 21.18px; }
        @media (min-width: 48rem) {
          .cart-apply-coupon .cart-apply-coupon-section .apply-coupon-label img {
            max-width: 28px;
            margin-right: 1.063rem; } }
    .cart-apply-coupon .cart-apply-coupon-section .coupon-applybtn {
      padding: 0;
      cursor: pointer; }
      .cart-apply-coupon .cart-apply-coupon-section .coupon-applybtn button {
        border: 0;
        padding: 0; }
        @media (min-width: 48rem) {
          .cart-apply-coupon .cart-apply-coupon-section .coupon-applybtn button {
            color: #d68475;
            font-size: 1rem; } }
        @media (max-width: 47.9375rem) {
          .cart-apply-coupon .cart-apply-coupon-section .coupon-applybtn button:before {
            content: "";
            top: 0;
            left: -17px;
            position: relative;
            padding: 4px;
            border: solid #231f20;
            border-width: 0 2px 2px 0;
            display: inline-block;
            -webkit-transform: rotate(315deg);
                    transform: rotate(315deg); } }

.cart-coupon__details p.applied-coupon-wrapper {
  width: 100%;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.cart-coupon__details p img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 1.063rem;
  float: left; }

.cart-coupon__details p .applied-coupon-text {
  float: left;
  width: 85%;
  margin-top: -3px; }
  @media (max-width: 47.9375rem) {
    .cart-coupon__details p .applied-coupon-text {
      width: 80%;
      word-break: break-word; } }

.cart-coupon__remove-action {
  margin-left: .5rem; }

.cart-promotion {
  border: solid 0.0625rem #00D3A7;
  background-color: #d3fff6; }

.cart-promotion__discount {
  margin-left: .25em; }

.approaching-discounts__item {
  padding: .75rem 1rem;
  border: solid 0.0625rem #E7B04D;
  border-radius: 0.125rem;
  background-color: #f9ecd4; }
  .approaching-discounts__item:not(:last-child) {
    margin-bottom: .5rem; }
  .approaching-discounts__item:last-child {
    margin-bottom: 1rem; }

.cart__line-item .col-12.col-lg-10.off-lg-2 {
  position: static; }

.total-list p {
  margin-bottom: 0; }

.cart__summary-container.fixed {
  position: fixed; }

.cart__summary-container.bottom {
  position: absolute;
  bottom: 0;
  z-index: 1; }

.cart__summary-container.fixed .removed-coupon-message,
.cart__summary-container.fixed .coupon-applied-discount, .cart__summary-container.bottom .removed-coupon-message,
.cart__summary-container.bottom .coupon-applied-discount {
  position: fixed;
  top: 15%; }

.cart_row {
  position: relative; }

@media (min-width: 48rem) {
  .cart__summary-container .ad-form-check {
    margin: 20px 0; } }

@media (max-width: 47.9375rem) {
  .cart__summary-container .ad-form-check {
    position: fixed;
    z-index: 1;
    bottom: 0;
    left: 0;
    padding: 9px 0 85px 20px;
    width: 100%;
    background: #fff; } }

.cart__summary-container .ad-form-check .form-check-input:checked + .form-check-label {
  color: #1E1E19; }

.cart__summary-container .ad-form-check label {
  font-size: 0.75rem;
  color: #1E1E19;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  cursor: pointer;
  font-weight: 400;
  display: inline-block; }

@media (min-width: 48rem) {
  .cart .cart__summary-container.no-copounsection {
    margin-top: 4.063rem;
    border-top: 1px solid #bbb;
    padding-top: 1.875rem; } }

.cart-terms-modal.modal {
  display: none;
  position: fixed;
  z-index: 3;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: #FFF;
  background-color: rgba(35, 31, 32, 0.5); }
  @media (min-width: 48rem) {
    .cart-terms-modal.modal {
      padding-top: 6.25rem; } }

.cart-terms-modal .modal-heading {
  color: #1e1e1e;
  font-size: 1rem;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-weight: 500; }

.cart-terms-modal .modal-body {
  font-size: 1rem;
  color: #1E1E19;
  font-family: "Montserrat", Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.75; }

.cart-terms-modal .modal-content {
  background-color: #FAF8F0;
  margin: auto;
  padding: 20px;
  width: 90%; }
  @media (max-width: 47.9375rem) {
    .cart-terms-modal .modal-content {
      margin-top: 91px; } }
  @media (min-width: 48rem) {
    .cart-terms-modal .modal-content {
      width: 459px;
      min-height: 225px; } }

.cart-terms-modal .cart-terms-close.cart-modal-close {
  float: right;
  margin-top: -55px;
  color: white;
  margin-right: -20px;
  cursor: pointer; }

.cart-terms-modal .cart-term-buttons {
  margin-top: 30px; }
  .cart-terms-modal .cart-term-buttons .checkout-btn {
    width: 100%;
    font-size: 0.75rem; }
    @media (min-width: 48rem) {
      .cart-terms-modal .cart-term-buttons .checkout-btn {
        width: 47%;
        display: inline-block; } }
    .cart-terms-modal .cart-term-buttons .checkout-btn:first-child {
      padding: 9px; }
      @media (max-width: 47.9375rem) {
        .cart-terms-modal .cart-term-buttons .checkout-btn:first-child {
          margin-bottom: 20px; } }
      @media (min-width: 48rem) {
        .cart-terms-modal .cart-term-buttons .checkout-btn:first-child {
          margin-right: 20px; } }

.cart__summary-section .cart-promotion {
  margin-bottom: 0; }

.cart__summary-section .removed-coupon-message,
.cart__summary-section .coupon-applied-discount {
  position: absolute;
  top: -1%;
  left: 50%;
  background: #27251f;
  color: #FFF;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 1rem;
  padding: 5px 42px;
  opacity: 0.9;
  border-radius: 2px; }
  @media (max-width: 47.9375rem) {
    .cart__summary-section .removed-coupon-message,
    .cart__summary-section .coupon-applied-discount {
      width: 94%; } }
  @media (min-width: 48rem) {
    .cart__summary-section .removed-coupon-message,
    .cart__summary-section .coupon-applied-discount {
      padding: 5px 121px; } }

.cart__summary-section .cart-coupon {
  background: transparent;
  border: none;
  margin-top: 0;
  padding: 0;
  margin-bottom: 0; }
  .cart__summary-section .cart-coupon .coupon-remove-pop {
    background: #FFF;
    padding: 1.25rem;
    height: auto; }
  .cart__summary-section .cart-coupon .coupon-applied {
    color: #ff5252;
    font-size: 0.875rem;
    margin-top: 0.625rem;
    font-family: "Montserrat", Helvetica, Arial, sans-serif;
    margin-left: 3.125rem; }

.cart__summary-section .cart-coupon__details p.applied-coupon-wrapper {
  width: 100%;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.cart__summary-section .cart-coupon__details p img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 1.063rem;
  float: left; }

.cart__summary-section .cart-coupon__details p .applied-coupon-text {
  float: left;
  width: 85%;
  margin-top: -3px; }
  @media (max-width: 47.9375rem) {
    .cart__summary-section .cart-coupon__details p .applied-coupon-text {
      width: 80%;
      word-break: break-word; } }

.cart__summary-section .cart-coupon__related-list .cart-coupon__related-item {
  color: #ff5252;
  font-size: 0.875rem;
  margin-top: 0.625rem;
  font-family: "Montserrat", Helvetica, Arial, sans-serif; }

.cart__summary-section.cart-apply-coupon {
  background-color: #EFEFEF;
  border: 1px solid #D5D5D5;
  margin-bottom: 1.375rem;
  padding: 1.4375rem; }
  @media (max-width: 47.9375rem) {
    .cart__summary-section.cart-apply-coupon {
      padding: 0.625rem;
      margin-bottom: 2.25rem; } }
  .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section {
    border-bottom: 0; }
    .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .couponCodeParent {
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin-bottom: 1.3125rem; }
      @media (max-width: 47.9375rem) {
        .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .couponCodeParent {
          margin-bottom: 0.4375rem; } }
      .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .couponCodeParent .couponIcon {
        background-image: url(../images/coupon.svg);
        width: 1.25rem;
        height: 1.25rem;
        position: absolute;
        left: 0.9375rem; }
      .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .couponCodeParent #couponCode {
        padding: 1.25rem 38% 1.25rem 3.125rem;
        background-color: #FFF;
        border: 1px solid #B7B7B7;
        font: 400 0.875rem/1.0625rem "Montserrat", Helvetica, Arial, sans-serif;
        color: #000;
        height: 3.75rem; }
        @media (max-width: 47.9375rem) {
          .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .couponCodeParent #couponCode {
            font: 400 0.625rem/0.75rem "Montserrat", Helvetica, Arial, sans-serif;
            height: 3.125rem; } }
        .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .couponCodeParent #couponCode::-webkit-input-placeholder {
          font: 400 0.875rem/1.0625rem "Montserrat", Helvetica, Arial, sans-serif;
          color: #B7B7B7;
          letter-spacing: 0; }
        .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .couponCodeParent #couponCode::-moz-placeholder {
          font: 400 0.875rem/1.0625rem "Montserrat", Helvetica, Arial, sans-serif;
          color: #B7B7B7;
          letter-spacing: 0; }
        .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .couponCodeParent #couponCode:-ms-input-placeholder {
          font: 400 0.875rem/1.0625rem "Montserrat", Helvetica, Arial, sans-serif;
          color: #B7B7B7;
          letter-spacing: 0; }
        .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .couponCodeParent #couponCode::-ms-input-placeholder {
          font: 400 0.875rem/1.0625rem "Montserrat", Helvetica, Arial, sans-serif;
          color: #B7B7B7;
          letter-spacing: 0; }
        .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .couponCodeParent #couponCode::placeholder {
          font: 400 0.875rem/1.0625rem "Montserrat", Helvetica, Arial, sans-serif;
          color: #B7B7B7;
          letter-spacing: 0; }
          @media (max-width: 47.9375rem) {
            .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .couponCodeParent #couponCode::-webkit-input-placeholder {
              font: 400 0.625rem/1.0625rem "Montserrat", Helvetica, Arial, sans-serif; }
            .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .couponCodeParent #couponCode::-moz-placeholder {
              font: 400 0.625rem/1.0625rem "Montserrat", Helvetica, Arial, sans-serif; }
            .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .couponCodeParent #couponCode:-ms-input-placeholder {
              font: 400 0.625rem/1.0625rem "Montserrat", Helvetica, Arial, sans-serif; }
            .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .couponCodeParent #couponCode::-ms-input-placeholder {
              font: 400 0.625rem/1.0625rem "Montserrat", Helvetica, Arial, sans-serif; }
            .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .couponCodeParent #couponCode::placeholder {
              font: 400 0.625rem/1.0625rem "Montserrat", Helvetica, Arial, sans-serif; } }
      .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .couponCodeParent #apply-coupon {
        position: absolute;
        right: 1.875rem;
        background-color: #B59862;
        padding: 0.25rem 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        text-transform: uppercase;
        font: 600 1rem/1.21875rem "Montserrat", Helvetica, Arial, sans-serif;
        color: #FFF;
        min-width: 6.6875rem;
        min-height: 1.8125rem; }
        @media (max-width: 47.9375rem) {
          .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .couponCodeParent #apply-coupon {
            font: 600 0.625rem/0.75rem "Montserrat", Helvetica, Arial, sans-serif;
            min-width: 4.375rem;
            min-height: 1.75rem;
            right: 0.625rem; } }
    .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .availaleOffers {
      color: #000;
      margin-bottom: 0.6875rem;
      display: inline-block;
      width: 100%;
      font-weight: 500; }
      @media (max-width: 47.9375rem) {
        .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .availaleOffers {
          margin-bottom: 0.5rem; } }
    .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .promoBlockParent {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      margin-bottom: 0.875rem; }
      @media (max-width: 47.9375rem) {
        .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .promoBlockParent {
          margin-bottom: 0.4375rem; } }
      .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .promoBlockParent.active .promo-block {
        display: block; }
    .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .promo-block {
      display: none; }
      .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .promo-block:first-child {
        display: block; }
      .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .promo-block:last-child .availablePromoParent {
        margin-bottom: 0; }
      .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .promo-block .availablePromoParent {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        background-color: #FFF;
        height: 4.625rem;
        padding: 1.1875rem 1.6875rem;
        border: 1px solid #B7B7B7;
        margin-bottom: 0.9375rem;
        gap: 10px; }
        @media (max-width: 47.9375rem) {
          .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .promo-block .availablePromoParent {
            padding: 0.6875rem 0.5rem;
            height: 3.125rem;
            margin-bottom: 0.8125rem; } }
        .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .promo-block .availablePromoParent .coupon-code-values .view-p-coupons {
          font: 600 1rem/1.1875rem "Montserrat", Helvetica, Arial, sans-serif;
          margin-bottom: 0.25rem;
          color: #B59862; }
          @media (max-width: 47.9375rem) {
            .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .promo-block .availablePromoParent .coupon-code-values .view-p-coupons {
              font: 600 0.75rem/0.875rem "Montserrat", Helvetica, Arial, sans-serif; } }
        .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .promo-block .availablePromoParent .coupon-code-values .coupon-details-tq {
          font: 400 0.75rem/0.875rem "Montserrat", Helvetica, Arial, sans-serif; }
          @media (max-width: 47.9375rem) {
            .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .promo-block .availablePromoParent .coupon-code-values .coupon-details-tq {
              font: 400 0.625rem/0.75rem "Montserrat", Helvetica, Arial, sans-serif; } }
        .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .promo-block .availablePromoParent .coupon-code-apply-btn button {
          border: 1px solid #A77E51;
          background-color: transparent;
          color: #A77E51;
          padding: 0.3125rem 0;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          font: 700 1rem/1.1875rem "Montserrat", Helvetica, Arial, sans-serif;
          min-width: 6.6875rem;
          text-transform: uppercase; }
          @media (max-width: 47.9375rem) {
            .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .promo-block .availablePromoParent .coupon-code-apply-btn button {
              min-width: 4.375rem;
              font: 700 0.625rem/0.75rem "Montserrat", Helvetica, Arial, sans-serif;
              min-height: 1.75rem; } }
    .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .showMore {
      display: block;
      width: 100%;
      font: 600 0.75rem/0.875rem "Montserrat", Helvetica, Arial, sans-serif;
      position: relative;
      text-align: right;
      padding-right: 1.25rem;
      cursor: pointer; }
      .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .showMore::after {
        content: '';
        border-width: 7px 7px 0 7px;
        border-color: #000 transparent transparent transparent;
        border-style: solid;
        display: block;
        position: absolute;
        right: 0;
        top: 0.25rem; }
      .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .showMore.active::after {
        content: '';
        border-width: 0 7px 7px 7px;
        border-color: transparent transparent #000 transparent;
        top: 0.1875rem; }
    .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .appliedCouponParent {
      background-color: #FFF;
      padding: 0.9375rem 1.5rem; }
      @media (max-width: 47.9375rem) {
        .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .appliedCouponParent {
          padding: 0.9375rem 0.5rem; } }
      .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .appliedCouponParent .inline-prompt {
        top: 50%;
        -webkit-transform: translate(0, -50%);
                transform: translate(0, -50%); }
        @media (max-width: 47.9375rem) {
          .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .appliedCouponParent .inline-prompt {
            padding: 0.625rem; }
            .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .appliedCouponParent .inline-prompt .inline-prompt__title,
            .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .appliedCouponParent .inline-prompt .inline-prompt__footer button {
              font-size: 0.75rem; } }
      .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .appliedCouponParent .applied-coupon-text {
        font: 600 1rem/1.1875rem "Montserrat", Helvetica, Arial, sans-serif;
        margin-bottom: 0.25rem;
        text-transform: uppercase;
        margin-top: 0; }
        @media (max-width: 47.9375rem) {
          .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .appliedCouponParent .applied-coupon-text {
            font: 600 0.75rem/0.875rem "Montserrat", Helvetica, Arial, sans-serif; } }
      .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .appliedCouponParent #coupon-applied {
        font: 600 0.875rem/1.0625rem "Montserrat", Helvetica, Arial, sans-serif;
        margin-top: 0;
        margin-left: 2.3125rem;
        color: #B59862; }
        @media (max-width: 47.9375rem) {
          .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .appliedCouponParent #coupon-applied {
            font: 600 0.625rem/0.75rem "Montserrat", Helvetica, Arial, sans-serif; } }
      .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .appliedCouponParent .cart-coupon__remove-action {
        border: 1px dashed #A77E51;
        padding: 0.625rem 1rem;
        padding-left: 0.3125rem;
        background-color: #F4EBD6;
        color: #A77E51;
        text-decoration: none;
        position: relative;
        min-width: 7.3125rem;
        letter-spacing: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        word-break: break-all; }
        @media (max-width: 47.9375rem) {
          .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .appliedCouponParent .cart-coupon__remove-action {
            font: 400 0.75rem/0.875rem "Montserrat", Helvetica, Arial, sans-serif;
            min-width: 5.3125rem; } }
        .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .appliedCouponParent .cart-coupon__remove-action::after {
          content: '';
          display: block;
          position: absolute;
          right: -0.75rem;
          top: 0.6875rem;
          background-image: url(../images/close.svg);
          width: 1.875rem;
          height: 1.875rem;
          background-repeat: no-repeat;
          background-size: 0.75rem; }
    @media (max-width: 47.9375rem) {
      .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .coupon-promo-apply {
        background: #F5F5F5;
        border-bottom: none;
        margin-left: -1.25rem;
        margin-right: -1.25rem;
        padding: 1.25rem 1.25rem; } }
    .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .apply-coupon-wrapper {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
    .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .apply-coupon-label,
    .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .coupon-applybtn {
      display: inline-block;
      padding: 0;
      font-weight: 600; }
      @media (min-width: 48rem) {
        .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .apply-coupon-label,
        .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .coupon-applybtn {
          font-weight: 500; } }
    .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .apply-coupon-label {
      color: #1e1e1e;
      font-size: 0.875rem;
      font-weight: 700; }
      @media (min-width: 48rem) {
        .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .apply-coupon-label {
          font-size: 1rem; } }
      .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .apply-coupon-label img {
        display: inline-block;
        margin-right: 0.5rem;
        vertical-align: middle;
        max-width: 21.18px; }
        @media (min-width: 48rem) {
          .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .apply-coupon-label img {
            max-width: 28px;
            margin-right: 1.063rem; } }
    .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .coupon-applybtn {
      padding: 0;
      cursor: pointer; }
      .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .coupon-applybtn button {
        border: 0;
        padding: 0; }
        @media (min-width: 48rem) {
          .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .coupon-applybtn button {
            color: #d68475;
            font-size: 1rem; } }
        @media (max-width: 47.9375rem) {
          .cart__summary-section.cart-apply-coupon .cart-apply-coupon-section .coupon-applybtn button:before {
            content: "";
            top: 0;
            left: -17px;
            position: relative;
            padding: 4px;
            border: solid #231f20;
            border-width: 0 2px 2px 0;
            display: inline-block;
            -webkit-transform: rotate(315deg);
                    transform: rotate(315deg); } }

.cart__checkout-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 0;
  position: relative; }

.cart__checkout-action:not(:first-child) {
  margin-top: 1.5rem; }

.cart__checkout-action.button--apple-pay:not(:first-child), .cart__checkout-action.button--apple-pay:hover:not(:first-child), .cart__checkout-action.button--apple-pay:active:not(:first-child) {
  margin-top: 1.5rem; }

@media (max-width: 47.9375rem) {
  .cart__summary {
    margin-top: 2rem; } }

/*------------------------------------*\
  #Coupon Apply Modal styling
\*------------------------------------*/
.modal--apply-coupon .coupon-modal {
  padding-top: 20px; }
  .modal--apply-coupon .coupon-modal span.apply-coupon-label {
    padding-left: 20px;
    color: #1e1e1e;
    font-size: 1rem;
    font-family: "Montserrat", Helvetica, Arial, sans-serif;
    font-weight: 500; }
  .modal--apply-coupon .coupon-modal .cart__promotions {
    margin-top: 1.25rem;
    border-top: 0.063rem solid #eeeeee;
    position: relative;
    padding: 1.25rem 1.25rem 0.313rem;
    font-family: "Montserrat", Helvetica, Arial, sans-serif; }
    .modal--apply-coupon .coupon-modal .cart__promotions .coupon-code-field {
      background: #F5F5F5;
      border: none;
      font-size: 0.875rem;
      color: #1e1e1e;
      font-weight: 600;
      padding-left: 1.25rem;
      padding-right: 1.25rem; }
    .modal--apply-coupon .coupon-modal .cart__promotions .promo-code-btn {
      position: absolute;
      border: 0;
      right: 10px;
      top: 20px;
      padding: 10px;
      font-size: 0.875rem;
      text-transform: capitalize;
      font-weight: 600;
      color: #1e1e1e; }
      @media (min-width: 48rem) {
        .modal--apply-coupon .coupon-modal .cart__promotions .promo-code-btn {
          right: 30px; } }
      .modal--apply-coupon .coupon-modal .cart__promotions .promo-code-btn.disabled {
        color: #CCCCCC;
        cursor: not-allowed;
        pointer-events: none; }
  .modal--apply-coupon .coupon-modal .no-coupon-available {
    padding: 1.25rem;
    min-height: 16.75rem;
    text-align: center;
    color: #585858; }
    .modal--apply-coupon .coupon-modal .no-coupon-available .no-coupon-icon {
      padding-top: 3.25rem;
      margin-bottom: 1.25rem; }
      .modal--apply-coupon .coupon-modal .no-coupon-available .no-coupon-icon img {
        margin: 0 auto; }
  .modal--apply-coupon .coupon-modal .coupon-wrapper .coupon-list-container {
    margin-top: 1.25rem;
    padding-top: 0; }
    @media (min-width: 48rem) {
      .modal--apply-coupon .coupon-modal .coupon-wrapper .coupon-list-container {
        min-height: 16.25rem;
        max-height: 16.25rem;
        overflow: auto; } }
    .modal--apply-coupon .coupon-modal .coupon-wrapper .coupon-list-container::-webkit-scrollbar {
      width: 5px; }
    .modal--apply-coupon .coupon-modal .coupon-wrapper .coupon-list-container::-webkit-scrollbar-track {
      width: 5px; }
  .modal--apply-coupon .coupon-modal .coupon-error {
    color: #ff787d; }
  .modal--apply-coupon .coupon-modal .coupon-available-error {
    color: #585858;
    display: block; }
  .modal--apply-coupon .coupon-modal .coupon-not-available {
    margin: 0 auto;
    text-align: center;
    padding-top: 3.25rem; }
    .modal--apply-coupon .coupon-modal .coupon-not-available img {
      display: inline-block; }
  .modal--apply-coupon .coupon-modal .coupon-error,
  .modal--apply-coupon .coupon-modal .valid-coupon-label,
  .modal--apply-coupon .coupon-modal .coupon-available-error {
    font-family: "Montserrat", Helvetica, Arial, sans-serif;
    font-size: 0.875rem; }
  .modal--apply-coupon .coupon-modal .coupon-apply-button {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 0;
    left: 0;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: #FFF; }
  .modal--apply-coupon .coupon-modal .promo-apply-button {
    margin: 20px;
    width: 92%;
    font-size: 0.875rem;
    font-family: "Montserrat", Helvetica, Arial, sans-serif; }
  .modal--apply-coupon .coupon-modal .coupons {
    border: 1px dashed #CCCCCC;
    padding: 14px;
    margin-top: 1.25rem; }
    .modal--apply-coupon .coupon-modal .coupons:first-child {
      margin-top: 0; }
    .modal--apply-coupon .coupon-modal .coupons .form-check-input {
      top: 19px;
      left: 19px;
      z-index: 1;
      cursor: pointer; }
    .modal--apply-coupon .coupon-modal .coupons label {
      font-size: 1.125rem;
      color: #1e1e1e;
      font-family: "Montserrat", Helvetica, Arial, sans-serif;
      font-weight: 500;
      cursor: pointer;
      display: inline-block;
      max-width: 200px; }
      @media (min-width: 48rem) {
        .modal--apply-coupon .coupon-modal .coupons label {
          max-width: 335px;
          word-break: break-word; } }
      .modal--apply-coupon .coupon-modal .coupons label span {
        font-size: 1.125rem;
        font-family: "Montserrat", Helvetica, Arial, sans-serif;
        color: #1e1e1e;
        font-weight: 500; }
    .modal--apply-coupon .coupon-modal .coupons .coupons-info {
      display: block;
      padding-left: 2.188rem; }
      .modal--apply-coupon .coupon-modal .coupons .coupons-info span {
        font-family: "Montserrat", Helvetica, Arial, sans-serif;
        font-size: 0.75rem;
        display: inline-block; }
        .modal--apply-coupon .coupon-modal .coupons .coupons-info span.list-coupon-date {
          color: #666666; }
        .modal--apply-coupon .coupon-modal .coupons .coupons-info span.coupon-callout {
          max-width: 90%; }
          @media (min-width: 48rem) {
            .modal--apply-coupon .coupon-modal .coupons .coupons-info span.coupon-callout {
              max-width: 96%; } }
        .modal--apply-coupon .coupon-modal .coupons .coupons-info span.info-icon {
          max-width: 15px;
          float: right;
          margin-top: 4px;
          cursor: pointer; }
        .modal--apply-coupon .coupon-modal .coupons .coupons-info span.tool-tip {
          position: absolute;
          background: #231f20;
          padding: 10px;
          color: #FFF;
          width: 92%;
          z-index: 1;
          height: auto;
          left: 23px;
          margin-left: 0;
          opacity: 0.8;
          top: 64px;
          border-radius: 3px; }
          @media (min-width: 48rem) {
            .modal--apply-coupon .coupon-modal .coupons .coupons-info span.tool-tip {
              width: 95%; } }
          .modal--apply-coupon .coupon-modal .coupons .coupons-info span.tool-tip:after {
            content: " ";
            position: absolute;
            right: 14px;
            top: -7px;
            border-top: none;
            border-right: 7px solid transparent;
            border-left: 7px solid transparent;
            border-bottom: 8px solid #231f20;
            opacity: 0.9; }
    .modal--apply-coupon .coupon-modal .coupons .list-coupon-amount {
      float: right;
      font-size: 0.813rem; }
    .modal--apply-coupon .coupon-modal .coupons .list-coupon-code {
      display: block; }
    .modal--apply-coupon .coupon-modal .coupons.disabled {
      opacity: 0.5; }

.modal--apply-coupon .window-modal__close {
  top: 10px;
  right: 10px; }

.total-list .total-list__row {
  margin-bottom: 0.75rem; }
  .total-list .total-list__row:last-child {
    margin-bottom: 0; }
  .total-list .total-list__row .shippingAmount {
    color: #B59862;
    font-style: italic; }
  .total-list .total-list__row.fluid-type--base-deka {
    margin-top: 0.3125rem;
    padding-top: 1.0625rem;
    border-top: 1px solid #B7B7B7;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media (max-width: 56rem) {
      .total-list .total-list__row.fluid-type--base-deka {
        margin-top: 0.5625rem;
        margin-left: -0.625rem;
        margin-right: -0.625rem; }
        .total-list .total-list__row.fluid-type--base-deka .totalPriceHeading,
        .total-list .total-list__row.fluid-type--base-deka .totalPriceValue {
          padding: 0 0.625rem; } }

.saveforlater {
  padding: 1rem;
  border: solid 0.0625rem #CCCCCC;
  border-radius: .25rem; }
  .saveforlater .saveforlater__items:not(.slick-slider) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    @media (min-width: 48rem) {
      .saveforlater .saveforlater__items:not(.slick-slider) .product-line-item--saveforlater {
        max-width: 334px; } }

.saveforlater__add-to-cart-cta {
  margin-top: 1.25rem; }

@media (max-width: 47.9375rem) {
  .saveforlater__price-qty {
    margin-top: 1.25rem; } }

.cart__loyalty-points {
  padding: 1.375rem 0 0 2.813rem;
  background-image: url("../images/LoyaltyPoint.svg");
  background-position: -4px 15px;
  background-repeat: no-repeat;
  background-size: 28.18px; }
  @media (max-width: 47.9375rem) {
    .cart__loyalty-points {
      padding-left: 0; } }
  .cart__loyalty-points .loyalty-border__bt {
    border-bottom: 1px solid #eeeeee;
    padding: 0 0 1.375rem 0;
    margin-bottom: 1.375rem;
    font-size: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .cart__loyalty-points .loyalty-border__bt h4 {
      color: #1e1e1e; }
      @media (max-width: 47.9375rem) {
        .cart__loyalty-points .loyalty-border__bt h4 {
          padding-left: 2.575rem;
          font-size: 0.875rem; } }
    .cart__loyalty-points .loyalty-border__bt .loyalty-check__link {
      color: #d68475;
      font-size: 14px;
      font-weight: 500; }

.loyalty-text {
  font-size: 0.875rem;
  color: #666666;
  line-height: 1.375rem;
  padding-bottom: 1.375rem; }
  .loyalty-text.loyalty-point {
    font-size: 0.875rem;
    padding-top: 0.938rem; }
    .loyalty-text.loyalty-point a {
      color: #1e1e1e;
      text-decoration: underline; }

.modal-loyalty__details p {
  padding: 0.5rem 0; }
  .modal-loyalty__details p.LoyaltySubHeading {
    font-weight: 600; }

.loyalty-phone-form,
.loyalty-multiplesite,
.loyalty-text__phone {
  display: none; }

.loyalty-label {
  display: none; }

.input-with-border {
  border: 1px solid #b5b5b6;
  border-radius: 0;
  padding-left: 1rem; }

.loyalty-resend-otp,
.loyalty-otp__timer {
  text-align: right;
  text-decoration: underline;
  font-size: 1rem;
  color: #1e1e1e;
  padding-top: 0.625rem; }

.loyalty-otp__timer {
  text-decoration: none; }

.loyalty-otp-error {
  padding-top: 0.625rem; }

.cart .productNotAvailable {
  color: #e30000;
  margin-bottom: 0.9375rem;
  display: inline-block; }
  @media (max-width: 47.9375rem) {
    .cart .productNotAvailable {
      font-size: 0.75rem; } }

.cart .cartTitleWrapper {
  margin-bottom: 1.6875rem; }
  .cart .cartTitleWrapper .cart__title {
    font: 400 1.25rem/3.75rem "MidlandLuxury", serif;
    margin-left: 0;
    padding-bottom: 0; }
    @media (max-width: 47.9375rem) {
      .cart .cartTitleWrapper .cart__title {
        font: 500 0.75rem/1.75rem "MidlandLuxury", serif;
        display: block; } }

.cart__line-item {
  border: 1px solid #B7B7B7;
  padding: 1.3125rem 2.0625rem 1.5625rem; }
  .cart__line-item:not(:last-child) {
    border-bottom: 0; }
  @media (max-width: 47.9375rem) {
    .cart__line-item.product-line-item {
      padding: 0 0 0.9375rem;
      margin-bottom: 1.25rem;
      border: 0;
      border-bottom: 1px solid #B7B7B7; }
      .cart__line-item.product-line-item:last-child {
        border-bottom: 0;
        padding-bottom: 0; } }

.cart .cart__items .product-line-item__main .product-line-item__header a {
  margin-bottom: 0.4375rem;
  display: inline-block;
  text-transform: capitalize;
  font-weight: 500;
  letter-spacing: 0; }

.cart .cart__items .product-line-item__main .product-id {
  font: 500 0.875rem/1.0625rem "Montserrat", Helvetica, Arial, sans-serif;
  margin-bottom: 0.625rem;
  color: #B7B7B7; }
  @media (max-width: 47.9375rem) {
    .cart .cart__items .product-line-item__main .product-id {
      font: 500 0.625rem/0.75rem "Montserrat", Helvetica, Arial, sans-serif; } }
  .cart .cart__items .product-line-item__main .product-id .product-number {
    text-transform: uppercase; }

.cart .cart__items .product-line-item__main .price-strike-promotion {
  margin-bottom: 0.625rem;
  padding-top: 0;
  margin-top: 0;
  padding-bottom: 0; }
  .cart .cart__items .product-line-item__main .price-strike-promotion .product-line-item__qty-pricing {
    margin-top: 0; }
  .cart .cart__items .product-line-item__main .price-strike-promotion .price {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .cart .cart__items .product-line-item__main .price-strike-promotion .price .price__original {
      letter-spacing: normal;
      color: #000;
      margin-right: 1.0625rem;
      padding: 0; }
      @media (max-width: 47.9375rem) {
        .cart .cart__items .product-line-item__main .price-strike-promotion .price .price__original {
          margin-right: 0.5rem; } }
    .cart .cart__items .product-line-item__main .price-strike-promotion .price .pricing {
      color: #000;
      margin-right: 1.8125rem;
      padding: 0; }
      @media (max-width: 47.9375rem) {
        .cart .cart__items .product-line-item__main .price-strike-promotion .price .pricing {
          margin-right: 0.5rem; } }

.cart .cart__items .product-line-item__main .product-line-item__attributes {
  margin-top: 0; }
  .cart .cart__items .product-line-item__main .product-line-item__attributes .product-line-item__attribute {
    margin-bottom: 0.5rem;
    width: 100%;
    text-transform: capitalize; }
    .cart .cart__items .product-line-item__main .product-line-item__attributes .product-line-item__attribute-key {
      min-width: 10%; }
      @media (max-width: 47.9375rem) {
        .cart .cart__items .product-line-item__main .product-line-item__attributes .product-line-item__attribute-key {
          min-width: 20%; } }

.cart .cart__items .product-line-item__main .product-line-item__qty-form {
  padding: 0;
  height: auto;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%; }
  .cart .cart__items .product-line-item__main .product-line-item__qty-form label {
    margin-top: 0;
    min-width: 10%; }
    @media (max-width: 47.9375rem) {
      .cart .cart__items .product-line-item__main .product-line-item__qty-form label {
        min-width: 20%; } }
  .cart .cart__items .product-line-item__main .product-line-item__qty-form select {
    background-position: calc(100% - 3px) 50%, calc(100% - 5px) 50%;
    background-size: 0.9375rem; }
  .cart .cart__items .product-line-item__main .product-line-item__qty-form .dropdown.bootstrap-select {
    background: none;
    position: static; }
  .cart .cart__items .product-line-item__main .product-line-item__qty-form .dropdown-toggle,
  .cart .cart__items .product-line-item__main .product-line-item__qty-form .dropdown-menu {
    display: none; }

.cart .cart__items .product-line-item__main .icon-cart-three {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2.0625rem; }
  @media (max-width: 47.9375rem) {
    .cart .cart__items .product-line-item__main .icon-cart-three {
      margin-top: 0.9375rem;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start; } }
  .cart .cart__items .product-line-item__main .icon-cart-three .addGiftWrap {
    min-width: 14.1875rem;
    min-height: 2.5625rem;
    background-color: #F4EBD6;
    border: 1px solid #A77E514D;
    border-radius: 0.4375rem;
    color: #B59862;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font: 700 0.875rem/1.0625rem "Montserrat", Helvetica, Arial, sans-serif; }
    .cart .cart__items .product-line-item__main .icon-cart-three .addGiftWrap.giftWrapped {
      border: 2px solid #A77E51; }
      .cart .cart__items .product-line-item__main .icon-cart-three .addGiftWrap.giftWrapped::before {
        left: -0.625rem; }
      @media (max-width: 47.9375rem) {
        .cart .cart__items .product-line-item__main .icon-cart-three .addGiftWrap.giftWrapped::before {
          left: 0; } }
    @media (max-width: 47.9375rem) {
      .cart .cart__items .product-line-item__main .icon-cart-three .addGiftWrap {
        font: 700 0.5rem/0.5625rem "Montserrat", Helvetica, Arial, sans-serif;
        min-width: 6.875rem;
        min-height: 1.3125rem; } }
    .cart .cart__items .product-line-item__main .icon-cart-three .addGiftWrap::before {
      content: '';
      display: inline-block;
      background-image: url(../images/giftWrap.svg);
      width: 2.5rem;
      height: 2.5rem;
      background-repeat: no-repeat;
      position: relative;
      left: -1.25rem; }
    @media (max-width: 47.9375rem) {
      .cart .cart__items .product-line-item__main .icon-cart-three .addGiftWrap::before {
        width: 1.25rem;
        height: 1.25rem;
        background-size: 1.25rem;
        left: -0.5rem; } }
  .cart .cart__items .product-line-item__main .icon-cart-three .product-line-item__actions {
    margin-top: 0; }
    @media (max-width: 47.9375rem) {
      .cart .cart__items .product-line-item__main .icon-cart-three .product-line-item__actions {
        -webkit-box-align: baseline;
            -ms-flex-align: baseline;
                align-items: baseline; } }
    .cart .cart__items .product-line-item__main .icon-cart-three .product-line-item__actions .editCartProduct,
    .cart .cart__items .product-line-item__main .icon-cart-three .product-line-item__actions .product-line-item__action {
      font: 500 1rem/1.1875rem "Montserrat", Helvetica, Arial, sans-serif;
      margin-right: 0.9375rem;
      text-decoration: underline;
      cursor: pointer;
      letter-spacing: normal; }
      @media (max-width: 47.9375rem) {
        .cart .cart__items .product-line-item__main .icon-cart-three .product-line-item__actions .editCartProduct,
        .cart .cart__items .product-line-item__main .icon-cart-three .product-line-item__actions .product-line-item__action {
          margin-right: 0.625rem; } }
      .cart .cart__items .product-line-item__main .icon-cart-three .product-line-item__actions .editCartProduct span,
      .cart .cart__items .product-line-item__main .icon-cart-three .product-line-item__actions .product-line-item__action span {
        font: 500 1rem/1.1875rem "Montserrat", Helvetica, Arial, sans-serif;
        letter-spacing: normal; }
        @media (max-width: 47.9375rem) {
          .cart .cart__items .product-line-item__main .icon-cart-three .product-line-item__actions .editCartProduct span,
          .cart .cart__items .product-line-item__main .icon-cart-three .product-line-item__actions .product-line-item__action span {
            font: 500 0.625rem/0.75rem "Montserrat", Helvetica, Arial, sans-serif; } }
      @media (max-width: 47.9375rem) {
        .cart .cart__items .product-line-item__main .icon-cart-three .product-line-item__actions .editCartProduct,
        .cart .cart__items .product-line-item__main .icon-cart-three .product-line-item__actions .product-line-item__action {
          font: 500 0.625rem/0.75rem "Montserrat", Helvetica, Arial, sans-serif; } }
      .cart .cart__items .product-line-item__main .icon-cart-three .product-line-item__actions .editCartProduct:last-child,
      .cart .cart__items .product-line-item__main .icon-cart-three .product-line-item__actions .product-line-item__action:last-child {
        margin-right: 0; }
        .cart .cart__items .product-line-item__main .icon-cart-three .product-line-item__actions .editCartProduct:last-child::after,
        .cart .cart__items .product-line-item__main .icon-cart-three .product-line-item__actions .product-line-item__action:last-child::after {
          display: none; }
      .cart .cart__items .product-line-item__main .icon-cart-three .product-line-item__actions .editCartProduct::after,
      .cart .cart__items .product-line-item__main .icon-cart-three .product-line-item__actions .product-line-item__action::after {
        content: "";
        height: 0.875rem;
        width: 0.0625rem;
        border-right: 1px solid #000;
        display: inline-block;
        margin-left: 0.625rem;
        position: relative;
        top: 0.1875rem; }
      @media (max-width: 47.9375rem) {
        .cart .cart__items .product-line-item__main .icon-cart-three .product-line-item__actions .editCartProduct .removeProductModal,
        .cart .cart__items .product-line-item__main .icon-cart-three .product-line-item__actions .product-line-item__action .removeProductModal {
          height: 109%;
          top: -1.25rem; } }
      @media (max-width: 30rem) {
        .cart .cart__items .product-line-item__main .icon-cart-three .product-line-item__actions .editCartProduct .removeProductModal,
        .cart .cart__items .product-line-item__main .icon-cart-three .product-line-item__actions .product-line-item__action .removeProductModal {
          width: 110%;
          left: -4.5%; } }

.page {
  min-height: auto; }

.cart__main .approaching-discounts__item {
  border: transparent;
  background-color: #FFF; }

.cart, .checkout {
  background: #FFF; }
  @media (min-width: 48rem) {
    .cart .cart__items, .checkout .cart__items {
      border-top: solid 0.0625rem #FAF8F0; } }
  .cart .may-like .module-container, .checkout .may-like .module-container {
    background: #FAF8F0 !important; }
  .cart .cart__title, .checkout .cart__title {
    margin: auto;
    font-family: "MidlandLuxury", serif;
    font-size: 1.5rem;
    letter-spacing: 2px; }
  @media (max-width: 47.9375rem) {
    .cart .cart__summary-container .ad-form-check, .checkout .cart__summary-container .ad-form-check {
      background: #FAF8F0; } }

.bg--bg-secondary {
  background-color: #FAF8F0; }

.cart__summary-section .cart-apply-coupon-section {
  border-bottom: 0.063rem solid #bbb;
  padding-bottom: 0; }
  @media (max-width: 47.9375rem) {
    .cart__summary-section .cart-apply-coupon-section {
      border-bottom: none; } }
  .cart__summary-section .cart-apply-coupon-section .cart-coupon .coupon-remove-pop {
    background-color: #FAF8F0; }
  .cart__summary-section .cart-apply-coupon-section .apply-coupon-wrapper {
    margin-bottom: 1.875rem; }
    @media (max-width: 47.9375rem) {
      .cart__summary-section .cart-apply-coupon-section .apply-coupon-wrapper {
        margin-bottom: 0; } }
    .cart__summary-section .cart-apply-coupon-section .apply-coupon-wrapper .apply-coupon-label {
      letter-spacing: 0.5px; }
  .cart__summary-section .cart-apply-coupon-section .coupon-applybtn button {
    color: #b18e35; }
  @media (max-width: 47.9375rem) {
    .cart__summary-section .cart-apply-coupon-section .coupon-promo-apply {
      background: transparent;
      border-top: 1px solid #ccc;
      border-bottom: 1px solid #ccc; } }

.cart__summary-section .cart-coupon__details p .applied-coupon-text {
  color: #1e1e1e; }
  @media (max-width: 47.9375rem) {
    .cart__summary-section .cart-coupon__details p .applied-coupon-text {
      font-size: 0.875rem;
      font-weight: 600; } }

.cart__summary-section .cart-coupon__details .cart-coupon__remove-action {
  font-size: 1rem;
  color: #1e1e1e;
  line-height: 1rem; }
  @media (max-width: 47.9375rem) {
    .cart__summary-section .cart-coupon__details .cart-coupon__remove-action {
      font-size: 0.875rem; } }

.cart__summary-section .cart-coupon__details .coupon-applied {
  color: #b18e35; }
  @media (max-width: 47.9375rem) {
    .cart__summary-section .cart-coupon__details .coupon-applied {
      font-size: 0.75rem; } }

.cart__summary-section .cart__loyalty-points .loyalty-check__link {
  color: #b18e35; }

.cart .cart__line-item .product-line-item__attributes .product-line-item__attribute--color {
  width: 100%;
  margin-bottom: 14px; }

.cart .cart__items .product-line-item__attributes {
  margin: 11px 0 0 0; }

.cart .product-line-item__saveforlater-add {
  font-size: 0.75rem;
  letter-spacing: 0.67px; }
  @media (min-width: 48rem) {
    .cart .product-line-item__saveforlater-add {
      font-size: 1rem; } }

@media (max-width: 47.9375rem) {
  .your-cartempty .empty-cart-page.heading-type {
    padding: 24px 0 14px 0;
    margin: 0; } }

.cart .cart__line-item .product-line-item__actions {
  margin-top: 0.9rem; }
  @media (max-width: 47.9375rem) {
    .cart .cart__line-item .product-line-item__actions {
      margin-top: 0; } }

.cart .cart__line-item .product-line-item__header {
  margin-top: -6px; }

.cart .cart__line-item .price-strike-promotion {
  padding-top: 0.7rem; }

.cart .product-line-item__qty-input {
  background-size: 6px 6px;
  padding: 0 18px 0px 3px; }

.cart .saveforlater .saveforlater__header-title span,
.cart .wishlist__items .saveforlater__header-title span {
  display: none; }

.cart .saveforlater a.product-line-item__name.link,
.cart .wishlist__items a.product-line-item__name.link {
  letter-spacing: 2px; }

.cart .saveforlater .price__sales.sales .value,
.cart .wishlist__items .price__sales.sales .value {
  letter-spacing: 2px; }

.saveforlater .save-wishlis .product-line-item__action.product-line-item__wishlist button.product-line-item__wishlist-remove {
  font-size: 0; }
  .saveforlater .save-wishlis .product-line-item__action.product-line-item__wishlist button.product-line-item__wishlist-remove:after {
    content: "";
    width: 26px;
    height: 23px;
    background: url(../images/adwishlistfilled.svg) no-repeat;
    background-size: 20px;
    top: 10px;
    right: 0;
    left: 90%;
    position: absolute;
    display: inline-block; }

.saveforlater .save-wishlis .product-line-item__action.product-line-item__wishlist button.product-line-item__wishlist-add {
  font-size: 0; }
  .saveforlater .save-wishlis .product-line-item__action.product-line-item__wishlist button.product-line-item__wishlist-add:after {
    content: "";
    width: 20px;
    height: 20px;
    background: url(../images/adwishlist.svg) no-repeat;
    top: 10px;
    right: 0;
    left: 90%;
    position: absolute;
    display: inline-block; }

@media (min-width: 48rem) {
  .cart--empty .cart-save {
    margin: 0 auto;
    padding: 0 2rem;
    max-width: 90rem; }
  .cart .product-line-item__qty-form .product-line-item__qty-label {
    margin-top: 2px;
    color: #1e1e1e;
    margin-right: 11px; }
  .product-line-item__qty-input {
    position: relative;
    top: 2px; } }

.cart-error-messaging .form-invalid-feedback {
  color: #b18e35; }


/*# sourceMappingURL=cartMain.css.map*/