/**
 * TABLE OF CONTENTS
 *
 * SETTINGS
 * Global..................Globally-available variables and config.
 *
 * TOOLS
 * Mixins..................Useful mixins.
 *
 * COMPONENTS
 * PDP Images..............Mobile gallery and desktop layout
 * Primary Information.....Critical information like name and price
 * Reviews Teaser..........Summarized review list on PDP.
 * PDP Variations..........Variation selector styles seen in the PDP
 * 
 * 
 * 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
\*------------------------------------*/
/**
 * 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
\*------------------------------------*/
/**
 * 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]
 */
.giftcard-preview--details {
  background-color: #FFF;
  -webkit-box-shadow: 0 0.25rem 0.375rem 0 rgba(0, 0, 0, 0.11);
          box-shadow: 0 0.25rem 0.375rem 0 rgba(0, 0, 0, 0.11);
  padding: 0px; }

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

.giftcard-preview--image {
  height: 21.875rem;
  width: 100%;
  margin-bottom: 2.313rem; }

.giftcard-preview--recipient {
  font-size: 1rem;
  font-weight: 450;
  text-align: center;
  color: #1E1E19;
  margin-bottom: 0.75rem; }

.giftcard-preview--message {
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  color: #727171;
  margin: 0rem 1.688rem 1.063rem 1.688rem; }

.giftcard-preview--sender {
  font-size: 1rem;
  font-weight: 450;
  text-align: center;
  color: #1E1E19;
  margin-bottom: 2.5rem; }

.giftcard-preview--gcValue {
  font-size: 1rem;
  font-weight: 450;
  text-align: center;
  color: #1E1E19;
  margin-bottom: 0.688rem; }

.giftcard-preview--price {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  color: #1E1E19;
  margin-bottom: 2.5rem; }

.giftcard-preview--code {
  font-size: 1rem;
  font-weight: 450;
  text-align: center;
  color: #1E1E19;
  margin-bottom: 0.688rem; }

.giftcard-preview--staticCode {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  color: #1E1E19;
  margin-bottom: 4.063rem; }

.giftcard-preview--validity {
  font-size: 0.875rem;
  font-weight: 450;
  margin: 0rem 1.688rem 1rem 1.688rem;
  text-align: center;
  color: #1E1E19; }

.giftcard-preview--terms {
  margin-bottom: 1.938rem;
  text-decoration: underline; }

.giftcard-preview--yourGCpreview {
  font-family: 'Crimson Pro';
  font-size: 2.188rem;
  font-weight: 300;
  text-align: center;
  line-height: 2.625rem;
  margin-bottom: 1.688rem; }

.giftcard-preview--button {
  text-align: center;
  font-weight: 500; }

.giftcard-preview--edit {
  padding: 0.875rem 4.25rem 0.813rem 3.813rem;
  margin-bottom: 1.688rem;
  margin-top: 0px;
  font-family: 'Montserrat'; }

.giftcard-preview--or {
  text-align: center;
  margin-bottom: 1.688rem;
  font-weight: 550;
  font-size: 0.875rem;
  color: #1E1E19; }

.giftcard-preview--addtocart {
  margin-top: 0px;
  padding: 0.813rem 2.313rem 0.875rem 2.313rem;
  font-family: 'Montserrat';
  margin-bottom: 0px; }

@media (max-width: 47.9375rem) {
  .giftcard-preview--Mhide {
    display: none; }
  .giftcard-preview--yourGCpreview-message {
    padding-top: 0.688rem;
    font-size: 0.75rem;
    font-weight: 400;
    text-align: left;
    color: #727171;
    margin-bottom: 1.75rem; }
  .giftcard-preview--logo-img {
    margin-bottom: 1.875rem;
    width: 8.563rem;
    height: 2.5rem; }
  .giftcard-preview--primary {
    padding: 0rem 0.625rem 0rem 0.625rem; }
  .giftcard-preview--image {
    margin-bottom: 1.875rem; }
  .giftcard-preview--recipient {
    margin-bottom: 1rem; }
  .giftcard-preview--message {
    font-size: 0.875rem;
    line-height: 1.5rem;
    margin: 0rem 0rem 1.063rem 0rem; }
  .giftcard-preview--sender {
    font-size: 0.875rem;
    margin-bottom: 1.875rem; }
  .giftcard-preview--gcValue {
    font-size: 0.875rem; }
  .giftcard-preview--price {
    margin-bottom: 1.875rem; }
  .giftcard-preview--code {
    margin-bottom: 0.625rem; }
  .giftcard-preview--staticCode {
    margin-bottom: 2.375rem; }
  .giftcard-preview--validity {
    font-size: 0.688rem;
    margin: 0rem 0.875rem 0.5rem 0.875rem; }
  .giftcard-preview--terms {
    margin-bottom: 1.75rem; }
  .giftcard-preview--main {
    background-color: #FFF; }
  .giftcard-preview--secondary {
    margin: 1.563rem 0rem; }
  .giftcard-preview--edit {
    margin-bottom: 0.688rem; }
  .giftcard-preview--or {
    margin-bottom: 0.688rem; }
  .modal-GC__product {
    padding: 0.875rem 1.25rem; }
  .modal-GC__product .window-modal__content {
    padding: 0rem; }
  .modal-GC__product .gc-preview-close {
    float: right;
    position: absolute;
    right: 0;
    margin-top: 0.903rem;
    margin-right: 0.861rem; }
    .modal-GC__product .gc-preview-close: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='%23252525' d='M13 12L23.8 1.2c.3-.3.3-.7 0-1-.3-.3-.7-.3-1 0L12 11 1.2.2C.9-.1.5-.1.2.2c-.3.3-.3.7 0 1L11 12 .2 22.8c-.3.3-.3.7 0 1 .3.3.7.3 1 0L12 13l10.8 10.8c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.7 0-1L13 12z' /%3E%3C/svg%3E");
      width: 0.861rem;
      height: 0.801rem;
      display: inline-block; }
    .modal-GC__product .gc-preview-close:hover, .modal-GC__product .gc-preview-close:focus {
      color: #B59862;
      text-decoration: none;
      cursor: pointer; } }

@media (min-width: 48rem) {
  .giftcard-preview--Dhide {
    display: none; }
  .giftcard-preview--logo-img {
    margin: 1.875rem 0rem 1.778rem 0rem;
    width: 11.25rem;
    height: 3.285rem; }
  .giftcard-preview--primary {
    background-color: #FAF8F0;
    padding: 1.875rem 0rem 1.688rem 1.906rem; }
  .giftcard-preview--image {
    height: 22.438rem;
    width: 100%;
    margin-bottom: 2.313rem; }
  .giftcard-preview--secondary {
    margin: auto; }
  .modal-GC__product .modal-content {
    max-width: 70.625rem;
    max-height: 65.5rem;
    background-color: #FAF8F0;
    padding: 0rem; }
  .modal-GC__product .gc-preview-close {
    float: right;
    margin-top: 2.344rem;
    margin-right: 2.344rem;
    margin-left: auto;
    right: 0;
    position: absolute; }
    .modal-GC__product .gc-preview-close: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='%23252525' d='M13 12L23.8 1.2c.3-.3.3-.7 0-1-.3-.3-.7-.3-1 0L12 11 1.2.2C.9-.1.5-.1.2.2c-.3.3-.3.7 0 1L11 12 .2 22.8c-.3.3-.3.7 0 1 .3.3.7.3 1 0L12 13l10.8 10.8c.1.1.3.2.5.2s.4-.1.5-.2c.3-.3.3-.7 0-1L13 12z' /%3E%3C/svg%3E");
      width: 1.641rem;
      height: 1.526rem;
      display: inline-block; }
    .modal-GC__product .gc-preview-close:hover, .modal-GC__product .gc-preview-close:focus {
      color: #B59862;
      text-decoration: none;
      cursor: pointer; } }

.modal-GC__product.modal {
  display: none;
  position: fixed;
  z-index: 99;
  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) {
    .modal-GC__product.modal {
      padding-top: 11.75rem;
      padding-bottom: 10.75rem; } }

.modal-GC__product .modal-content {
  background-color: #FFF;
  padding: 1.25rem;
  width: 100%;
  min-height: 100vh;
  position: relative; }
  @media (min-width: 48rem) {
    .modal-GC__product .modal-content {
      width: 30%;
      min-height: 12.5rem; } }

.modal-GC__product .modal-GC__preview {
  background-color: #FAF8F0;
  width: auto;
  margin: auto;
  padding: 0rem; }

.product-zoom {
  max-height: 100%;
  overflow: auto; }
  .product-zoom::-webkit-scrollbar {
    display: none; }

.product-zoom__arrow {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%); }

.product-zoom__arrow--prev {
  left: 0; }

.product-zoom__arrow--next {
  right: 0; }

@media (min-width: 48rem) {
  .product-zoom__arrow {
    width: 5rem;
    font-size: 3rem; }
  .ad-nav-UAEModal .product-zoom {
    overflow: hidden; }
  .slick-list-vdo {
    -webkit-transform: translate(0, -32%);
            transform: translate(0, -32%); } }

@media (max-width: 47.9375rem) and (max-width: 47.9375rem) {
  .ad-nav-UAEModal .window-modal__content {
    padding-bottom: 0; } }

@media (max-width: 47.9375rem) and (min-width: 320px) and (max-width: 1025px) {
  .ad-nav-UAEModal .product-zoom__gallery video {
    height: 100vh; } }

@media (max-width: 47.9375rem) {
  .ad-nav-UAEModal .product-zoom__gallery,
  .ad-nav-UAEModal .product-zoom__item {
    height: 100vh; }
  .ad-nav-UAEModal .product-zoom {
    height: 100vh;
    overflow: auto; }
    .ad-nav-UAEModal .product-zoom .slick-list {
      width: 100%;
      margin: auto;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      position: absolute; }
      .ad-nav-UAEModal .product-zoom .slick-list .slick-slide img {
        margin: auto; } }
      @media (max-width: 47.9375rem) and (max-width: 47.9375rem) {
        .ad-nav-UAEModal .product-zoom .slick-list .slick-slide img {
          margin: 0; } }

.pdp {
  position: relative; }
  .pdp__name {
    margin-bottom: 1rem; }
  .pdp .error-add-to-cart {
    word-break: break-word; }
  .pdp .pdp-main__details .price__sales.sales .value {
    padding-right: 0;
    letter-spacing: 0 !important; }

.pdp-main__promotions {
  font-size: 1.125rem;
  font-weight: 500; }

.pdp-main {
  position: relative; }

.pdp-main__section--actions {
  position: relative; }

.pdp-main__availability .product-availability__message {
  color: #ff787d; }

.pdp-main__section .pdp-main__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  padding-top: 15px; }
  .pdp-main__section .pdp-main__price > .price {
    margin-right: 0.625rem; }

@media (min-width: 48rem) {
  .pdp {
    margin-top: 1rem;
    margin-bottom: 4rem; }
  .pdp-main {
    margin-bottom: 0; }
  .pdp-main__details {
    padding-top: 1.25rem;
    padding-left: 2.5rem; }
  .pdp-main__section .pdp-main__price {
    padding-top: 25px; }
  .pdp-main__availability {
    margin-top: 2.25rem; } }

@media (max-width: 47.9375rem) {
  .pdp {
    margin-top: 1rem;
    margin-bottom: 3rem; }
  .pdp-main__section {
    margin-top: 1.25rem; }
  .pdp-main__section--actions {
    padding-top: 1.25rem;
    border-top: solid 0.0625rem #E6E9ED; }
  .pdp-main__availability {
    margin-top: 3rem; } }

.vector-icon {
  display: block;
  position: relative;
  height: 25px;
  width: 27px;
  background-repeat: no-repeat;
  background-size: auto;
  background-position: 3px 0px; }
  @media (max-width: 47.9375rem) {
    .vector-icon {
      height: 19px; } }
  @media (max-width: 47.9375rem) {
    .vector-icon .pdp-add-cart-wrapper .vector-icon.vector-social {
      background-size: 19px; }
    .vector-icon .pdp-add-cart-wrapper .vector-icon.product-tile__wishlist-add {
      background-size: 19px; }
    .vector-icon .pdp-add-cart-wrapper .vector-icon.product-tile__wishlist-add {
      background-size: 19px; }
    .vector-icon .pdp-add-cart-wrapper .vector-icon.product-tile__wishlist-remove {
      background-size: 19px; } }
  .vector-icon.product-tile__wishlist-add {
    background-image: url("../images/wishlistIcon.png");
    background-size: 19px; }
  .vector-icon.product-tile__wishlist-remove {
    background-image: url("../images/wishlistIconAdded.png");
    background-size: 19px; }

.pdp-recently-viewed-m-two .non-hover-hide,
.pdp-you-may-also-like-m-two .non-hover-hide {
  display: none !important; }

.pdp-top-main-container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .pdp-top-main-container.masterProductCase {
    margin-bottom: 8.125rem; }
    @media (max-width: 47.9375rem) {
      .pdp-top-main-container.masterProductCase {
        margin-bottom: 0; } }

.pdp__breadcrumbs {
  padding-bottom: 10px; }

@media (max-width: 47.9375rem) {
  .pdpProductName {
    word-break: break-word; } }

.pdp-main__details.noOverFlow {
  overflow-y: hidden; }
  .pdp-main__details.noOverFlow .price__sales.sales {
    margin-left: 0; }
  .pdp-main__details.noOverFlow .pdp-top-btn-container {
    margin-top: 0; }

@media (max-width: 767px) {
  .pdp-main__details {
    max-height: -webkit-max-content;
    max-height: -moz-max-content;
    max-height: max-content;
    overflow-y: hidden;
    padding-right: 0;
    overflow-x: hidden; } }

.pdp-main__details::-webkit-scrollbar {
  width: 3px;
  background-color: #f0f0f0;
  border-radius: 2px; }

.pdp-main__details::-webkit-scrollbar-thumb {
  width: 3px;
  background-color: #d5d5d5;
  border-radius: 2px; }

.pdp-main__details .pdp-main__section:nth-child(3) {
  border-bottom: 0;
  margin-bottom: 0; }

@media (max-width: 47.9375rem) {
  .pdp-main__details .pdp-main__addtocart-wrapper {
    min-height: 3.519rem;
    position: relative; } }

.pdp-main__details .pdp-main__enquiry {
  margin-top: 1rem;
  padding-bottom: 0; }
  @media (max-width: 47.9375rem) {
    .pdp-main__details .pdp-main__enquiry.sticky {
      position: fixed;
      bottom: 20px;
      background-color: #FFF;
      padding-top: 0.938rem;
      -webkit-animation: showFromBelow .24s ease-in-out forwards;
              animation: showFromBelow .24s ease-in-out forwards;
      left: 1.25rem;
      right: 1.25rem;
      z-index: 1; } }

.pdp-main__details .preorder-details {
  line-height: 24px; }

.pdp-main__details .product-pickup label {
  font-size: 1rem; }

.pdp-main__details .tooltip__content.set--right {
  bottom: -45px;
  -webkit-box-shadow: 0px 0px 3px 0px #dadada;
          box-shadow: 0px 0px 3px 0px #dadada;
  background: #FFF;
  border: none;
  padding: 0.5rem; }
  .pdp-main__details .tooltip__content.set--right .tooltip__content {
    min-width: 14.5rem; }

.pdp-main__details .pdp-full-name {
  display: block; }
  @media (max-width: 47.9375rem) {
    .pdp-main__details .pdp-full-name {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding-right: 25px;
      word-break: break-all; } }
  .pdp-main__details .pdp-full-name .toggle-name {
    cursor: pointer;
    display: none; }
    @media (max-width: 47.9375rem) {
      .pdp-main__details .pdp-full-name .toggle-name {
        display: block;
        font-size: 24px; } }

@media (max-width: 47.9375rem) {
  .pdp-main__details .pdp__name {
    width: 100%; } }

.pdp-main__details .pdp__name {
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  white-space: normal; }
  @media (max-width: 47.9375rem) {
    .pdp-main__details .pdp__name {
      font-weight: 500;
      padding-right: 5px; } }

.pdp-main__details .pdp--sku-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 5px;
  color: #B7B7B7;
  padding-top: 6px; }
  .pdp-main__details .pdp--sku-info .var_pid {
    text-transform: uppercase; }

.pdp-main__details .pdp-top-btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 15px; }
  @media (max-width: 47.9375rem) {
    .pdp-main__details .pdp-top-btn-container {
      margin-top: 0; } }

.pdp-main__details .deliveryDate {
  margin-top: 1.25rem; }
  @media (max-width: 47.9375rem) {
    .pdp-main__details .deliveryDate {
      margin-top: 0.625rem; } }

.pdp-main__details .pdp-main__price .price__original,
.pdp-main__details .pdp-main__price .price__sales .value {
  letter-spacing: 0; }

.pdp-main__details .pdp-main__price .price__original {
  margin-right: 1.25rem; }

.pdp-main__details .pdp--inclusive-text {
  color: #B7B7B7; }

.pdp-main__details .attrValue-displayValue {
  position: absolute;
  top: 4px;
  left: 47px;
  font-size: 13px;
  font-weight: 700; }

.pdp-main__details .product-add__button {
  text-transform: uppercase; }

.pdp-you-may-also-like-m-two .slick-arrow::before,
.pdp-recommendations-m-two .slick-arrow::before,
.pdp-recently-viewed-m-two .slick-arrow::before {
  content: '';
  position: absolute;
  background: url("../images/right-big-arrow.png") no-repeat;
  height: 11px;
  background-size: 40px;
  width: 40px; }

.pdp-you-may-also-like-m-two .slick-arrow.slick-disabled::before,
.pdp-recommendations-m-two .slick-arrow.slick-disabled::before,
.pdp-recently-viewed-m-two .slick-arrow.slick-disabled::before {
  content: '';
  position: absolute;
  background: url("../images/right-big-arrow-disabled.png") no-repeat;
  height: 11px;
  background-size: 40px;
  width: 40px; }

.pdp-you-may-also-like-m-two .module-container,
.pdp-recommendations-m-two .module-container,
.pdp-recently-viewed-m-two .module-container {
  overflow: visible; }
  .pdp-you-may-also-like-m-two .module-container .title-desc,
  .pdp-recommendations-m-two .module-container .title-desc,
  .pdp-recently-viewed-m-two .module-container .title-desc {
    font-size: 16px;
    font-family: "MidlandLuxury", serif;
    font-weight: 500;
    letter-spacing: 0;
    margin: 50px 0px; }
    @media (max-width: 47.9375rem) {
      .pdp-you-may-also-like-m-two .module-container .title-desc,
      .pdp-recommendations-m-two .module-container .title-desc,
      .pdp-recently-viewed-m-two .module-container .title-desc {
        font-size: 12px;
        margin: 24px 0px; } }
  .pdp-you-may-also-like-m-two .module-container .product-tile__image-container img,
  .pdp-recommendations-m-two .module-container .product-tile__image-container img,
  .pdp-recently-viewed-m-two .module-container .product-tile__image-container img {
    padding: 0px 11px; }
    @media (max-width: 47.9375rem) {
      .pdp-you-may-also-like-m-two .module-container .product-tile__image-container img,
      .pdp-recommendations-m-two .module-container .product-tile__image-container img,
      .pdp-recently-viewed-m-two .module-container .product-tile__image-container img {
        padding: 0px 5px; } }
  .pdp-you-may-also-like-m-two .module-container .slick-slide.slick-cloned,
  .pdp-recommendations-m-two .module-container .slick-slide.slick-cloned,
  .pdp-recently-viewed-m-two .module-container .slick-slide.slick-cloned {
    height: 0; }
  .pdp-you-may-also-like-m-two .module-container .slick-arrow,
  .pdp-recommendations-m-two .module-container .slick-arrow,
  .pdp-recently-viewed-m-two .module-container .slick-arrow {
    top: -80px !important; }
    @media (max-width: 767px) {
      .pdp-you-may-also-like-m-two .module-container .slick-arrow,
      .pdp-recommendations-m-two .module-container .slick-arrow,
      .pdp-recently-viewed-m-two .module-container .slick-arrow {
        display: none !important; } }
  .pdp-you-may-also-like-m-two .module-container .slick-prev,
  .pdp-recommendations-m-two .module-container .slick-prev,
  .pdp-recently-viewed-m-two .module-container .slick-prev {
    left: 100%;
    margin-left: -125px; }
    .pdp-you-may-also-like-m-two .module-container .slick-prev::before,
    .pdp-recommendations-m-two .module-container .slick-prev::before,
    .pdp-recently-viewed-m-two .module-container .slick-prev::before {
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg); }
    .pdp-you-may-also-like-m-two .module-container .slick-prev.slick-disabled::before,
    .pdp-recommendations-m-two .module-container .slick-prev.slick-disabled::before,
    .pdp-recently-viewed-m-two .module-container .slick-prev.slick-disabled::before {
      -webkit-transform: rotate(360deg);
              transform: rotate(360deg); }
  .pdp-you-may-also-like-m-two .module-container .slick-next,
  .pdp-recommendations-m-two .module-container .slick-next,
  .pdp-recently-viewed-m-two .module-container .slick-next {
    margin-right: 0px; }
    .pdp-you-may-also-like-m-two .module-container .slick-next::before,
    .pdp-recommendations-m-two .module-container .slick-next::before,
    .pdp-recently-viewed-m-two .module-container .slick-next::before {
      -webkit-transform: rotate(360deg);
              transform: rotate(360deg); }
    .pdp-you-may-also-like-m-two .module-container .slick-next.slick-disabled::before,
    .pdp-recommendations-m-two .module-container .slick-next.slick-disabled::before,
    .pdp-recently-viewed-m-two .module-container .slick-next.slick-disabled::before {
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg); }
  @media (max-width: 47.9375rem) {
    .pdp-you-may-also-like-m-two .module-container .product-tile .product-tile-heading-and-text,
    .pdp-recommendations-m-two .module-container .product-tile .product-tile-heading-and-text,
    .pdp-recently-viewed-m-two .module-container .product-tile .product-tile-heading-and-text {
      text-align: left; }
      .pdp-you-may-also-like-m-two .module-container .product-tile .product-tile-heading-and-text .product-heading-text,
      .pdp-you-may-also-like-m-two .module-container .product-tile .product-tile-heading-and-text .product-promotions,
      .pdp-recommendations-m-two .module-container .product-tile .product-tile-heading-and-text .product-heading-text,
      .pdp-recommendations-m-two .module-container .product-tile .product-tile-heading-and-text .product-promotions,
      .pdp-recently-viewed-m-two .module-container .product-tile .product-tile-heading-and-text .product-heading-text,
      .pdp-recently-viewed-m-two .module-container .product-tile .product-tile-heading-and-text .product-promotions {
        font-size: 10px;
        padding-left: 0; }
      .pdp-you-may-also-like-m-two .module-container .product-tile .product-tile-heading-and-text .product-tile__body,
      .pdp-recommendations-m-two .module-container .product-tile .product-tile-heading-and-text .product-tile__body,
      .pdp-recently-viewed-m-two .module-container .product-tile .product-tile-heading-and-text .product-tile__body {
        padding-left: 0; }
        .pdp-you-may-also-like-m-two .module-container .product-tile .product-tile-heading-and-text .product-tile__body > div,
        .pdp-recommendations-m-two .module-container .product-tile .product-tile-heading-and-text .product-tile__body > div,
        .pdp-recently-viewed-m-two .module-container .product-tile .product-tile-heading-and-text .product-tile__body > div {
          -webkit-box-pack: start;
              -ms-flex-pack: start;
                  justify-content: flex-start; }
      .pdp-you-may-also-like-m-two .module-container .product-tile .product-tile-heading-and-text .price,
      .pdp-recommendations-m-two .module-container .product-tile .product-tile-heading-and-text .price,
      .pdp-recently-viewed-m-two .module-container .product-tile .product-tile-heading-and-text .price {
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        width: 100%;
        -webkit-box-align: baseline;
            -ms-flex-align: baseline;
                align-items: baseline; }
        .pdp-you-may-also-like-m-two .module-container .product-tile .product-tile-heading-and-text .price .value,
        .pdp-recommendations-m-two .module-container .product-tile .product-tile-heading-and-text .price .value,
        .pdp-recently-viewed-m-two .module-container .product-tile .product-tile-heading-and-text .price .value {
          font-size: 12px; }
    .pdp-you-may-also-like-m-two .module-container .product-tile .more-colors,
    .pdp-recommendations-m-two .module-container .product-tile .more-colors,
    .pdp-recently-viewed-m-two .module-container .product-tile .more-colors {
      padding-left: 0; } }

@-webkit-keyframes showFromBelow {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

@keyframes showFromBelow {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%); }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

.dispatch-lead-time {
  padding: 0 0 20px 0; }

.pdp-details__video-player {
  min-height: 214px; }
  @media (min-width: 48rem) {
    .pdp-details__video-player {
      min-height: 433px; } }

@media (max-width: 47.9375rem) {
  .pdp-details__video-content {
    margin-bottom: 1rem; } }

@media (min-width: 90.0625rem) {
  .pdp-details__video-content {
    padding-left: 3rem; } }

.pdp-main .socialIcon__container .product-common__social-trigger {
  margin-top: 0.5rem; }
  @media (min-width: 48rem) {
    .pdp-main .socialIcon__container .product-common__social-trigger {
      margin-top: 0.7rem; } }
  @media (max-width: 47.9375rem) {
    .pdp-main .socialIcon__container .product-common__social-trigger svg {
      margin-left: 0; } }

.pdp-main .product-gallery__container .product-gallery .slick-dots button:after {
  background-color: transparent;
  border: 1px solid #B5B5B5; }

.pdp-main .product-gallery__container .product-gallery .slick-dots .slick-active button:after {
  background-color: #B5B5B5;
  border: 1px solid #B5B5B5; }

@media (min-width: 48rem) {
  .set--video-manual {
    margin-top: 10px; } }

.pdp-main__details .product-attribute__anchor {
  position: relative; }
  .pdp-main__details .product-attribute__anchor .product-availability__item {
    font-size: 0.75rem;
    display: none;
    width: 100%;
    background-color: #fde182;
    padding: 0 .125rem;
    position: absolute;
    left: 0;
    bottom: -.7rem; }
  .pdp-main__details .product-attribute__anchor.selected:not(.unselectable) .product-availability__item {
    display: block; }

.pdp-main__details .product-availability .product-availability__item {
  font-size: 14px;
  font-weight: 600;
  padding: 15px 0px 5px;
  text-align: right;
  width: 100%; }

.pdp__details-description-label {
  min-width: 11.25rem; }

.pdp__details-description:not(.toggle--active) {
  display: none; }

.pdp__details-description .showMoreDescription {
  color: #767676;
  font-weight: 400;
  cursor: pointer;
  border-bottom: 1px solid #767676; }

.pdp__details {
  margin-bottom: 2rem; }

.pdp__details-item {
  border-bottom: solid 0.0625rem #CCCCCC; }

.pdp__details-title {
  cursor: pointer; }
  .pdp__details-title.toggle--active .pdp__details-title-icon {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg); }

.pdp__details-description .pdp__details-label,
.pdp__details-description .pdp__details-sub-item {
  font-size: 14px; }

.pdp__details-description .pdp__details-label {
  color: #231f20; }

.pdp__details-description .pdp__details-sub-item {
  text-align: right; }

.pdp__details-description .cms-generic-copy {
  width: 100%;
  margin: auto;
  margin-bottom: 20px;
  font-weight: 400; }
  .pdp__details-description .cms-generic-copy:last-child {
    margin-bottom: 0px; }

@media (max-width: 47.9375rem) {
  .pdp .product-gallery__container button.slick-arrow.slick-next:after {
    content: "";
    width: 22px;
    height: 22px; }
  .pdp .product-gallery__container button.slick-arrow.slick-prev:after {
    content: "";
    width: 22px;
    height: 22px; }
  .pdp-main__details .product-pickup {
    padding-bottom: 30px; }
  .pdp-main__details .product-name-row {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline; }
  .pdp-main__details .pdp-main__section--actions {
    padding-top: 1.25 rem;
    border-top: 0; }
  .pdp-main__details .pdp-main__addtocart-wrapper {
    position: fixed;
    bottom: -5px;
    width: 100%;
    z-index: 2;
    left: 0;
    -webkit-box-shadow: 0px 0px 5px 1px #d7d7d7;
            box-shadow: 0px 0px 5px 1px #d7d7d7; }
    .pdp-main__details .pdp-main__addtocart-wrapper .pdp-main__enquiry {
      margin-top: 0 !important; }
      .pdp-main__details .pdp-main__addtocart-wrapper .pdp-main__enquiry .button {
        padding: 15px 0px; }
      .pdp-main__details .pdp-main__addtocart-wrapper .pdp-main__enquiry .error-add-to-cart {
        padding: 0; } }

@media (min-width: 48rem) {
  .pdp .product-gallery__container button.slick-arrow.slick-next::after, .pdp .product-gallery__container button.slick-arrow.slick-prev::after {
    width: 24px;
    height: 24px; } }

.pdp .product-gallery-thumbnails .slick-arrow::before {
  display: none; }

.pdp .product-gallery-thumbnails button.slick-arrow.slick-prev:after {
  content: "";
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23252525' d='M24 6.3c0 .2-.1.3-.2.4L12.4 18.1c-.2.2-.6.2-.9 0L.2 6.8c-.2-.2-.2-.6 0-.9.2-.2.6-.2.9 0L12 16.8 22.9 5.9c.2-.2.6-.2.9 0 .1.1.2.3.2.4z'/%3E%3C/svg%3E");
  top: -4px;
  right: 0;
  left: 35px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  position: absolute;
  display: inline-block; }
  @media (min-width: 48rem) and (max-width: 64rem) {
    .pdp .product-gallery-thumbnails button.slick-arrow.slick-prev:after {
      left: 1rem; } }

.pdp .product-gallery-thumbnails button.slick-arrow.slick-prev.slick-disabled {
  visibility: visible;
  opacity: 0.3;
  pointer-events: none; }

.pdp .product-gallery-thumbnails button.slick-arrow.slick-next:after {
  content: "";
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23252525' d='M24 6.3c0 .2-.1.3-.2.4L12.4 18.1c-.2.2-.6.2-.9 0L.2 6.8c-.2-.2-.2-.6 0-.9.2-.2.6-.2.9 0L12 16.8 22.9 5.9c.2-.2.6-.2.9 0 .1.1.2.3.2.4z'/%3E%3C/svg%3E");
  top: 10px;
  right: 0px;
  left: 35px;
  position: absolute;
  display: inline-block; }
  @media (min-width: 48rem) and (max-width: 64rem) {
    .pdp .product-gallery-thumbnails button.slick-arrow.slick-next:after {
      left: 1rem; } }

.pdp .product-gallery-thumbnails button.slick-arrow.slick-next.slick-disabled {
  visibility: visible;
  opacity: 0.3;
  pointer-events: none; }

.product-add__button.apple-pay-pdp {
  display: none; }

.slot_new .slick-arrow {
  top: 30%; }
  @media (max-width: 47.9375rem) {
    .slot_new .slick-arrow:after {
      visibility: hidden; } }

.slot_new .slick-dots {
  width: 100%;
  margin-top: 2rem; }

.slot_new .product-grid__item.slick-slide {
  margin-bottom: 0; }

.pdp-gift-card-preview-container {
  border: 1px solid #A37E58; }
  @media (min-width: 48rem) {
    .pdp-gift-card-preview-container {
      margin: 50px 0 0 0;
      padding: 20px 30px 20px 30px;
      width: calc(100% - 0.625rem); } }
  @media (max-width: 768px) {
    .pdp-gift-card-preview-container {
      max-width: 100%;
      margin: 40px 0 0;
      padding: 20px; } }

.pdp-gift-card-preview-heading {
  font-size: 18px;
  font-weight: 600;
  color: #A37E58;
  margin-bottom: 18px;
  margin-top: 0; }
  @media (max-width: 47.9375rem) {
    .pdp-gift-card-preview-heading {
      font-size: 16px;
      margin-bottom: 20px; } }

.pdp-gift-card-preview-name {
  font-size: 16px;
  font-weight: 600;
  color: #231f20;
  margin-bottom: 13px;
  margin-top: 0; }
  @media (max-width: 47.9375rem) {
    .pdp-gift-card-preview-name {
      font-size: 14px;
      margin-bottom: 16px; } }

.pdp-gift-card-preview-desc {
  font-size: 16px;
  font-weight: 400;
  color: #231f20;
  margin-bottom: 6px;
  margin-top: 0;
  line-height: 19.5px; }
  @media (max-width: 47.9375rem) {
    .pdp-gift-card-preview-desc {
      font-size: 14px;
      margin-bottom: 30px; } }

.pdp-gift-card-preview-expiry-date {
  font-size: 16px;
  font-weight: 600;
  color: #A37E58;
  margin-bottom: 0;
  margin-top: 0; }
  @media (max-width: 47.9375rem) {
    .pdp-gift-card-preview-expiry-date {
      font-size: 14px; } }

@media (min-width: 768px) {
  .header-container {
    opacity: 1; }
    .header-container.stick-to-top {
      opacity: 0;
      visibility: hidden; } }

.notifyMe-form {
  margin-bottom: 60px; }
  @media (max-width: 47.9375rem) {
    .notifyMe-form {
      margin-bottom: 40px; } }

.jewellary-commitments-conatiner {
  padding-left: 50px;
  text-align: center; }
  @media (max-width: 47.9375rem) {
    .jewellary-commitments-conatiner {
      padding-left: 0; } }
  @media (min-width: 750px) and (max-width: 1025px) {
    .jewellary-commitments-conatiner {
      max-width: 730px;
      margin: auto;
      padding-left: 0;
      padding-top: 40px;
      width: 100%; } }
  .jewellary-commitments-conatiner .commitment-title {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    line-height: 18px; }
  .jewellary-commitments-conatiner .commitment-icons-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 25px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 28px 10px 60px; }
    @media (min-width: 750px) and (max-width: 1025px) {
      .jewellary-commitments-conatiner .commitment-icons-section {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start; } }
    .jewellary-commitments-conatiner .commitment-icons-section .commitment-icons-inner {
      width: calc(33% - 25px);
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      @media (min-width: 750px) and (max-width: 1025px) {
        .jewellary-commitments-conatiner .commitment-icons-section .commitment-icons-inner {
          width: calc(20% - 25px); } }
      .jewellary-commitments-conatiner .commitment-icons-section .commitment-icons-inner img {
        width: 68px;
        height: 68px; }
      .jewellary-commitments-conatiner .commitment-icons-section .commitment-icons-inner p {
        font-size: 16px;
        font-weight: 600;
        color: #393737;
        line-height: 21px;
        margin: 15px 0 0;
        text-align: center; }
  .jewellary-commitments-conatiner .commitment-icons-bottom-section {
    background-color: #B59862;
    padding: 25px; }
    .jewellary-commitments-conatiner .commitment-icons-bottom-section p {
      font-size: 14px;
      font-weight: 500;
      text-align: center;
      margin-top: 30px; }

.jewelleryAdditionalAttributes .pdp__details-title.static-title {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  line-height: 17px;
  margin-bottom: 28px;
  padding-bottom: 0;
  text-align: left;
  margin-top: 50px; }

.jewelleryAdditionalAttributes .static-title-info {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  line-height: 23px;
  margin-bottom: 28px;
  padding-bottom: 0; }

.jewelleryAdditionalAttributes .pdp__details-label {
  font-weight: 500;
  font-size: 14px; }

.jewelleryAdditionalAttributes .attr-table {
  padding-left: 10px;
  width: auto;
  /* or auto if you don't want full width */
  table-layout: fixed;
  border-collapse: collapse; }
  @media (max-width: 47.9375rem) {
    .jewelleryAdditionalAttributes .attr-table {
      overflow-x: scroll;
      display: block;
      overflow-y: hidden;
      /*&::-webkit-scrollbar{
                display: none;
            }*/
      padding-bottom: 40px; } }
  .jewelleryAdditionalAttributes .attr-table .attr-first-row {
    padding-bottom: 10px;
    margin-bottom: 10px; }
  .jewelleryAdditionalAttributes .attr-table tbody {
    display: table;
    overflow: scroll;
    width: auto; }
  .jewelleryAdditionalAttributes .attr-table th,
  .jewelleryAdditionalAttributes .attr-table td {
    text-align: left;
    width: auto;
    white-space: nowrap;
    width: 180px; }
    @media (max-width: 47.9375rem) {
      .jewelleryAdditionalAttributes .attr-table th,
      .jewelleryAdditionalAttributes .attr-table td {
        width: auto;
        min-width: 160px; } }
  .jewelleryAdditionalAttributes .attr-table th {
    border-bottom: 2px solid #EDEDED;
    padding: 10px 10px 25px 10px; }
  .jewelleryAdditionalAttributes .attr-table td {
    padding: 25px 10px 10px 10px; }
  .jewelleryAdditionalAttributes .attr-table .pdp__details-sub-item {
    font-size: 14px;
    font-weight: 500;
    color: #6C6C6C; }
  .jewelleryAdditionalAttributes .attr-table .pdp__details-label {
    font-weight: 500;
    color: #000; }
  .jewelleryAdditionalAttributes .attr-table .no-td-val {
    padding-left: 10px;
    font-weight: 700;
    font-size: 20px; }
  .jewelleryAdditionalAttributes .attr-table .tooltip-content::before {
    left: auto;
    right: 126px; }
    @media (max-width: 47.9375rem) {
      .jewelleryAdditionalAttributes .attr-table .tooltip-content::before {
        display: block;
        right: 100px; } }
  .jewelleryAdditionalAttributes .attr-table .tooltip-content {
    white-space: normal;
    left: auto;
    right: -130px; }
    @media (max-width: 47.9375rem) {
      .jewelleryAdditionalAttributes .attr-table .tooltip-content {
        right: -100px;
        top: 39px; } }

.pdp__reviews {
  margin-bottom: 3rem; }

.pdp-set__footer {
  padding-top: 2rem;
  padding-bottom: 2rem;
  -webkit-box-shadow: 0 -0.0625rem 0 0 rgba(35, 31, 32, 0.15);
          box-shadow: 0 -0.0625rem 0 0 rgba(35, 31, 32, 0.15); }
  .pdp-set__footer:not(.fixit--active) {
    z-index: 1;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%; }

.set-item {
  position: relative;
  margin-bottom: 3rem; }

.pdp-bundle__item {
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem; }

.pdp-bundle__main {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 0.0625rem solid #E6E9ED; }

.pdp-bundle__label {
  margin-bottom: 1.25rem; }

@media (min-width: 48rem) {
  .pdp-bundle__main {
    padding-bottom: 2rem; } }

/*------------------------------------*\
  #BREAKPOINTS
\*------------------------------------*/
.pdp-main__details .preorder-details,
.pdp-main__details .dispatch-lead-time {
  line-height: 24px;
  padding: 0; }

.pdp-bg,
.pdp-set-bg {
  background: #FAF8F0; }

.pdp-bg {
  margin-top: 0;
  margin-bottom: 0;
  padding: 1rem 0 4rem 0; }

.pdp-main__section.no-border {
  border-bottom: none; }

.pdp-details__video-player {
  min-height: 214px; }
  @media (min-width: 48rem) {
    .pdp-details__video-player {
      min-height: 433px; } }

@media (max-width: 47.9375rem) {
  .pdp-details__video-content {
    margin-bottom: 1rem; } }

@media (min-width: 90.0625rem) {
  .pdp-details__video-content {
    padding-left: 3rem; } }

.pdp-main__price .price__original {
  letter-spacing: 1.29px; }
  @media (max-width: 47.9375rem) {
    .pdp-main__price .price__original {
      letter-spacing: 1px; } }

.pdp-main__details .product-attribute__label {
  color: #1e1e1e;
  text-transform: capitalize;
  letter-spacing: normal; }
  .pdp-main__details .product-attribute__label.product-attribute__label--size {
    margin-bottom: 0; }

.pdp-main__details .product-common__social-item:not(:last-child) {
  margin-right: 1.5rem; }

.pdp-main__details .pdp-main__availability .product-availability .product-availability__list .product-availability__item:first-child {
  display: none; }

.pdp-main__details .pdp-main__section {
  margin-bottom: 0; }
  .pdp-main__details .pdp-main__section.pdp-main__sizequantity {
    padding-bottom: 0; }
  .pdp-main__details .pdp-main__section .pdp-main__enquiry {
    margin-top: 1rem;
    padding-bottom: 0; }

.pdp-main__details .product-attribute__list .product-attribute--giftcard-dropdown .product-attribute__label--cardValue .product-attribute__label-pre {
  font-weight: 600;
  font-family: "Montserrat", Helvetica, Arial, sans-serif; }

.pdp-main__details .product-attribute__list .product-attribute--qty .form-control--select {
  border-radius: 0; }

.pdp-main__details .product-attribute--color .disclaimer-message__master {
  display: none; }

.pdp-main__details .product-attribute__label--color .product-attribute__selected-value {
  display: none; }

@media (min-width: 48rem) {
  .pdp-main__details .product-attribute--type-swatch,
  .pdp-main__details .product-attribute--type-anchor {
    position: relative; }
    .pdp-main__details .product-attribute--type-swatch .product-attribute__size-chart,
    .pdp-main__details .product-attribute--type-anchor .product-attribute__size-chart {
      position: absolute;
      right: 0;
      top: 6px; }
  .pdp-main__details .product-pickup__options .product-attribute__label {
    margin-right: 0.938rem; }
  .pdp-main__details .product-pickup__options .form-check-list__item {
    display: inline-block; }
    .pdp-main__details .product-pickup__options .form-check-list__item:not(:last-child) {
      margin-right: 3.125rem; } }

@media (max-width: 47.9375rem) {
  .pdp-main__details .product-attribute__size-chart {
    display: inline-block;
    float: right; } }

.pdp-main__details .pdp-main__section {
  position: relative;
  margin-bottom: 0; }
  .pdp-main__details .pdp-main__section .pdp-socialsharing {
    position: absolute;
    right: 0;
    top: 80px; }
    @media (min-width: 48rem) {
      .pdp-main__details .pdp-main__section .pdp-socialsharing {
        top: 12px; } }
    .pdp-main__details .pdp-main__section .pdp-socialsharing .tooltip__content {
      z-index: 4; }

.pdp-main__details .product-attribute__anchor {
  font-size: 13px;
  position: relative;
  border-radius: 0;
  line-height: 24px; }
  .pdp-main__details .product-attribute__anchor .product-availability__item {
    font-size: 0.75rem;
    display: none;
    width: 100%;
    background-color: #fde182;
    padding: 0 .125rem;
    position: absolute;
    left: 0;
    bottom: -.7rem; }
  .pdp-main__details .product-attribute__anchor.selected {
    border: none; }
  .pdp-main__details .product-attribute__anchor.anchor--size {
    font-weight: 600;
    border: 1px solid #231f20;
    padding: 2px 14px; }
    .pdp-main__details .product-attribute__anchor.anchor--size:hover {
      border: 1px solid #231f20; }
    .pdp-main__details .product-attribute__anchor.anchor--size.selected {
      background: #B59862;
      color: #FFF;
      border-color: #B59862; }
    .pdp-main__details .product-attribute__anchor.anchor--size.unselectable {
      color: #e1e1e1;
      background: #FFF;
      border-color: #e1e1e1;
      pointer-events: none; }

.pdp__details-description-label {
  min-width: 8.25rem; }
  @media (min-width: 48rem) {
    .pdp__details-description-label {
      min-width: 11.25rem; } }

.pdp__details-description:not(.toggle--active) {
  display: none; }

.pdp__details {
  margin-bottom: 2rem;
  margin-top: 1.25rem; }

.pdp__details-item {
  border-bottom: solid 0.0625rem #CCCCCC; }

.pdp__details-title {
  cursor: pointer; }
  .pdp__details-title.toggle--active .pdp__details-title-icon {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg); }

.pdp__details-description {
  margin-bottom: 1.5rem; }
  @media (max-width: 47.9375rem) {
    .pdp__details-description {
      font-size: 0.875rem; } }

@media (max-width: 47.9375rem) {
  .breadcrumbs.toggle--active .breadcrumbs__item--dots {
    display: none; }
  .breadcrumbs__item--dots {
    display: inline-block; }
  .pdp__breadcrumbs .breadcrumbs.toggle--active li.breadcrumbs__item:nth-child(n+3) {
    display: inline-block; }
  .pdp__breadcrumbs .breadcrumbs.toggle--active li.breadcrumbs__item:last-child span {
    display: inline-block; }
  .pdp__breadcrumbs li.breadcrumbs__item:nth-child(n+3) {
    display: none; }
  .pdp__breadcrumbs li.breadcrumbs__item:last-child {
    display: inline-block; }
    .pdp__breadcrumbs li.breadcrumbs__item:last-child span {
      display: none; }
  .pdp-main__details .product-pickup {
    padding-bottom: 30px; }
  .pdp-main__details .preorder-details {
    padding: 0;
    margin: 0; }
  .pdp-main__details .pdp-main__section--actions {
    padding-top: 0;
    border-top: 0; } }

.pdp-short-desc {
  font-size: 10px;
  color: #b18e35;
  font-weight: 500;
  letter-spacing: 1px; }

.pdp-main__section.no-border.pdp-main__sizequantity .pdp-main__availability .product-availability .product-availability__list .product-availability__item:first-child {
  display: block; }

.pdp .product-attribute__anchor.unselectable:after {
  content: none; }

.pdp .pdp-main__details .price__sales.sales .value {
  letter-spacing: 2px; }

.pdp-main__details .product-pickup label.form-check-label--radio {
  font-size: 14px; }

.pdp .youmay-secetion .slick-arrow {
  top: 30%;
  background: transparent; }

.pdp .youmay-secetion .slick-dots {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.pdp .youmay-secetion .product-grid__item {
  margin-bottom: 2.25rem; }

.pdp .youmay-secetion .price__sales .value {
  line-height: normal; }

.pdp .youmay-secetion .product-tile--default .product-tile__anchor .product-tile__body {
  padding-top: 0; }

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

.giftcard__form .form-check-label {
  font-size: 14px; }


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