@charset "UTF-8";
/**
 * 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]
*/
/**
* [Fluid Type and space]
*/
/**
 * Expose a single property to handle the different text-underline preferences for RTL vs LTR.
 */
/**
 * POSTCSS-RTL/POSTCSS-RTLCSS Has issues parsing inline comments when using production mode, which removes CSS comments.
 * Using the important comment syntax doesn't seem to work either, as that just results in appending the comment with no functionality.
 */
/*------------------------------------*\
  #EXTERNALS
\*------------------------------------*/
.address-summary--multi-ship-summary .address-summary__group {
  display: flex;
  flex-wrap: wrap;
}

.address-summary--multi-ship-summary .address-summary__section {
  flex: 1 1 50%;
  max-width: 50%;
}

[dir="ltr"] .address-summary--multi-ship-summary .address-summary__section {
  padding-right: 2em;
}

[dir="rtl"] .address-summary--multi-ship-summary .address-summary__section {
  padding-left: 2em;
}

.address-summary--line-item {
  padding: 1rem;
  background-color: #F2F2F2;
  font-size: 0.875rem;
}

.address-summary__section:not(:first-child) {
  margin-top: 1.5em;
}

.address-summary__title {
  margin-bottom: 0.5em;
}

.address-summary__details {
  font-family: "MontblancType-Regular", "MontblancType-Medium", "MontblancType-Light", "Almarai", Helvetica, Arial, sans-serif;
  line-height: 1.78;
  overflow-wrap: break-word;
}

.address-summary__row-icon {
  width: 2.25rem;
}

[dir="ltr"] .address-summary__row-icon {
  margin-right: 0.5rem;
}

[dir="rtl"] .address-summary__row-icon {
  margin-left: 0.5rem;
}

.address-summary__actions {
  margin-top: 2rem;
}

@media (max-width: 49.375rem) {
  .address-summary__action-col:not(:last-child) {
    margin-bottom: 1.5rem;
  }
}

.address-recommendation__summary {
  padding: 1rem;
  border: solid 0.0625rem;
  box-shadow: 0 0 transparent;
  border-radius: 0;
  transition: border-color 300ms ease-in-out, background-color 300ms ease-in-out, box-shadow 500ms ease-in-out;
}

.address-recommendation__summary:hover {
  cursor: pointer;
  background-color: #5A5A5A;
}

.address-recommendation__option:checked + .address-recommendation__summary {
  border-color: #444444;
  background-color: #444444;
  color: #FFF;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
}

.address-recommendation__option:focus:not(:checked) + .address-recommendation__summary {
  background-color: #5A5A5A;
}

@media (min-width: 49.4375rem) {
  .address-recommendation:nth-child(n+3) {
    margin-top: 1.25rem;
  }
}

@media (max-width: 49.375rem) {
  .address-recommendation:not(:last-child) {
    margin-bottom: 1.25rem;
  }
}

.total-list__row:not(:last-child) dt {
  font-weight: normal;
}

.total-list__row:not(:last-child) dd {
  font-weight: 700;
}

.total-list__division {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

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

.store-locator__result-content {
  display: block;
}

.store-locator__result-content:hover {
  cursor: pointer;
}

.store-locator__result-content:hover .store-details__name {
  text-decoration: underline;
}

.store-locator__form {
  margin-bottom: 3rem;
}

.store-locator__results,
.store-locator__results--extended {
  overflow: auto;
}

.store-locator__result-item {
  position: relative;
}

.store-locator__no-results {
  margin: auto;
  padding: 30px 0;
}

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

.store-locator__result-item--extended:first-child {
  padding-top: 40px;
}

.store-locator__result-item--extended:not(:last-child) {
  padding-top: 40px;
  border-bottom: 1px solid #FFF;
  padding-bottom: 40px;
}

[dir="ltr"] .store-locator__result-item--extended:not(:last-child) {
  padding-left: 30px;
}

[dir="rtl"] .store-locator__result-item--extended:not(:last-child) {
  padding-right: 30px;
}

.store-locator__result-item--extended:last-child {
  padding-bottom: 40px;
}

[dir="ltr"] .store-locator__result-item--extended:last-child {
  padding-left: 30px;
}

[dir="rtl"] .store-locator__result-item--extended:last-child {
  padding-right: 30px;
}

.store-details--extended .store-details__name {
  margin-bottom: 1rem;
  font-size: 14px;
  font-weight: 600;
}

.store-details--extended .store-details__section:not(:last-child) {
  margin-bottom: 1.5rem;
}

.store-details--extended .store-details__check-availability {
  color: #000;
  text-decoration: underline;
  font-size: 14px;
  display: flex;
  justify-content: start;
}

.modal--store-locator {
  overflow: initial;
  background-color: rgba(0, 0, 0, 0.5);
  display: inline-block;
  padding: 0;
}

.modal--store-locator .window-modal__content {
  height: 100vh;
  max-width: 80vw;
}

[dir="ltr"] .modal--store-locator .window-modal__content {
  float: right;
}

[dir="rtl"] .modal--store-locator .window-modal__content {
  float: left;
}

@media (max-width: 63.938rem) {
  .modal--store-locator .window-modal__content {
    overflow-y: scroll;
    padding-bottom: 0;
    max-width: 100%;
  }
}

.modal--store-locator .window-modal__content .modal__content {
  margin-top: 0;
}

.modal--store-locator .window-modal__close {
  z-index: 99;
}

@media (min-width: 64.0625rem) {
  .modal--store-locator .window-modal__close {
    background-color: #FFF;
    border-radius: 20px;
    width: 38px;
    height: 38px;
    border: 1px solid #000;
    top: 4rem;
  }

  [dir="ltr"] .modal--store-locator .window-modal__close {
    right: 10px;
  }

  [dir="rtl"] .modal--store-locator .window-modal__close {
    left: 10px;
  }

  .modal--store-locator .window-modal__close:after {
    content: "×";
    width: 20px;
    height: 20px;
    display: flex;
    font-size: 40px;
    font-weight: 200;
    align-items: center;
    margin: 12px 6px;
    opacity: 0.7;
  }
}

@media (max-width: 63.938rem) {
  .store-locator--product-availability:not(.set--show-form) .google-map {
    display: none;
  }
}

.store-locator--product-availability .left-content {
  display: block;
  max-width: 50%;
  width: 100%;
  padding: 30px;
}

@media (max-width: 63.938rem) {
  .store-locator--product-availability .left-content {
    max-width: 100%;
  }
}

.store-locator--product-availability .left-content .modal__header {
  padding: 0 !important;
}

.store-locator--product-availability .product-tile__media-container {
  padding: 0;
  min-height: 167px;
  display: flex;
  align-items: center;
  background-color: #F2F2F2;
}

.store-locator--product-availability .store-locator__contents {
  border-bottom: 1px solid #000;
}

.store-locator--product-availability .product-tile__image {
  max-height: inherit;
  width: 100%;
  height: auto;
}

.store-locator--product-availability .informative-info {
  display: none;
}

@media (min-width: 64.0625rem) {
  .store-locator--product-availability .informative-info {
    display: block;
  }
}

.store-locator--product-availability .store-locator__contact-form {
  display: none;
  margin-bottom: 1.5rem;
  max-width: 100%;
}

.store-locator--product-availability .store-locator__contact-form .iti__flag-container {
  border: 0;
  background-color: #F2F2F2;
}

[dir="ltr"] .store-locator--product-availability .store-locator__contact-form .iti__flag-container {
  border-right: 2px solid #FFF;
}

[dir="rtl"] .store-locator--product-availability .store-locator__contact-form .iti__flag-container {
  border-left: 2px solid #FFF;
}

@media (min-width: 64.0625rem) {
  .store-locator--product-availability .store-locator__contact-form form {
    width: 50%;
  }

  [dir="ltr"] .store-locator--product-availability .store-locator__contact-form form {
    padding-right: 14px;
  }

  [dir="rtl"] .store-locator--product-availability .store-locator__contact-form form {
    padding-left: 14px;
  }
}

.store-locator--product-availability .store-locator__results--extended {
  max-height: 68vh;
}

@media (min-width: 64.0625rem) {
  .store-locator--product-availability .store-locator__results--extended .store-locator__result-item--extended:hover {
    background-color: #E5EFF5;
  }
}

.store-locator--product-availability .store-locator__results--extended::-webkit-scrollbar {
  width: 2px;
}

.store-locator--product-availability .store-locator__results--extended::-webkit-scrollbar-track {
  background: #FFF;
}

.store-locator--product-availability .store-locator__results--extended::-webkit-scrollbar-thumb {
  background: #000;
}

@media (max-width: 63.938rem) {
  .store-locator--product-availability .store-locator__results--extended {
    max-height: 100%;
  }

  .store-locator--product-availability .store-locator__results--extended.show-main-stores .store-locator__result-item--extended {
    display: block;
  }

  .store-locator--product-availability .store-locator__results--extended.show-main-stores .google-map {
    display: none;
  }

  .store-locator--product-availability .store-locator__results--extended.show-main-map .store-locator__result-item--extended {
    display: none;
  }

  .store-locator--product-availability .store-locator__results--extended.show-main-map .google-map {
    display: block;
    height: 600px;
  }

  .store-locator--product-availability .store-locator__results--extended.show-main-map .google-map .store-locator__map {
    height: 100%;
  }
}

.store-locator--product-availability .store-details__section .store-details__hours .store-details__hours-row {
  display: none;
}

.store-locator--product-availability .store-details__section .store-details__hours .store-details__hours-row:first-child {
  display: flex;
}

.store-locator--product-availability .mobile-reserve-tabs {
  display: none;
}

.store-locator--product-availability .mobile-reserve-tab {
  display: none;
}

.store-locator--product-availability .mobile-reserve-tab.active {
  display: flex;
}

.store-locator--product-availability .mobile-reserve-tab.active .store-details__hidden-actions {
  display: none;
}

.store-locator--product-availability .tab-content {
  position: static;
}

@media (min-width: 64.0625rem) {
  .store-locator--product-availability .tab-content .google-map {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100vh;
  }

  [dir="ltr"] .store-locator--product-availability .tab-content .google-map {
    right: 0;
  }

  [dir="rtl"] .store-locator--product-availability .tab-content .google-map {
    left: 0;
  }

  .store-locator--product-availability .tab-content .google-map .store-locator__map {
    height: 100vh;
  }
}

.store-locator--product-availability .product-attribute__list--check-availability {
  display: none;
  margin-top: 10px;
}

.store-locator--product-availability .product-attribute__list--check-availability .variant_product_section {
  display: flex;
}

.store-locator--product-availability .product-attribute__list--check-availability .variant_product_section .variant_attibute_size {
  margin-top: 0;
}

[dir="ltr"] .store-locator--product-availability .product-attribute__list--check-availability .variant_product_section .variant_attibute_size {
  padding-left: 14px;
}

[dir="rtl"] .store-locator--product-availability .product-attribute__list--check-availability .variant_product_section .variant_attibute_size {
  padding-right: 14px;
}

.store-locator--product-availability .product-attribute__list--check-availability .variant_product_section .variant_attibute_size li label {
  display: none;
}

.store-locator--product-availability .product-attribute__list--check-availability .variant_product_section .variant_attibute_size li input[type=radio]:checked + label {
  display: block;
  border: 0;
  width: -moz-max-content;
  width: max-content;
}

.store-locator--product-availability.set--show-form input, .store-locator--product-availability.set--show-form textarea {
  background-color: #F2F2F2 !important;
  border: 0 !important;
}

.store-locator--product-availability.set--show-form .informative-info {
  font-size: 14px;
  color: #000;
  width: 50%;
}

[dir="ltr"] .store-locator--product-availability.set--show-form .informative-info {
  padding-right: 14px;
}

[dir="rtl"] .store-locator--product-availability.set--show-form .informative-info {
  padding-left: 14px;
}

.store-locator--product-availability.set--show-form .disclaimer-info {
  font-size: 12px;
  color: #000;
}

.store-locator--product-availability.set--show-form .store-details__action-cta {
  display: flex;
  text-transform: capitalize;
  color: #000;
  letter-spacing: 1px;
  font-weight: 500;
  font-size: 14px;
}

.store-locator--product-availability.set--show-form .store-details__action-cta.send {
  color: #FFF;
  display: flex;
  justify-content: center;
}

.store-locator--product-availability.set--show-form .store-locator__contact-form {
  display: block;
}

@media (max-width: 63.938rem) {
  .store-locator--product-availability.set--show-form .google-map {
    height: 500px;
    display: none;
    margin: 0 -14px;
  }

  .store-locator--product-availability.set--show-form .store-locator__map {
    height: 100%;
  }

  .store-locator--product-availability.set--show-form .store-details__hidden-actions {
    padding-bottom: 40px;
  }

  .store-locator--product-availability.set--show-form .tab-content.show-map .google-map {
    display: block;
  }

  .store-locator--product-availability.set--show-form .tab-content.show-map .store-locator__results--extended {
    max-height: 100vh;
    height: 100%;
  }

  .store-locator--product-availability.set--show-form .tab-content.show-map .store-locator__contact-form {
    display: none;
  }

  .store-locator--product-availability.set--show-form .tab-content.show-form .google-map {
    display: none;
  }

  .store-locator--product-availability.set--show-form .tab-content.show-form .informative-info {
    padding: 0 14px;
    width: 100%;
  }

  .store-locator--product-availability.set--show-form .tab-content.show-form .informative-info,
  .store-locator--product-availability.set--show-form .tab-content.show-form .store-locator__contact-form {
    display: block;
  }
}

.store-locator--product-availability.set--show-form .store-details--extended:not(.set--show-form) {
  display: none;
}

.store-locator--product-availability.set--show-form .store-locator__contents {
  position: absolute;
  top: 0;
  width: 100%;
  margin: 0 !important;
  overflow-y: scroll;
  height: 100vh;
  -ms-overflow-style: none;
  scrollbar-width: none;
  z-index: 99;
  background-color: #FFF;
}

@media (min-width: 64.0625rem) {
  .store-locator--product-availability.set--show-form .store-locator__contents {
    padding: 0 14px;
  }
}

.store-locator--product-availability.set--show-form .store-locator__contents::-webkit-scrollbar {
  display: none;
}

.store-locator--product-availability.set--show-form .store-locator__contents .store-locator__result-item--extended {
  margin: 0;
  padding: 0;
}

@media (min-width: 64.0625rem) {
  .store-locator--product-availability.set--show-form .store-locator__contents .store-locator__result-item--extended:hover {
    background-color: unset;
  }
}

.store-locator--product-availability.set--show-form .store-locator__contents .store-locator__results--extended {
  max-height: 100%;
}

@media (max-width: 63.938rem) {
  .store-locator--product-availability.set--show-form .store-locator__contents .store-locator__results--extended {
    padding: 40px 14px 0;
  }
}

@media (max-width: 63.938rem) {
  .store-locator--product-availability.set--show-form .store-locator__contents .store-locator__contact-form {
    padding: 0 14px;
  }
}

.store-locator--product-availability.set--show-form .mobile-reserve-tabs {
  display: flex;
  margin: 0 auto;
  position: absolute;
  width: 100%;
  top: 130px;
}

.store-locator--product-availability .store-details__hidden-actions {
  display: none;
  margin-bottom: 2rem;
}

.store-locator--product-availability .store-details__contact-description {
  font-size: 16px;
  color: #000;
}

.store-locator--product-availability .store-details--extended.set--show-form .store-details__check-availability {
  display: none;
}

.store-locator--product-availability .store-details--extended.set--show-form .store-details__hidden-actions {
  display: block;
}

.store-locator--product-availability .store-details__hours {
  flex: 1 1;
}

.store-locator--product-availability .store-details__hours-day {
  flex: 0 0 6.25rem;
}

.store-locator--store-pickup .store-details__name,
.store-locator--store-pickup .store-details__address {
  margin-bottom: 1rem;
  font-size: 14px;
  font-weight: 600;
}

.store-locator--store-pickup .store-locator__result-details-cta {
  margin-top: 0.35rem;
}

[dir="ltr"] .store-locator--store-pickup .store-locator__result-details-cta {
  margin-left: 2.2rem;
}

[dir="rtl"] .store-locator--store-pickup .store-locator__result-details-cta {
  margin-right: 2.2rem;
}

.store-locator--store-pickup .store-locator__result-item:not(:last-child) {
  margin-bottom: 3rem;
}

.store-locator--store-pickup .store-locator__form-group .button {
  line-height: 1.45;
}

[dir="ltr"] .store-details__delivery-value {
  margin-left: 1.5rem;
}

[dir="rtl"] .store-details__delivery-value {
  margin-right: 1.5rem;
}

.store-details--extended-modal .store-details__main {
  padding-top: 1.5em;
  text-align: center;
  margin-bottom: 2.25rem;
  justify-content: center;
  align-items: center;
}

.store-details--extended-modal .store-details__name {
  margin-bottom: 0.5rem;
}

.store-details--extended-modal .store-details__section:not(:last-child) {
  margin-bottom: 2.25rem;
}

.store-details--extended-modal .store-details__section-title {
  margin-bottom: 0.65rem;
}

.store-details--extended-modal .store-details__section-hours-title {
  margin-top: 2.25rem;
}

.store-details--extended-modal .store-details__hours-row {
  justify-content: space-between;
}

.store-details--extended-modal .store-details__hours-row:not(:last-child) {
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
  border-bottom: solid 0.0625rem #F0F0F0;
}

.store-details--extended-modal .store-details__hours-day {
  flex: 0 0 4.875rem;
}

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

  .store-locator__results--extended {
    max-height: 56vh;
  }
}

@media (max-width: 64rem) {
  .store-locator--product-availability .store-locator__contents {
    margin-top: 0;
    position: relative;
  }

  .store-locator--product-availability .mobile-tabs {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
  }

  .store-locator--product-availability .mobile-tabs .button {
    padding: 10px;
    cursor: pointer;
  }

  .store-locator--product-availability .mobile-tabs .button.active {
    background-color: #000;
    color: #FFF;
  }

  .store-locator--store-pickup .store-locator__title {
    margin-bottom: 1.5rem;
  }

  .store-locator--store-pickup .store-locator__form-group:not(:last-child) {
    margin-bottom: 1.75rem;
  }

  .store-locator--store-pickup .store-locator__no-results {
    text-align: center;
  }

  .store-locator__results {
    max-height: 22rem;
  }
}

[dir="ltr"] .modal--store-locator .form-check .form-check-label--radio::after {
  left: 5px;
}

[dir="rtl"] .modal--store-locator .form-check .form-check-label--radio::after {
  right: 5px;
}

.secondary-navigation {
  position: relative;
  text-transform: none;
}

[dir=ltr] .secondary-navigation__item {
  font-size: 0.75rem;
}

[dir=rtl] .secondary-navigation__item {
  font-size: 0.875rem;
}

.secondary-navigation__anchor {
  color: #8C8C8C;
  display: flex;
  align-items: center;
  background: none;
}

.secondary-navigation__anchor .icon {
  display: none;
}

.secondary-navigation__anchor.set--active {
  color: #202020;
  font-weight: 500;
}

.secondary-navigation__anchor.set--active .icon {
  display: block;
}

[dir="ltr"] .secondary-navigation__anchor.set--active .icon {
  margin-right: 0.661875rem;
}

[dir="rtl"] .secondary-navigation__anchor.set--active .icon {
  margin-left: 0.661875rem;
}

@media (min-width: 49.4375rem) {
  .secondary-navigation {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .secondary-navigation__title {
    margin-bottom: 2.4em;
  }

  .secondary-navigation__title.account--title {
    font-size: 1.5rem;
  }

  .secondary-navigation__item:not(:last-child) {
    margin-bottom: 2.0625rem;
  }

  .secondary-navigation__item--extra {
    margin-top: 2rem;
  }

  .secondary-navigation__anchor {
    color: #8C8C8C;
  }

  .secondary-navigation__anchor.icon {
    display: none;
  }

  .secondary-navigation__anchor.set--active {
    color: #202020;
    font-weight: 500;
  }

  .secondary-navigation__anchor.set--active.icon {
    display: block;
  }
}

@media (max-width: 49.375rem) {
  .secondary-navigation {
    margin-bottom: 2rem;
  }

  .secondary-navigation__title {
    margin-bottom: 0.5em;
  }

  .secondary-navigation__trigger {
    position: relative;
    width: 100%;
    padding: 1rem;
    border-bottom: solid 0.0625rem #E6E6E6;
    border-top: solid 0.0625rem #E6E6E6;
    border-radius: 0;
    font-weight: 500;
  }

  [dir="ltr"] .secondary-navigation__trigger {
    text-align: left;
  }

  [dir="rtl"] .secondary-navigation__trigger {
    text-align: right;
  }

  .secondary-navigation__trigger-icon {
    position: absolute;
    top: 0px;
    bottom: 0px;
    margin-top: auto;
    margin-bottom: auto;
  }

  [dir="ltr"] .secondary-navigation__trigger-icon {
    right: 1rem;
  }

  [dir="rtl"] .secondary-navigation__trigger-icon {
    left: 1rem;
  }

  .toggle--active .secondary-navigation__trigger-icon {
    transform: scale(-1);
  }

  .secondary-navigation__list {
    z-index: 2;
    position: absolute;
    top: calc(100% - 0.0625rem);
    width: 100%;
    background-color: #FFF;
    border-bottom: solid 0.0625rem #E6E6E6;
  }

  [dir="ltr"] .secondary-navigation__list {
    left: 0;
  }

  [dir="rtl"] .secondary-navigation__list {
    right: 0;
  }

  .secondary-navigation__list:not(.toggle--active) {
    opacity: 0;
    visibility: hidden;
  }

  .secondary-navigation__item--extra {
    margin-top: 1rem;
  }

  .secondary-navigation__anchor {
    display: block;
    padding: 1rem;
  }

  .secondary-navigation__anchor.set--active {
    background-color: #F2F2F2;
    font-weight: 500;
    color: #202020;
  }
}

.select2-container {
  display: inline-block;
  position: relative;
  vertical-align: middle;
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

[dir="ltr"] .select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 8px;
  padding-right: 20px;
}

[dir="rtl"] .select2-container .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--single .select2-selection__clear {
  position: relative;
}

[dir="ltr"] .select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

[dir="rtl"] .select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-left: 8px;
  padding-right: 20px;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 100%;
  z-index: 1051;
}

[dir="ltr"] .select2-dropdown {
  left: -100000px;
}

[dir="rtl"] .select2-dropdown {
  right: -100000px;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 6px;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-results__option[aria-selected] {
  cursor: pointer;
}

[dir="ltr"] .select2-container--open .select2-dropdown {
  left: 0;
}

[dir="rtl"] .select2-container--open .select2-dropdown {
  right: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #FFF;
  filter: alpha(opacity=0);
}

[dir="ltr"] .select2-close-mask {
  left: 0;
}

[dir="rtl"] .select2-close-mask {
  right: 0;
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  font-weight: bold;
}

[dir="ltr"] .select2-container--default .select2-selection--single .select2-selection__clear {
  float: right;
}

[dir="rtl"] .select2-container--default .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  width: 20px;
}

[dir="ltr"] .select2-container--default .select2-selection--single .select2-selection__arrow {
  right: 1px;
}

[dir="rtl"] .select2-container--default .select2-selection--single .select2-selection__arrow {
  left: 1px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

[dir="ltr"] .select2-container--default .select2-selection--single .select2-selection__arrow b {
  left: 50%;
  margin-left: -4px;
}

[dir="rtl"] .select2-container--default .select2-selection--single .select2-selection__arrow b {
  right: 50%;
  margin-right: -4px;
}

[dir="ltr"] .select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

[dir="rtl"] .select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: right;
}

[dir="ltr"] .select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

[dir="rtl"] .select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  right: 1px;
  left: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  list-style: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  font-weight: bold;
  margin-top: 5px;
  padding: 1px;
}

[dir="ltr"] .select2-container--default .select2-selection--multiple .select2-selection__clear {
  float: right;
  margin-right: 10px;
}

[dir="rtl"] .select2-container--default .select2-selection--multiple .select2-selection__clear {
  float: left;
  margin-left: 10px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  margin-top: 5px;
  padding: 0 5px;
}

[dir="ltr"] .select2-container--default .select2-selection--multiple .select2-selection__choice {
  float: left;
  margin-right: 5px;
}

[dir="rtl"] .select2-container--default .select2-selection--multiple .select2-selection__choice {
  float: right;
  margin-left: 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
}

[dir="ltr"] .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  margin-right: 2px;
}

[dir="rtl"] .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333;
}

[dir="ltr"] .select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice, [dir="ltr"] .select2-container--default[dir=rtl] .select2-selection--multiple .select2-search--inline {
  float: right;
}

[dir="rtl"] .select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice, [dir="rtl"] .select2-container--default[dir=rtl] .select2-selection--multiple .select2-search--inline {
  float: left;
}

[dir="ltr"] .select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

[dir="rtl"] .select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-right: 5px;
  margin-left: auto;
}

[dir="ltr"] .select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

[dir="rtl"] .select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-right: 2px;
  margin-left: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd;
}

[dir="ltr"] .select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

[dir="rtl"] .select2-container--default .select2-results__option .select2-results__option {
  padding-right: 1em;
}

[dir="ltr"] .select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

[dir="rtl"] .select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-right: 0;
}

[dir="ltr"] .select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

[dir="rtl"] .select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-right: -1em;
  padding-right: 2em;
}

[dir="ltr"] .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

[dir="rtl"] .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-right: -2em;
  padding-right: 3em;
}

[dir="ltr"] .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

[dir="rtl"] .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-right: -3em;
  padding-right: 4em;
}

[dir="ltr"] .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

[dir="rtl"] .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-right: -4em;
  padding-right: 5em;
}

[dir="ltr"] .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

[dir="rtl"] .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-right: -5em;
  padding-right: 6em;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--default {
  max-width: 100%;
  min-width: 100%;
}

.select2-container--default .select2-selection--single {
  width: 100%;
  height: 2.813rem;
  background-color: transparent;
  transition-property: color, border-color;
  transition-duration: 300ms;
  transition-timing-function: ease-in;
  border-radius: 0;
  border: 0.063rem solid #444444;
  border-bottom: solid 0.0625rem #444444;
  background-color: transparent;
  font-weight: 300;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 2.1875rem;
  letter-spacing: normal;
  color: inherit;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 0;
  height: 100%;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  top: 0;
  width: 100%;
  height: 100%;
  margin-top: 0;
  border: none;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23444444' d='M22.8 5.1l-11 11.4L1.2 5.1 0 6.3l11.8 12.6L24 6.3z'/%3E%3C/svg%3E");
  background-size: 0.85rem 0.85rem;
  background-repeat: no-repeat;
}

[dir="ltr"] .select2-container--default .select2-selection--single .select2-selection__arrow b {
  left: 0;
  margin-left: -0.938rem;
  background-position: calc(100% - 0.1em) center;
}

[dir="rtl"] .select2-container--default .select2-selection--single .select2-selection__arrow b {
  right: 0;
  margin-right: -0.938rem;
  background-position: calc(100% - (100% - 0.1em)) center;
}

.select2-container--default[dir] .select2-selection--single .select2-selection__rendered {
  padding-left: 0;
  padding-right: 1.125rem;
}

.select2-container--default[dir] .select2-selection--single .select2-selection__arrow {
  right: 0;
  left: auto;
}

.select2-container--default .select2-dropdown {
  border-color: currentColor;
  border-radius: 0;
}

.select2-container--default .select2-results__options {
  padding: 0;
}

.select2-container--default .select2-results__option {
  min-height: 1.875rem;
  font-size: 0.875rem;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #F0F0F0;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #444444;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
  transform: scaleY(-1);
}

/*------------------------------------*\
  #COMPONENTS
\*------------------------------------*/
.account-main__title {
  margin-bottom: 0;
  text-transform: capitalize;
  font-size: 1.5rem;
  line-height: 2.167;
}

@media (min-width: 49.4375rem) {
  .account-main__title {
    text-align: center;
  }
}

.account-head {
  margin-bottom: 0.25rem;
}

[dir="ltr"] .account-head {
  padding-left: 0rem;
}

[dir="rtl"] .account-head {
  padding-right: 0rem;
}

.account-profile-gender {
  max-width: 33%;
}

@media (max-width: 64rem) {
  .account-profile-gender {
    max-width: 100%;
  }
}

.account-card {
  display: flex;
  flex-direction: column;
  align-items: start;
  flex-grow: 1;
  border: solid 0.0625rem #E6E6E6;
  background-color: #FFF;
}

.account-card__header {
  margin-bottom: 2.25rem;
  width: 100%;
}

.account-card__header--no-spacing {
  margin-bottom: 0;
}

[dir="ltr"] .account-card__order-number-title,
[dir="ltr"] .account-card__order-date-title {
  margin-right: 0.25rem;
}

[dir="rtl"] .account-card__order-number-title,
[dir="rtl"] .account-card__order-date-title {
  margin-left: 0.25rem;
}

.account-card__row:not(:last-child) {
  margin-bottom: 1.125rem;
}

.account-card__row--short-spacing:not(:last-child) {
  margin-bottom: 0.75rem;
}

.account-card__row-title {
  margin-bottom: 0.25em;
}

.account-card__total-items {
  margin: 2.5rem 0 1rem;
}

.account-card__tag {
  display: inline-block;
  margin-bottom: 1.3em;
}

.account-card__body {
  width: 100%;
}

.account-card__body .address-summary__section {
  margin-top: 0;
}

.account-card__body .address-summary__section.order--details {
  margin-bottom: 2.3125rem;
  max-height: 13.125rem;
}

.account-card__body .checkout-stage__subheader {
  display: none;
}

.account-card__footer {
  margin-top: auto;
}

.account-card__footer--border {
  padding-top: 2.5rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: solid 0.0625rem #E6E6E6;
}

@media (min-width: 49.4375rem) {
  .account-card__footer--container {
    max-width: 25rem;
  }

  [dir="ltr"] .account-card__footer--container {
    margin-left: auto;
  }

  [dir="rtl"] .account-card__footer--container {
    margin-right: auto;
  }
}

.account-card__action {
  display: inline-block;
  font-size: 0.875rem;
}

.account-card__header-title {
  font-size: 1.125rem;
}

.edit-profile-form,
.change-password-form,
.address-form,
.preffered-store-form {
  background-color: #FFF;
  border: 1px solid #E6E6E6;
}

@media (min-width: 49.4375rem) {
  .edit-profile-form,
  .change-password-form,
  .address-form,
  .preffered-store-form {
    padding: 3.75rem 13.25rem;
  }
}

@media (max-width: 63.938rem) {
  .edit-profile-form,
  .change-password-form,
  .address-form,
  .preffered-store-form {
    padding: 3.75rem 2.25rem;
  }
}

@media (max-width: 63.938rem) {
  .change-password-form button.set--w-30 {
    width: auto;
  }
}

.account-main__order-history {
  max-width: 26.312rem;
}

[dir="ltr"] .account-main__order-history .form-control--select {
  padding-right: 10rem;
}

[dir="rtl"] .account-main__order-history .form-control--select {
  padding-left: 10rem;
}

.account-main__description {
  max-width: 34.625rem;
  align-self: center;
}

@media (min-width: 49.4375rem) {
  .account {
    padding-top: 4.25rem;
    padding-bottom: 3.5rem;
  }

  .account-card {
    padding: 2.25rem 2.5rem 2.5rem;
    margin-bottom: 1.5rem;
  }

  .account-card__action {
    margin-top: 0;
  }

  .account-main__header {
    margin-bottom: 3.25rem;
  }
}

@media (max-width: 49.375rem) {
  .account {
    padding-bottom: 3rem;
  }

  .account-main__header {
    margin-bottom: 0;
  }

  .account-card {
    padding: 2rem 1.25rem;
    margin-bottom: 0.9375rem;
  }

  .account-card__column:not(:last-child) {
    margin-bottom: 1.5em;
  }

  .account-card__action {
    margin-top: 0;
  }
}

.order--details .product-line-item__attributes, .order--details .product-line-item__header {
  color: #000;
}

.order--details .product-line-item__header {
  display: block;
  font-size: 0.875rem;
}

.order--details .product-line-item__header .order-confirmation__product-details-total {
  font-size: 0.875rem;
  margin: 0.5rem 0;
}

[dir="ltr"] .order--details .product-line-item__header .order-confirmation__product-details-total {
  text-align: left;
}

[dir="rtl"] .order--details .product-line-item__header .order-confirmation__product-details-total {
  text-align: right;
}

[dir="ltr"] .order--details .product-line-item__attribute {
  text-align: left;
}

[dir="rtl"] .order--details .product-line-item__attribute {
  text-align: right;
}

.order--details .product-line-item__attribute .heading-type {
  font-size: 0.875rem;
}

.wishlist__title-message {
  margin-top: 0;
  text-align: center;
  font-family: "MontblancType-Regular", "MontblancType-Medium", "MontblancType-Light", "Almarai", Helvetica, Arial, sans-serif;
}

.wishlist__saved-count,
.wishlist__social-share {
  margin-bottom: 1.5rem;
}

.wishlist__social-share .product-common__share-trigger {
  text-transform: none;
  font-size: 0.875rem;
}

[dir="ltr"] .wishlist__social-share .product-common__share-trigger .icon {
  margin-right: 0.625rem;
}

[dir="rtl"] .wishlist__social-share .product-common__share-trigger .icon {
  margin-left: 0.625rem;
}

.wishlist__saved-count {
  font-size: 0.875rem;
}

[dir="ltr"] .wishlist-social__item:not(:last-child) {
  margin-right: 1rem;
}

[dir="rtl"] .wishlist-social__item:not(:last-child) {
  margin-left: 1rem;
}

html[dir=rtl] .wishlist__image-wrapper .wishlist__remove-item-button:after {
  top: -0.25em;
}

.wishlist__image-wrapper {
  position: relative;
  margin-bottom: 1rem;
}

.wishlist__remove-item-button {
  position: absolute;
  top: 0.625rem;
  border: 0;
  background: #1F2020;
}

[dir="ltr"] .wishlist__remove-item-button {
  left: 1.25rem;
}

[dir="rtl"] .wishlist__remove-item-button {
  right: 1.25rem;
}

.wishlist__remove-item-button .wishlist__remove-item-icon {
  display: none;
}

.wishlist__remove-item-button:after {
  content: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg'  viewBox='0 0 24 24'%3E%3Cpath fill='%23FFF' d='M23.8 23l-11-11L23.8.9c.1-.1.1-.6 0-.7-.1-.2-.3-.2-.4-.2-.1 0-.3 0-.3.1L12 11.2 1 .1C1 0 .8 0 .7 0 .4 0 .1.3.1.6.1.7.1.9.2 1l11.1 11L.2 23c-.1.1-.1.4 0 .7.1.1.4.1.7 0l.1-.1 11-10.9 11.1 11.1c.1.3.6.3.7.1.2-.3.2-.6 0-.9z' /%3E%3C/svg%3E");
  width: 0.75rem;
  height: 0.75rem;
  display: inline-block;
  top: -0.35em;
  position: relative;
}

.wishlist__remove-item-icon {
  width: 0.75rem;
  height: 0.75rem;
}

.wishlist__product-line-item {
  margin-bottom: 3rem;
}

.wishlist__product-line-item .wishlist__availability {
  margin-top: 1rem;
}

[data-action=Wishlist-ShowOthers] .account-main__header {
  flex-basis: auto;
}

@media (min-width: 49.4375rem) {
  .wishlist__social-share {
    align-items: flex-end;
  }

  .wishlist__remove-item-button {
    top: 0.625rem;
  }

  .wishlist__title-message {
    padding: 0 10.5rem 1.5rem;
  }
}

@media (max-width: 63.938rem) {
  .wishlist__title-message {
    padding: 0 0.5rem 1.5rem;
  }
}

@media (max-width: 49.375rem) {
  .wishlist__title-message {
    padding: 0 1.25rem;
  }

  .wishlist__saved-count,
  .wishlist__social-share {
    max-width: 50%;
  }

  .wishlist__product-line-item {
    max-width: 50%;
  }

  .wishlist__product-line-item button[data-product-component=add-button] {
    padding: 0.75rem 0.813rem;
  }

  .product-line-item__header,
  .product-line-item__unit-price {
    font-size: 0.813rem;
  }
}

.order-history-card {
  position: relative;
  background-color: #FFF;
  border: solid 0.0625rem #E6E6E6;
  font-size: 0.875rem;
  margin-top: 0.9375rem;
}

.order-history-card__image {
  margin: 0 auto;
}

.order-history-card__row {
  margin-bottom: 0;
}

.order-history-card__row.moreinfo {
  margin-top: 1.75rem;
}

.order-history-card__row--spacing-large {
  margin-top: 1rem;
}

[dir="ltr"] .order-history-card__key {
  margin-left: 0.5em;
}

[dir="rtl"] .order-history-card__key {
  margin-right: 0.5em;
}

.order-history-card__action {
  position: absolute;
}

[dir="ltr"] .order-history-card__action {
  right: 0;
}

[dir="rtl"] .order-history-card__action {
  left: 0;
}

.order-details__product-img {
  margin-bottom: 1.75rem;
}

@media (min-width: 49.4375rem) {
  .order-history {
    margin-top: 7.5rem;
  }

  .order-history-card {
    padding: 3.75rem;
    margin-bottom: 3.75rem 3.75rem 3.625rem 3.75rem;
  }

  .order-history-card__label {
    width: 12.375rem;
  }

  .order-history-card__action {
    top: 0;
  }

  .order-history-card__total {
    position: absolute;
    bottom: -20px;
  }

  [dir="ltr"] .order-history-card__total {
    right: 0;
  }

  [dir="rtl"] .order-history-card__total {
    left: 0;
  }

  .order-details__return-link {
    margin: 2rem 0;
  }

  .order-history-card__row {
    display: flex;
    margin-bottom: 0.5rem;
  }

  .order-history-card__row--container {
    position: relative;
  }

  .account-card__body.order,
  .account-card__header.order {
    max-width: 40.6875rem;
    margin: 0 auto;
  }

  .account-card__body.order .cms-generic-copy,
  .account-card__header.order .cms-generic-copy {
    font-family: "MontblancType-Regular", "MontblancType-Medium", "MontblancType-Light", "Almarai", Helvetica, Arial, sans-serif;
  }

  .account-card__body {
    padding-top: 2.3125rem;
  }

  [dir="ltr"] .account-card__body .account-card__column {
    padding-left: 0;
  }

  [dir="rtl"] .account-card__body .account-card__column {
    padding-right: 0;
  }
}

@media (max-width: 49.375rem) {
  .order-history {
    margin-top: 4.125rem;
  }

  .order-history-card {
    padding: 3.125rem 1.25rem 1.6rem;
    border-bottom: solid 0.0625rem #E6E6E6;
  }

  .order-history-card:not(:last-child) {
    margin-bottom: 2.5rem;
  }

  .order-history-card__media {
    margin-bottom: 1.25rem;
  }

  .order-history-card__action {
    top: 1.125rem;
  }

  [dir="ltr"] .order-history-card__action {
    right: 30px;
  }

  [dir="rtl"] .order-history-card__action {
    left: 30px;
  }

  .order-history-card__total {
    margin-top: 0.75rem;
  }

  [dir="ltr"] .order-history-card__total {
    text-align: right;
  }

  [dir="rtl"] .order-history-card__total {
    text-align: left;
  }

  .order-details__return-link {
    margin: 0.5rem 0;
  }

  .account-card__body.order .account-card__column {
    width: 25%;
    flex-basis: 50%;
  }
}

@media (max-width: 49.375rem) and (max-width: 49.375rem) {
  .account-card__header {
    margin-top: 2rem;
  }
}

@media (max-width: 49.375rem) {
  .account-card__body.order .cms-generic-copy,
  .account-card__header.order .cms-generic-copy {
    font-family: "MontblancType-Regular", "MontblancType-Medium", "MontblancType-Light", "Almarai", Helvetica, Arial, sans-serif;
  }
}

.addressbook__list-intro-bar {
  margin-bottom: 2.25rem;
}

@media (max-width: 49.375rem) {
  .addressbook__list-intro-bar {
    margin-top: 1.25rem;
  }

  .addressbook__list-count {
    width: 100%;
    margin-bottom: 2.125rem;
  }
}

.account-welcome-banner {
  background: none;
}

.account-welcome-banner .brand__panther-image {
  display: none;
}

.account-welcome-banner__description {
  margin-top: 0.75em;
  margin-bottom: 4.9375rem;
  font-size: 0.938rem;
}

.account-welcome-banner__title {
  font-size: 1.5rem;
}

@media (max-width: 49.375rem) {
  .account-welcome-banner {
    margin-top: 3.437rem;
    padding-bottom: 0;
  }

  .account-welcome-banner__title {
    font-size: 1.5rem;
  }
}

.account-subscriptions-tile {
  position: relative;
  margin: 1rem auto 0 auto;
}

.account-subscriptions-tile__image-wrapper {
  position: relative;
  display: block;
}

.account-subscriptions-tile__title {
  position: absolute;
  top: 1rem;
}

[dir="ltr"] .account-subscriptions-tile__title {
  left: 0;
}

[dir="rtl"] .account-subscriptions-tile__title {
  right: 0;
}

.account-subscriptions-tile__additems {
  position: absolute;
  bottom: 1rem;
}

[dir="ltr"] .account-subscriptions-tile__additems {
  right: 1rem;
}

[dir="rtl"] .account-subscriptions-tile__additems {
  left: 1rem;
}

.account-subscriptions-tile--selected {
  position: absolute;
  bottom: 0;
}

[dir="ltr"] .account-subscriptions-tile--selected {
  left: 0;
}

[dir="rtl"] .account-subscriptions-tile--selected {
  right: 0;
}

.account-subscriptions-tile__input:checked + .account-subscriptions-tile--selected {
  border-bottom: 4px solid #e60000;
}

.account-subscriptions-tile__selections {
  margin: 0 auto;
}

.account-subscriptions-tile__selection:last-child {
  margin-bottom: 1rem;
}

.account-subscriptions-tile__selection-checkbox:checked + div {
  display: block;
  margin-top: 1rem;
}

.account-subscriptions-tile__theme .account-subscriptions-tile__image-wrapper {
  border: 2px solid #F0F0F0;
}

.account-subscriptions__boutique-selection {
  margin-top: 1rem;
}

.loader {
  position: fixed;
}

.loader .loader-indicator, .loader .face-loader {
  top: 50%;
  transform: translateY(-50%);
}

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