/*********************************************************
  Organization:
  1. Font Faces
  2. Keyframes (animations)
  3. Desktop Content
  4. Mobile Content
  5. Grid System (??? WHY HERE)
  6. Fixes to Lovely Things

 ********************************************************/

 @font-face {
  font-family: 'TTRamillas';
  src: url('fonts/TTRamillasRegular/font.otf') format('otf'),
    url('fonts/TTRamillasRegular/font.woff') format('woff'),
    url('fonts/TTRamillasRegular/font.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TTRamillas';
  src: url('fonts/TTRamillasItalic/font.otf') format('otf'),
    url('fonts/TTRamillasItalic/font.woff') format('woff'),
    url('fonts/TTRamillasItalic/font.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'TTRamillas';
  src: url('fonts/TTRamillasMedium/font.otf') format('otf'),
    url('fonts/TTRamillasMedium/font.woff') format('woff'),
    url('fonts/TTRamillasMedium/font.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TTRamillas';
  src: url('fonts/TTRamillasMediumItalic/font.otf') format('otf'),
    url('fonts/TTRamillasMediumItalic/font.woff') format('woff'),
    url('fonts/TTRamillasMediumItalic/font.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'TTRamillas';
  src: url('fonts/TTRamillasBold/font.otf') format('otf'),
    url('fonts/TTRamillasBold/font.woff') format('woff'),
    url('fonts/TTRamillasBold/font.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TTRamillas';
  src: url('fonts/TTRamillasBoldItalic/font.otf') format('otf'),
    url('fonts/TTRamillasBoldItalic/font.woff') format('woff'),
    url('fonts/TTRamillasBoldItalic/font.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'JuniperAndSage';
  src: url('fonts/JuniperandSageRegular/font.otf') format('otf'),
    url('fonts/JuniperandSageRegular/font.woff') format('woff'),
    url('fonts/JuniperandSageRegular/font.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* 
@font-face {
  font-family: 'Santral';
  src: url('fonts/SantralThin/font.otf') format('otf'),
    url('fonts/SantralThin/font.woff') format('woff'),
    url('fonts/SantralThin/font.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
} */

@font-face {
  font-family: 'Santral';
  src: url('fonts/SantralLight/font.otf') format('otf'),
    url('fonts/SantralLight/font.woff') format('woff'),
    url('fonts/SantralLight/font.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Santral';
  src: url('fonts/SantralLightItalic/font.otf') format('otf'),
    url('fonts/SantralLightItalic/font.woff') format('woff'),
    url('fonts/SantralLightItalic/font.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Santral';
  src: url('fonts/SantralRegular/font.otf') format('otf'),
    url('fonts/SantralRegular/font.woff') format('woff'),
    url('fonts/SantralRegular/font.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Santral';
  src: url('fonts/SantralSemiBold/font.otf') format('otf'),
    url('fonts/SantralSemiBold/font.woff') format('woff'),
    url('fonts/SantralSemiBold/font.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
/* 
@font-face {
  font-family: 'Santral';
  src: url('fonts/SantralExtraBold/font.otf') format('otf'),
    url('fonts/SantralExtraBold/font.woff') format('woff'),
    url('fonts/SantralExtraBold/font.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
} */

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}


.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  animation-name: fadeOutLeft;
}

.animated {
  animation-duration: 0.2s;
  animation-fill-mode: both;
}

@media(prefers-reduced-motion: reduce) {
  .animated {
    animation-duration: 0 !important;
    animation-name: donothing !important;
  }
}

/******************
  Global Standardization
 *****************/

/* Let's modernize a little where we can
   to make it simpler to size things */
* { box-sizing: border-box; }

.border-box, .border-box * {
  box-sizing: border-box !important;
}

.content-box, .content-box * {
  box-sizing: content-box !important;
}

:root {
  --font-serif: TTRamillas, Georgia, serif;
  --font-sans-serif: Santral, Arial, Helvetica, sans-serif;
  --font-script: 'JuniperAndSage', Cursive, serif;
  --font-iconography: -apple-system, BlinkMacSystemFont, 'Segoe UI';

  --desktop-min-width: 1090px;
  --desktop-max-width: 1440px;
  --secondary-color: #e4d9c5;

  --mobile-header-bg: #111;
  --mobile-header-fg: #fff;

  --dark-green: #5d604b;
  --cream-white: #f6f4f0;

  --pr-height-override: 220px;
}

.hidden, [hidden] {
  visibility: hidden !important;
  display: none !important;
}

.giftGuide, .giftGuide *,
.giftGuideNav, .giftGuideNav *,
.giftGuideContent, .giftGuideContent * {
  box-sizing: content-box;
}

.giftGuideContent .grid_1,
.giftGuideContent .grid_2,
.giftGuideContent .grid_3,
.giftGuideContent .grid_4,
.giftGuideContent .grid_5,
.giftGuideContent .grid_6,
.giftGuideContent .grid_7,
.giftGuideContent .grid_8,
.giftGuideContent .grid_9,
.giftGuideContent .grid_10,
.giftGuideContent .grid_11,
.giftGuideContent .grid_12 {
  float: left;
}

.giftGuideContent {
  margin-bottom: 20px;
}

.giftGuideContent center {
  clear: both;
}

.giftGuideContent .giftGuideHeaderLogo {
  display: block;
  width: 700px;
  height: 506px;
  margin: 0 auto;
}

.giftGuideNav a.logo {
  float: none !important;
  clear: both;
  width: 100% !important;
}

@media only screen and (max-width: 760px) {
  .giftGuideContent .giftGuideHeaderLogo {
    width: 100%;
    height: auto;
  }
}

@media only screen and (min-width: 761px) and (max-width: 1440px) {
  #main-site-content,
  #main-site-content {
    padding: 0 10px;
  }

  .home #main-site-content {
    padding: 0;
  }
}

/*************
  New Header
  N.B. The new header CSS is *mobile first*,
       so the media-query overrides are for desktop.
 ************/

.header--new {
  background: var(--mobile-header-bg);
  color: var(--mobile-header-fg);

  display: grid;
  grid-template-columns: 50px auto 85px;
  grid-template-rows: 50px auto;
  grid-template-areas:
    "header-left header-center header-right"
    "header-search header-search header-search";
}

.header--sidr--menu {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  background: none;
  border: 0;
  width: 50px;
  height: 50px;
  padding: 13px 3px 0 3px;

  grid-area: header-left;
}

.header--sidr--menu--line {
  display: block;
  background: #fff;
  color: #000;
  height: 2px;
  width: calc(100% - 18px);
  margin: 3px 9px;
  padding: 0;
}

.header--logo--wrapper {
  text-align: left;
  height: 50px;

  /* Overflow needed because the logo image has a lot of
     whitespace under it, and we still want it to fit within
     the page dimensions. */
  overflow: hidden;

  grid-area: header-center;
}

.header--logo--link {
  display: flex;

  width: 100%;
  height: 50px;
  margin: 0;
  /* overrides for overall 'a' styling */
  background: var(--mobile-header-bg);
  color: var(--mobile-header-fg);
}

.header--logo--img {
  display: block;
  /* width is set to be similar to current production
     for mobile */
  width: 100%;
  /* height is defined by parent elements */
  object-fit: contain;


  background: var(--mobile-header-bg);
  color: var(--mobile-header-fg);
}

.header--logo--mobile--img {
  display: block;
  max-width: 160px;
}

.header--logo--desktop--img {
  display: none;
}

.header--icons {
  display: flex;
  align-items: center;

  padding-right: 10px;

  grid-area: header-right;
}

.header--account--link {
  display: none;
}

.header--cart--link {
  display: block;
  position: relative;
  padding: 5px;
  width: 48px;
  height: 35px;
  margin: 0 0 0 5px;

  /* override for standard link */
  background: var(--mobile-header-bg);
  color: var(--mobile-header-fg);
}

.header--cart--count {
  font-size: 12px;
  position: absolute;
  z-index: 1;
  right: 0;
  top: -5px;
  width: 20px;
  height: 20px;
  text-align: center;
  font-family: var(--font-sans-serif);
  font-weight: 600;

  background: var(--secondary-color);
  color: #000;
  padding: 4px 0 0;
  border-radius: 100%;
}

.header--cart--0 {
  display: none;
}

.header--cart--desktop--icon {
  display: none;
}

.header--cart--icon {
  width: 100%;
}

.header--search--btn {
  cursor: pointer;
  display: block;
  background: none;
  border: 0;
  padding: 5px;
  width: 48px;
  height: 48px;
}

.header--search--icon {
  width: 100%;
}

.header--search {
  grid-area: header-search;
  display: block;
}

.header--search--hidden {
  display: none;
}

.header--search--form {
  display: grid;
  grid-template-columns: auto 50px;
  grid-template-rows: auto;
  grid-template-areas:
    "header-search-input header-search-btn";

  background: #fff;
  color: #111;

  border: 1px solid #999;
}

.header--search--input {
  grid-area: header-search-input;
  display: block;

  border: 1px solid transparent;
  background: none;

  font: 14px var(--font-sans-serif) !important;
  font-weight: 300;
  padding: 0.75em;
  z-index: 99;

  margin: 0;
}

.header--search--input::placeholder {
  color: #666;
  padding: 0;
  vertical-align: bottom;
  font-size: 14px;
}

.header--search--submit--icon {
  display: block;
  width: 25px;
  height: 25px;
}

.header--search--submit--desktop--icon {
  display: none;
}

.header--search--submit--btn {
  grid-area: header-search-btn;
  display: block;

  width: 50px;
  padding: 10px;
  border: 0;
  background: none;
}

/* new header -- desktop (generalized across all sizes) */
@media only screen and (min-width: 761px) {
  .header--overall {
    width: 100%;
    max-width: var(--desktop-max-width);
    min-width: var(--desktop-min-width);
    margin: 0 auto;
  }

  .header--new {
    background: #fff;
    color: #000;

    padding-top: 80px;
    padding-bottom: 5px;

    grid-template-columns: 20% 60% 20%;
    grid-template-rows: auto 0;
    grid-template-areas:
      "header-search header-logo header-icons"
      "header-left header-center header-right";
  }

  .header--sidr--menu {
    display: none;
  }

  .header--logo--wrapper {
    background: #fff;
    color: #000;

    height: 85px;
    display: flex;
    align-items: center;

    grid-area: header-logo;
  }

  .header--logo--link {
    background: #fff;
    color: #000;

    height: 75px;
  }

  .header--logo--mobile--img {
    display: none;
  }

  .header--logo--desktop--img {
    display: block;
  }

  .header--logo--img {
    background: #fff;
    color: #000;

    height: 75px;
    width: 100%;
  }

  .header--icons {
    grid-area: header-icons;
    margin-top: auto;
    margin-left: auto;
  }

  .header--cart--link {
    background: #fff;
    color: #000;

    width: 36px;
    height: 36px;
  }

  .header--account--link {
    display: block;

    background: none;
    border: 0;
    cursor: pointer;

    width: 40px;
    height: 40px;
    padding: 8px;
    margin: 0 5px 0 0;
  }

  .header--account--icon {
    width: 100%;
  }

  .header--cart--desktop--icon {
    display: block;
  }

  .header--cart--mobile--icon {
    display: none;
  }

  .header--search--btn {
    display: none;
  }

  .header--search {
    grid-area: header-search;
    margin-top: auto;
    margin-bottom: 7px;
  }

  .header--search--hidden {
    display: block;
  }

  .header--search--submit--icon {
    width: 100%;
    height: 100%;
  }

  .header--search--form {
    border-top: 0;
    border-left: 0;
    border-right: 0;

    padding-bottom: 5px;

    grid-template-columns: 25px auto;
    grid-template-areas:
      "header-search-btn header-search-input";
  }

  .header--search--input {
    padding: 5px 5px 0 5px;
    font-size: 1em !important;
  }

  .header--search--submit--desktop--icon {
    display: block;
  }

  .header--search--submit--mobile--icon {
    display: none;
  }

  .header--search--submit--btn {
    width: 25px;
    padding: 5px 5px 2px 5px;
  }
}

/* new header -- desktop under 1440px */
@media only screen and (min-width: 761px) and (max-width: 1440px) {
  .header--new {
    margin-left: 5px;
    margin-right: 5px;
  }
}

/*
  Holiday Banner
*/

.countdown-numbers-mobile,
.countdown-numbers-desktop,
.holiday-countdown-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
}

.countdown-block {
  text-align: center;
  padding: 0 5px;
}

.countdown-words {
  margin-top: -5px;
  display: block;
  font-family:var(--font-sans-serif);
  font-size: 9px;
}

.countdown-num {
  display: block;
  font-family:var(--font-sans-serif);
  font-size:20px;
  font-weight:bold;
}

.holiday-text {
  font-size:15px;
  letter-spacing:0.5px;
  text-align: right;
  padding-right: 5px;
}
.holiday-text-bold {
  font-weight: bold;
}
.holiday-countdown-mobile {
  display: none;
}

@media (max-width: 761px) {
  .holiday-countdown-desktop {
    display:none;
  }
  .holiday-countdown-mobile {
    display:block;
    margin: 0;
  }
  .countdown-words {
    margin-top: -5px;
    font-size:12px;
    letter-spacing: 0;
  }

  .countdown-num {
    font-size:21px;
  }

  .holiday-text-mobile {
    font-family: var(--font-sans-serif);
    font-size: 16px;
    letter-spacing:0.5px;
    padding-left: 10px;
    text-align: left;
  }
  .holiday-shipper-mobile {
    display: block;
    font-style: italic; 
    font-size:11px; 
    padding-top:5px;
  }
}
@media (max-width: 370px) { 
  .holiday-text-mobile {
    font-size: 12px;
    padding-left: 5px;
  }
  .countdown-num {
    font-size: 16px;
  }
  .countdown-words {
    font-size: 10px;
  }
  .col-md-auto {
    padding-left: 2px;
  }
}
/*
  end holiday banner
*/

/**************
  New Footer
    N.B. The new footer css is *mobile first* so the
         media query overrides are for desktop use.
 *************/

.footer {
  margin-top: 10px;
  padding-bottom: 30px;
  /* fix issue with content doing floats unnecessarily
     and then popping out of #main-site-area to have
     the footer consume them. */
  clear: both;
}

.footer, .footer a {
  background: rgb(23, 24, 22);
  color: #fff;
  font-weight: 300;
}

.footer h3 {
  font: 14px var(--font-serif);
  text-transform: uppercase;

  /* reset from the default h3 definition */
  margin: 0;
  overflow: unset;
}

.footer--stats {
  color: #fff;
}

.footer--signup {
  background: rgb(246, 244, 240);
  color: #111;
}

.footer--signup--body {
  padding: 20px 40px;
}

.footer--signup .footer--signup--title {
  color: #111;
  font-size: 38px;
  font-weight: bold;
  margin: 0;
}

.footer--signup .footer--signup--desc {
  font-size: 15px;
  margin: 0 0 5px;
}

.footer--signup .footer--signup--form--wrapper {
  padding: 15px 0 30px;
}

.footer--signup .footer--signup--form {
  display: flex;
  width: 100%;
}

.footer--signup .footer--signup--input {
  display: block;
  border: 1px solid #333;
  background: rgba(255, 255, 255, 0.1);
  color: #111;
  font: 13px var(--font-sans-serif);
  line-height: 1;
  padding: 20px 10px 15px 20px;
  width: 75%;

  border-radius: 0;
  -webkit-border-radius: 0;
}

.footer--signup .footer--signup--input:focus,
.footer--signup .footer--signup--input:active {
  /* need !important to override our default enforced focus */
  border: 2px solid #111 !important;
  background: #fff;
  color: #333;
}

.footer--signup .footer--signup--button {
  font-family: var(--font-sans-serif);
  display: block;
  padding: 2px 0 0;
  width: 25%;
  border: 0;
  background: #333;
  color: #fefefe;
  text-transform: uppercase;
}

.footer--payments--container {
  width: 100%;
  overflow: hidden;
}

.footer--payments--container img {
  display: block;
  margin-left: -250px;
}

.footer--content {
  padding: 30px 30px 20px;
}

@media (max-width: 300px) {
  .footer--content {
    padding: 30px 10px 20px;
  }
}

.footer--sections .eves-accord-section {
  border-bottom: 1px solid #fff;
  padding: 10px 0 0;
  margin: 0 0 10px;
}

.footer--sections .Accordion-trigger,
.footer--sections .desktop-txt {
  display: block;
  font: 300 18px var(--font-serif);
  text-transform: uppercase;
  width: 100%;
  text-align: left;
  background: #171816;
  color: #fff;
  padding: 0;
  margin: 0;
  border: 0;
}

.footer--sections .desktop-txt {
  display: none;
}

.footer--sections .eves-accord-body {
  display: block;
  padding: 10px 5px;
  font-size: 1.2em;
}

.footer--sections .eves-accord-body li {
  display: block;
  padding: 0;
  margin: 0;
}

.footer--sections .eves-accord-body li a {
  margin: 0 0 5px;
  display: block;
  padding: 5px;
  font-size: 14px;
}

.footer--sections .Accordion-icon {
  float: right;
  font: 600 16px var(--font-iconography);
  position: relative;
  top: 2px;
  right: 2px;
}

.footer--extras {
  display: grid;
  grid-template-rows: auto auto auto;
  grid-template-areas:
    "footer-extras-top"
    "footer-extras-center"
    "footer-extras-bottom";
  overflow: hidden;
}

.footer--track--order {
  grid-area: footer-extras-top;
  display: block;

  /* Weird padding due to making the truck icon 
     happily center-ish */
  padding: 13px 20px 10px;

  margin: 20px 0;
  text-align: center;
  font: 24px var(--font-serif);

  /* !important due to this being a link tag, and we
     need to enforce our background/color over the default */
  background: rgb(92, 96, 73) !important;
  color: #fff !important;
}

.footer--track--order--img {
  display: inline-block;
  height: 40px;
  object-fit: contain;
  vertical-align: top;
  margin-top: -0.2em;
}

.footer--track--order--txt {
  display: inline-block;
}

.footer--social--links {
  grid-area: footer-extras-center;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: stretch;
}

.footer--social--link {
  padding: 5px;
  margin: 5px;
}

.footer--social--link svg {
  height: 32px;
  width:  32px;
}

.footer--external--link {
  display: inline-block;
  margin: 0 0 0 10px;
}

.footer--external--link:first-child {
  margin: 0;
}

.footer--external--link:hover {
  text-decoration: none;
}

.footer--seal--img {
  display: block;
}

.footer--external--extras {
  display: flex;
  justify-content: center;
}

.footer--copyright {
  font: 12px var(--font-sans-serif);
  font-weight: 300;
  text-align: center;
}

.footer--stats {
  font: 12px var(--font-sans-serif);
  font-weight: 300;
  text-align: center;
  margin-bottom: 20px;
}

/* desktop styling */
@media (min-width: 761px) {
  .footer--signup--body,
  .footer--content {
    min-width: var(--desktop-min-width);
    max-width: var(--desktop-max-width);
    width: 100%;
    margin: 0 auto;
  }

  .footer--signup--body {
    display: flex;
    padding: 40px 20px;
  }

  .footer--signup .footer--signup--desc {
    margin: 0;
  }

  .footer--signup .footer--signup--text {
    width: 60%;
    font-size: 13px;
    padding-left: 20px;
  }

  .footer--signup .footer--signup--form--wrapper {
    width: 40%;
    padding: 0 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer--content {
    padding-top: 100px;
    min-height: 500px;
  }

  .footer--sections {
    display: flex;
  }

  .footer--content .footer--sections {
    width: 65%;
    padding-right: 10px;
  }

  .footer--sections .Accordion-trigger {
    display: none;
  }

  .footer--sections .desktop-txt {
    display: block;
  }

  .footer--sections .eves-accord-section {
    border: 0;
  }

  .footer--sections .eves-accord-body {
    padding: 10px 0;
  }

  .footer--sections .eves-accord-body li a {
    padding: 3px 0;
  }

  .footer--sections .mobile-expand {
    width: 33.3333%;
    padding: 0;
  }

  .footer--sections .mobile-expand:first-child {
    width: 25%;
  }

  .footer--extras {
    width: 35%;
    padding: 0 50px;
    grid-template-rows: 50px 100px 100px;
  }

  .footer--content {
    display: flex;
  }

  .footer--track--order {
    grid-area: footer-extras-center;
  }

  /* fix for font size causing the icon/text to be on separate rows */
  /* note that this is predicated on a (min-width: 761px) */
  @media only screen and (max-width: 1200px) {
    .footer--track--order {
      padding: 13px 10px 10px;
    }
  }

  .footer--track--order:hover {
    text-decoration: none;
  }

  .footer--social--links {
    grid-area: footer-extras-top;
  }
}

/**************
  Phone Order
 *************/

.phone-order {
  overflow: auto;
  clear: both;
  background: #ffeeba;
  color: #000;
  font-size: 1.4em;
  border-bottom: 1px solid black;
  margin: 0 10px 1em 10px;
  padding: 0.5em;
}

.phone-order .phone-row {
  display: flex;
  margin:  0.5em 0;
}

.phone-order .phone-col {
  display: block;
  width: 50%;
}

.phone-order .phone-options {
  display: block;
  margin:  0;
  padding: 0;
}

.phone-order .phone-options li {
  display: inline-block;
  margin:  0;
  padding: 0;
}

.phone-order .phone-options li::after {
  display: inline-block;
  padding: 0 5px;
}

.phone-order .skip-1 {
  margin-left: 50%;
}

.phone-order a {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  border-radius: 0.25rem;
  border: 1px solid #6c757d;
  color: #fff;
  background: #6c757d;
}

.phone-order a.phone-back {
  background: #458efc;
  border-color: #458efc;
}

.phone-order a.phone-reset {
  background: #dc3545;
  border-color: #dc3545;
}

/* HIDDEN MOBILE STYLES */
.mobileHeader,
.mobileRefCode,
.mobileSearch,
.mobileDetails,
.homeContentMobile,
div.shippingMobile,
div.categoryBannerMobile {
  display: none;
}

.mobileContentChunk, .mobileContentChunk .contentChunk {
  display: none;
}

body {
 font: 12px var(--font-sans-serif);
 color: #757575;
 margin: 0;
 padding: 0;
 min-width: var(--desktop-min-width);
 }

img {
 border: 0;
 }

a {
 text-decoration: none;
 color: #000;
 background-color: #fff;
 }

a:hover {
 text-decoration: underline;
 }

ul {
 margin: 0;
 padding: 0;
 list-style-type: none;
 }

.sr-only,
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Safari (iOS/macOS in particular) seems to struggle with
   ligatures on some fonts so we introduce a generalized nuking
   tool! */
.disable-ligatures {
  -webkit-font-variant-ligatures: no-common-ligatures;
  font-variant-ligatures: none;
}

.skip-to-content:focus {
  display: block;
  position: fixed;
  z-index: 110; /* styled over topBanner */
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  overflow: auto;
  clip: unset;
  padding: 1em;
  font-size: 1.5em;
  background: #fff;
  color: blue;
  text-align: center;
}

body.account .messages,
body.account .messages-errors,
             .messages {
  font: 16px var(--font-sans-serif);
  font-weight: 500;
  margin: 0 10px -10px;
  padding: 4px 0;
  text-align: left;
  text-transform: capitalize;
}

body.account .messages,
.messages {
  color: var(--dark-green);
}

body.account .messages-errors {
  color: #E60000;
}

textarea {
 color: #ccc;
 border: 1px solid #ddd;
 font: 12px var(--font-serif);
 }

input {
 border: 1px solid #e5e5e5;
 color: #757575;
 font: 12px var(--font-serif);
 padding: 5px;
 }

input:focus,
textarea:focus {
 border: 1px solid #bbb;
 box-shadow: 0 0 5px #b2b2b2;
 color: #000;
 outline-color: #c1c5bd;
 }

 :focus { 
  outline: none;
  border: 1px solid rgba(122, 110, 83, 0.1) !important; 
  -webkit-box-shadow: 0px 0px 3px  #c1c5bd !important;
  box-shadow: 0px 0px 3px  #c1c5bd !important;
  border-radius: 2px;
 } 

 input[type="checkbox"] {
  background-color: #c1c5bd;
 }

input[type=button],
input[type=submit],
input[type=image] {
 cursor: pointer;
 font: 12px var(--font-sans-serif);
 font-weight: 500;
 text-transform: uppercase;
 color: #fff;
 height: 28px;
 width: 110px;
 padding-top: 4px;
 }

/* input[type=button]:hover,
input[type=submit].hover,
.primaryButton,
.productPage .personalize-button:hover {
  background: url("../images/v2/layout/btn_overlay.png?auto=webp&quality=50") repeat-x scroll 10px 50%;
 } */

input[type=button]:hover,
input[type=submit]:hover{
 color: #fff;
 background-color: #5d604b;
 }

:invalid {
 box-shadow: none;
 }

:-moz-submit-invalid {
 box-shadow: none;
 }

:-moz-ui-invalid {
 box-shadow:none;
 }

input.counter {
  float: left;
  font-size: 12px;
  margin-top: 5px;
  padding: 0 0 3px 3px !important;
  width: 1.625rem;
  min-height: 15px;
  background-color: #eee;
  color: #6B6B6B;
}

input.counter:disabled {
  /* this is required for safari */
  -webkit-text-fill-color: #6b6b6b;
  opacity: 1;
}

.inputDisabled  {
 color: #ababab;
 background-color: #eee;
 }

select {
  padding: 2px 0 3px;
  font-size: 12px;
}

 option {
   font-size: 12px;
 }

.error {
 color: #E60000;
 font-size: 12px;
 font-weight: bold;
 padding-top: 10px;
 }

.error input {
 -webkit-box-shadow: 0 0 5px #E60000;
 -moz-box-shadow: 0 0 5px #E60000;
 box-shadow: 0 0 5px #E60000;
 border: 1px solid #E60000;
 }

.doubleLines,
.productPageDoubleLines {
  background: url("../images/v2/layout/bg_doubleLines.png?auto=webp&quality=25") repeat-x scroll left top;
  clear: both;
  height: 0.7em;
  width: 100%;

  display: none !important;
}

.shadow {
 background: url("../images/v2/layout/bg_footerShadow.gif?auto=webp&quality=25") repeat-x scroll 0 0 rgba(0, 0, 0, 0);
 display: block;
 height: 18px;
 position: relative;
 margin-top: 20px;
 }

.primaryButton {
  background: #000;
  display: block;
  font: 13px var(--font-sans-serif);
  text-transform: uppercase;
  border-radius: 0;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}

.primaryButton:hover {
  background: #5d604b;
  text-decoration: none;
}

.primaryButton.pink {
  background: #5d604b;
}

.primaryButton.pink:hover {
  background: #454735;
}

.primaryButton.blue {
  background: #5d604b;
}

.primaryButton.blue:hover {
  background: #454735;
}

.primaryButton.olive {
  background: #5d604b;
}

.olive {
  color: #5d604B;
}

.checkout.primaryButton.orange {
 width: 262px;
 font-size: 13px;
 padding: 10px 0 10px;
 }

.buttonDisabled {
 background-color: #d9d9d9 !important;
 }

b,strong {
  font-weight: 600;
}

h1 {
 font: 24px var(--font-serif);
 margin: 12px 0 10px;
 color: #171816;
 border-bottom: 1px solid #ddd;
 padding-bottom: 5px;
 background-color: #fff;
 }

h3 {
 color: #5d604b;
 font: 26px var(--font-serif);
 margin-bottom: -6px;
 overflow: auto;
 text-transform: lowercase;
 }

.custsrv h2 {
  color: #5d604b;
  font: 26px var(--font-serif);
  margin-bottom: -6px;
  overflow: auto;
  text-transform: lowercase;
  background-color: #FFF;
}

span.smiley {
 color: #ccc !important;
 font-size: 30px !important;
 background-color: #fff !important;
 }


/* Global Script Title Styling
   This section does *mobile-first* styling
*/

.script-content-title,
.contentChunk .script-content-title,
.categoryPage .contentChunk h2,
.categoryPage .contentChunk h3,
.categoryPage .contentChunk h4 {
  font: 22px/1.3 var(--font-serif);
  text-align: center;
  padding: 40px 0 0;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  overflow: visible;
  color: var(--dark-green);
  /* font-variant-ligatures: none;
  -webkit-font-variant-ligatures: no-common-ligatures; */
}

.script-title-lower {
  text-transform: lowercase;
}

/* desktop styling */
@media(min-width: 761px) {
  .script-content-title,
  .contentChunk .script-content-title {
    font-size: 28px;
    line-height: 1;
    margin: 0;
    overflow: visible;
    /* font-variant-ligatures: none;
    -webkit-font-variant-ligatures: no-common-ligatures; */
  }
}
.categoryPage .contentChunk h2,
.categoryPage .contentChunk h3,
.categoryPage .contentChunk h4,
.categoryPage h2, 
.categoryPage h3,
.categoryPage h4 {
  color: #171816;
  font: 20px var(--font-serif);
  letter-spacing: 0.12em;
  text-transform: capitalize;
  text-align: left;
  padding-bottom: 5px;
}
.categoryPage .contentChunk p.topBorder {
  border-top: 1px solid #171816;
}
.categoryPage .contentChunk p,
.categoryPage .contentChunk .categoryContentList,
.categoryPage .contentChunk .categoryContentList a {
  color: #171816;
  line-height: 1.7em !important;
}

/* End of Global Script Title Styling */

/* as seen in header & content styling
   another style is for topBorder which
   is elsewhere in this file */

.as-seen-in,
.as-seen-in-border {
  width: 100%;
  text-align: center;
  min-height: 50px;
  margin-bottom: 40px;
  margin-top: 10px;
}

/* the rest of this styling is with
   .topBorder styling of various locations */
.as-seen-in .as-seen-in-border {
  margin-top: 0;
  padding-top: 0;
}

.as-seen-in-header {
  font-size: 26px;
}

.as-seen-in .img-desktop {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}

.as-seen-in .img-mobile {
  display: none;
}

@media only screen and (min-width: 761px) and (max-width: 1440px) {
  .as-seen-in,
  .as-seen-in-border {
    width: calc(100% - 10px);
    margin: 0 5px;
  }
}

@media (max-width: 760px) {
  .as-seen-in {
    width: 100%;
    margin: 0;
  }

  /* these home overrides help the as-seen-in content match
     up with our content chunks while also letting us maintain
     some generally consistent as-seen-in styling across
     the site */
  .home .as-seen-in {
    padding: 0 10px;
  }

  .home .as-seen-in-header {
    margin: auto;
    padding-top: 30px;
  }

  .home .as-seen-in-border {
    margin: 0 auto;
    padding-bottom: 2px;
  }

  .as-seen-in .img-desktop {
    display: none;
  }

  .as-seen-in .img-mobile {
    margin-bottom: 10px;
    width: 100%;
    display: block;
  }
}

.contentChunk h2,
.contentChunk h3,
.contentChunk h4 {
  font: 28px var(--font-serif);
  text-align: center;
  margin: 0;
  border-top: none;
  padding-top: 20px;
}

.contentChunk .contentList {
  width: auto;
  font-size: 12px;
  line-height: 1.4em;
  display: block;
  padding: 0 15px;
  margin: 0 0 15px;
}

.contentChunk .contentList li {
  display: block;
  float: none;
  width: auto;
  padding: 5px 0;
}

.contentChunk .contentList li a {
  background: #fff;
  color: #000;
}

#bottomInfo h3 { padding-bottom: 0; margin-bottom: -5px; }
#bottomInfo ul { list-style-type: disc; font-size: 12px; padding: 0; }
#bottomInfo ul li { line-height: 1.5em; }

.container_base > h1,
.container_base > .contentChunk {
  padding-left: 10px;
  padding-right: 10px;
}

.contentChunk p.topBorder,
.gift-guide .topBorder,
.home .topBorder,
.as-seen-in-border {
  font: 12px/1.3em var(--font-sans-serif);
  border-top: 1px solid #5d604c;
  width: auto;
  padding-top: 8px;
  text-align: left;
  background-color: #fff;
}

.gift-guide .topBorder,
.home .topBorder {
  display: block;
  width: 50%;
  text-align: center;
}

.home .grid_6 h1,
.home .grid_6 h2,
.home .contentChunk p.topBorder {
  color: #000;
  font-weight: 300;
  background-color: #fff;
  margin-top: 5px;
}

.contentChunk ul.birthstoneList {
  /* -20px to pop over the p.topBorder above
     this and have it be closer to the title */
  margin: -20px auto 20px auto;
  width: 800px;
}

.contentChunk ul.birthstoneList li {
 width: 250px;
 }

.contentChunk ul.birthstoneList li img {
 margin-bottom: -6px;
 }

.contentChunk ul.categoryContentList a,
.contentChunk ol.categoryContentList a  {
  font-weight: bold;
  color: #595959;
  background-color: #FFF;
  display: block;
  padding-bottom: 2px;
}
.contentChunk ul.categoryContentList,
.contentChunk ol.categoryContentList {
  text-align: left;
  padding:  0;
  width: auto;
}
.contentChunk ul.categoryContentList  li,
.contentChunk ol.categoryContentList  li {
  padding: 0 0 15px 0;
  float: unset;
  display: list-item;
  vertical-align: top;
  width: 100%;
  font: 12px/1.5em var(--font-sans-serif);
  background-color: #FFF;
}

.contentChunk ol.categoryContentList  li {
  margin-left: 15px;
  width: calc(100% - 15px);
}

.contentChunk.instashop h3 {
  background-color: #fff;
}

.contentChunk ul.catContentList {
  list-style-type: disc;
}

.contentChunk ul.catContentList li {
  float: none;
  display: list-item;
  width: auto;
  line-height: normal;
  padding: 0;
  margin: 0 0 0 16px;
}

.contentChunk ol.catContentList {
  list-style-type: decimal;
}

.contentChunk ol.catContentList li {
  margin: 0 0 10px;
  line-height: normal;
}

.contentChunk ul.catContentList li a {
  float: none;
  color: #000;
  background-color: #FFF;
}

.contentChunk.instashop p.topBorder {
  margin: 0;
  width:  100%;
}

@media only screen and (min-width: 761px) and (max-width: 1440px) {
  .contentChunk.instashop p.topBorder {
    width: calc(100% - 10px);
    margin: 0 5px;
  }
}

.bottomTen {
 margin-bottom: 10px !important;
 }

.bottomFifteen {
 margin-bottom: 15px !important;
 }

.bottomTwenty {
 margin-bottom: 20px !important;
 }

.bottomTwentyFive {
 margin-bottom: 25px !important;
 }

.grecaptcha-badge {
  display: none !important;
}

.truncatorator {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  border: 1px solid transparent;
  background: none;
  font: 12px var(--font-sans-serif);
  line-height: 1;
  color: #000;
  background-color: #FFF;
}

.truncatorator:active,
.truncatorator:focus {
  color: #000;
  background-color: #FFF;
}

.truncatorator strong,
.truncatorator:active strong,
.truncatorator:focus strong {
  color: inherit;
  background: inherit;
}

.TruncatedDesktop { display: none; }
.TruncatedMobile {
  display: block;
  min-height: 54px;
}

@media screen and (min-width: 761px) {
  .TruncatedDesktop {
    display: block;
    min-height: 36px;
  }
  .TruncatedMobile { display: none; }
}

#sidr > ul {
 display: none;
 }

.float-left {
  display: block;
  float: left;
}

.float-right {
  display: block;
  float: right;
}

.grey-background {
  background-color: #f6f4f0;
}

.grey-border {
  border: 1px solid #ccc;
}

.color-darkgrey {
  color: #555;
}

.eves-autocomplete {
  position: absolute;
  z-index:  1000;
  background: #fff;
}

.eves-ac-results {
  border: 1px solid #ccc;
  font: 13px var(--font-serif);
}

.eves-ac-results .eves-ac-item {
  cursor: pointer;
  padding: 5px;
  border-bottom: 1px dotted #ccc;
  color: #757575;
}

.eves-ac-results .eves-ac-item:last-child {
  border-bottom: 0;
}

.eves-ac-results .eves-ac-item b {
  color: #000;
}

.eves-ac-results .eves-ac-item[aria-selected="true"],
.eves-ac-results .eves-ac-item:hover {
  background-color: #ccc;
  color: #fff;
}

.eves-tabs {
  width: calc(100% - 10px);
  font: 14px var(--font-sans-serif);
  margin-top: 10px;
}

.eves-tab-list {
  margin: 0 0 -1px;
  overflow: visible;
}

.eves-tab {
  position: relative;
  margin: 0;
  padding: 1.2em 2em 1em;
  text-transform: uppercase;
  border: 1px solid #ccc;
  border-bottom: 0;
  overflow: visible;
  font-family: inherit;
  font-size: inherit;
  background: #fff;
  cursor: pointer;
}

@media (max-width: 1300px) {
  .eves-tab {
    width: auto;
    padding: 1.2em 0.9em 1em;
  }
}

.eves-tab[aria-selected="true"] {
  border-radius: 0;
  background: #c1c5bd;
  outline: 0;
}

.eves-tab:hover,
.eves-tab:focus,
.eves-tab:active {
  outline: 0;
  box-shadow: none !important;
  border: 1px solid #ccc;
  border-bottom: 0;
  border-radius: 0;
  color: inherit;
  color: #171816;
}

.eves-tab:hover {
  text-decoration: underline;
}

.eves-tab-panel {
  position: relative;
  z-index: 2;
  padding: 10px 25px;
  border: 1px solid #ccc;
  margin-right: 15px;
}

.eves-tab-panel:focus {
  outline: 0;
  border: 1px solid #ccc !important;
  border-radius: 0;
  box-shadow: none !important;
}

.eves-tab-panel:focus::after {
  position: absolute;
  bottom: 0;
  border-radius: 0 0 0.2em 0.2em;
  content: '';
}

.eves-tab-panel .area-title {
  font-size: 18px;
  font-weight: 100;
}

.eves-tab-panel .area-content {
  color: #171816;
  font-weight: 100;
}

 .modal-body-active {
   overflow: hidden !important;
 }

.modal-backpanel, 
.main-image-backpanel {
   display: none;
   height: 100%;
   width: 100%;
   position: fixed;
   opacity: 0.5;
   top: 0;
   left: 0;
   background: #000;
   z-index: 2000;
 }

 .modal-button {
   border: 0;
   background: transparent;
   display: inline-block;
   font: 12px var(--font-sans-serif);
   font-weight: 700;
   color: #757575;
 }

 .modal-titlebar {
   min-height: 1.3em;
 }

 .modal-titlebar-close {
   position: absolute;

   top:   1em;
   right: 0.8em;

   margin:  0;
   padding: 0;

   width:  20px;
   height: 20px;
 }

 .modal {
   background: #fff;
   border:     1px solid #ccc;

   transform:  translate(-50%, -50%);
   position:   absolute;
   top:        50vh;
   left:       50vw;
   z-index:    2001;
 }


.singleLine {
  display: none;
}

/* Sticky Nav Rules */
.topNav.sticky {
  position: fixed;
  top: 61px;
  width: 100%;
  margin-left: 0;
}

.singleLine.sticky {
  z-index: 97;
  left: -850px;
  top: 0;
  position: absolute;
  display: inline-block;
  border-bottom: 2px solid #ccc;
  height: 42px;
  width: 200%;
  background-color: #fff;
}

.desktopSingleLine.sticky {
  /* we center the top nav via a `margin: 0 auto`
     with enforced max/min widths, we don't want to lose
     that centering here. so we just extend our left/right
     out into forever. */
  width: auto;
  left:  -100em;
  right: -100em;

  z-index: 1;
  display: block;
  height: 43px;
}

.topNav ul.dropDown .holidayRight.sticky {
 float: none;
 display: inline-block;
 margin-left: 83px;
}

a.smallLogo {
 margin: 7px 10px 0 12px;
 float: left;
 }

a.smallLogo:hover {
text-decoration: underline;
}

/* Site Nav + Dropdowns */
.topNav {
  border-top: 3px solid #000;
  border-bottom: 2px solid #ccc;
  height: 42px;
  clear: both;
  background-color: #fff;
  z-index: 99;
}

.desktopTopNav {
  z-index: 99;

  max-width: var(--desktop-max-width);
  margin: 0 0 5px;

  /* outline: 1px solid red; */
}

.desktopTopNav-listing {
  display: flex;
  flex-wrap: wrap;
  z-index: 99;
  justify-content: space-between;
  width: 100%;

  /* outline: 2px solid green; */
}

.sticky .desktopTopNav-listing {
  position: relative;
}

.desktopTopNav.sticky {
  position: fixed;
  width: 100%;

  /* outline: 5px solid orange; */
}

.desktopTopNav-header a:hover {
  background: #171816;
  color: #fff;
  text-decoration: none;
}

.desktopSubNav a {
  color: #171816;
  background: #f6f4f0;
}

.desktopTopNav li {
  display: block;
  font: 13px var(--font-sans-serif);
  font-weight: 600;
  text-transform: uppercase;
}

.desktopSubNav li a {
  display: block;
}

.desktopSubNav .vrOne {
  background-color: #f6f4f0;
  float: left;
  width: 1px;
  display: block;
  height: 370px
}

.desktopSubNav .vr {
  background-color: #ddd;
  height: 245px;
  margin: 70px 0;
}

.desktopSubNav img {
  z-index: 100;
}

.desktopSubNav {
  display: none;
  position: fixed;
  z-index: 98;
  max-width: var(--desktop-max-width);
  /* min-width: var(--desktop-min-width); */
}

.desktopSubNav.visible {
  display: flex;
  flex-wrap: nowrap;
  position: absolute;
  z-index: 99; /* Do not touch - must coincide with .search-refinements-container */
  color: #000;
  background: #f6f4f0;
  left: 0;
  right: 0;
  top: 3.1em;
  border: 1px solid #eee;
  border-top: 1px solid #000;
  border-left: 0;
}

.desktopTopNav-link {
  text-align: center;
  width: 100%;
}

.desktopTopNav-link:hover,
.desktopTopNav-link:active,
.desktopTopNav-link:focus,
.desktopTopNav-link.active {
  background: #000;
  color: #fff;
}

.desktopSubNav .desktopSubNavCol {
  background-color: #f6f4f0;
  width: 19em;
  min-height: 32em;
  position: relative;
  padding: 20px;
}

.desktopSubNav .desktopSubNavCol:nth-last-child(2)::after,
.desktopSubNav .desktopSubNavCol:last-child::after {
  content: '';
  display: none;
}

.desktopSubNav .columnHead {
  text-transform: none;
  margin-bottom: 10px;
  display: block;
}

.desktopSubNav .columnHead.personalized {
  width: 89px;
  padding: 2px 5px 2px 6px;
}

.desktopSubNav li a {
  padding: 3px 0;
  font: 13px var(--font-sans-serif);
  text-transform: none;
  line-height: 1.8;
  color: #000;
  font-weight: 300;
  background-color: #f6f4f0;
}

.desktopSubNav li a:hover {
  background: #f6f4f0 !important;
  text-decoration: underline;
  color: #000;
}

.desktopSubNav .whiteLast {
  margin-left: auto;
  background-color: #fff;
  /* padding: 20px 45px;
  width: 32em; */
  padding: 20px;
  width: 28em;
}

.desktopSubNav .whiteLast a {
  font: 16px var(--font-sans-serif);
  font-weight: 500;
  text-align: center;
  color: #000;
  background: #fff;
}

.desktopSubNav .whiteLast a.rightThumb {
  text-align: center;
  font: 25px/1.4em var(--font-serif);
  text-transform: none;
  display: block;
  margin-right: 5px;
}

.desktopSubNav .rightThumbText {
  display: block;
}

.desktopSubNav a.rightThumb:hover {
  background: none !important;
  text-decoration: underline !important;
}

.desktopSubNav .whiteLast img {
  width: 80%;
  margin-bottom: 15px;
}

.desktopSubNav .whiteLast .doubleLines {
  width: 150px;
  height: 6px;
  margin: 10px 0;
}

@media (max-width: 670px) {
  .desktopTopNav {
    display: none;
  }
}

.desktopBigFont .holidayRight {
  margin-left: 0;
}

.desktopBigFont::-webkit-scrollbar {
  display: none;
}

.desktopBigFont .desktopSubNav {
  top: 4.5em;
  width: 940px !important;
  left:  0 !important;
  max-height: 30vh;
  overflow:   auto;
}

@media screen and (min-width: 761px) and (max-width: 1440px) {
  .desktopTopNav {
    margin: 0 5px 5px;
    width: auto;
  }

  .desktopSubNav .whiteLast img {
    width: 100%;
  }

  .desktopTopNav.sticky .desktopTopNav-listing {
    justify-content: space-around;
    min-width: var(--desktop-min-width);
  }
}



/* Below .topNav styles kept to keep 
   mobileNav from catching on fire */
.topNav a {
  color: #000;
}

.topNav ul.dropDown {
  width: auto;
  position: relative;
  z-index: 98;
}

.topNav ul.dropDown li {
  font: 13px  var(--font-sans-serif);
  font-weight: 600;
  text-transform: uppercase;
  width: auto;
  position: relative;
  display: block;
  float: left;
}

.topNav ul.dropDown li a {
  display: block;
}

.topNav ul.dropDown li .vrOne {
  background-color: #f6f4f0;
  float: left;
  width: 1px;
  display: block;
  height: 370px;
}

.topNav ul.dropDown li div.vr {
  background-color: #f6f4f0;
  height: 245px;
  margin: 70px 0;
}

.topNav ul.dropDown li div.subMenu img {
  z-index: 100;
}

.topNav ul.dropDown li div.subMenu {
  position: fixed;
}

.topNav ul.dropDown li div.subMenu,
div.subMenuContainer {
  visibility: hidden;
  z-index: 99;
  /* Do not touch - must coincide with .search-refinements-container */
  opacity: 0.99;
  border: 1px solid #ccc;
  color: #000;
  -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.4);
  height: 370px;
}

.topNav ul.dropDown li div.subMenu ul.grid_2 {
  background-color: #f6f4f0;
  width: 149px;
  height: 330px;
  padding: 20px;
}

.topNav ul.dropDown li div.subMenu ul.grid_2 li .columnHead {
  text-transform: none;
  margin-bottom: 10px;
  display: block;
}

.topNav ul.dropDown li div.subMenu ul.grid_2 li .columnHead.personalized {
  width: 89px;
  padding: 2px 5px 2px 6px;
}

.topNav ul.dropDown li div.subMenu ul.grid_2 li {
  width: 155px;
}

.topNav ul.dropDown li div.subMenu ul.grid_2 li a {
  padding: 4px 0;
  font: 12px Arial, Helvetica, sans-serif;
  text-transform: none;
  color: #505050;
  background-color: #f6f4f0;
}

.topNav ul.dropDown li div.subMenu ul.grid_2 li a:hover {
  background: 0 !important;
  text-decoration: underline;
  color: #000;
}

.topNav ul.dropDown li div.subMenu ul.whiteLast {
  background-color: #fff;
  padding: 20px 15px;
}

.topNav ul.dropDown li div.subMenu ul.whiteLast li a {
  font: 14px  var(--font-sans-serif);
  font-weight: 500;
  color: #000;
  background-color: #fff;
}

.topNav ul.dropDown li div.subMenu ul.whiteLast li a.rightThumb {
  font: 21px/1.15em var(--font-serif);
  text-transform: none;
  display: block;
  margin-right: 5px;
}

.topNav ul.dropDown li div.subMenu ul.whiteLast li a.rightThumb:hover {
  color: #999;
  text-decoration: none !important;
}

.topNav ul.dropDown li div.subMenu ul.whiteLast li img {
  margin-bottom: 15px;
}

.topNav ul.dropDown li div.subMenu ul.whiteLast li a.rightThumb:hover img {
  opacity: 0.4;
}

.topNav ul.dropDown li div.subMenu ul.whiteLast li div.doubleLines {
  width: 150px;
  height: 6px;
  margin: 10px 0;
}

.topNav ul.dropDown li.hover a#menu_1,
.topNav ul.dropDown li.hover a#menu_2,
.topNav ul.dropDown li.hover a#menu_3,
.topNav ul.dropDown li.hover a#menu_4,
.topNav ul.dropDown li.hover a#menu_5,
.topNav ul.dropDown li.hover a#menu_6,
.topNav ul.dropDown li.hover a#menu_7,
.topNav ul.dropDown li.hover a#menu_8,
.topNav ul.dropDown li.hover a#menu_9,
.topNav ul.dropDown li.hover a#menu_11,
.topNav ul.dropDown li.hover a#mobile_menu_1,
.topNav ul.dropDown li.hover a#mobile_menu_2,
.topNav ul.dropDown li.hover a#mobile_menu_3,
.topNav ul.dropDown li.hover a#mobile_menu_4,
.topNav ul.dropDown li.hover a#mobile_menu_5,
.topNav ul.dropDown li.hover a#mobile_menu_6,
.topNav ul.dropDown li.hover a#mobile_menu_7,
.topNav ul.dropDown li.hover a#mobile_menu_8,
.topNav ul.dropDown li.hover a#mobile_menu_9,
.topNav ul.dropDown li.hover a#mobile_menu_11,
.mobileTopNav ul.dropDown li.hover > a {
 background: #000;
 color: #fff;
 text-decoration: none;
}

.topNav ul.dropDown li.hover a#menu_1 + div.subMenu,
.topNav ul.dropDown li.hover a#mobile_menu_1 + div.subMenu {
  margin-left: -92px;
  width: 938px;
}

.topNav ul.dropDown li.hover a#menu_2 + div.subMenu,
.topNav ul.dropDown li.hover a#mobile_menu_2 + div.subMenu {
  margin-left: -240px;
  width: 938px;
}

.topNav ul.dropDown li.hover a#menu_3 + div.subMenu,
.topNav ul.dropDown li.hover a#mobile_menu_3 + div.subMenu {
  width: 938px;
}

.topNav ul.dropDown li.hover a#menu_4 + div.subMenu,
.topNav ul.dropDown li.hover a#mobile_menu_4 + div.subMenu {
  margin-left: -154px;
  width: 938px;
}

.topNav ul.dropDown li.hover a#menu_5 + div.subMenu,
.topNav ul.dropDown li.hover a#mobile_menu_5 + div.subMenu {
  margin-left: -377px;
  width: 938px;
}

.topNav ul.dropDown li.hover a#menu_6 + div.subMenu,
.topNav ul.dropDown li.hover a#mobile_menu_6 + div.subMenu {
  margin-left: -482px;
  width: 748px;
}

.topNav ul.dropDown li.hover a#menu_8 + div.subMenu,
.topNav ul.dropDown li.hover a#mobile_menu_8 + div.subMenu {
  margin-left: -452px;
  width: 748px;
}

.topNav ul.dropDown li.hover a#menu_9 + div.subMenu,
.topNav ul.dropDown li.hover a#mobile_menu_9 + div.subMenu {
  margin-left: -255px;
  width: 369px;
}

.topNav ul.dropDown li.hover a#menu_10 + div.subMenu,
.topNav ul.dropDown li.hover a#mobile_menu_10 + div.subMenu {
  margin-top: -1px;
}

.desktopSubNav1::before {
  content: ' ';
  display: block;
  /* background: orange; */
  width: 8px;
  height: 8px;
  position: absolute;
  top: -6px;
  right: 163px;
  z-index: 2;
  border: #fff solid;
  border-width: 0 8px 8px 0;
  transform: rotate(-135deg);
}

.topNav ul.dropDown li a#menu_all {
  background: url('[cdn url="/images/v2/layout/icon_triangleNav.png" expires="1d"]') no-repeat 47px 12px;
  margin-right: -10px;
  padding: 12px 33px 11px 20px !important;
}

.topNav ul.dropDown li.hover a#menu_all:hover {
  background: #5d604b url('[cdn url="/images/v2/layout/icon_triangleNavHover.png?auto=webp&quality=25" expires="1d"]') no-repeat 47px 12px !important;
  color: #fff;
}

.topNav ul.dropDown li a {
  padding: 12px 12px 14px;
  display: block;
}

.topNav ul.dropDown li div.subMenu ul.grid_12,
div.subMenuContainer ul.grid_12 {
  width: 910px;
  height: 25px;
  background-color: #f5f5f5;
  padding: 20px 0 90px 30px;
}

.topNav ul.dropDown li div.subMenu ul.grid_12 li,
div.subMenuContainer ul.grid_12 li {
  background-color: #fff;
  margin-right: 26px;
  height: 110px;
  width: 104px;
}

.topNav ul.dropDown li div.subMenu ul.grid_12 li a img,
div.subMenuContainer ul.grid_12 li a img {
  margin: -12px 0 0 -18px;
  position: absolute;
  z-index: 0;
}

.topNav ul.dropDown li div.subMenu ul.grid_12 li a span,
div.subMenuContainer ul.grid_12 li a span {
  background-color: #ccc;
  padding: 10px;
  width: 90px;
  margin: 61px 0 0 -20px;
  position: absolute;
  z-index: 1;
  opacity: 0.8;
  filter: alpha(opacity=80);
  text-align: center;
}

.topNav ul.dropDown li div.subMenu ul.grid_12 li a:hover span {
  background-color: #9d9d9d;
  color: #e8e8e8;
}

.topNav ul.dropDown li div.subMenu ul.grid_12 li a:hover {
  background-color: #fff;
}

.topNav ul.dropDown li div.subMenu ul.grid_12 li a:hover img {
  opacity: 0.55;
  filter: alpha(opacity=55);
}

.topNav ul.dropDown li div.subMenu p.doubleLines,
div.subMenuContainer p.doubleLines {
  margin-bottom: 8px;
}
.topNav ul.dropDown li a.browseAll {
  float: right;
  margin-top: -42px;
  padding-right: 27px;
}
.topNav ul.dropDown li a.browseAll:hover {
  background-color: #f5f5f5;
  text-decoration: underline;
  color: #000;
}

.desktopSubNav #menu_9:hover {
  padding-bottom: 15px;
}

/* .topNav ul.dropDown li a#mobile_menu_10 {
  margin-right: 0;
  padding: 12px 16px 15px 16px !important;
  background: #fff;
  color: #5d604b;
} */

.desktopTopNav #menu_10,
.desktopTopNav #list_menu_10 .toggleDesktopSubNav {
  background: #fff;
  color: #5d604b;
}

.desktopTopNav #list_menu_10 .desktopTopNav-link:hover,
.desktopTopNav #list_menu_10 .toggleDesktopSubNav:hover,
.desktopTopNav #list_menu_10 .desktopTopNav-link.active,
.desktopTopNav #list_menu_10 .toggleDesktopSubNav.active,
.topNav ul.dropDown li.hover a#mobile_menu_10 {
  background-color: #5d604b;
  color: #fff;
  text-decoration: none;
}

.desktopSubNav #menu_holiday {
  background: #e61e4b;
  margin-right: -10px;
  padding: 12px 14px 15px 15px !important;
  color: #fff;
}

.desktopSubNav #menu_holiday:hover {
  background: #da01d7;
}

.desktopSubNav a.giftGuide,
.desktopSubNav a.giftGuide:hover {
  color: #f283d7 !important;
  padding-left: 18px !important;
  background: url('[cdn url="/images/v2/layout/icon_heartPink.png?auto=webp&quality=25" expires="1d"]') 0 3px no-repeat !important;
}

.topNav.mobileTopNav {
  display: none;
}

div.subMenuContainer {
  display: none;
}

.desktopTopNav-clear {
  clear: both;
}

.desktopTopNav-filler {
  height: 42px;
}

.desktopTopNav {
  border-top: 3px solid #000;
  border-bottom: 2px solid #ccc;
  clear: both;
  background: #fff;
  position: relative;
}

.desktopTopNav-header {
  display: flex;
}

.desktopTopNav-header a,
.desktopTopNav-header button {
  display: block;
  color: #000;
  background: #fff;
  border: 1px solid transparent;
  padding: 13px 10px 10px 10px;
  margin:  0;
  font: 13px var(--font-sans-serif);
  font-weight: 600;
  letter-spacing: 0.25px;
  text-transform: uppercase;
  cursor: pointer;
}

/* these breakpoints are setup for various desktop widths
  when we are below 1440px to ensure the nav stays on the same line */
@media only screen and (min-width: 761px) and (max-width: 1440px) {
  .desktopSubNavCol.whiteLast {
    min-width: 24em;
    width: 24em;
  }
}

@media only screen and (min-width: 761px) and (max-width: 1320px) {
  /* .desktopTopNav-header a,
  .desktopTopNav-header button {
    padding: 13px 12px 10px 12px;
  } */

  .desktopSubNavCol.whiteLast {
    padding: 20px 20px;
    min-width: 18em;
    width: 24em;
  }
}

@media only screen and (min-width: 761px) and (max-width: 1220px) {
  .desktopTopNav-header a,
  .desktopTopNav-header button {
    padding: 13px 3px 10px 3px;
  }
}

.desktopTopNav-header a {
  margin-left: 5px;
}

.desktopTopNav-header a:first-child {
  margin-left: 0;
}

.fa-chevron-down {
  width:  12px;
  height: 9px;
}

.trusted-source {
  font: 14px var(--font-serif);
  background-color: var(--cream-white);
  color: #000;
  text-align: center;
  font-weight: 400;
  padding: 5px;
  /* letter-spacing: 0.25px; */
  margin: 0;
  width: 100%;
  /* grid-area: nav-above; */
}

.trusted-source-bullet {
  font: 16px/0 var(--font-iconography);
}

.trusted-source-desktop {
  display: none;
}

/* desktop trusted-source >=761px to infinity */
@media only screen and (min-width: 761px) {
  .trusted-source {
    background-color: #c1c5bd;
    letter-spacing: 1px;
    margin: 0;
    font-size: 14px;
    /* grid-area: nav-below; */
  }

  .trusted-source-bullet {
    font-size: 20px;
  }

  .trusted-source-desktop {
    /* this is to prevent font loading from adjusting container
       size after tti */
    min-height: 20px;
    display: block;
  }

  .trusted-source-mobile {
    display: none;
  }
}

/* desktop trusted-source <1440px */
@media only screen and (min-width: 761px) and (max-width: 1440px) {
  .trusted-source {
    margin: 0 5px;
    width: auto;
  }
}

/* Value Prop Area */
.cart ul.valueProps,
.checkout ul.valueProps {
 display: none;
 }

ul.valueProps {
  margin-top: 5px;
  min-height: 65px;
}

ul.valueProps .valueProp-inner {
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 15px 20px 0 10px;
  /* border-right: 1px solid #ddd; */
}

ul.valueProps .grid_3:last-child .valueProp-inner {
  border: 0;
}

ul.valueProps a {
  display: block;
  color: #555;
  background-color: #FFF;
  font: 17px var(--font-sans-serif);
  font-weight: 500;
  overflow: hidden;
  min-height: 45px;
  text-align: left;
  padding: 5px 0 10px 70px;

  /* outline: 1px solid red; */
}

ul.valueProps .valueProp1 a {
 background: url("../images/v2/layout/valueProp_thumb1.jpg?auto=webp&quality=60") no-repeat 12px -3px;
 }

ul.valueProps .valueProp2 a {
 background: url("../images/v2/layout/valueProp_thumb2.jpg?auto=webp&quality=60") no-repeat 12px -2px;
 }

ul.valueProps .valueProp3 a {
 background: url("../images/v2/layout/valueProp_thumb3.jpg?auto=webp&quality=60") no-repeat 12px -1px;
 }

 ul.valueProps .valueProp4 a {
  background: url("../images/v2/layout/valueProp_thumb4.jpg?auto=webp&quality=60") no-repeat 12px -1px;
  }

ul.valueProps li a:hover {
  text-decoration: none;
  color: #5d604b;
}

ul.valueProps li a:hover .strong {
  background: #5d604b;
  color: #fff;
}

ul.valueProps {
  display: none;
}

.product-addon-groups {
  margin-top: 10px;
}

.product-addon-title {
  border: 1px solid transparent;
  display: flex;
  text-align: left;
  width: 100%;
  font-size: 15px;
  padding: 15px;
  cursor: pointer;
  font-family: var(--font-serif);
  background: none;
}

@media (max-width: 760px) {
  .product--info--tabs {
    display: none;
  }
}

.product-addon-body.eves-accord-body {
  padding: 2px 15px 5px;
}

.product-addon-title-txt, 
.product-addon-title-plus-minue {
  display: block;
}

.product-addon-group .product-addon-title::after,
product-addon-group.closed .product-addon-title::after {
  margin-left: auto;
  font-family: var(--font-iconography);
  font-size: 16px;
  content: "+";
}

.product-addon-group.open .product-addon-title::after {
  margin-left: auto;
  font-family: var(--font-iconography);
  font-size: 16px;
  content: "-";
}

.product-addon-groups .product-addon .facet-text {
  width: auto;
  max-width: calc(100% - 115px);
  white-space: inherit;
  display: inline-block;
  vertical-align: middle;
}

.main-image-dialog-btn {
  display: block;
  position: absolute;
  right: -15px;
  top: -15px;
  width: 30px;
  height: 30px;
  text-align: center;
  font-family: var(--font-iconography);
  line-height: 0;
  font-size: 20px;
  border-radius: 20px;
  border: 1px solid transparent;
  background: #000;
  color: #fff;
  cursor: pointer;
}

.mcs-item a {
  border: 1px solid transparent;
  display: block;
}

.main-image {
  background: none;
  border: 1px solid transparent;
  cursor: pointer;
  padding: 0;
}

.alternateImages a {
  display: block;
}

/* Best Seller & Cart Slider */
p.sliderHeader {
 text-align: center;
 margin: 10px 0 12px 0;
 letter-spacing: 1px;
 }

p.sliderHeader a,
p.sliderHeader span.carousel-header {
  font: 36px var(--font-sans-serif);
  font-weight: 300;
  color: #333;
  text-align: center;
 }

p.sliderHeader a:hover {
 text-decoration: none;
 }

body.home .owl-wrapper-full {
 margin-bottom: 20px;
 }

body.home.desktop .owl-wrapper-full,
body.home.mobile .owl-wrapper-full,
div.owl {
 display: block;
 }

body.cart div.owl {
 margin-bottom: 15px;
 }

div.owl div.item a {
 text-align: center;
 display: inline-block;
 }

div.owl div.item img {
 height: 140px;
 width: 140px;
 }

div.owl div.item span {
 text-align: center;
 color: #666;
 width: 90%;
 font: 12px var(--font-sans-serif);
 margin: 0 auto;
 overflow: hidden;
 text-overflow: ellipsis;
 display: -webkit-box;
 -webkit-line-clamp: 2;
 -webkit-box-orient: vertical;
 }

div.owl div.item span.customBanner {
 display: block;
 font: 13px var(--font-sans-serif);
 text-transform: uppercase;
 margin: 2px auto 0;
 padding: 2px 0;
 background-color: #ddd;
 color: #fff;
 width: 70%;
 }

div.owl a:hover {
 text-decoration: none !important;
 cursor: pointer;
 }

div.owl div.item a:hover img {
 opacity: .5;
 }

div.owl div.item a:hover span {
 color: #000;
 }

div.owl div.item a:hover span.customBanner {
 background-color: #e4d9c5;
 color: #fff;
 }

.owl-theme .owl-controls {
 margin: 3px 0 -20px !important;
 }

.owl-theme .owl-controls .owl-buttons div {
 padding: 5px 11px 8px !important;
 font-size: 15px !important;
 }

.owl-theme .owl-controls .owl-buttons div:hover {
 background-color: #5d604b;
 }

.owl-pagination {
 display: none;
 }

.owl-item.loading {
 background: #fff url("../images/v2/layout/preloader.gif?auto=webp&quality=75") no-repeat center center !important;
 }

/* Home Page Content */
.homeContent {
  margin-top: 10px;
}

.home h1 {
  font-size: 24px;
  margin: 0 0 1px 0;
  color: #999;
  text-align: center;
  border: none;
  padding-bottom: 0;
}

.home div.owl div.item span.customBanner,
.home ul.valueProps  {
  display: none;
}

.homePageBanner { 
  height: 500px; 
}

.homePageBanner .text {
  color: #171816;
  margin-top: 1em;
  margin-left: 40px;
  position: absolute;
  z-index: 1;
}

.homePageBanner .text p {
  font: 48px var(--font-serif);
}

.homePageBanner .text a {
  font: 24px var(--font-sans-serif);
  font-weight: 100;
  background-color: #ffffff00;
}

.homePageBannerImage {
  background-image: url(../images/v2/content/home_pod-banner.jpg?auto=webp&quality=50);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left;
  height: 500px;
  left: 0;
  right: 0;
  position: absolute;
}

@media (max-width: 1090px) {
  .homePageBanner { 
    height: unset; 
  }
  .homePageBannerImage {
    width: 100%;
    height: 400px;
    position: relative;
    margin: unset;
    left: 0;
  }
}

.homePagePods {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0 0;
}

.homePagePods .grid_4 {
  margin-bottom: 20px;
}

.homePagePods a {
  display: block;
}

.homePagePods a img {
  width: 100%;
  padding: 0 5px;
}

.homeDesktopHero img {
  aspect-ratio: 1440 / 497.9;
  margin-bottom: 15px;
}

.homeMobileHero {
  margin-top: -7;
}

.homeContent #everybody-loves-container {
  margin: 50px 0;
  min-height: 290px;
}

.homeContent .product-recommendations-header {
  height: 81px;
  overflow: hidden;
}

.newValueProps {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  /* this clear appears to solve an issue during pageload
     where the browser will push this to the right making it
     as if it's a new column. this keeps that from happening */
  clear: both;
}

 .newValueProps .valueProp {
    width: 25%;
    aspect-ratio: 1/1;
  }
  
  @media(max-width: 760px) {
    .newValueProps .valueProp {
      width: 50%;
      aspect-ratio: 1/1.1;
    }
   }

.newValueProps .valueProp a {
  color: #5d604b;
}

.newValueProps .valueProp a:hover {
  text-decoration: none;
}

 .newValueProps .valueProp a:hover p.title {
  font-weight: 500;
  text-decoration: none;
}

 .newValueProps .valueProp img {
  padding: 30px;
  height: auto;
  display: block;
  aspect-ratio: 120 / 107;
}

 .newValueProps .valueProp p.title {
  text-align: center;
  font: 22px var(--font-serif);
  font-weight: 100;
  color: #5d604b;
  background-color: #ffffff;
}

.pod1 img,
.pod2 img,
.pod3 img {
  aspect-ratio: 470 / 550;
}

.pod4 img {
  aspect-ratio: 4 / 3;
  padding-right: 10px;
}
.pod5 img {
  aspect-ratio: 4 / 3;
  padding-left: 10px;
}

.pod6 img {
  aspect-ratio: 144 / 25;
}

.homePagePods .pod6 {
  margin-top: 15px;
}

.homeContent .contentChunk {
  display: flex;
  justify-content: space-between;
}

.homeContent .contentChunk.instashop {
  display: block
}

.contentChunk-home {
  width: calc(50% - 30px);
  padding: 0 10px;
  margin: 0 auto;
}

.contentChunk h2 {
  padding-top: 0;
}

.instashop .script-content-title {
  margin: 0;
  padding-top: 25px;
}

.homeMobileContent {
    display: none;
}
.homeDesktopContent {
    display: block;
}

@media(max-width: 760px) {
  .homeContent {
    margin-top: 2px;
  }
  .homeMobileHero img {
    aspect-ratio: 20 / 13;
  }
  .newValueProps .valueProp {
    width: 50%;
    margin: 0;
  }
  .newValueProps .valueProp img {
    padding: 10px;
  }
  .newValueProps .valueProp p.title {
    font-size: 18px;
    padding: 0 10px;
  }
  .homeContent #everybody-loves-container {
    margin: 30px 0;
    min-height: 280px;
  }
  .homeDesktopContent {
    display: none;
  }
  .homeMobileContent {
    display: block;
  }
  .homePageBanner .text p {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .homePageBanner .text a {
    font-size: 18px;
  }
  .homePageBannerImage {
    background-image: url(../images/v2/content/home_pod-banner-mobile.jpg?auto=webp&quality=50);
    height: 300px;
  }
  .homePagePods .grid_4 {
    margin: 0;
    width: 50%;
    float: left;
  }
  .homePagePods .pod-link {
    margin: 0 5px;
  }

  .pod1 img,
  .pod2 img,
  .pod3 img,
  .pod4 img,
  .pod5 img {
    aspect-ratio: 470 / 550;
    margin: 0;
    padding: unset;
  }

  .pod6 img {
    aspect-ratio: 46 / 25;
  }

  .homePagePods .sale-pod {
    margin-top: 10px;
  }

  .homeContent .contentChunk {
    display: block;
  }

  .contentChunk-home {
    width: auto;
  }
}

@media (max-width: 450px ) {
  .homePageBannerImage {
    height: 200px;
  }
  .homePageBanner .text {
    margin-left: 20px;
  }
  .homePageBanner .text p {
    font-size: 22px;
  }
  .homePageBanner .text a {
    font-size: 14px;
  }
}

.insider {
 width: 100%;
 background: url(../images/v2/layout/bg_gray.jpg) 0 0 repeat-x;
 height: 188px;
 color: #fff;
 text-align: center;
 padding: 10px 0;
 margin-bottom: 0;
 }

.insider p {
 font: 28px var(--font-sans-serif);
 font-weight: 500;
 letter-spacing: 10px;
 text-transform: uppercase;
 margin: 15px 0;
 }

.insider span {
 font: 14px var(--font-serif);
 line-height: 1.45em;
 letter-spacing: 1px;
 }

.insider a {
 display: inline-block;
 margin-top: 25px;
 padding: 10px 65px;
 background: #000;
 font: 14px var(--font-sans-serif);
 color: #fff;
 text-transform: uppercase;
 }

.homeContent .magOffer p {
  text-align: center;
  font: 17px var(--font-sans-serif);
  font-weight: 300;
  margin-top: 12px;
}

/* Breadcrumbs */
.breadcrumbTrail {
 display: none !important;
}

/* Category Page - Parent */
.categoryPage h1 {
 border-bottom: 0;
 padding-bottom: 0;
 background-color: #fff;
 }

.categoryPage h3 {
  width: auto;
}

.categoryPage a:hover {
 text-decoration: underline;
 }

div.shipsToday {
 background-color: #eee;
 padding: 9px 0 8px;
 height: 28px;
 margin-bottom: 20px;
 text-align: center;
 display: block;
 -webkit-box-shadow: 0 3px 8px 0 rgba(0,0,0,.2);
 -moz-box-shadow: 0 3px 8px 0 rgba(0,0,0,.2);
 box-shadow: 0 3px 8px 0 rgba(0,0,0,.2);
 }

div.shipsToday p {
 margin: 0;
 font: 24px var(--font-sans-serif);
 font-weight: 500;
 text-transform: uppercase;
 margin-top: -1px;
 }

div.shipsToday p span {
 font-family: var(--font-serif);
 text-transform: none;
 font-style: italic;
 color: #000;
 }

.categoryPage ul {
  margin-top: 6px;
  line-height: 1em;
  overflow: hidden;
}

.categoryPage ul li {
 width: 165px;
 padding: 5px 0 5px;
 float: left;
 }

.categoryPage ul li a {
 color: #757575;
 }

.categoryPage a.ringSize {
 font-size: 10px;
 color: #bbb;
 font-style: italic;
 margin: -21px 0 2px 211px;
 display: block;
 }

.categoryPage p,
.contentChunk p {
 font: 12px/1.5em var(--font-sans-serif);
;
 }

.categoryPage p:last-child {
 margin-bottom: 20px;
 }

.categoryPage p a {
 text-decoration: underline;
 color: #000;
 }

p.categoryIntro {
 font: 12px/1.5em var(--font-sans-serif);
 }

.grid_12.categoryPageParent {
  display: flex;
  flex-wrap: wrap;
}

.grid_12.categoryPageParent .grid_4 a {
  display: block;
}

.grid_12.categoryPageParent .grid_4 img {
  display: block;
  width: calc(100% - 20px);
  margin: 0 auto;
}

.seo-footer {
  padding: 20px;
  font-size: 13px;
  line-height: 1.5;
}

/**  Category parent page redesign
 *    - This uses an entirely different set of classes/styles because the redesign
 *      only encompasses a subset of all of the category YAML pages that can be
 *      considered to be "parents".
 */

.categoryPageParentPods {
  margin-bottom: 10px;
  border-bottom: 4px solid #000;
  padding-bottom: 3px;
}


.categoryParentPods {
  overflow: auto;
}

.categoryPod {
  height: 230px;
  width: calc((100% - 20px * 3 - 2px * 4) / 4);
  margin: 0 20px 20px 0;
  border: 1px solid #DDD;
  float: left;
}

.categoryPod:hover img {
  opacity: 0.4;
  border-color: #EEE;
}

.categoryPod img {
  height: 185px;
  width: 185px;
  display: block;
  margin: 0 auto;
}

.categoryPodsRow {
  overflow: auto;
  margin-bottom: 20px;
}

.podText {
  text-align: center;
  color: #333;
  font: 18px var(--font-sans-serif);
  line-height: 0.8;
}

.podText div {
  font: 18px var(--font-sans-serif);
  font-weight: 600;
}

.categoryParentProductList {
  margin: 0 0 15px 0;
}

.categoryParentProductList ul.products li {
  border: 1px solid #FFF;
  width: calc(100% / 6);
}

.categoryParentProductList ul.products li a {
  display: block;
  width: 185px;
  margin: 0 auto;
}

.categoryParentProductList ul.products li img {
  max-width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}

.categoryParentProductList ul.products li:hover {
  opacity: 0.7;
}

.subCat {
  overflow: hidden;
  border-top: 2px solid #EEE;
}

.subCat ul {
  display: none;
  margin-left: 15px;
  margin-bottom: 5px;
}

.subCat ul li {
  font-size: 12px;
  margin: 1px 25px 0 0;
}

.subCat:first-child {
  margin-top: -10px;
}

.subCatHeader {
  width: 100%;
  font: 18px var(--font-sans-serif);
  color: #333;
  padding: 6px 0;
  position: relative;
}

.subCatHeader span {
  display: block;
  width: calc(100% - 40px);
}

.subCatExpander {
  position: absolute;
  content: '';
  background: url("/images/v2/layout/icon_fullBlack.png?auto=webp&quality=25");
  background-position: -32px -128px;
  float: right;
  height: 20px;
  width: 20px;
  top: calc(50% - 10px);
  right: 0;
}

.subCatHeader span:hover,
.subCatExpander:hover {
 cursor: pointer;
 }

.subCatExpander.expanded {
  background-position: -63px -128px;
}

/* Category Page - Product list */
.categoryPage .categoryTitle {
  font-size: 28px;
  margin: 20px 0 0;
}

.categoryPage .categoryIntro:first-child {
  margin: 7px 0;
}

.categoryPage .categoryIntro {
  margin: 12px 0;
  background-color: #fff;
  color: #171816;
  font-weight: 100;
}

.productList:not(.product-recommendations-container) {
  position: relative;
  margin-bottom: 15px;
}

.category .productList:not(.product-recommendations-container) {
  margin-left:   auto;
  width: calc(83.33333% - 25px);
}

@media (max-width: 760px) {
  .category .productList:not(.product-recommendations-container) {
    margin: 0 0 15px;
    width: unset;
  }
}

@media (max-width: 1090px) {
  .category .productList .products {
    justify-content: center;
  }
}

.productList a:hover {
 text-decoration: underline;
 }

.sortBy,
.productList .count {
 font-size: 11px;
 margin-top: 10px;
 }

.sortBy label {
  background-color: #FFF;
  margin-left: 10px;
  color: #000;
  font-size: 12px;
  font-weight: 100;
}

#desktop-sortBy {
 margin-top: 0;
 margin-left: 10px;
 padding: 9px 5px 6px;
 float: right;
 text-align: right;
 border: 1px solid #000;
 }

.sortBy span {
 float: left;
 margin: 2px 5px 0 0;
 }

.sortBy select {
 width: 136px;
 border: none;
 font: 12px var(--font-sans-serif);
 background: url(../images/v2/layout/chevron-down.png) no-repeat 96% 40%;
 background-size: 10px;
 -webkit-appearance: none;
 margin: 0;
 }

 .sortBy select:focus {
   border-width: 0 !important;
 }

 /* Category Footer Links */
 .category_links {
  text-align: center;
  max-width: 1440px;
  margin: auto;
}
.category_link_a {
  padding: 15px 20px;
  margin: 15px 10px;
  text-align: center;
  font-size: 14px;
  font-family: SofiaProLight, Arial, sans-serif;
  width: max-content;
  min-width: 120px;
  display: inline-block;
  border-radius: 30px;
  color: #000;
  background-color: #e2d9c5;
}
.category_link_a:hover {
  background-color: #bdb5a4;
  color: #000;
  text-decoration: none !important;
}

@media( max-width: 768px ) {
  .category_link_a {
      width: calc( 50% - 15px );
      margin: 10px 5px;
      vertical-align: middle;
  }
}



/***********
  Category Pagination Controls
  This is *desktop-first*
 **********/

.pagination-group {
  width: 100%;
  text-align: center;
}

.pagination-bar {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  width:   100%;
  font-size: 14px;
  margin: 20px 0;
}

.pagination-previous,
.pagination-next {
  display: block;
  width: 6em;
  font-size: 30px;
  font-weight: 100;
}

.pagination-previous {
  text-align: right;
}

.pagination-next {
  text-align: left;
}

.pagination-details {
  width: 100%;
  color: #333;
}

.pagination-page {
  text-align: center;
  display: block;
  width: auto;
  margin: 10px 50px 0 !important;
  font-size: 16px;
  color: #000;
}

/* desktop-first designing here */
@media(max-width: 760px) {
  .pagination-next,
  .pagination-previous {
    width: 8em;
  }

  .pagination-link {
    display: block;
    padding: 10px;
    font-size: 30px;
  }

  .pagination-previous {
    text-align: right;
  }

  .pagination-next {
    text-align: left;
  }

  .pagination-details {
    width: 100%;
    color: #333;
  }

  .pagination-page {
    width: 100%;
    line-height: 1.4;
    flex-grow: 1;
    justify-content: center;
    display: flex;
    align-items: center;
    margin: 0 30px !important;
  }
}

.productList .count {
 text-align: left;
 margin-top: 15px;
 float: left;
 background-color: #FFF;
 }

.productList .products {
 padding-top: 15px;
 overflow: hidden;
 clear: both;
 }

.productList .products--tile {
  display: flex;
  flex-wrap: wrap;
}

.productList .products li.grid_4 {
  height: auto;
  max-height: 40rem;
  margin: 0;
  margin-bottom: 50px;
  position: relative;
}

.productList .products li.grid_4:nth-child(3n+1) {
  padding-right: 30px;
  padding-left: 0;
}
.productList .products li.grid_4:nth-child(3n+3) {
  padding-left: 30px;
  padding-right: 0;
}
.productList .products li.grid_4:nth-child(3n+2) {
  padding-left: 15px;
  padding-right: 15px;
}

.productList .onclickwrap {
  cursor: pointer;
  font-weight: 600;
  background-color: #FFF;
}

.productList .products li a {
  font-weight: 600;
  color: #000;
  display: block;
}

.productList .products .image,
.productList .products .name,
.productList .products .details,
.productList .products .label {
  display: block;
  text-align: left;
  font-size: 14px;
  font-weight: 300;
}

.productList .products .image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}

.productList .products .name {
  margin: 5px 0;
}

.productList .products .label {
  color: #171816;
  font: 12px/1.1em var(--font-sans-serif);
  font-weight: 100;
  padding: 6px 10px 3px;
  width: max-content;
  background-color: #e2d9c5;
  margin: auto;
  margin-bottom: 15px;
}


@media (max-width: 760px) {
  .productList .products .label {
    text-align: center;
    padding: 3px 5px 1px;
    margin-bottom: 10px;
    max-width: 100%;
  }
  
  .productList .products .label font {
    font-size: 10px !important;
  }

  .productList .products .name {
    margin: 2px 0;
    line-height: 1.3;
    font-size: 12px;
    text-align: center;
    font-weight: 400;
  }

  .productList .products .prices {
    text-align: center;
  }

  .productList .products .price.yourPrice {
    font-size: 12px !important;
    text-align: center;
    font-weight: 400;
  }

  .productList .products .regularPrice,
  .productList .products .regularPrice s {
    font-size: 12px !important;
    text-align: center;
    font-weight: 100;
  }

  .productList .products li.grid_4 {
    min-height: 15rem;
    height: auto;
    padding: 0 5px !important;
    margin-top: 15px;
    margin-bottom: 15px;
    width: calc(50% - 10px);
  }
}

.productPage {
  margin: 20px 0 0;
}

.productList .products .price,
.productList .products .regularPrice,
.productPage .details .price,
.productPage .details .regularPrice,
.cross-sell .price,
.cross-sell .regularPrice,
.addon-list .cart-addon-price .regularPrice  {
  display: inline-block;
}

.addon-tooltip-btn {
  border: 0;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: none;
  cursor: pointer;
  vertical-align: middle;
}

.addon-tooltip-q {
  display: inline-block;
  background: url(../images/v2/layout/icon_questionBlackTiny.png?auto=webp&quality=25) top left no-repeat;
  height: 20px;
  width:  20px;
}

.eves-tooltip-hidden {
  display: none !important;
}

.eves-tooltip-container {
  position: relative;
}

.eves-tooltip-x {
  position: absolute;

  background: url(../images/v2/layout/icon_close-black.png?auto=webp&quality=40) center center no-repeat;
  background-size: cover;

  top:     5px;
  right:   5px;
  width:  20px;
  height: 20px;
  border: 0;
}

.eves-tooltip span {
  display: block;
}

.eves-tooltip-title {
  font: 20px var(--font-sans-serif);
  font-weight: 600;
}

.eves-tooltip-description {
  font-size:  12px;
  margin:     10px 0 0;
  line-height: 1.6em;
}

.eves-tooltip {
  display:  block;
  position: absolute;
  z-index:  995;
  background: #fefefe;
  border: 1px solid #000;
  color:  #000;
  padding: 20px;
  width:   250px;
  right: 0;
}

.eves-tooltip-dialog {
  background: #fefefe;
  border: 1px solid #000;
  padding: 20px;
  color: #000;
}

.eves-tooltip-dialog .modal-titlebar-close {
  background: url(../images/v2/layout/icon_close.png?auto=webp&quality=10) center no-repeat;
  background-size: contain;
  width:  30px;
  height: 30px;
}

@media ( max-width: 760px ) {
  .eves-tooltip-dialog .modal-titlebar-close {
    width:  20px;
    height: 20px;
  }
}

.tooltip-left {
  left: unset;
  top:  30px;
  transform: unset;
}

.eves-tooltip-arrow {
  content: ' ';
  position: absolute;
  z-index: 995;
  border: 7px solid transparent;
}

.tooltip-left .eves-tooltip-arrow {
  top:  -15px;
  left: calc(100% - 15px);
  border-right: 7px solid #000; 
  transform: rotate(90deg);
}

.productList .products .regularPrice,
.productList .products .regularPrice s {
  color: #757575;
  background-color: #fff;
  font-size: 13px;
}

.productList .products .price {
  font-size: 13px;
}

.productList .products .price.yourPrice {
  color: #000;
  margin-top: 5px;
  font-size: 13px;
}

.productPage .details .price
.addon-list .cart-addon-price .price,
.addon-list .cart-addon-price .yourPriceProduct  {
  color: #000;
}
.productList .products a:hover {
  text-decoration: none;
}

.productList .products a:hover .name {
  text-decoration: underline;
}

.productPage .details .regularPrice {
  font-weight: 600;
  font-size: 12px;
}

.productPage .free-shipping-label {
  clear: both;
  display: inline-block;
  font-weight: 100;
  color: #000;
  padding-bottom: 0;
  background-color: #FFF;
  width: 100px;
}

.productPage .details .salePrice {
  font: 15px var(--font-sans-serif);
  color: #fff;
  background-color: #000;
  padding: 3px 2px !important;
}

/* Nextopia Search Results Style */
.nxt-ac-item .nxt-item-txt {
  color: #000 !important;
  font: 14px var(--font-sans-serif) !important;
}

.nxt-ac-item .nxt-item-txt a {
  color: #000 !important;
  font: 14px var(--font-sans-serif) !important;
}

.nxt-ac-item .nxt-ac-selected {
  background: #f6f4f0;
  border-top: 1px solid #f6f4f0;
}

.nxt-ac-main .nxt-ac-header {
  color: #fff !important;
  background-color: #5d604b;
  font: 18px var(--font-sans-serif) !important;
  font-weight: 600;
}

.nxt-ac-main div:last-child {
  display: none !important;
}

@media(max-width: 760px) {
  div.nxt-ac-main {
    width: 83% !important;
  }

  .nxt-ac-main .nxt-ac-products-container,
  .nxt-ac-main .nxt-ac-section-container,
  .nxt-ac-main .nxt-ac-header,
  .nxt-ac-main .nxt-ac-item {
    width: 98% !important
  }

  div.nxt-ac-main {
    position: relative;
    margin: 5px auto 8px auto !important;
  }

  div.nxt-ac-main.autocomplete-page {
    left: unset !important;
  }
}

body.search .productList .pagination {
  margin: 16px 80px 0 -165px;
}

.search #search-no-results-products {
  justify-content: flex-start;
}

.search #search-no-results-products .grid_2 {
  width: 190px;
  border: 0;
}

@media only screen and (min-width: 761px) and (max-width: 1300px) {
  .search #search-no-results-products {
    justify-content: space-around;
  }
}

.search-pagination,
.related-searches {
 display: inline-block;
 margin: 10px 0;
 padding: 15px 15px 0 10px;
 font-size: 11px;
 }

.search-pagination {
 font: 15px var(--font-sans-serif);
 width: 100%;
 margin: -5px 0 18px;
 }

.search-pagination a {
 font: 15px var(--font-serif);
 background-color: #000;
 color: #fff;
 padding: 2px 5px 3px;
 text-transform: capitalize;
 }

.search-pagination a:hover {
 text-decoration: none !important;
 background-color: #000;
 }

.related-searches {
  width: 100%;
  text-align: right;
  padding: 0 0 0 38px;
}

.search-pagination a:hover,
.related-searches a:hover {
 text-decoration: underline;
 }

hr { display: none; }

.categoryPage#searchResults {
 clear: both;
 padding-left: 10px;
 }

.search-suggested-spelling {
 margin-top: 10px;
 }

/* No Results Search Page */
body.search #search-no-results-pr-container {
 padding-top: 10px;
 border-top: 1px solid #ddd;
 }

body.search #search-no-results-pr-container p {
 margin: 15px 0;
 }

.noResults.grid_12 .doubleLines {
 display: block !important;
 }

.noResults h3 {
 font: 39px var(--font-sans-serif);
 font-weight: 500;
 margin-top: 10px;
 color: #000;
 text-transform: none;
 }

.noResults h3 span {
 font: 30px var(--font-serif);
 color: #fff;
 font-style: italic;
 background-color: #5d604b;
 padding: 0 3px;
 }

.noResults ul.suggestedTips {
 margin-top: 12px;
 padding-bottom: 10px;
 }

.noResults ul.suggestedTips li {
 padding: 3px 0;
 }

.productPage .skuTitle .product-name {
  font: 28px var(--font-serif);
  border-bottom: 0;
  padding-bottom: 0;
  margin: 12px 0 5px;
  color: #000;
  background: inherit;
}

.productPage .personalize-button,
.productPage .photo-button {
 font-size: 14px;
 padding: 9px 8px;
 width: 200px;
 color: #fff;
 text-align: center;
 margin: 20px 0 10px;
 }

.productPage .personalize-button.edit {
 background-color: #bbb;
 }

.productPage .personalize-button.edit:hover {
 background-color: #aaa;
 }

.productPage .personalize-button.edit:after {
 content: " ( edit )";
 font-size: 10px;
 float: right;
 margin: 3px 21px 0 -19px;
 }

.productPage .personalize-button:hover {
 cursor: pointer;
 background-color: #ec5831;
 }

.productPage .photo-button {
  clear: both;
}

.productPage .success img,
.productPage .editing img {
 float: left;
 margin: 5px 0 20px;
 clear: both;
 /* max-width: 180px; */
 }

.productPage .primaryButton.checkout {
 width: 100%;
 border: 0;
 height: 60px;
 padding-top: 6px;
 margin: 10px 0 0;
 font-family: var(--font-sans-serif);
 font-weight: 100;
 font-size: 18px;
 letter-spacing: 1.4px;
 text-transform: uppercase;
 color: #fff;
 margin-bottom: 10px;
 cursor: pointer;
 padding-bottom: 5px;
 }


.productPage .primaryButton.checkout.outofstock {
  background-color: #bbb;
}

.productPage .primaryButton.checkout[aria-disabled=true] {
  background-color: #757575;
}

.productPage .mobileHolidayShipping {
  display: none;
}

.productPage .shippingDesktop,
.productPage .shippingMobile {
  display: none;
}


.productPage .holidayShipping .shippingMessageNew {
  color: #678307;
  background-color: #f6f4f0;
  width: 100%;
  text-align: center;
  padding: 7px 3px;
  margin: 10px 0;
}

.productPage .holidayShipping .shippingMessageNew span {
  color: #678307;
  background-color: #f6f4f0;
  font: 14px var(--font-serif);
}

.productPage .holidayShipping .shippingMessageNew a {
  color: #678307;
  background-color: #f6f4f0;
  font: 12px var(--font-serif);
  text-decoration: underline;
}

.productPage .holidayShipping .shippingMessageNew .head {
  color: #678307;
  background-color: #f6f4f0;
  font: 15px var(--font-serif);
  font-style: italic;
  font-weight: bold;
  letter-spacing: 1px;
}

.productPage .holidayShipping .shippingMessageNew .date {
  color: #678307;
  background-color: #f6f4f0;
  font: 12px var(--font-serif);
}

@media (max-width: 1200px) {
  .productPage .holidayShipping .shippingMessageNew .head {
    font: 12px var(--font-serif);
    font-style: italic;
    font-weight: bold;
    letter-spacing: 1px;
  }
}

.productPage .product--container {
  display: grid;
  grid-template-columns: auto 40% 160px;
  grid-template-rows: 0 minmax(700px, max-content) auto;
  grid-template-areas:
    "product-page-mobile product-page-mobile product-page-mobile"
    "product-page-photos product-page-details product-page-rr"
    "product-page-info product-page-info product-page-info";
}

@media (max-width: 1200px) {
  .productPage .product--container {
    grid-template-columns: auto 36% 160px;
  }
}

.productPage .product--mobile {
  grid-area: product-page-mobile;
  display: none;
}

.productPage .product--container--photos {
  grid-area: product-page-photos;
}

.productPage .product--container--details {
  grid-area: product-page-details;
  margin-right: 15px;
}

.productPage .pr-also-bought-container {
  grid-area: product-page-rr;
}

.productPage .product--container--info {
  grid-area: product-page-info;
}

.shop-collection-link {
  border: none;
  background-color: #e2d9c5;
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 10px 10px;
  font: 14px var(--font-sans-serif);
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 15px;
}

.shop-collection-link:hover {
  text-decoration: none;
}

/* mobile styling for product page */
@media (max-width: 760px) {
  .productPage .product--container {
    display: block !important;
    grid-template-rows: auto 0 auto !important;
  }

  .productPage .product--mobile {
    display: block;
  }

  .productPage .product--container--photos {
    width: 100%;
  }

  .productPage .product--container--details {
    width: 100%;
  }
}

.product .customizations,
.product .coordinate-map {
  margin-bottom: 0 !important;
  padding: 0;
}

body.cart .makeItSpecial .primaryButton.checkout {
 margin-left: 160px;
 }

body.cart .makeItSpecial .customizations {
 width: auto;
 }

body.cart .makeItSpecial .customizations input {
 width: 200px !important;
 float: left;
 }

body.cart .makeItSpecial .customizations .input.text,
body.cart .makeItSpecial .customizations .input.memo {
 width: 200px;
 }

body.cart .makeItSpecial .customizations .preview {
 width: 210px;
 margin-left: 25px;
 }

.productPage #addErrorMessage {
  margin: 0;
  font: 13px var(--font-sans-serif);
  font-weight: 600;
  font-style: normal;
}

.productPage .photo-error {
  float: none;
  margin: 15px 0 0 15px;
  font-size: 13px;
  padding: 0;
}

.productPage .picviewer img {
  display: block;
  max-width: 650px;
  max-height: 650px;
  margin: 0 auto !important;
}

.mobileMainImage {
  display: none !important;
  visibility: hidden !important;
}

@media(max-width: 760px) {
  #alternate-images-container {
    display: none;
  }

.mainImage {
    display: none;
  }

.mobileMainImage {
    display: block !important;
    visibility: visible !important;
    height: 100vw;
  }

.mcs-bullets {
    margin-top: 5px;
  }

.mcs-wrapper {
    height: 100vw;
  }
}

/* fix: the product-addon css is beyond my understanding
   and only content-box can save it now */
.productPage .product-addon,
.productPage .product-addon * {
  box-sizing: content-box;
}

.productPage ul.swagOptions,
.productPage ul.swagOptions.free-shipping {
 background: url("../images/v2/content/bg_swag-new.jpg?auto=webp&quality=90") top left no-repeat;
 height: 40px;
 margin-top: 5px;
 }

.productPage ul.swagOptions.free-shipping {
 background: url("../images/v2/content/bg_swag-free.jpg?auto=webp&quality=90") top left no-repeat;
 }

.productPage h5#social-header {
  font: 18px var(--font-sans-serif);
  text-transform: uppercase;
  margin: 0 0 5px 0px;
}
/* Influencer Images */
.productPage .influencer-photos-area {
  position: relative;
}

.productPage #influencer-photos-load {
  position: absolute;
  left:     50%;
  top:      50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}

.productPage #influencer-photos {
  display: flex;
  position: relative;
  margin-bottom: 10px;
}

.productPage #influencer-photos button {
  margin: 0;
  border: none;
  padding: 0 !important;
  position: absolute;
  top: calc(50% - 20px);
  background: none;
}

.productPage #influencer-photos button.mcs-button-arrow-prev {
  left: 0;
}

.productPage #influencer-photos button.mcs-button-arrow-next {
  right: 0;
}

.productPage #influencer-photos button.mcs-button-arrow {
  padding: 20px 0 !important;
  background: rgba(255,255,255,0.99);
  border-radius: 0 ;
  box-shadow: none;
}

.productPage #influencer-photos button.mcs-button-arrow:before {
  border-color: #000;
}

.productPage #influencer-photos .mcs-wrapper {
  height: fit-content;
}

.productPage #influencer-photos .mcs-wrapper .mcs-items-container {
  height: auto;
}

.productPage #influencer-photos .mcs-item {
   margin: 0;
   line-height: 0;
   overflow: hidden;
   padding-top: 33.33% !important;
   background: #fff;
   position: relative;
}

.productPage #influencer-photos .mcs-item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.productPage #influencer-photos .mcs-item img {
  object-fit: cover;
}

body.product .fancybox-is-open .fancybox-bg {
  opacity: 0.5 !important;
}

@media (max-width: 365px) {
  .productPage #influencer-photos {
    min-height: 110px;
  }
}

.productPage .mainImage {
  width: calc(100% - 105px);
  margin-top: 20px;
  aspect-ratio: 1 / 1;
  float: right;
}

a.MagicZoom {
  min-height: 100%;
  width: 100%;
 }

a.MagicZoom figure.mz-figure {
  min-height: 100%;
  width: 100%;
 }

a.MagicZoom figure.mz-figure img {
  display: block;
  margin: 0 auto 15px !important;
  max-width: 100% !important;
  max-height: 100% !important;
 }

.mz-hint {
  border-bottom: 1px solid #ddd;
}

.mz-hint .mz-hint-message {
 background: none;
 color: #000;
 text-transform: uppercase;
 font: 13px var(--font-sans-serif);
 font-weight: 600;
 padding-bottom: 0;
 }

.mz-hint-message:before {
 content: url("../images/v2/layout/icon_hint.gif?auto=webp&quality=50");
 margin-right: 2px;
 vertical-align: middle;
 }

.mz-hide {
 display: none !important;
 }

a[data-zoom-id] img, .mz-thumb img {
 box-shadow: none;
 }

.mz-thumb-selected img {
 filter: none;
 }

.mz-zoom-window {
  z-index: 96 !important;
 }

.productPage ul.alternateImages {
 clear: right;
 overflow: hidden;
 margin-top: 15px;
 }

.productPage ul.alternateImages li {
 width: 95px;
 height: 95px;
 float: left;
 }

.productPage ul.alternateImages img {
 width: 93px;
 height: 93px;
 }

 .productPage ul.alternateImages.MagicScroll .mcs-item {
  padding: 0 5px;
  }

.productPage .details .prices {
 font: 18px var(--font-serif);
 font-weight: 500;
 margin: -5px 0 0;
 display: inline-block;
 background-color: #FFF;
 color: #171816;
}

.productPage .details .prices .yourPriceProduct {
 color: #000;
 margin: 5px 0;
 background-color: #fff;
 }

 .productPage .details .prices .yourPriceProduct strong {
  color: #000;
  background-color: #fff;
  }

.productPage .details .prices .salePrice {
 margin-bottom: 3px;
 padding: 4px 2px 2px;
 height: 18px;
 }

.productPage div.price-label p font,
body.cart div.price-label font {
  font: 18px var(--font-serif);
  font-weight: 100;
  text-transform: uppercase;
  float: unset;
  text-align: left;
  letter-spacing: 2.5px;
  background-color: #fff;
  color: #181817;
  width: 100%;
  height: 35px;
  margin: 0;
}

.productPage .customizeAndBuy {
  border: none;
  width: 100%;
  height: 60px;
  margin: 15px 0 0;
  font-family: var(--font-sans-serif);
  font-weight: 100;
  font-size: 18px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding-top: 3px;
  color:#fff;
  cursor: pointer;
  background-color: #171816;
}

.productPage .customizeAndBuy.open {
  color:#171816;
  background-color: #e3d9c5;
  border-radius: 0;
  border: none !important;
  box-shadow: none !important;
  display: none;
}

.productPage .customizations {
  width: calc( 100% - 4px );
}

.product .customizationIsHidden .customizations {
  border: 0;
}

.productPage .variation {
   margin: 0 0 10px 0;
   display: block;
 }

.productPage .variation label::after {
 content: "*";
 color: #999;
 margin-left: 2px !important;
 }

.productPage .variation label:after {
 content: "*";
 color: #999;
 margin-left: 2px !important;
 }

.productPage .variation label {
  float: unset;
  width: 95%;
  font: 14px var(--font-sans-serif);
  font-weight: 100;
  text-transform: none;
  color: #000;
  background-color: #FFF;
}

.productPage .variation select {
  float: unset;
  width: calc(50% - 15px);
  height: 30px;
  padding-left: 5px;
  margin-top: 2px;
  border: 1px solid #333;
  display: block;
}

.productPage .xref.variation {
 display: inline-block;
 width: 100%;
 }

.productPage .xref.variation .label {
 width: 100%;
 background-color: #fff;
 }

.productPage .product-addon-container {
 display: inline-block;
 width: 100%;
 }

.productPage .product-addon {
   margin: 5px 0;
 }

.productPage .product-addon label {
 font: 14px var(--font-sans-serif);
 color: #000;
 background-color: #FFF;
 }

.productPage .product-addon label .pps-price {
  background-color: #FFF;
}

.productPage .product-addon label strong {
 font-weight: 600;
 color: #000;
 background-color: #fff;
}

.productPage .product-addon label,
.productPage .product-addon label strong {
  font: 14px var(--font-serif) !important;
}

 .productPage .product-addon label s {
   background-color: #fff;
 }

.productPage .product-addon img.addonSKU {
 max-height: 60px; /* Note this has to be >185px for photo-engraved thumbnails to fill the space. */
 max-width: 60px;
 vertical-align: middle;
 padding-bottom: 8px;
 }

.productPage .product-addon img.addonSKU {
  max-height: 60px; /* Note this has to be >185px for photo-engraved thumbnails to fill the space. */
  max-width: 60px;
  vertical-align: middle;
}

.productPage .product-addon[data-sku="RUSH-FEE"] {
  margin: 8px 0 16px 0;
}

.productPage .product-addon label {
  display: inline;
  cursor: pointer;
  position: relative;
}

.productPage .product-addon label > input {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  border-radius: 3px;
  background-color: #fff;
  border: 1px solid #bbb;
  cursor: pointer;
}

.productPage .product-addon label > input[type="checkbox"] {
  margin: 3px;
  vertical-align: text-top;
  width: 0;
  height: 0;
  padding: 6px;
}
 
 .productPage .product-addon label > input:checked {
   border: 0.5px solid #9f9686;
   background-color: #e4d9c5;
 }
 
  .productPage .product-addon label > input:checked + span::before {
  content: "";
  display: block;
  position: absolute;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 11px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  box-sizing: border-box;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
 
 @media (max-width: 760px) {
  .productPage .product-addon label > input {
     padding: 7px;
   }
   .productPage .product-addon label > input:checked + span::before {
     left: 8px;
     top: 3px;
     width: 6px;
     height: 12px;
   }
 }

.productPage #addToCart {
 clear: both;
 }

.productPage #addToCart #variant-step {
  display: none;
}

.productPage #addToCart .added-to-bag {
 margin: 10px 0;
 background: url("../images/v2/layout/icon_checkBlack.png?auto=webp&quality=25") top left no-repeat;
 font-size: 11px;
 padding: 3px 0 5px 25px;
 }
/* 
body.product .as-seen-in p.topBorder {
  border-top: #f1f1f1 6px solid;
  color: #757575;
  width: auto;
  margin-top: -6px;
  padding-top: 8px;
} */

/* ProductPage Tab Navigation */
.productPage .prodInfoAccord {
  display: none;
}

.productPage .product-info-tabs {
  width: 100%;
  font: 14px var(--font-sans-serif);
  font-weight: 600;
  margin: 10px 0 20px;
  border: 1px solid #000;
  display: flex;
  padding: 5px;
}

.productPage .product-info-tabs li {
  display: block;
  border-right: 1px solid #000;
  padding: 10px;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  width: 25%;
  text-align: center;
}

.productPage .product-info-tabs li .sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.productPage .product-info-tabs li:last-child {
  border-right: 0;
}

#product-info .area {
  background-color: #FFF;
}

.area-title {
  font: 28px var(--font-sans-serif);
  text-transform: none;
  color: #000;
  text-align: left;
  margin: 0;
  padding: 10px 0;
  background-color: #FFF;
}

.area-content {
  line-height: 1.5;
  font-size: 12px;
  padding-bottom: 15px;
}

.area-content p {
  margin: 0 0 5px;
  background-color: #FFF;
}

.area-content ul,
.area-content ul li {
  margin: 0 0 0 5px;
  background-color: #fff;
  overflow: auto;
  white-space: unset !important;
}

.productPage .product-description p b {
  display: block;
  background-color: #fff;
}

.productPage .product-description p span {
  display: inline-block;
  width: 275px;
}

.productPage .truncatorator {
  display: inline-block;
  margin: 0;
}

.productPage br + .truncatorator,
.productPage .Truncaternation {
  display: inline-block;
  margin: 8px 0 0;
}

.productPage .item-details .box {
  padding: 8px;
  font-size: 12px;
  overflow: hidden;
  clear: both;
  text-transform: capitalize;
}

.productPage .item-details .box dl {
  float: left;
  width: 280px;
  margin: 0 5px 0 0;
}

.productPage .item-details .box dd {
 float: left;
 width: 125px;
 margin: 0;
 padding-right: 5px;
 font-weight: bold;
 text-align: right;
 }

.productPage .item-details .box dd,
.productPage .item-details .box dt {
 padding: 5px 0;
 text-align: left;
 background-color: #fff;
 }


p.sku,
.productPage .details .prices .salePrice {
  width: auto;
  display: block;
}

.productPage .details span.delivery-date {
 background-color: #000;
 color: #fff;
 font-weight: bold;
 padding: 2px 4px;
 margin-left: 3px;
 }

.productPage p.sku {
  background-color: #FFF;
}

.productPage p.sku  {
  margin: -3px 0 0;
  font-size: 11px;
}

.productPage p.sku span {
  background-color: #FFF;
}

.product-delivery {
  /* Hiding this for now as a result of WEB-5650, maybe this will change in the future? */
 display: none;
 }

.product-delivery .child.delivery-date {
 display: none;
 }

.product-delivery .delivery-date.selected {
 display: inline-block;
 }

/* Filtering Column */
.breadcrumbs {
  display: none !important;
  border: 2px solid #eee;
}

.breadcrumbs h3 {
  font: 14px var(--font-sans-serif);
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  margin: 5px 10px 8px 5px;
  background-color: #fff;
}

.breadcrumbs span.remove img {
  margin-right: 4px;
}

.breadcrumbs span.value {
  font: 14px var(--font-sans-serif);
  color: #757575;
  text-transform: uppercase;
  vertical-align: 3px;
  background-color: #FFF;
}

.breadcrumbs .breadcrumb {
  display: inline-block;
  width: 100%;
  border: none;
  background: none;
  padding: 0 0 0 5px;
  text-align: left;
  margin: 0;
}

.breadcrumbs .clear-all {
  background: #000;
  color: #fff;
  text-align: center;
  margin: 5px 0 0;
  width: 100%;
  border: 0;
  padding: 6px 0 4px;
}

form.filters {
  font: 13px var(--font-sans-serif);
  font-weight: 300;
  color: #000;
  background-color: #e3d9c5;
}

div.mobile-filters,
#filters-backpanel,
.mobile-filter-panel,
#address-backpanel {
 display: none;
 }

div.desktop-filters {
float: right;
text-align: right;
}

div.desktop-filters .desktop-filters-button {
  border: 1px solid #e3d9c5;;
  color: #000;
  background-color: #e3d9c5;
  padding: 10px 20px;
  font: 12px var(--font-sans-serif);
  font-weight: 300;
  cursor: pointer;
  margin: 0;
}

div.desktop-filters .desktop-filters-button::after {
content: " -";
}

div.desktop-filters .desktop-filters-button.filter-close::after {
content: " +";
}

div.desktop-filters .desktop-filters-button:focus {
  border-radius: 0 !important;
  box-shadow: none !important;
  border-bottom: 1px solid #e3d9c5 !important;
}

form.filters a:hover,
form.filters .facet-widget .expand:hover,
form.filters .facet-widget li label:hover,
form.filters .facet-widget h4.facet-title:hover,
.breadcrumbs .clear-all:hover,
.breadcrumbs span.remove:hover,
.breadcrumbs span.value:hover {
 cursor: pointer;
 }
form.filters .facet-widget h3.facet-title,
form.filters .facet-widget h3.facet-title button {
 font: 16px var(--font-serif);
 font-weight: 100;
 color: #000;
 overflow: inherit;
 display: initial;
 margin: 10px 0;
 }

 form.filters .facet-widget h3.facet-title button {
   background: none;
   border: none;
   width: auto;
   text-align: left;
   padding: 0;
   padding-right: 20px;
   cursor: pointer;
   background-color: #e3d9c5;
 }

 @media ( max-width: 760px ){
  .facet-widget .facet-title::after {
  content: " -";
  margin: -32px 0 0 0;
  }

  .facet-widget.facet-collapse .facet-title::after {
  content: " +";
  margin: -30px -3px 0 0;
  } 
}

form.filters .facet-widget {
  float: left;
  padding-left: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}

form.filters .facet-widget .rollup {
 margin-bottom: 10px;
 }

form.filters .facet-widget li {
 margin: 1px 0;
 }

 form.filters .facet-widget li label  {
 display: inline-flex;
 cursor: pointer;
 position: relative;
 }

 form.filters .facet-widget li label > input {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  border-radius: 1px;
  background-color: #e2d9c5;
  border: 1px solid #000;
  cursor: pointer;
}

form.filters .facet-widget li label > input[type="checkbox"] {
  margin: -1px 14px 4px 2px;
  /* forces this to be square in chrome (16x16) */
  height: 0;
}

 form.filters .facet-widget li label > input:checked {
  border: 0.5px solid #9f9686;
  background-color: #000;
}

form.filters .facet-widget li label > input:checked + span::before {
  content: "";
  display: block;
  position: absolute;
  left: 7px;
  top: 0px;
  width: 4.5px;
  height: 8.5px;
  border: solid #e3d9c5;
  border-width: 0 2px 2px 0;
  box-sizing: border-box;
  transform: rotate(45deg);
}

@media (max-width: 760px) {
  form.filters .facet-widget li label > input {
    padding: 7px;
  }
  form.filters .facet-widget li label > input:checked + span::before {
    left: 8px;
    top: 1px;
    width: 6px;
    height: 12px;
  }
}

form.filters .facet-widget li label:hover {
 text-decoration: underline;
 }

form.filters .facet-widget li.facet-value label {
  background-color: #e3d9c5;
  margin: 0 0 10px;
}

form.filters .facet-widget li.facet-value label input {
  padding: 6px;
}

form.filters .facet-widget li.facet-value label input:focus {
  border: 1px solid rgba(122, 110, 83, 0.8) !important;
}

form.filters .facet-widget span.count {
 font-size: 12px;
 color: #757575;
 }

form.filters button.expander {
  display: block;
  background: #e3d9c5;
  font: 14px var(--font-sans-serif);
  font-weight: 100;
  border: 0;
  padding: 0;
  margin: -4px 0 10px 0;
  cursor: pointer;
}

form.filters button.expander:hover {
 text-decoration: underline;
}

form.filters .facet-widget .expand {
 display: inline-block;
 width: 100%;
 font-size: 12px;
 margin-top: 5px;
 }

form.filters .facet-widget .expand.collapse {
 margin-bottom: 5px;
 }

.facet-widget li.disabled,
form.filters .facet-widget li.disabled label:hover,
form.filters .facet-widget li.disabled label input {
 color: #5e5e5e !important;
 text-decoration: line-through;
 cursor: default;
 }

.facet-widget .disabled span.count,
.facet-widge t.facet-collapse .expander,
.facet-value.zero .count,
.facet-value.zero.hide,
form.filters .facet-widget.collapsed .collapse,
[data-facet-type=checklist-or] .count,
[data-facet-type=range] .count {
 display: none;
 }

[data-facet-type=checklist-and] .facet-value.zero {
 color: #ccc !important;
 cursor: default;
 }

form.filters input[type=text] {
 border: 0;
 }

.loading .products {
 background-color: #fff;
 opacity: .4;
 }

.loading#cart-addons-modal-carousel,
.loading.pr-recommendations,
.loading.product-recommendations-container,
.loading.owl-carousel,
.loading.ca-wrapper,
body.product .loading.cross-sell-container,
body.search ul.loading,
body.home .owl-carousel.loading {
 width: 100%;
 height: 80px;
 margin-top: 5px;
 background: url("../images/v2/layout/preloader.gif?auto=webp&quality=75") top 12px center no-repeat;
 }

body.product .cross-sell-container.empty,
body.product .product-recommendations-container.empty {
  /* min-height: 290px;
  display: block !important; */
  display: none;  /*  reverting this change because it's causing a big empty space. Need to revist CLS of it */
}

.loading.product-recommendations-container .sliderHeader {
  display: none;
}

body.product .loading.cross-sell-container {
 margin-top: 20px;
 height: 65px;
 }

body.search ul.loading {
 margin-top: 20px !important;
 }

body.home .ca-wrapper.loading {
 margin-top: 45px;
 }

/* Product Page - Related Items/Recently Viewed & Reviews */

.cross-sell {
 margin-bottom: 15px;
 }

.cross-sell h3,
.productPage .cross-sell-container h3 {
 font: 34px var(--font-sans-serif);
 color: #666;
 margin: 5px 0 3px;
}

.cross-sell h3 span {
  font-style: italic;
  font-family: var(--font-serif);
}

.cross-sell ul {
 width: 940px;
 overflow: hidden;
 }

.cross-sell ul li {
 padding: 10px;
 text-align: center;
 width: 136px;
 float: left;
}

.cross-sell .owl-item a {
 font-weight: bold;
 color: #000;
  }

.cross-sell .image,
.cross-sell .name,
.cross-sell .details,
.cross-sell .label {
 display: block;
 text-align: left;
 font-size: 11px;
 }

.cross-sell .name {
 margin: 5px 0;
 }

.cross-sell .label {
 color: #999;
 text-decoration: none;
 font: 12px/1.1em var(--font-sans-serif);
 padding: 5px 5px 3px 0;
 text-transform: uppercase;
 width: 136px;
 }

.cross-sell .label font {
 font-size: 12px !important;
 line-height: .99em;
 }

.cross-sell .price {
  color:#000;
}

.cross-sell .price,
.cross-sell .regularPrice {
 float: left;
 padding: 3px 3px 3px 1px;
 font-size: 11px;
 }

.cross-sell .regularPrice {
  color: #999;
}

.reviewsTop {
  margin: 6px 0 6px;
}

.reviewsCat {
  width: 100%;
  text-align: left;
  display: inline-block;
}

.reviewsCat a {
  display: inline-block !important;
}

.reviewsCat .rev-avg {
  display: inline-block;
  color: #757575;
  background-color: #fff;
}

.reviewsTop .stars {
  height: 20px;
}

.reviewsTop #stars a {
  font: 13px var(--font-sans-serif);
  font-weight: 600;
}

.reviewsTop .stars a {
  font: 12px var(--font-sans-serif);
  font-weight: 100;
  left: 110px;
  width: 150px;
  display: block;
  position: relative;
  padding-top: 6px;
}

@media screen and (max-width: 760px) {
  .reviewsTop .stars a {
    left: 115px;
    width: 115px;
  }
}

.reviews .box {
 padding: 15px 5px;
 font-size: 11px;
 max-height: 300px;
 overflow: scroll;
 margin: -18px 0 6px;
 }

.review-product img.item {
 display: block;
 border: 1px solid #ddd;
 float: left;
 margin: 5px 10px 15px 0;
 width: 140px;
 height: 140px;
}

.review-product h1 {
 border-bottom: 1px dotted #ddd;
 margin: 2px 0 8px 0;
 padding-bottom: 3px;
 font-weight: normal;
 color: #000;
 line-height: 1.2em;
 font-size: 22px;
 }

.review-product h1 strong {
  display: inline-block;
  width: 80%;
  color: #000;
  font: 34px var(--font-sans-serif);
  font-weight: 600;
  /* letter-spacing: .015em; */
}

.review-product a.return {
  font: 12px var(--font-sans-serif);
  float: right;
  margin-top: -32px;
}

.reviews .box .review {
 border-bottom: 1px solid #ddd;
 padding-top: 10px;
 padding-bottom: 10px;
 }

.reviews .box .review .review-author {
 padding-bottom: 10px;
 }

.reviews .box .review h4,
p.reviewThankYou,
a.continueShopping {
  font: 19px var(--font-sans-serif);
  font-weight: 500;
}


.reviews .box .review h4 {
 display: inline;
 padding: 5px 2px 5px 5px;
 color: #fff;
 background-color: #5d604b;
 margin-right: 8px;
 }

img.addReview {
 margin-left: 5px;
 }

#review-form label {
 display: inline-block;
 vertical-align: top;
 width: 100%;
 }

#review-form fieldset {
 border: 0;
 margin: 10px 0 0 -8px;
 }

#review-form fieldset ul {
 margin: 0;
 padding: 0;
 }

#review-form fieldset li {
 list-style: none;
 padding: 2px;
 margin: 0 0 10px;
 }

#review-form fieldset li input,
#review-form fieldset li select {
 display: inline-block;
 width: 320px;
 }

#review-form fieldset li textarea {
 display: block;
 }

#review-form .button.primaryButton {
 width: 240px;
 height: 36px;
 padding-top: 7px;
 margin: 10px 0 5px;
 }

p.reviewThankYou {
 margin-left: 10px;
 padding: 5px 2px 5px 10px;
 color: #fff;
 background-color: #5d604b;
 width: 312px;
 }

a.continueShopping {
 text-transform: uppercase;
 margin: -10px 0 20px 10px !important;
 display: block;
 padding: 6px 0 0 6px !important;
 height: 20px !important;
 }

/* Cart */
.emptyCart {
 height: 250px;
 text-align: center;
 }

.emptyCart .doubleLines {
 margin-bottom: 50px;
 }

.emptyCart p {
 font: 45px var(--font-sans-serif);
 letter-spacing: 1.75px;
 }

.emptyCart p span {
 font: 40px var(--font-serif);
 font-style: italic;
 }

.emptyCart a {
 font-family: var(--font-sans-serif);
 text-transform: uppercase;
 padding: 5px 5px 2px 5px;
 }

.makeItSpecial .makeItSpecialHeader {
 font: 14px var(--font-sans-serif);
 font-weight: 300;
 margin: 0 0 4px 0;
 color: #555;
 background-color: #fff;
 }

.makeItSpecial .makeItSpecialHeader:hover {
 cursor: pointer;
 }

 .makeItSpecial .makeItSpecialHeader .pps-price {
  color: #555;
  background-color: #fff;
  }

.engravingSpecial {
 font: 26px var(--font-sans-serif);
 font-weight: 600;
 clear: right;
 color: #5d604b;
 background-color: #fff;
 }

.makeItSpecial .makeItSpecialHeader button {
 background-image: url("../images/v2/layout/icon_fullBlack.png?auto=webp&quality=25");
 float: right;
 height: 20px;
 margin: -14px 10px 0;
 width: 20px;
 border: none;
 }

.makeItSpecial .makeItSpecialHeader .expand {
 background-position: -32px -128px;
 }

.makeItSpecial .makeItSpecialHeader .collapse {
 background-position: -63px -128px;
 }

body.cart div.makeItSpecial form {
 display: none;
 width: 100%;
 }

body.cart div.makeItSpecial div.grid_3 {
 text-align: center;
 width: 140px;
 }

body.cart div.price-label font{
 display: none;
 }

body.cart .customizations {
  margin: 0 0 10px;
  width: 100%;
}

body.cart form.cart:after {
  content: "";
  display: table;
  clear: both;
}

body.cart ul.cartHead {
 font: 16px var(--font-sans-serif);
 text-transform: uppercase;
 color: #000;
 background-color: #fff;
 text-align: center;
 padding: 2px 0;
 border-top: 1px solid #ddd;
 border-bottom: 1px solid #ddd;
 }

body.cart ul.cartHead .alpha {
 text-align: left;
 width: 397px;
 }

body.cart ul.cartBody {
  color: #000;
  padding-bottom: 10px;
  font: 16px var(--font-sans-serif);
  width: 100%;
}

body.cart ul.cartBody li[data-sku^=ENGRAVE-FEE]{
 padding-top: 0;
 width: 100%
 }

body.cart ul.cartBody li {
  display: flex;
  border-bottom: 3px solid #ddd;
  padding: 15px 0;
}

body.cart ul.cartBody li.customized ,
body.cart ul.cartBody li:last-child {
 border-bottom: none;
 }

body.cart div.image,
body.cart div.price,
body.cart div.qty,
body.cart div.total,
body.cart div.total .giftMsgFree {
 text-align: center;
 background-color: #fff;
 }

body.cart ul.cartBody div.image {
  width: calc(33% - 10px);
}

body.cart div.r_total {
  text-decoration: line-through;
  color: #757575;
  background-color: #fff;
  display: inline;
  float: none;
  margin:  0;
  font: 16px var(--font-sans-serif);
  font-weight: 500;
}

body.cart div.image img.cartSKU {
  display: block;
  width: 100%;
}

body.cart ul.cartHead li.qty,
body.cart ul.cartBody div.qty {
 overflow: hidden;
 }

body.cart ul.cartHead li.total,
body.cart ul.cartBody div.total {
  width: 80px;
  background-color: #fff;
}

body.cart ul.cartBody li label.facet-label  {
  display: inline-flex;
  flex-wrap: nowrap;
  cursor: pointer;
  position: relative;
  line-height: 1.4em;
  background-color: #fff;
  margin: 0 0 8px 0;
  padding: 0;
  align-items: baseline;
}

body.cart ul.cartBody li label.facet-label > input {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  border-radius: 3px;
  background-color: #fff;
  border: 1px solid #bbb;
  cursor: pointer;
}

body.cart ul.cartBody li label.facet-label  > input:checked {
  border: 0.5px solid #9f9686;
  background-color: #e4d9c5;
}

body.cart ul.cartBody li label.facet-label > input[type="checkbox"] {
  display: block;
}

body.cart ul.cartBody li label.facet-label > .facet-text {
  display: block;
  /* handle the font being a little heavy on the top */
  position: relative;
}

body.cart ul.cartBody li label.facet-label  > input:checked + .facet-checkbox::before {
  content: "";
  display: block;
  position: absolute;
  border: solid #000;
  border-width: 0 2px 2px 0;
  box-sizing: border-box;
  transform: rotate(45deg);

  top: 3px;
  left: 7.5px;
  height: 10px;
  width: 5px;
}

@media (max-width: 760px) {
  body.cart ul.cartBody li label.facet-label  > input:checked + .facet-checkbox::before {
    left: 9px;
    height: 12px;
    width: 6px;
  }

  body.cart ul.cartBody li label.facet-label > input {
    padding: 7px;
  }

  body.cart ul.cartBody li label.facet-label > .facet-text {
    top: -3px;
  }

  body.cart ul.cartBody li label.facet-label > input:checked + span::before {
    top: 2px;
    width: 6px;
    height: 11px;
    left: 5px;
  }
}

body.cart div.cart-line-items {
  float: left;
  width: 65%;
}

body.cart div.cart-order-summary {
 width: 270px;
 background-color: #f6f4f0;
 padding: 15px 15px 10px;
 text-align: center;
 margin: 0 0 10px 20px;
 }

body.cart div.desc > div:nth-child(2) {
 margin-top: 10px;
 }

body.cart div.cart-order-summary .summary-header {
 color: #000;
 text-align: center;
 font: 18px var(--font-sans-serif);
 font-weight: 600;
 border-bottom: 1px solid #ddd;
 padding: 0 0 14px;
 }

body.cart div.cart-order-summary .total-lines,
body.cart div.cart-order-summary .subtotal-lines {
 float: left;
 color: #333;
 text-align: left;
 font: 12px Arial, Helvetica, sans-serif;
 border-bottom: 1px solid #ddd;
 padding: 10px 0 3px;
 width: 100%;
 }

body.cart div.total-lines li,
body.cart div.subtotal-lines li {
 width: 100%;
 float: left;
 margin-bottom: 8px;
 }

body.cart div.cart-order-summary .total-lines {
  font-weight: bold;
  border-bottom: none;
}

body.cart div.total-lines .coupon-line {
 color: #5d604b;
 }

body.cart div.cart-order-summary .checkout-buttons {
 text-align: center;
 }

body.cart div.cart-order-summary .checkout.primaryButton {
  width: 100%;
  display: inline-block;
  font-size: 15px;
  min-height: 28px;
  font: 20px var(--font-sans-serif);
  height: 55px;
  text-transform: none;
  margin: 0 0 10px 0;
}

body.cart div.cart-order-summary .checkout-buttons div {
 color: #000;
 text-align: center;
 font: 16px var(--font-sans-serif);
 font-weight: 600;
 }

body.cart div.cart-order-summary .checkout-buttons .paypal-checkout-link {
  display: inline-block;
  background: #ffc439;
  border-radius: 5px;
  padding: 10px 0 5px 0;
  width: 100%;
}

body.cart div.cart-order-summary .checkout-buttons img.paypal-checkout {
  height: 22px;
}

body.cart .other-checkout {
  margin: 5px 0;
}

body.cart .checkout-buttons .amazon-pay-button-override {
  display: inline-block;
  background: #fad676;
  border-radius: 5px;
  width: 100%;
  padding: 10px 0 5px 0;
}

body.cart .checkout-buttons .amazon-pay-real-button {
  height: 0;
  width:  0;
}

body.cart .checkout-buttons .amazon-pay-image-override {
  height: 22px;
}

body.cart .promo-container {
  /* float: left; */
  font: 15px var(--font-sans-serif);
  font-weight: 600;
  color: #000;
  height: auto;
  padding: 15px;
  width: calc(100% - 30px);
  background-color: #E4D9C5;
}

body.cart .promo-header {
 height: 21px;
 }

body.cart .promo-header .promo-header-control {
 float: right;
 border: none;
 background: inherit;
 font: 15px var(--font-sans-serif);
 font-weight: 600;
 color: #000;
 }

body.cart .promo-container .promo-input {
 display: none;
 }

body.cart .promo-container.open .promo-input {
  display: flex;
  flex-wrap: wrap;
  margin: 10px auto 0;
}

body.cart .promo-input .error,
body.cart .promo-input .success {
 margin: 0 0 10px 0;
 padding: 0 15px;
 }

body.cart .promo-input .success {
 color: #5d604b;
 font-size: 11px;
 font-weight: bold;
}

body.cart .cart-bbb {
 float: right;
 margin: -50px -5px 0 0;
 }

body.cart .promo-input input {
  margin: 0 0 7px;
  padding-left: 0;
  padding-right: 0;
  height: 35px;
  width: 100%;
}

body.cart .out-of-stock {
 margin: 15px 0 6px;
 }

body.cart .next-expected-delivery {
 margin-bottom: 5px;
 }

body.cart .out-of-stock span,
body.cart .next-expected-delivery span {
  color: #fff;
  background-color: #000;
  font-size: 12px;
  padding: 4px;
  font-weight: 500;
}

body.cart div.desc {
  font-weight: 500;
  background-color: #fff;
}

body.cart div.desc p {
 margin: -4px 0 17px;
 background-color: #fff;
 }

body.cart div.desc label {
 font-weight: normal;
 display: inline-block;
 }

body.cart div.desc #gift_card_type {
 width: 243px;
 padding: 5px 0 0 5px;
 margin-bottom: 10px;
 }

body.cart div.desc div.variation,
body.cart div.desc div.extra {
  font-weight: normal;
  line-height: 1.4em;
}

body.cart div.desc div.extra {
 text-transform: capitalize;
 }

body.cart div.desc div.extra div:first-child label {
 width: 300px;
 float: left;
 }

body.cart div.qty input[type='text'] {
 width: 70px;
 font-size: 12px;
 margin-bottom: 9px;
 }

body.cart div.qty input.removeButton {
  height: auto;
  text-align: left;
  display: inline;
  border: none;
  text-transform: uppercase;
  font: 10px var(--font-sans-serif);
  font-weight: 500;
  background: none;
  color: #444;
  background-color: #FFF;
  border-bottom: 1px solid #444;
  padding: 0;
  vertical-align: middle;
  margin-left: 0;
  width: auto;
  min-height: unset;
}

body.cart h1.cartHead {
 border: 0;
 margin-bottom: 2px;
 padding-bottom: 2px;
 }

body.cart div.freeMsgs {
  background-color: #fff;
  font: 14px var(--font-sans-serif);
  font-weight: 500;
  text-align: center;
  color: #000;
  margin: 0;
  padding: 15px 0 14px 0;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  font-size: 16px;
}

body.cart div.freeMsgs span {
 color: #fff;
 background-color: #000;
 padding: 1px 2px;
 }

body.cart .continue-shopping {
  display: none;
}

body.cart .continueShopping,
a.continueShopping {
 border: 0;
 background-color: #fff;
 font-size: 13px;
 color: #999;
 margin: 5px auto !important;
 height: 22px;
 width: 150px;
 padding: 5px 0 0;
 text-align: center;
 }

body.cart a.continueShopping {
 padding-left: 0 !important;
 }

body.cart .continueShopping:hover,
a.continueShopping:hover {
 background: #000;
 color: #fff;
 text-decoration: none;
 }

body.cart .cross-sell-header {
  /* border-top: 6px solid #000; */
  margin: 0 0 7px 0;
  padding-top: 8px;
  background-color: #fff;
  /* font-size: 36px; */
  /* color: #000; */
  /* font: 36px var(--font-sans-serif); */
  /* font-weight: 500; */
  /* text-align: center; */
  /* text-transform: uppercase; */
}

/* This was used on checkout and possibly used in product pages for the Google Maps API container */
.pac-container {
  z-index: 2002 !important;
}

/* My Account */

body.account form input[type="text"],
body.account form input[type="password"] {
  color: #000;
}

body.account ul.account-nav {
  width: calc(25% - 0.2em);
  margin-bottom: 15px;
}

body.account ul.account-nav li {
  padding: 17px 10px;
  margin: 0 10px;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
  font-size: larger;
}

body.account ul.account-nav li button {
  border: none;
  background-color: unset;
  font: inherit;
  color: inherit;
}

body.account ul.account-nav li:last-child {
  border-bottom: none;
}

body.account ul.account-tabs {
  margin-left: 20px;
  width: calc(75% - 1.7em);
}

body.account div.account[data-active-widget="details"] ul.account-nav li.details,
body.account div.account[data-active-widget="addresses"] ul.account-nav li.addresses,
body.account div.account[data-active-widget="orders"] ul.account-nav li.orders,
body.account div.account[data-active-widget="payments"] ul.account-nav li.payments {
  font-weight: bold;
  background-color: #dbd8d1;
  margin: -1px 0 0;
  padding-left: 20px;
  color: #555;
}

body.account ul.account-tabs > li {
  display: none;
}

body.account div.account[data-active-widget="details"] ul.account-tabs li.details,
body.account div.account[data-active-widget="addresses"] ul.account-tabs li.addresses,
body.account div.account[data-active-widget="orders"] ul.account-tabs li.orders,
body.account div.account[data-active-widget="payments"] ul.account-tabs li.payments {
  display: block;
}

body.account ul.account-tabs h2 {
  margin: 0 0 10px;
  font: 500 24px var(--font-serif);
  color: #000;
  background-color: #FFF;
}

body.account ul.account-tabs .account-tab-subheader {
  font-size: inherit;
  margin-bottom: 15px;
  background-color: #FFF;
}

body.account ul.account-tabs .account-tab-content {
  margin-top: 12px;
}

body.account form#account-details label {
  display: block;
  float: left;
  width: 12em;
  font: larger var(--font-serif);
  color: #000;
  line-height: 28px;
  background-color: #FFF;
}

body.account form#account-details input {
  display: block;
  width: 22em;
  margin-bottom: 18px;
  font-size: larger;
}

body.account form#account-details label.account-error,
form.login.widget div.create-account-widget label.account-error,
body.reset-password form#auth-update label.account-error {
  color: #E60000;
}

body.account form#account-details input.account-error,
form.login.widget div.create-account-widget input.account-error,
body.reset-password form#auth-update input.account-error  {
  border-color: #800;
  background-color: rgba(255, 0, 0, 0.2);
}

.password-strength-meter.meter-on-dialog {
  font-size: 14px;
  max-width: 98%;
  margin-top:  -15px;
  margin-left:  5px;
  min-height:   1em;
}

.password-strength-meter.meter-on-page {
  margin-left: 158px;
  margin-top: -13px;
  font-size: 0.8rem;
  min-height: 1.4em;
}

.password-strength-meter.meter-on-account-details {
  margin-left: 175px;
  margin-top: -14px;
  font-size: 1em;
  min-height: 1.8em;
}

.password-strength-meter.meter-on-reset {
  margin-left: 152px;
  font-size: 0.8rem;
  min-height:  0;
}

.password-strength-meter .password-tips {
  color: #757575;
  background-color: #fff;
  font-style: italic;
  font-size: 1em;
  font-family: Arial, sans-serif;
}

.password-strength-meter.meter-on-dialog .password-tips {
  margin: 10px 0 4px;
}

.password-strength-meter.meter-on-account-details .password-tips,
.password-strength-meter.meter-on-page .password-tips,
.password-strength-meter.meter-on-reset .password-tips {
  margin: 7px 0 8px;
}

.error-on-reset {
  margin-left: 152px;
}

/* remove our negative margin so we don't overlap with an added account error */
div.account-error + .password-strength-meter {
  margin-top: 0;
}

body.account form#account-details select {
  margin-bottom: 18px;
  float: left;
  width: 11em;
  margin-right: 10px;
  font-size: larger;
}

body.account form#account-details a {
  display: block;
  clear: both;
  margin-bottom: 18px;
  text-decoration: underline;
  font-weight: 600;
  font-size: initial;
}

body.account form#account-details input[type="submit"] {
  font-size: initial;
  height: 2.5em;
  background-size: contain;
}

body.account form#account-details div.account-error {
  margin-left: 140px;
  margin-bottom: 5px;
  margin-top: -10px;
}

form.account-edit.login.widget div.create-account-widget div.account-error {
  margin-left: 154px;
  margin-top: -5px;
  padding-top: 0;
}

form.login.widget div.create-account-widget div.account-error {
  margin-top: -8px;
  margin-left: 4px;
  /* provide some margin bottom to allow for the rules */
  margin-bottom: 25px;
  padding-top: 0;
}

body.account .mobile-account-footer {
  display: none;
}

body.account h1.account-header {
  position: relative;
}

body.account .logout-account-header {
  display: block;
  position: absolute;
  right: 0;
  bottom: 4px;
  font: 12px var(--font-sans-serif);
}

body.account .logout-account-header a {
  font-family: var(--font-sans-serif);
  font-weight: 600;
}

.account-tabs .account-tab-content {
  font-size: inherit;
}

.account-tabs .account-tab-content table {
  display: table;
  margin-bottom: 15px;
  width: 100%;
  table-layout: fixed;
}

.account-tabs .account-tab-content table,
.account-tabs .account-tab-content thead,
.account-tabs .account-tab-content tr,
.account-tabs .account-tab-content th,
.account-tabs .account-tab-content td,
.account-tabs .account-tab-content tbody {
  border-collapse: collapse !important;
  text-align: left;
}

.account-tabs .account-tab-content th,
.account-tabs .account-tab-content td {
  padding: 0.2em;
  vertical-align: top;
  width: 7em;
  background-color: #FFF;
}

.account-tabs .account-tab-content td span {
  background-color: #FFF;
}

.account-tabs .account-tab-content td {
  padding-top: 10px;
}

.account-tabs .account-tab-content tr[data-component="address-edit"] td {
  padding: 0;
}

.account-tabs .account-tab-content tr[data-component="address-edit"] {
  border: 0 !important;
}

.account-tabs li.orders td.summary .order_item .image img,
.account-tabs li.orders td.summary .order_item .image {
  width: 50px;
}
.account-tabs li.orders td.summary .order_item .info {
  float: left;
}
.account-tabs li.orders td.summary .order_item .info .name {
  font-weight: bold;
  color: black;
}
.account-tabs li.orders td.summary .order_item .info {
  float: left;
  margin-bottom: 10px;
}
.account-tabs li.orders td.summary .order_item .info .name {
  font-weight: bold;
  color: #000;
}
.account-tabs li.orders td.summary ul.custom {
  font-size: 11px;
  margin-top: 5px;
}

.account-tabs li.orders td.order_total .coupon {
  margin: 10px 0;
  font-size: 11px;
}

.account-tabs .account-tab-content thead {
  font: larger var(--font-sans-serif);
  font-weight: 600;
  color: #000;
}

.account-tabs .account-tab-content thead tr {
  text-transform: uppercase;
}

.account-tabs .account-tab-content tr {
  border-bottom: 1px solid #ddd !important;
  text-transform: capitalize;
}

.account-tabs .account-tab-content tr:last-child {
  margin-bottom: 10px;
}

.account-tabs li.payments tbody td {
  padding-bottom: 7px;
}

.account-tabs li.payments th.client_pay_card_type {
  width: 10em;
}

.account-tabs li.payments th.client_pay_number {
  width: 10em;
}

.account-tabs li.payments th.client_pay_exp {
  width: 10em;
}

.account-tabs li.payments th.client_pay_default {
  width: 5em;
  text-align: center;
}

.account-tabs li.payments th.client_pay_edit {
  width: 10em;
}

.account-tabs li.payments td.client_pay_default {
  text-align: center;
}

.account-tabs li.payments td.client_pay_edit {
  text-align: right;
}

.account-tabs li.payments a.client_pay_edit,
.account-tabs li.payments a.client_pay_remove {
  font-weight: bold;
  margin-right: 15px;
}

.account-tabs li.payments a.account-payments-add-button,
.account-tabs li.addresses .add-address-button,
.account-tabs li.addresses .add-address {
  font-weight: bold;
  font: large var(--font-sans-serif);
  font-weight: 500;
  margin: -5px 0 10px;
  display: block;
  border: none;
  padding: 0;
  background-color: #fff;
}

body.account li.account-payments-edit-card-num {
  margin-top: 10px;
}

body.account li.account-payments-edit-exp {
  margin-bottom: 10px;
}

body.account li.account-payments-edit-exp select#client_pay_card_exp_month {
  margin-right: 10px;
  width: 145px;
}

body.account li.account-payments-edit-exp select#client_pay_card_exp_year {
  width: 105px;
}

body.account li.account-payments-edit-addr select#client_pay_addr_id {
  width: 66%;
}

body.account li.payment-address-edit fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

body.account li.payment-address-edit .form-row {
  margin-top: 10px;
}

body.account li.payment-address-edit .form-row input {
  width: 63%;
}

.account-tabs .account-payments-edit-header {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.account-tabs li.addresses th.client_addr_name {
  width: 9em;
  padding-right: 20px;
}

.account-tabs li.addresses th.client_addr_addr {
  width: 9em;
}

.account-tabs li.addresses th.client_addr_city {
  width: 5em;
}

.account-tabs li.addresses th.client_addr_state {
  width: 5em;
}

.account-tabs li.addresses th.client_addr_zip {
  width: 5em;
}

.account-tabs li.addresses th.client_addr_phone {
  width: 5em;
  text-align: center;
}

.account-tabs li.addresses th.client_addr_default {
  width: 5em;
  text-align: center;
}

.account-tabs li.addresses td.client_addr_default {
  text-align: center;
}

.account-tabs li.addresses td.client_addr_name a,
.account-tabs li.addresses td.client_addr_name .edit-address  {
  float: left;
  margin: 10px 0;
  font-weight: bold;
}

.account-tabs li.addresses td.client_addr_name .edit-address {
  width: 45px;
  font: bold 12px Arial, Helvetica, sans-serif;
  padding: 0;
  border: none;
  float: left;
  margin: 10px 0;
  text-align: left;
  background-color: #fff;
}

.account-tabs li.addresses td.client_addr_name .remove-address {
  font: bold 12px Arial, Helvetica, sans-serif;
  padding: 0;
  border: none;
  float: left;
  margin: 10px 0;
  background-color: #fff;
}

.account-tabs li.addresses td span.mobile {
  display: none;
}

/* Overlay Style for New Address/CC */
.account-tabs div.account-payments-modal {
  display: none;
}

body.account .addresses .popup.active,
body.account .account-tabs div.account-payments-modal li {
  display: block;
}

body.account div.account-payments-modal li.account-payments-edit-addr {
  margin-bottom: 1px;
}

body.account .account-tabs div.account-payments-modal,
body.account .addresses .popup.active  {
  position: fixed;
  z-index: 2001;
  width: 29em;
  top: 50px;
  left: calc((100% - 30em) / 2);
  padding: 1em;
  border: 1px solid #CCC;
  color: #000;
  font-size: 14px;
  background-color: #FFF;
  font: initial var(--font-serif);
  line-height: 28px;
  overflow: auto;
  max-height: calc(100% - 8em);
}

body.account #address-edit-modal {
  top:  50px;
  left: calc((100% - 442px) / 2);
  transform: none;
  height: calc( 100% - 10em );
  max-height: 500px;
  overflow: scroll;
}

body.account .addresses .edit-address.active  {
  width: 406px;
  padding: 0 20px;
  color: #000;
  font-size: 14px;
  background-color: #FFF;
  font: 14px var(--font-serif);
  line-height: 28px;
  overflow: auto;
  max-height: calc(100% - 150px);
}

.addresses .popup:not(.active) {
  display: none;
}

.addresses .popup.active + .edit-address-overlay {
  content: "";
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  opacity: 0.5;
  z-index: 2000;
}

body.account .modal .address-edit-close,
.account-tabs div.account-payments-edit-close {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: inherit;
  background: url("../images/v2/layout/icon_close.png?auto=webp&quality=10") top left no-repeat;
  background-size: 100%;
  height: 25px;
  width: 25px;
  border: none;
}

body.account fieldset {
  border: 0;
}

body.account .addresses fieldset label,
.account-tabs .account-payments-modal label {
  width: 10em;
  font-size: 13px;
}

body.account .addresses fieldset input {
  width: 22em;
  clear: right;
}

body.account .addresses fieldset .form-row {
  width: 100%;
  content: "";
  display: flex;
  clear: both;
  margin-bottom: 10px;
}

body.account .account-tabs div.account-payments-modal iframe {
  height: 2em;
  width: 50%;
}

body.account .edit-address input.primaryButton,
body.account div.account-payments-modal input.primaryButton {
  display: block;
  width: 100%;
  font-size: initial;
  height: 2.5em;
  background-size: contain;
  margin: 20px 0 5px;
}

body.account .edit-address input.primaryButton {
  margin: 10px 0 20px;
}

body.account .addresses fieldset .error input {
  -webkit-box-shadow: unset;
    -moz-box-shadow: unset;
    box-shadow: unset;
    border: 1px solid #e5e5e5;
    font-weight: normal;
}

dl.address {
 border: 1px solid black;
 width: 300px;
 margin: 5px;
 padding: 0;
 display: inline-block;
 height: 205px;
 }

dl.address.billing,
dl.address.shipping {
 border: 1px solid #bbb;
 }

dl.address dt.header {
 text-align: center;
 background-color: #bbb;
 font: 14px var(--font-sans-serif);
 font-weight: 500;
 color: #fff;
 margin-bottom: 10px;
 padding: 6px 0 4px;
 text-transform: uppercase;
 }

dl.address dt,
dl.address dd {
 margin: 0;
 padding-left: 10px;
 }

dl.address dl {
 margin: 4px;
 padding: 0;
 }

dl.address dl dt {
 width: 76px;
 padding: 0;
 display: inline-block;
 }

dl.address dl dd {
 width: 150px;
 margin: 0;
 margin-left: 8px;
 display: inline-block;
 }

dl.address dl dt {
 text-align: right;
 }

.logged-in a.log-in { display: none !important; }
.logged-in a.log-out { display: inline-block !important; }
a.log-in { display: inline-block !important; cursor: pointer; }
a.log-out { display: none !important; }

.logged-in .header-account-link { display: inline-block !important; cursor: pointer; }
.header-account-link { display: none !important; }

.welcomeBack { display: none; }
.logged-in .welcomeBack { display: block; }

.account-view {
 width: 800px;
 }

.account-view .address,
.account-view .button {
 display: inline-block;
 }

div.account-view .address.shipping {
 clear: right;
 }

div.account-view .button {
 text-align: center;
 margin: 13px auto 20px 5px;
 width: 200px;
 height: 25px;
 color: #fff;
 padding-top: 9px;
 }

.account-edit {
 width: 970px;
 margin-top: 15px;
 }

.account-edit fieldset {
 display: inline-block;
 width: 462px;
 margin: 4px;
 padding: 0;
 border: 1px solid #bbb;
 }

body.reset-password .account-edit fieldset {
  margin: 0;
  border: none;
}

.account-edit fieldset h2 {
  background-color: #BBBBBB;
  color: #FFFFFF;
  font: 14px var(--font-sans-serif);
  font-weight: 500;
  margin-top: 0;
  padding: 6px 0 4px;
  text-align: center;
  text-transform: uppercase;
}

.account-edit ul {
  padding: 4px;
}

.account-edit ul li {
 margin: 5px 0;
 }

.account-edit ul li label,
.account-edit ul li span.label,
form#set-password .account-edit.login ul li label  {
 display: inline-block;
 width: 145px;
 margin-right: 15px;
 font: 12px var(--font-serif) !important;
 text-align: right;
 text-transform: none !important;
 }

.account-edit ul li input {
 width: 300px;
 }

.account-edit fieldset.login {
  width: 930px;
  clear: both;
  margin-bottom: 25px;
}

.account-edit fieldset.login ul {
  width: 320px;
  margin: 0 auto;
}

.account-edit fieldset ul li {
 margin:5px 0;
 }

.account-edit fieldset ul li input {
 width: 200px;
 }

.account-edit fieldset.login ul li input {
 width: 155px;
 }

.account-edit .submit {
  width: 970px;
  float: left;
}

.account-edit input[type=submit] {
 text-align: center;
 margin: 0 auto 15px;
 width: 200px;
 height: 35px;
 }

body.reset-password .container_base {
  display: block;
}

body.reset-password .account-edit input[type=submit] {
  width: 212px;
}

body.reset-password .account-edit.login {
  width: 462px;
  margin: 10px 0 10px 10px;
  border: 1px solid #bbb;
}

.account-edit.login {
  /* width: 940px; */
  /* margin: 0 auto; */
  clear: both;
}

.account-edit.login input[type=submit] {
 margin: 0 0 25px 154px;
 }

.account-edit.login ul li label,
.account-edit.login ul li span.label,
.link-password-input label {
  margin-right: 5px;
  font: 13px var(--font-sans-serif) !important;
  text-transform: uppercase !important;
  text-align: left;
}

.link-password-input label {
  display: block;
  float: none;
  width: auto;
}

.account-linking {
  margin: 0 10px 50px;
}

.account-linking-form {
  margin-top: 20px;
}

.account-linking .skip-linking-wrapper {
  font-size: 18px;
  margin-right: 10px;
}

.account-linking .skip-linking-link {
  display: inline-block;
  padding: 10px 30px;
  color: #fff;
}

.account-linking .link-btn {
  display: inline-block;
  width:   200px;
  height:  35px;
}

.account-linking .button-area {
  margin-top: 5px;
}

.link-password-input input {
  width: 300px;
}

form#set-password {
 margin-bottom: 15px;
 display: inline-block;
 }

body.reset-password p.create-link {
  margin-left: 10px;
}

/* Footer */
.footerMobile,
.chatWidgetMobile,
.footerContent .scripts {
 display: none;
 }

.chatWidget {
 position: fixed;
 left: 0;
 bottom: 50px;
 }

@media only screen and (min-width: 481px) and (max-width: 1279px) {
 .chatWidget { display: none; }
 .chatWidgetMobile { clear: both; display: block; }
}

@media only screen and (min-width: 481px) and (max-width: 1024px) and (orientation:landscape) {
 .chatWidgetMobile { display: none; }
}

@media only screen and (min-width: 481px) and (max-width: 1024px) and (orientation:portrait) {
 .chatWidget { display: none; }
 .chatWidgetMobile { clear: both; display: block; }
}

a.chat,
a.lowResChat {
 background: url("../images/v2/layout/icon_chat.png?auto=webp&quality=25") top left no-repeat;
 text-indent: -999999px;
 display: inline-block;
 height: 250px;
 width: 150px;
}

a.chat:hover,
a.lowResChat:hover {
 cursor: pointer;
 }

a.lowResChat {
 background: url("../images/v2/layout/icon_chatWide.png?auto=webp&quality=25") top left no-repeat;
 height: 100px;
 width: 940px;
}

/* Mobile Chat */
@media only screen and (max-width: 500px) {
 .chatWidget { display: none; }
 .chatWidgetMobile { clear: both; display: block; }
}

body.logged-in .footerLine1 li.login-footer,
body:not(.logged-in) .footerLine1 li.account-footer {
  display: none;
}

.footerContent a.verified, a.bbb {
  max-width: fit-content !important;
}

body.logged-in .mobile-expand li.login-footer,
body:not(.logged-in) .mobile-expand li.account-footer {
 display: none;
}

div.footerContent div.grid_12 p.stats {
  text-align: left;
  font-size: 10px;
  color: #000;
}

/* Contact Us Page */
body.custsrv .categoryPage ul {
 width: 910px;
 }

body.custsrv div.trackOrderBubble a {
 float: right;
 display: block;
 background: url("../images/v2/layout/icon_orderTrack.png?auto=webp&quality=25") no-repeat 0 0;
 height: 130px;
 width: 200px;
 direction: ltr;
 text-indent: -9999px;
 margin: -145px -30px -10px 0;
 }

body.custsrv ul.contactMethods {
 clear: both;
 margin-top: 15px;
 }

body.custsrv ul.contactMethods li {
 float: left;
 width: 375px;
 text-align: center;
 }

body.custsrv ul.contactMethods li p {
 font: 28px var(--font-sans-serif);
 font-weight: 500;
 color: #000;
 margin-bottom: 5px;
 }

body.custsrv ul.contactMethods li span {
  font: 14px var(--font-sans-serif);
  font-weight: 500;
  background-color: #FFF;
}

body.custsrv ul.contactMethods .contactPhone {
 background: url("../images/v2/layout/icon_phoneLarge.png?auto=webp&quality=25") no-repeat 143px 0;
 padding-top: 83px;
 }

body.custsrv ul.contactMethods .contactEmail {
 background: url("../images/v2/layout/icon_emailLarge.png?auto=webp&quality=25") no-repeat 136px 0;
 padding-top: 83px;
 }

body.custsrv ul.contactMethods .contactEmail a {
 display: block;
 }

body.custsrv ul.contactMethods .contactEmail a:hover span {
 text-decoration: underline;
 }

/* Track Your Order */
.track-your-order-input {
  width: 230px;
}

.track-order-form {
  width: 100%;
}

body.track-your-order p.tyo-info,
body.track-your-order .bottomTen li {
  color: #757575;
  background-color: #fff;
}

body.track-your-order .track-your-order-submit {
  width: 240px;
  margin: 20px 0 15px;
}

body.track-your-order .fedExTracking {
  font: 15px var(--font-sans-serif);
  font-weight: 500;
  margin: 20px 0 25px;
}

body.track-your-order .fedExTracking span {
 background-color: #c1c5bd;
 padding: 4px 3px 3px 3px;
 color: #000;
 }

body.track-your-order .fedExTrackingNote {
  font-size: 11px;
  margin-top: -10px;
}

body.track-your-order .track-order-form p {
  background-color: #fff;
}

body.track-your-order .track-order-label {
  display: block !important;
  font: normal 20px var(--font-serif);
  margin: 25px 0 10px 0;
  color: #000;
  background-color: #fff;
}

/* Mailing List */
.mailing-list .sign-up-message {
  margin: 10px 0 20px;
  font: 20px var(--font-sans-serif);
  font-weight: 300;
}

.mailing-list label,
.mailing-list .sign-up-message,
.mailing-list legend {
  display: inline-block;
  font-weight: bold;
  color: #757575;
  background-color: #fff;
}

.mailing-list-label {
  font-weight: normal !important;
}

.mailing-list fieldset {
  border:  0;
  padding: 0;
  margin:  0;
}

.mailing-list .mailing-list-birthday {
  padding: 14px 0 0 0;
}

.mailing-list .mailing-list-birthday legend {
  padding: 0;
  font-weight: bold;
}

.mailing-list .mailing-list-input {
  color: #757575;
}

.mailing-list input#emailAddress,
.mailing-list input#confirmEmailAddress {
  width: 97%;
  margin-bottom: 15px;
}

.mailing-list input.mailing-list-btn {
 width: 100%;
 margin: 5px 0 20px;
 }

.mailing-list .error {
 margin-bottom: 15px;
 }

.mailing-list img.sign-up {
 margin: -11px 0 -3px;
 }

#birthmonth {
  margin-right: 30px;
  margin-bottom: 15px;
  width: 140px;
}
#birthday {
  width: 135px;
}

/* Sitemap */
.siteMap {
 display: inline-block;
 margin-bottom: 20px;
 }

.siteMap a {
 font-weight: normal;
 }

.siteMap h2 {
 font: 20px var(--font-sans-serif);
 font-weight: 500;
 border-bottom: 1px dotted #ddd;
 padding-bottom: 5px;
 margin-bottom: 10px;
 padding-left: 20px;
 background: url("../images/v2/layout/icon_heart.png?auto=webp&quality=25") 0 6px no-repeat;
 }

.siteMap h2 a {
 color: #000;
 }

.siteMap ul {
 margin-left: 21px;
 }

.product .mobileTabHead,
.product .mobileSku {
 display: none;
}

/* Inline mini-cart */
.inline-cart {
  position: absolute;
  top: 41px;
  left: 50%;
  width: 960px;
  margin-left: -480px;
  padding-bottom: 10px; /* padding for inner div box-shadow */
  padding-right: 10px;
  z-index: 1000;
}

.inline-cart .triangle {
  position: absolute;
  top: -10px;
  left: 53%;
  width: 0;
  height: 0;
  margin-left: 388px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
  z-index: 1000;
}

.inline-cart .wrap {
  position: relative;
  float: right;
  width: 425px;
  min-height: 225px;
  max-height: 450px;
  background-color: #fff;
  box-shadow: 0 0 20px 0 #aaa;
}

.inline-cart .emptyCart {
  height: auto;
  margin: 0 20px;
  padding-top: 10px;
}

.inline-cart .top {
  display: block;
  height: 35px;
  margin: -12px -10px 0 0;
  float: right;
  width: 35px;
}
.inline-cart .top button.close {
  width: 40px;
  height: 40px;
  background: url("../images/v2/layout/icon_close.png?auto=webp&quality=25") top right no-repeat;
  direction: ltr;
  text-indent: -9999px;
  border: 0;
}
.inline-cart .top button.close:hover {
  cursor: pointer;
}

.inline-cart .items ul {
  max-height: 275px; /* 40px + 275px + 135px = 450px */
  margin-bottom: 110px;
  padding-top: 5px;
  overflow-x: hidden;
  overflow-y: scroll;
}
.inline-cart .items ul li {
  margin: 0 0 0 20px;
  padding: 10px 0 9px;
  border-bottom: 1px solid #eee;
  overflow: hidden;
  clear: both;
}

.inline-cart .items ul li:first-child {
  margin-top: 5px;
}

.inline-cart .items ul li:last-child {
  border-bottom: none;
  padding-bottom: 17px;
}

.inline-cart .items ul li.engrave-fee {
  margin-top: 5px;
  border-bottom: none;
}

.inline-cart .items ul li .image {
  float: left;
  margin-right: 10px;
  width: 85px;
}

.inline-cart .items ul li .image img {
  display: block;
  width: 83px;
  max-height: 83px;
  border: 1px solid #eee;
}

.inline-cart .items ul li .desc {
  float: left;
  width: 180px;
  margin-right: 10px;
  font-weight: inherit;
}

.inline-cart .items ul li .desc .title {
  font-weight: bold;
  color: #000;
  margin-bottom: 8px;
}

.inline-cart .items ul li .desc .customizations {
  width: auto;
  margin-top: 0;
  font-size: 11px;
  color: #aaa;
}

.inline-cart .items ul li .variation {
 font-size: 11px;
 color: #aaa;
 margin-top: 2px;
}

.inline-cart .items ul li .desc .customizations .photo img.thumbnail {
 display: inline-block;
 max-height: 215px;
 max-width: 185px;
}

.inline-cart .items ul li .desc .customizations .photo span.name {
 display: inline-block;
 width: 100%;
}

.inline-cart .items ul li .price {
  float: left;
  width: 60px;
  padding-right: 17px;
  text-align: right;
}

.inline-cart .items ul li .remove {
  float: left;
}

.inline-cart .items ul li .remove input,
.inline-cart .items ul li .remove input:hover {
  background: transparent url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAAOCAMAAADDoWbgAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAALdQTFRFAAAAVlZWjIyMTU1N1tbWu7u7s7Oz2traioqKKioqdXV1pKSkubm5r6+vODg4vLy8wMDAFhYWoKCg6enp39/f+vr6p6enpaWlqKiof39/29vbXFxcbm5uWFhYR0dHMjIyxcXFgICAtLS0zs7O4+Pjvr6+lJSURUVFpqamra2tqqqqm5ubLi4u/v7+ampqX19fQEBAY2NjysrK0dHR3d3dWlpaPT093t7ek5OT+/v719fX7+/v////Rel4SQAAAD10Uk5T////////////////////////////////////////////////////////////////////////////////AAkvrF8AAAB8SURBVHjaYrBBBgwggl1bSEgYxhPl5OLQN9UF89QUpRm4ONQZZLh4gTweQUk2MU0xNkM5ZZBKWSNzURNLFS0LsD5GVk5VHRZObiYIj59PgJmdWRwrj1We1YDFDKZSgU1YyZpHAsrTELGSYhHR4wDzeBnAQNAY6k44AAgwAGMqGhCHVUQYAAAAAElFTkSuQmCC) no-repeat 0 0;
 }

.inline-cart .items ul li .remove input {
  width: 13px;
  height: 14px;
  padding-top: 0;
  direction: ltr;
  text-indent: -9999px;
  border: 0;

}

.inline-cart .bottom {
  position: absolute;
  bottom: 0;
  width: 380px;
  margin: 0 20px;
  padding-top: 10px;
  border-top: 1px solid #eee;
  background-color: #fff;
}

.inline-cart .bottom .gift-wrap {
  color: #000;
}

.inline-cart .bottom .discount {
  font-weight: bold;
  color: #5d604b;
}

.inline-cart .bottom .discount > span {
  float: right;
}

.inline-cart .bottom .total {
  margin-top: 4px;
  font: 14px var(--font-sans-serif);
  font-weight: bold;
  color: #000;
  text-align: inherit;
  text-transform: uppercase;
}

.inline-cart .bottom .total span {
  float: right;
}

.inline-cart .bottom .primaryButton {
  width: 100%;
  margin: 10px auto 20px auto;
  padding: 12px 0;
  font: 15px var(--font-sans-serif);
  font-weight: 500;
  color: #fff;
  text-align: center;
  border: 1px solid #e5e5e5;
  cursor: pointer;
}

.inline-cart .emptyCart p {
 font-size: 18px;
 margin-top: 80px;
}

.inline-cart .emptyCart p span {
 font-size: 16px;
}

.inline-cart .emptyCart span.smiley {
 font-size: 15px !important;
}

/* Modal cart addons */
.cart-addons-modal {
  max-height: calc(100% - 80px);
  overflow-y: auto;
  z-index: 2000;
  position: fixed;
  width: 640px;
  left: calc((100% - 640px) / 2);
  top: 80px;
  background: #FFF;
  overflow-x: hidden;
  padding: 8px;
  border: 2px solid #ccc;
}

.cart-addons-modal .doubleLines {
  background-size: 100% 5px;
}

.cart-addons-modal .cart-addons-modal-overlay {
  position:   absolute;
  display:    block;
  background: rgba(204, 204, 204, 0.4);
}

.cart-addons-modal .cart-addons-close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
}

.added-product-image {
  float: left;
  margin-left: 48px;
  margin-right: 76px;
  margin-top: 20px;
}

.added-product-details {
  float: left;
  width: calc(100% - 272px);
  overflow: hidden;
}

.added-product-image img {
  width: 148px;
  max-width: 148px;
}

.added-product-header {
  font: 18px var(--font-sans-serif);
  font-weight: 600;
  color: #333;
  margin-left: -20px;
  padding-left: 20px;
  background: url("../images/v2/layout/icon_checkTeal.png?auto=webp&quality=25") no-repeat;
  background-position: center left 0px;
  margin: 0 0 2px -20px;
}

.cart-addons-added-products {
  overflow: hidden;
  margin-top: 16px;
  margin-bottom: 20px;
}

.cart-addons-added-products .title {
  font-weight: bold;
  color: #000;
}

.cart-addons-added-products .r_total {
  text-decoration: line-through;
  color: #888;
}

.added-product-name {
  font: 12px Arial,Helvetica,sans-serif;
  color: #333;
  margin-bottom: 12px;
}

.added-product-price,
.added-product-subtotal {
  font: 15px Arial,Helvetica,sans-serif;
  color: #333;
  margin-bottom: 16px;
  font-weight: bold;
}

.added-product-rprice {
  text-decoration: line-through;
  color: #757575;
  background-color: #fff;
  display: block;
  margin-bottom: 4px;
  font-weight: normal;
}

.added-product-subtotal {
  padding-bottom: 12px;
}

.added-product-qty {
  overflow: hidden;
  font: 12px Arial,Helvetica,sans-serif;
  margin-bottom: 4px;
  color: #757575;
  background-color: #fff;
  padding-bottom: 12px;
}

.added-product-qty-amount {
  color: #757575;
  background-color: #fff;
}

.added-product-qty a:hover {
  text-decoration: underline;
}

.added-product-subtotal {
  overflow: hidden;
  color: #333;
  margin-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  margin-top: 14px;
  padding: 0;
  clear: both;
  font-weight: bold;
}

.added-product-qty-header {
  float: left;
}

.cart-addons-button {
  font-size: 12px;
  width: 168px;
  border: 0;
  height: 34px;
  padding-top: 10px;
  margin: 8px 0 12px;
  float: left;
  text-align: center;
  color: #fff;
}

.cart-addons-link.continue-shopping {
  height: 32px;
  font: 12px Arial,Helvetica,sans-serif;
  width: auto;
  border: none;
  background: none;
  color: #333;
  text-transform: none;
  margin: 8px 0 0 16px;
}

.cart-addons-link.continue-shopping:focus {
  box-shadow: none;
}

.cart-addons-link.continue-shopping:hover {
  text-decoration: underline;
  background-color: #fff;
  color: #000;
}
/*
.addon-list .cart-addon {
  float: left;
  width: 120px;
  margin: 12px 32px 4px;
}

.addon-list .cart-addon:nth-child(4n+4) {
  clear: both;
}

.addon-list .cart-addon a {
  display: inline-block;
}

.addon-list .cart-addon-img {
  height: 100%;
  width: 100%;
}

.addon-list .cart-addon-name {
  font-size: 10px;
  overflow: hidden;
  font-weight: bold;
}

.addon-list .cart-addon-price {
  color: #999;
  font-size: 10px;
  font-weight: bold;
  margin-top: 8px;
  padding: 1px 3px 1px 1px;
}

.addon-list .cart-addon-price div.regularPrice {
  float: left;
  margin-right:5px;
}

.addon-list a:hover {
  text-decoration: none;
}

.addon-list a:hover .cart-addon-name {
  text-decoration: underline;
}
*/
/* "Trending Now" Parent Category Page Product Recommendations Container */
.productList.pr-recommendations {
  width: 100%;
  margin-bottom: 5px;
  margin: 0 0 5px 0;
}


.productList.pr-recommendations .products {
 margin: 0 0 0 0;
 padding-top: 0;
 width: 100%;
 }

.productList.pr-recommendations .products li.grid_2 {
 margin-right: 10px !important;
 border-top: 0;
 height: 310px;
 }

.productList.pr-recommendations .owl-controls {
  margin-bottom: 10px !important;
}

/* Product Page Product Recommendations Horizontal */

.MagicScroll-horizontal {
  height: var(--pr-height-override) !important;
}

@media screen and (max-width: 760px) {
  .product .mobileMainImage {
    height: 100vw !important;
  }
}

/* Product Page Product Recommendations Right Rail Container */

body.product .pr-also-bought-container h2 {
 text-align: center;
 color: #000;
 font: 20px var(--font-sans-serif);
 font-weight: 600;
 line-height: 1em;
 margin: 5px 0 10px;
 overflow: visible;
 text-transform: none;
 background-color: #fff;
 }

#pr-also-bought-magicscroll {
  height: 705px;
}

#pr-also-bought-magicscroll .mcs-item {
  height: var(--pr-height-override) !important;
}

body.product .pr-also-bought-container ul li span.label,
body.product .pr-also-bought-container ul li span.price,
body.product .pr-also-bought-container ul li span.regularPrice,
body.product .pr-also-bought-container ul li span.salePrice {
 display: none;
 }

body.product .pr-also-bought-container ul li {
 margin: 0;
 border-bottom: 1px dotted #ddd;
 width: 135px;
 margin-bottom: 10px;
 }

body.product .pr-also-bought-container ul li span.name {
 text-align: center;
 display: block;
 font: 12px var(--font-sans-serif);
 font-weight: 500;
 line-height: 1em;
 margin-bottom: 10px;
 white-space: normal;
 }

body.product .pr-also-bought-container ul li img {
 height: 135px;
 width: 135px;
 }

body.search .productList.pr-recommendations {
  /* margin-left: 11px !important; */
  width: 100%;
  margin-bottom: 5px;
}

body.search .productList.pr-recommendations ul.products {
 margin-left: 0;
 }

body.search .productList.pr-recommendations .products li.grid_2 {
 border-top: 1px solid #ddd;
 margin-right: 9px !important;
 }

/* Cart Product Recommendations Container */
body.cart .owl-theme .owl-controls {
 margin: -5px 0 5px !important;
 }

.cart .cross-sell {
 margin-bottom: -5px;
 }

.cart .cross-sell-container {
 display: inline-block;
 border-bottom: 6px solid #000000;
 }

.cart img.cross-sell-header {
 margin: 0 0 7px;
 border-top: 6px solid #000000;
 padding-top: 15px;
 }

.cart .cross-sell-container h3,
.cart .cross-sell-container span.label,
.cart .cross-sell-container span.name,
.cart .cross-sell-container span.regularPrice,
.cart .cross-sell-container span.price,
.cart .cross-sell-container span.salePrice {
 display: none;
 }

#scroll-to-top {
  opacity: 0;
 }

.discontinued-notification {
  background: #ccc;
  color: #fff;
  text-align: center;
  padding: 10px 10px 10px 10px;
  font-size: 16px;
  margin: 10px 0 10px 0;
}

/* Login Widget */
#login-modal {
  display: none;
  padding-bottom: 1.5em;
}

#login-modal form.login .login-widget .account-error.error {
  padding-top: 0;
}

div.ui-dialog.login-dialog {
  border: 1px solid #ccc;
}

div.ui-dialog .dialog-overlay {
  display: none;
  height: 100%;
  width: 100%;
  position: absolute;
  opacity: 0.2;
  top: 0;
  left: 0;
  background: #000;
  z-index: 2000;
}

div.login-dialog button.ui-dialog-titlebar-close {
  margin-top: 0;
  z-index: 1;
  font-size: 12px;
  font-weight: bold;
  color: #888;
}

div.login-dialog button.ui-dialog-titlebar-close .ui-button-icon-primary {
  display: none;
}

div.login-dialog button.ui-dialog-titlebar-close .ui-button-text,
div.login-dialog button.ui-dialog-titlebar-close {
  text-indent: 0;
  padding: 0;
}

div.login-dialog li.login-password {
  position: relative;
}

div.login-dialog a.login-password-reset {
  position: absolute;
  z-index: 2;
  right: 7px;
  top: 19px;
  color: #555;
  font-size: 14px;
}

#login-preloader {
  display: none;
  position: absolute;
  top: -31px;
  left: calc((100% - 64px) / 2);
}

/* Begin Newsletter Modal */

div.newsletter-modal-main {
  display: none;
  position: fixed;
  z-index: 2100;
  width: 640px;
  left: calc((100% - 640px) / 2);
  top: 80px;
  font-family: var(--font-sans-serif);
  font-weight: 500;
  background-color: #ffffff;
  padding:5px;
  text-align: center;
}

div.newsletter-modal-wrapper {
  border: 2px solid #000;
  margin: 10px;
  padding: 20px;
  text-align: center;
}

.newsletter-modal-main-button {
  display: inline-block;
  min-width: 120px;
}

button.newsletter-modal-close,
button.newsletter-modal-close-desktop {
  display: block;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  right: 0px;
  top: 0px;
  position: absolute;
}

div.newsletter-signup-form > p , div.email-thank-you > p {
  font-size: 16px;
  margin-top: 0;
}

.newsletter-modal-error {
  margin-top:5px;
}

div.newsletter-modal-main-title {
  display: inline-block;
  position: relative;
  top: -34px;
  margin: 0 !important;
  border-bottom: 0;
  color: #000 !important;
  background-color:#fff;
  font: 24px var(--font-sans-serif) !important;
  font-weight: 500;
  padding-bottom:0;
  text-transform: none;
}

div.newsletter-modal-bottom {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 3px 0;
  margin: 0;
  color: #000;
  background-color: #e4d9c5;
  box-shadow: 0 4px 12px 0 rgba(0,0,0,.8);
}

div.newsletter-modal-bottom > .newsletter-modal-header {
  margin: 5px 0 5px 10px;
  border-bottom: 0;
  text-align: center;
  padding-bottom:0;
}

div.newsletter-modal-bottom > .newsletter-modal-header button,
div.newsletter-modal-title > #newsletter-modal-submit-title button {
  background: none;
  border: none;
  font: 23px var(--font-serif) !important;
  font-weight: 600;
  text-transform: uppercase;
  color: #000;
  letter-spacing: .25px;
  width: 100%;
  cursor: pointer;
}

div.newsletter-modal-bottom > .newsletter-modal-header button:focus,
button.newsletter-modal-close-desktop {
  outline-color: #62759d;
}

button.newsletter-modal-close-desktop img {
  position: absolute;
  right: 7px;
  top: 8px;
}

div.newsletter-modal-mobile {
  display: none;
  font-family: var(--font-sans-serif);
  font-weight: 500;
}
/* End Newsletter Modal */

/* Begin GCR badge */
.footer #___ratingbadge_0 {
  bottom: 75px !important;
}

div#___ratingbadge_0 {
  max-width: 165px;
  max-height: 54px;
  display: inline-block;
  overflow-y: hidden;
}
/* End GCR badge */

.eves-generic-modal {
  display: none;
  z-index: 2001;
  position: fixed;
  background-color: #FFF;
  opacity: 1;
  overflow: auto;
  margin: 0;
}

.eves-generic-modal-close-button {
  width: 28px;
  height: 28px;
  position: absolute;
  top: 9px;
  left: calc(100% - 38px);
  text-align: center;
  cursor: pointer;
  background: url("../images/v2/layout/icon_close.png?auto=webp&quality=25");
  background-size: 100%;
}

.eves-cursor-pointer {
  cursor: pointer;
}

.eves-underline {
  text-decoration: underline;
}

.eves-hidden {
  display: none;
}

.product .get-it-by {
  font: 14px/1.4 var(--font-serif);
  background-color: #fff;
  color: #000;
  padding-bottom: 6px;
  margin-top: 10px;
  font-weight: 100;
}

.product .need-it {
  font: 16px var(--font-serif);
  font-weight: 600;
  margin-bottom: 2px;
  background-color: #fff;
}

body.product .ship-it a {
  margin-top: 2px;
  display: block;
  width: max-content;
}

.product .get-it-by.holiday {
  font: 14px/1.4 var(--font-serif);
  background-color: #f6f4f0;
  color: #000;
  padding-bottom: 6px;
  margin-top: 10px;
  font-weight: 100;
  text-align: center;
  padding: 10px 20px;
}
.product .holiday .need-it {
  font: 18px var(--font-serif);
  font-weight: 600;
  margin-bottom: 2px;
  background-color: #f6f4f0;
  color: #678307;
  height: 30px;
}
.product .holiday .need-it .truck-img {
  max-width: 50px;
  display: inline-block;
  width: 12%;
}
.product .holiday .need-it .arrives {
  display: inline-block;
  letter-spacing: 1px;
  height: 30px;
  vertical-align: middle;
}
.product .holiday .ship-it {
  margin-top: 7px;
  line-height: 25px;
}
.product .holiday .ship-it a {
  margin-top: 2px;
  display: block;
  background-color: #f6f4f0;
  color: #000;
  width: auto;
  font-size: 12px;
}

@media (max-width: 1200px) {
  .product .get-it-by.holiday {
    font-size: 12px;
    padding: 10px;
  }
  .product .holiday .need-it {
    margin-bottom: -2px;
  }
  .product .holiday .need-it .arrives {
    font-size: 15px;
    vertical-align: text-top;
  }
}
@media (max-width: 400px) {
  .product .holiday .need-it .arrives {
    font-size: 14px;
    height: 24px;
    vertical-align: middle;
  }
  .product .holiday .need-it .truck-img {
    display: none;
  }
}

/* Begin Delivery Date Estimations Modal */
body.product .delivery-date-table {
  width: 680px;
  font-family: var(--font-serif);
  border-radius: 3px;
  color: #555;
}

body.product .delivery-date-table h2 {
  font-size: 24px;
  margin: 0;
  padding: 10px 0 10px 20px;
  border-bottom: 1px solid #BBB;
  text-transform: uppercase;
}

body.product .delivery-date-table table {
  font-size: 18px;
  margin: 25px auto;
  border-spacing: 0;
  width: calc(100% - 44px);
  border: 1px solid #BBB;
  border-collapse: collapse;
}

body.product .delivery-date-table thead {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

body.product .delivery-date-table th,
body.product .delivery-date-table td {
  border-bottom: 1px solid #BBB;
  border-right: 1px solid #BBB;
  padding: 10px;
}
/* End Delivery Date Estimations Modal */

body.home.desktop .product-recommendations-container.empty,
body.home.mobile .product-recommendations-container.empty,
.product-recommendations-container.empty {
  display: none !important;
}

#everybody-loves-container {
  margin-bottom: -10px;
}

#search-results-carousel li.grid_2 {
  border: none;
}

#gift-guide-carousel .customBanner {
  display: none;
}

#gift-guide-carousel.owl-theme .owl-controls {
  margin-bottom: 5px !important;
}

.recommendation-preload {
  visibility: hidden;
  height: var(--pr-height-override);
}

.recommendation-carousel {
  max-height: var(--pr-height-override);
  overflow: hidden;
}

.recommendation-desktop {
  display: none !important;
}

.recommendation-mobile {
  display: block !important;
}

@media only screen and (min-width: 761px) {
  .recommendation-desktop {
    display: block !important;
  }

  .recommendation-mobile {
    display: none !important;
  }
}

.product-recommendations-container {
  width: 100%;
}


@media only screen and (min-width: 761px) {
  .product-recommendations-container {
    min-height: 290px;
  }

  .home .product-recommendations-container .product-recommendations-header {
    font-size: 60px !important;
  }

  .category .product-recommendations-container {
    min-height: 240px;
  }
}

@media only screen and (min-width: 761px) and (max-width: 1440px) {
  .product-recommendations-container {
    margin-left: 5px;
    margin-right: 5px;
  }
}

.product-recommendations-container div.doubleLines {
  margin-top: 10px;
}

.product-recommendations-container .product-recommendations-header,
.categoryParentProductList p,
#search-no-results-pr-container p,
.cross-sell-header,
.cart-addons-modal div.cart-addons-modal-header {
  font: 44px var(--font-script);
  font-weight: 300;
  color: var(--dark-green);
  text-align: center;
  margin: 20px 0 0;
  width: 100%;
  background-color: #FFF;
  /* font-variant-ligatures: none;
  -webkit-font-variant-ligatures: no-common-ligatures;  */
}

@media ( max-width: 760px ) {
  .product-recommendations-container .product-recommendations-header,
  .categoryParentProductList p,
  #search-no-results-pr-container p,
  .cross-sell-header,
  .cart-addons-modal div.cart-addons-modal-header {
    font-size: 44px !important;
    background-color: #fff;
  }
}

@media ( max-width: 375px ) {
  .product-recommendations-container .product-recommendations-header,
  .categoryParentProductList p,
  #search-no-results-pr-container p,
  .cross-sell-header,
  .cart-addons-modal div.cart-addons-modal-header {
    font-size: 36px !important;
  }
  .homeContent .product-recommendations-header {
    height: 50px;
  }
}

.product-recommendations-container .product-recommendations-carousel li {
  list-style: none;
}

.product-recommendations-container .product-recommendations-carousel a {
  text-align: center;
  display: inline-block;
  height: 100%;
}

.product-recommendations-container .product-recommendations-carousel img {
  height: 140px;
  width: 140px;
}

.product-recommendations-container .product-recommendations-carousel span {
  color: #000;
  text-align: center;
  display: block;
  font: 12px var(--font-sans-serif);
  font-weight: 500;
  white-space: normal;
  width: 140px;
  margin: 0 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-recommendations-container .product-recommendations-carousel .mcs-button-arrow span {
  width: 0;
}

.product-recommendations-container .product-recommendations-carousel span.price {
  margin-top: 4px;
  width: 100%;
}

.product-recommendations-container .product-recommendations-carousel span.regularPrice {
  display: none;
}

.product-recommendations-container .product-recommendations-carousel span.price-label {
  display: none;
}

.product-recommendations-container .product-recommendations-carousel div.customization {
  display: none;
}

.product-recommendations-container .product-recommendations-carousel span.customBanner {
  display: none;
}
body.product .product-recommendations-container .product-recommendations-header {
  margin-top: 30px;
}

body.product .product-recommendations-container h2 {
  font-size: 26px;
}

body.gift-guide .product-recommendations-container .product-recommendations-header {
  margin: 0 0 20px 0;
}

body.gift-guide .product-recommendations-container .product-recommendations-carousel a {
  height: 215px;
}

#cart-addons-modal-container {
  height: 259px;
}

div.product {
  width: calc(100% - 15px);
}

div.product {
  width: calc(100% - 15px);
  display: inline-block;
}

/* Begin Final Sale Product "See Details" */
body.product div.productPage div.details {
  position: relative;
}

.final-sale-see-details {
  color: black;
  font-weight: bold;
  margin-left: 5px;
  display: inline-block;
  position: relative;
}

.final-sale-details {
  display: none;
  position: absolute;
  top: 70px;
  left: 40px;
  width: 400px;
  padding: 15px;
  color: #666;
  background: #FFF;
  border: 1px solid #ccc;
  -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,.3);
  -moz-box-shadow: 0  10px 0 rgba(0,0,0,.3);
  box-shadow: 3px 3px 10px rgba(0,0,0,.3);
  z-index: 1;
}

.final-sale-details h4 {
  margin-top: 0;
}

.final-sale-details.hovered, .final-sale-details.clicked {
  display: block;
}

/* End Final Sale Product "See Details" */

/* 960.css AND ALSO DESKTOP CSS */
@media only screen and (min-width: 761px) {
  /* Category Page */
  .categoryPod.podFour {
    margin-right: 0px;
  }

  .categoryPod.podThree:last-of-type {
    display: none;
  }

  .categoryParentProductList .owl-wrapper-full {
    display: none;
  }

  /*
    960 Grid System ~ Core CSS.
    Learn more ~ http://960.gs/

    Licensed under GPL and MIT.
  */

  /*
    Forces backgrounds to span full width,
    even if there is horizontal scrolling.
    Increase this if your layout is wider.

    Note: IE6 works fine without this fix.
  */

  /*body {
    min-width: 985px;
  }*/

  /* `Containers
  ----------------------------------------------------------------------------------------------------*/

  .container_12 {
    display: flex;
    flex-wrap: wrap;
    min-width: var(--desktop-min-width);
    width: 100%;
    max-width: var(--desktop-max-width);
  }

  .container_base {
    margin: 0 auto;
  }

  @keyframes pulseOutline {
    0% {
      outline: 1px solid rgba(0, 0, 255, 0.15);
      box-shadow: none;
    }

    50% {
      outline: 1px solid blue;
      box-shadow: 1px 1px blue;
    }

    100% {
      outline: 1px solid rgba(0, 0, 255, 0.15);
      box-shadow: none;
    }
  }

  /* `Grid >> Global
  ----------------------------------------------------------------------------------------------------*/

  .grid_1,
  .grid_2,
  .grid_3,
  .grid_4,
  .grid_5,
  .grid_6,
  .grid_7,
  .grid_8,
  .grid_9,
  .grid_10,
  .grid_11 {
    display: block;
  }

  .grid_12 {
    display: block;
  }

  .grid_no_flex {
    display: block;
  }

  .grid_flex {
    display: flex;
    flex-wrap: wrap;
  }

  .grid_center {
    align-items: center;
    justify-content: center;
  }

  .push_1, .pull_1,
  .push_2, .pull_2,
  .push_3, .pull_3,
  .push_4, .pull_4,
  .push_5, .pull_5,
  .push_6, .pull_6,
  .push_7, .pull_7,
  .push_8, .pull_8,
  .push_9, .pull_9,
  .push_10, .pull_10,
  .push_11, .pull_11 {
    position: relative;
  }

  /* `Grid >> Children (Alpha ~ First, Omega ~ Last)
  ----------------------------------------------------------------------------------------------------*/

  .alpha {
    margin-left: 0;
  }

  .omega {
    margin-right: 0;
  }

  /* `Grid >> 12 Columns
  ----------------------------------------------------------------------------------------------------*/

  .container_12 .grid_1  { width:  8.33333%; }
  .container_12 .grid_2  { width: 16.66667%; }
  .container_12 .grid_3  { width: 25%; }
  .container_12 .grid_4  { width: 33.33333%; }
  .container_12 .grid_5  { width: 41.66667%; }
  .container_12 .grid_6  { width: 50%; }
  .container_12 .grid_7  { width: 58.33333%; }
  .container_12 .grid_8  { width: 66.66667%; }
  .container_12 .grid_9  { width: 75%; }
  .container_12 .grid_10 { width: 83.33333%; }
  .container_12 .grid_11 { width: 91.66667%; }
  .container_12 .grid_12 { width: 100%; }

  /* `Clear Floated Elements
  ----------------------------------------------------------------------------------------------------*/

  /* http://sonspring.com/journal/clearing-floats */

  .clear {
    clear: both;
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
  }

  /* http://www.yuiblog.com/blog/2010/09/27/clearfix-reloaded-overflowhidden-demystified */

  .clearfix:before,
  .clearfix:after,
  .container_12:before,
  .container_12:after {
    content: '.';
    display: block;
    overflow: hidden;
    visibility: hidden;
    font-size: 0;
    line-height: 0;
    width: 0;
    height: 0;
  }

  .clearfix:after,
  .container_12:after {
    clear: both;
  }

  /*
    The following zoom:1 rule is specifically for IE6 + IE7.
    Move to separate stylesheet if invalid CSS is a problem.
  */

  .clearfix,
  .container_12 {
    zoom: 1;
  }
}
/* END OF 960.css DESKTOP CSS */

/* mobile.css MOBILE AREA */
@media(max-width: 760px) {
  #main-site-content {
    padding: 0;
  }

  body {
    min-width: 0;
  }

  select,
  select:focus,
  textarea,
  textarea:focus,
  input[type=text],
  input[type=password],
  input[type=email],
  input[type=url],
  input[type=search],
  input[type=tel] {
    font-size: 16px;
  }

  .grid_1,
  .grid_2,
  .grid_3,
  .grid_4,
  .grid_5,
  .grid_6,
  .grid_7,
  .grid_8,
  .grid_9,
  .grid_10,
  .grid_11,
  .grid_12 {
    margin-left: 10px;
    margin-right: 10px;
  }

  .container_12 {
    max-width: 100%;
  }

  .alpha,
  .omega {
    margin-left: 0;
    margin-right: 0;
  }

  .align_center,
  .align_right {
    text-align: left;
  }

  ul.valueProps,
  .tabs,
  .featuredHomeLinks,
  #shipTime,
  .contentChunk,
  .shadow,
  .youFirst,
  .thenUs,
  .slider,
  .shopFast,
  .shopCategory,
  .shopMaterial,
  span.or,
  .shopPrice,
  a.homeHeader,
  .topNav.desktopTopNav,
  .headContent .grid_3.omega,
  .headContent .logo,
  .chatWidget,
  .doubleLines,
  .refCode,
  form.search,
  .related-searches,
  .productPage .details .prices,
  .productPage .details .free-shipping-label,
  .productPage .details .final-sale-see-details,
  .persistentBanner,
  .categoryBanner,
  .headerBanner,
  p.welcomeBack,
  .smallLogo,
  a.trendingNow,
  img.bbbCart,
  img.bbbCheckout {
    display: none !important;
  }

  .mobileContentChunk, .mobileContentChunk .contentChunk {
    display: block !important;
  }

  .mobileContentChunk .contentChunk ul.birthstoneList {
    margin:  -20px 0 25px;
  }

  .mobileContentChunk .contentChunk ul.categoryContentList ,
  .mobileContentChunk .contentChunk ol.categoryContentList {
    margin-bottom: 10px;
  }

  .mobileContentChunk .contentChunk ul.categoryContentList li.truncate,
  .mobileContentChunk .contentChunk ol.categoryContentList li.truncate{
    margin-top: -15px;
  }

  .mobileContentChunk .contentChunk ul.categoryContentList li a,
  .mobileContentChunk .contentChunk ol.categoryContentList li a{
    padding-bottom: 0;
  }

  .mobileContentChunk p.topBorder:last-child {
    margin-bottom: 0;
    padding-top: 10px;
  }

  .homeContentMobile {
    display: block !important;
    margin-top: -70px;
  }

  .home.mobile .contentChunk {
    display: block !important;
  }

  .contentChunk.instashop {
    display: block !important;
  }

  .home.mobile .instashop-body {
    height: unset;
    margin: 0 0 10px;
    aspect-ratio: 345 / 119;
  }

  .category.mobile .instashop-body,
  .product.mobile .instashop-body {
    height: unset;
    max-width: 100vw;
    margin: auto;
    margin-bottom: 10px;
  }

  .mobile .instashop p.topBorder {
    padding-bottom: 5px !important;
    width: unset;
    max-width: 100vw;
    min-width: 0;
    margin: auto;
  }

  /* Sticky Nav Rules */

  .mobile.sticky-nav .topHeader {
    height: 50px;
    position: relative;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }

  .mobile.sticky-nav .headContent {
    padding-top: 0;
  }

  .topHeader {
    display: block;
    background: url("../images/v2/layout/bg_header.jpg?auto=webp&quality=50") repeat-x scroll left top !important;
    height: 50px;
    background-size: 1px 60px !important;
    position: relative;
    z-index: 98;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }

  .homeContent span {
    width: auto;
  }

  .headContent {
    padding-top: 0;
  }

  .mobileHeader {
    display: block;
    width: auto;
    margin: 8px 0 0 8px;
    position: relative;
    z-index: 99;
    height: 47px;
  }

  .mobileHeader ul {
    margin: -48px 0 30px;
    width: auto;
    height: 25px;
  }

  .mobileHeader ul li {
    display: inline-block;
    width: 24%;
  }

  .mobileHeader ul li a,
  .mobileHeader ul li button {
    color: #fff;
    width: 24%;
    position: relative;
    display: inline-block;
    height: 35px;
    text-indent: -9999px;
    background-size: 30px 30px !important;
  }

  .mobileHeader ul li.logo {
    width: 160px;
    padding-left: 5px;
  }

  .mobileHeader ul li.logo a {
    width: 100%;
    background: url("../images/v2/layout_320/logo.png?auto=webp&quality=25") top left no-repeat;
    background-size: 162px 32px !important;
  }

  .mobileHeader ul li.menu {
    float: left;
    width: 10%;
    margin-right: 3px;
  }

  .mobileHeader ul li.call,
  .mobileHeader ul li.bag,
  .mobileHeader ul li.search-icon,
  .mobileHeader ul li.login-icon,
  .mobileHeader ul li.account-icon {
    float: right;
    width: 10%;
    padding-right: 8px;
  }


  .mobileHeader ul li.call a {
    background: url("../images/v2/layout_320/btn_call.png?auto=webp&quality=25") top right no-repeat;
    width: 100%;
  }

  .mobileHeader ul li.bag {
    padding-top: 4px;
  }

  .mobileHeader ul li.bag a {
    background: url("../images/v2/layout_320/btn_bag.png?auto=webp&quality=25") top right no-repeat;
    width: 100%;
    background-color: #000;
    color: #FFF;
  }

  .mobileHeader ul li.bag a span {
    font: 12px var(--font-serif);
    color: #c1c5bd;
    display: block;
    height: auto;
    margin: -8px 0 0 -4px;
    font-weight: bold;
    float: right;
    width: 35px;
    text-indent: 0 !important;
    text-align: center;
    background-color: #000;
  }


  .mobileHeader ul li.menu button {
    background: url("../images/v2/layout_320/btn_menu.png?auto=webp&quality=25") top left no-repeat;
    width: 100%;
    border: none;
  }

  .mobileHeader ul li.search-icon {
    padding-right: 0;
    padding-left: 3px;
  }

  .mobileHeader ul li.search-icon a {
    background: url("../images/v2/layout_320/btn_searchTop.png?auto=webp&quality=25") top right no-repeat;
    width: 100%;
  }

  .mobileHeader ul li.login-icon button,
  .mobileHeader ul li.account-icon button {
    background: url("../images/v2/layout_320/btn_login.png?auto=webp&quality=25") top right no-repeat;
    width: 100%;
    border: none;
  }

  body.logged-in li.login-icon {
    display: none;
  }

  body:not(.logged-in) li.account-icon {
    display: none;
  }

  /*  Home Page Search Bar  */
  .home form.mobileSearch {
    display:block;
  }

  .home form.mobileSearch .searchButton {
    right:0;
  }

  /*  All Search Bars  */
  form.mobileSearch {
    display: none;
    height: 40px;
    margin: 5px auto 8px auto;
    border: #999 solid 2px;
    width: 85%;
    position: relative;
    height: 52px;
  }

  form.mobileSearch input[type=text] {
    border:0;
    padding: 10px 35px 10px 10px;
    height: 30px;
    width: 80%;
    font-family: var(--font-sans-serif);
    color: #595959;
    z-index: 99;
  }

  form.mobileSearch input:focus {
    box-shadow: none ;
  }

  form.mobileSearch .searchButton {
    position: absolute;
    top: 0;
    right: 40px;
    padding: 0;
    border: 0 none;
    height: 50px;
    width: 50px;
    background: none;
    z-index: 99;
  }

  form.mobileSearch .search-Magnifying-Glass {
    background: #fff url("../images/v2/layout/icon_search-light.png?auto=webp&quality=50") no-repeat;
    background-size: 45px 35px;
    width: 45px;
    height: 35px;
    display: inline-block;
  }

  form.mobileSearch .mobile-search-close {
    background: #fff url("../images/v2/layout_320/btn_close_black.svg?auto=webp&quality=50") no-repeat;
    background-size: 40px 20px;
    width: 40px;
    height: 25px;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 15px;
    opacity: .4;
    z-index: 99;
  }
  form.mobileSearch .mobile-search-close:before {
    background-color: #999;
    width: 1px;
    height: 29px;
    top: 3px;
    display: inline-block;
    content: "";
    position: absolute;
    top: -5px;
  }

  form.mobileSearch .searchButton:focus {
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
  }

  /*  Side Page Search Bar  */
  div.sidr form.mobileSearch {
    width: 260px;
    border: 0;
    display: block;
  }

  div.sidr form.mobileSearch .search-Magnifying-Glass {
    background-size: 25px 25px;
    background-position: 5px 5px;
    width: 38px;
    padding-left:0;
    margin-top: 4px;
  }

  div.sidr form.mobileSearch .searchButton {
    margin: 0;
    right: 0;
    z-index: 1000000 !important;
  }

  .sidr form.mobileSearch {
    margin: 0 !important;
    background: #fff;
  }

  .sidr form.mobileSearch input[type=text] {
    width: 82%;
    margin: 0;
    border: none;
  }

  .sidr form.mobileSearch input[type=text]:focus {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }

  #nxt-ac-container {
    width: 314px;
  }

  .mobileSearch #nxt-ac-container {
    display: none;
  }


  /* Mobile Nav */

  .sidr {
    display: block;
    position: fixed;
    top: 0;
    height: 100%;
    z-index: 999999;
    width: 260px;
    overflow-x: unset;
    overflow-y: auto;
    background: #f8f8f8;
    box-shadow: inset 0 0 5px 5px #ebebeb;
    font-family: var(--font-sans-serif);
  }

  /* Required for Nextopia autocomplete */
  .sidr #nxt-search-form-mobile-nav input {
    z-index: 999999;
    position: relative;
    top: 4px;
    left: 0;
    padding: 20px;
  }

  .sidr p.sideHeader {
    font: 20px var(--font-serif);
    font-weight: 500;
    text-align: center;
    padding: 2px 0;
    margin: 0;
    background-color: #5d604b;
    color: #fff;
    text-transform: uppercase;
  }

  #sidr>ul {
    display: block;
  }

  .sidr ul {
    display: block;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #fff;
  }

  .sidr ul li,
  .sidr ul li .sidr-accordion {
    display: block;
    margin: 0;
    line-height: 48px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #dfdfdf;
  }

  .sidr ul li:hover,
  .sidr ul li.sidr-class-active {
    border-top: none;
    line-height: 49px;
  }

  body.logged-in .sidr li.sidebar-login,
  body:not(.logged-in) .sidr li.sidebar-account {
    display: none;
  }

  .sidr ul li:hover>a {
    -webkit-box-shadow: inset 0 0 15px 3px #666;
    -moz-box-shadow: inset 0 0 15px 3px #666;
    box-shadow: inset 0 0 15px 3px #666;
  }

  .sidr ul li a {
    display: block;
    padding: 0 15px;
    text-decoration: none;
    color: #333;
  }

  .sidr ul li ul {
    border-bottom: none;
    margin: 0;
  }

  .sidr ul li ul li {
    line-height: 38px;
    font-size: 15px;
  }

  .sidr ul li ul li:last-child,
  .sidr ul li ul li div.slidingDiv a:last-child {
    border-bottom: none;
  }

  .sidr ul li ul li:hover {
    border-top: 1px solid transparent;
    /* this must match the line height above at
       `.sidr ul li ul li` */
    line-height: 38px;
  }

  .sidr ul li ul li:hover>a {
    -webkit-box-shadow: inset 0 0 15px 3px #ebebeb;
    -moz-box-shadow: inset 0 0 15px 3px #ebebeb;
    box-shadow: inset 0 0 15px 3px #ebebeb;
  }

  .sidr ul li ul li a,
  .sidr ul li ul li span {
    color: rgba(0, 0, 0, 0.8);
    padding-left: 30px;
  }

  .sidr ul li ul li a {
    background: #f6f4f0 url("../images/v2/layout_320/icon_menu.png?auto=webp&quality=25") no-repeat right 13px;
    background-size: 24px 12px;
  }

  .sidr ul li ul li.sideCall {
    border-top: none;
  }

  .sidr ul li ul li.sideCall a {
    color: #fff;
    text-transform: uppercase;
    padding: 1px 0 0 50px;
    font-size: 13px;
    background: #000 url("../images/v2/layout_320/btn_call.png?auto=webp&quality=25") no-repeat scroll 20px 7px;
    background-size: 25px 25px;
  }

  .sidr ul li ul li.sideCall:hover {
    -webkit-box-shadow: inset 0 0 15px 3px #ccc;
    -moz-box-shadow: inset 0 0 15px 3px #ccc;
    box-shadow: inset 0 0 15px 3px #ccc;
  }

  .sidr ul li .subs .sidr-accordion .sidr-title {
    width: 100%;
    text-align: left;
    line-height: 38px;
    font: 14px/38px var(--font-sans-serif);
    font-weight: 400;
    display: block;
    padding: 0;
    border: none;
    background: #00000000;
  }
  .sidr ul li .subs .sidr-accordion .sidr-title:focus {
    background-color: #00000000;
  }

  .sidr ul li .subs .expand,
  .sidr ul li .subs li {
    background: url("../images/v2/layout_320/icon_menuPlus.png?auto=webp&quality=25") no-repeat right 15px;
    background-size: 24px 12px;
  }

  .sidr ul li .subs li.collapse,
  .sidr ul li .subs .collapse {
    background: url("../images/v2/layout_320/icon_menuMinus.png?auto=webp&quality=25") no-repeat right 15px;
    background-size: 24px 12px;
  }

  .sidr ul li ul li .slidingDiv,
  .expand .slidingDiv {
    display: none;
  }

  .sidr ul li ul li div.slidingDiv a,
  .sidr ul li .subs .sidr-accordion div.slidingDiv a {
    border-bottom: 1px solid #ebebeb;
    font: 12px var(--font-sans-serif);
    font-weight: 300;
    padding: 3px 0 0 40px;
    background: #e7e5e1;
    text-transform: capitalize;
    line-height: 30px;
    overflow: hidden;
    z-index: 100;
  }

  .sidr ul li .subs .sidr-accordion .show_hide {
    padding-left: 30px;
    background-color: #F8F8F8;
    color: #000;
  }

  .sidr ul li ul li div.slidingDiv a:first-child,
  .sidr ul li .subs .sidr-accordion div.slidingDiv a:first-child {
    padding-top: 2px;
  }

  #sidr-nav-close {
    position: absolute;
    right: 6px;
    top: 2px;
    color: #fff;
    width: 24px;
    border: none;
    background: #5d604b;
    font: 20px Arial, sans-serif;
    font-weight: 600;
  }


  /* Home Page Nav */

  .homeContentMobile {
    width: 100%;
    clear: left;
    margin: 10px 0 0;
  }

  .homeNavMobile {
    margin: 0 0 10px;
  }

  .homeNavMobile .expand,
  .homeNavMobile ul li {
    background: url("../images/v2/layout_320/icon_triangle.png?auto=webp&quality=25") no-repeat right 30px;
    background-size: 30px 20px;
    border-bottom: 1px solid #e4e4e4;
  }

  .homeNavMobile ul li.collapse {
    background: url("../images/v2/layout_320/icon_triangle-collapse.png?auto=webp&quality=25") no-repeat right 30px;
    background-size: 30px 20px;
  }

  .homeNavMobile ul li.noSub {
    background: none;
  }

  .homeNavMobile ul li.noSub a {
    font: bold 18px var(--font-sans-serif);
    padding: 15px 0 0 15px;
    height: 35px;
    background: url("../images/v2/layout_320/icon_triangle-white.png?auto=webp&quality=25") no-repeat right 15px;
    color: #fff;
    background-size: 30px 20px;
    border: none;
  }

  .homeNavMobile ul li a {
    font: 12px var(--font-sans-serif);
    padding: 13px 0 7px 15px;
    display: block;
    border-top: 1px solid #d9d6d1;
    background-color: #f6f4f0;
    text-transform: uppercase;
  }

  .homeNavMobile ul li button > span {
    padding: 32px 0 0 95px;
    height: 80px;
    display: block;
    background-size: 70px 70px;
    background-position: 10px 10px;
    background-repeat: no-repeat;
  }

  .homeNavMobile ul li button > span span {
    display: inline;
    font: 17px var(--font-sans-serif);
    font-weight: 500;
    color: #000;
    background-color: #FFF;
  }

  .homeNavMobile ul li span:hover {
    text-decoration: none;
  }

  .homeNavMobile ul li span.ringsMobile {
    background-image: url("../images/v2/layout_320/mobileNav_rings.png?auto=webp&quality=25");
  }

  .homeNavMobile ul li span.earringsMobile {
    background-image: url("../images/v2/layout_320/mobileNav_earrings.png?auto=webp&quality=25");
  }

  .homeNavMobile ul li span.necklacesMobile {
    background-image: url("../images/v2/layout_320/mobileNav_necklaces.png?auto=webp&quality=25");
  }

  .homeNavMobile ul li span.braceletsMobile {
    background-image: url("../images/v2/layout_320/mobileNav_bracelets.png?auto=webp&quality=25");
  }

  .homeNavMobile ul li span.collectionsMobile {
    background-image: url("../images/v2/layout_320/mobileNav_collections.png?auto=webp&quality=25");
  }

  .homeNavMobile ul li span.customMobile {
    background-image: url("../images/v2/layout_320/mobileNav_custom.png?auto=webp&quality=25");
  }

  .homeNavMobile ul li span.monogramsMobile {
    background-image: url("../images/v2/layout_320/mobileNav_monograms.png?auto=webp&quality=25");
  }

  .homeNavMobile ul li span.birthstonesMobile {
    background-image: url("../images/v2/layout_320/mobileNav_birthstones.png?auto=webp&quality=25");
  }

  .homeNavMobile ul li span.recipientMobile {
    background-image: url("../images/v2/layout_320/mobileNav_recipient.png?auto=webp&quality=25");
  }

  .homeNavMobile ul li span.giftsMobile {
    background-image: url("../images/v2/layout_320/mobileNav_gifts.png?auto=webp&quality=25");
  }

  .homeNavMobile ul li span.holidayMobile {
    background-image: url("../images/v2/layout_320/mobileNav_holiday.png?auto=webp&quality=25");
    color: #f283d7;
  }

  .homeNavMobile ul li a img {
    float: right;
    margin-right: 20px;
  }

  /* Breadcrumbs */
.breadcrumbTrail {
  font: 10px Arial, Helvetica, sans-serif;
  overflow: hidden;
  display: block !important;
  margin: 12px 10px 0;
  }
 
 .breadcrumbTrail li {
  float: left;
  padding-right: 4px;
  display: contents;
  line-height: 1.9em !important;
  font: 10px var(--font-sans-serif);
  font-weight: 100;
  }
 
  .breadcrumbTrail li.last {
    font-weight: 400;
  }
 
 .breadcrumbTrail li:after {
  padding-left: 4px;
  color: #5d604b;
  content: "\007C";
  }
 
 .breadcrumbTrail li.last:after {
  content: "";
  }
 
 .breadcrumbTrail li,
 .breadcrumbTrail li a {
  color: #5d604b;
  }
 
 .breadcrumbTrail li a:hover {
  text-decoration: underline;
  }

  .breadcrumbTrail {
    display: none !important;
  }


  /* Best Seller Slider */

  body.home.mobile .owl-wrapper-full {
    border-bottom: 1px solid #e4e4e4;
    margin-bottom: 0;
    padding-bottom: 20px;
  }

  div.owl-wrapper {
    margin-bottom: 20px !important;
  }

  div.owl div.item img {
    height: 100%;
    width: 100%;
  }

  div.owl a:hover {
    text-decoration: none;
  }

  div.owl div.item span.customBanner {
    width: auto !important;
    margin: 4px 4px 0;
  }

  div.owl-pagination {
    display: block;
    margin: -20px 0 5px 0;
  }

  div.owl-buttons {
    display: none;
  }

  .owl-controls .owl-page span {
    width: 8px !important;
    height: 8px !important;
    opacity: 1 !important;
    background: #000 !important;
  }

  .owl-controls .owl-page.active span {
    background-color: #e4d9c5 !important;
  }


  /* Home Page Content */
  .home.mobile .contentChunk h1 {
   border-bottom: none;
   background-color: #fff;
  }

  .home.mobile .contentChunk .topBorder {
   width: 93%;
   max-width: 100vw;
  }

  .home.mobile .contentChunk p.topBorder:last-child {
    margin-bottom: 15px;
    margin: 0 auto;
   }

  /* Search Results Page */

  .search-refinements-container {
    display: none;
  }

  .search-pagination {
    display: inline-block;
    margin: -8px 0 10px;
    width: 90%;
  }

  .related-searches {
    width: 90% !important;
    margin-top: -5px;
    padding: 0 0 0 10px;
    text-align: left;
  }

  body.search .productList {
    margin: 0;
    width: 100%;
    /* margin-left: 10px !important;
    width: 93% !important; */
  }

  body.search #navBarBottom .middle {
    display: none;
  }

  body.search .productList span.middle {
    display: block;
    margin: 14px auto 0 auto;
    text-align: center;
  }

  body.search #search-no-results-pr-container {
    margin-top: 0;
    border-top: 0;
  }

  body.search .productList .pagination {
    margin-left: -5px !important;
    margin-top: 10px !important;
    text-align: left !important;
    width: 97% !important;
  }

  body.search .productList .products {
    justify-content: center;
  }

  body.search .productList .products li.grid_2 {
    margin: 0;
    width: calc(50% - 20px);
    padding: 0 5px 10px;
    /* margin-right: 5px !important; */
  }

  body.search .productList .products li.grid_2 img {
    /* width: 138px !important; */
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }


  /* Parent Category Page */

  .contentChunk h3 {
    width: 100%;
  }


  .categoryPage p.categoryIntro {
    display: block;
    margin: 5px 0 15px 0 !important;
    font: 12px/1.5em var(--font-sans-serif);
    background-color: #fff;
    color: #171816;
    text-align: center;
  }

  .categoryPage p.categoryIntro .more-less {
    text-decoration: underline;
  }

  .categoryPage .grid_4,
  .categoryPage a.ringSize {
    display: none;
  }

  .categoryPage h3 {
    width: 100%;
  }

  .categoryPage ul {
    float: left;
    width: 100%;
    padding-left: 10px;
  }

  .contentChunk ul.birthstoneList {
    width: 100%;
  }

  .categoryPage .categoryContentList {
    float: none;
  }

  .categoryPage ul li {
    padding: 8px 2px 8px 0;
    width: 47%;
  }

  .categoryPage div.shipsToday {
    height: 45px;
    margin: -5px 0 14px;
    padding-top: 14px;
    background-color: #ff6840;
    box-shadow: none;
  }

  .categoryPage div.shipsToday p {
    letter-spacing: 0;
    line-height: .9em;
    color: #fff;
    width: 90%;
    margin: 0 auto;
  }

  div.shipsToday p span {
    color: #fff;
  }

  /**  Category parent page redesign
   *    - This uses an entirely new set of classes/styles because the redesign
   *      only encompasses a subset of all of the category YAML pages that can be
   *      considered to be "parents".
   */
  .categoryPageParentPods {
    margin-bottom: 10px;
  }

  .categoryPod {
    height: auto;
    max-height: 160px;
    width: calc((100% - 8px * 2 - 2px * 3) / 3);
    margin-right: 8px;
    margin-bottom: 8px;
  }

  .categoryPod.podThree {
    margin-right: 0px;
  }

  .categoryPod img {
    width: 100%;
    max-width: 130px;
    height: auto;
  }

  .podText {
    font-size: 12px;
    margin-bottom: 7px;
  }

  .podText div {
    font-size: 12px
  }

  .categoryPage h1 {
    border: 0;
    background-color: #fff;
  }

  .categoryParentProductList .products {
    display: none;
  }

  .categoryParentProductList .owl-wrapper-full {
    margin: 8px 0 30px 0;
  }

  .subCats {
    margin-bottom: 3px;
  }

  .subCat ul {
    margin-left: 0;
  }

  .subCat ul li {
    margin: 0 5px 0 0;
    width: 45%;
  }

  .subCat:first-child {
    margin-top: -10px;
  }

  /* Child Category Page */

  .categoryPage h1 {
    font-size: 24px;
    padding-bottom: 0;
    margin: 10px 0 8px;
    text-align: center;
    color: #171816;
  }

  .productList:not(.product-recommendations-container) {
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    float: left;
    overflow-x: hidden;
  }

  #desktop-sortBy {
    display: none;
  }

  .productList .count {
    display: none;
  }

  .productList .products {
    margin: 5px auto 0;
    overflow: hidden !important;
    padding: 0 !important;
    width: 100%;
  }

  .productList .products {
    display: flex;
    flex-wrap: wrap;
  }

  .productList .products li.grid_2 {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    width: calc(50% - 20px);
    border: none;
    height: auto;
    padding-bottom: 10px;
  }

  .productList .products li.grid_2 a img {
    aspect-ratio: 1/1;
    width: 100%;
    height: auto;
    border: 1px solid #ddd;
  }

  .productList ~ .navBar#navBarBottom {
    width: calc(100% - 20px) !important;
    text-align: center;
    border-top: 1px dotted #ddd;
    margin: 0 10px 10px 10px !important;
    padding: 20px 0 0;
    clear: both;
  }

  /* Child Category Page - Filter Column */

  form.filters {
    padding-bottom: 0;
    margin: 0;
  }

  div.mobile-filters {
    display: block;
    margin: 10px 15px 0;
    height: 42px;
  }

  span.mobile-sort-container {
    position: relative;
    width: 67%;
    display: inline-block;
  }

  div.mobile-filters span #mobile-sort-label {
    position: absolute;
    box-sizing: border-box;
    cursor: default;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: center;
    display: initial;
  }

  select#mobile-sort {
    box-sizing: border-box;
    height: 43px;
    opacity: 0.99;
    width: 100%;
    padding: 0px;
    color: rgba(0, 0, 0, 0) !important;
    background-color: rgba(0, 0, 0, 0) !important;
    border: 1px solid #ddd;
    border-radius: 0;
    -webkit-appearance: none;
  }

  .sort-header-mobile,
  .filter-header-mobile {
    font: 14px var(--font-sans-serif);
    color: #333;
    line-height: 18px;
    width: 49%;
    text-align: center;
    display: inline-block;
    -webkit-appearance: none;
    background: none;
    background-color: #fff;
    padding: 14px 0 10px 0;
  }

  .sort-header-mobile {
    width: 100%;
    border: none;
  }

  .filter-header-mobile {
    width: 30%;
    float: right;
    border: 1px solid #ddd;
    margin-top: 0px;
  }

  .sort-header-mobile #mobile-sort-label-selected {
    text-transform: capitalize;
    font-size: 14px;
    border: none;
  }

  .filters-title {
    position: fixed;
    top: 0;
    right: 0;
    background-color: #e2d9c5;
    display: none;
    width: 80%;
    z-index: 2001;
    min-height: 100%;
    max-height: 100%;
    overflow-y: auto;
    min-width: 285px;
  }

  .desktop-filters {
    display: none;
  }

  .mobile-filter-panel {
    display: block;
    border-bottom: 1px solid #171816;
    margin: 0 10px;
    padding: 20px 0 10px 0;
  }

  .mobile-filter-panel .mobile-filter-list li button {
    -webkit-appearance: none;
    border: 0;
    background: none;
    margin-bottom: 5px;
    text-align: left;
  }

  .filter-panel-title {
    font: 22px var(--font-serif);
    font-weight: 100;
    color: #000;
    line-height: 33px;
    display: initial;
    padding-left: 10px;
  }

  .filter-panel-count.empty,
  .filter-panel-count {
    background-color: #e2d9c5;
  }

  .filter-panel-buttons {
    float: right;
  }

  .filter-panel-buttons button {
    text-align: center;
    padding: 0 15px;
    min-height: 33px;
    border: 0;
    font: 12px var(--font-sans-serif);
    border-radius: 3px;
    color: #FFF;
  }

  .filter-panel-reset-button {
    margin-right: 5px;
    background: none;
    color: #171816 !important;
    text-decoration: underline;
  }

  .filter-panel-reset-button:disabled {
    opacity: 0;
  }

  .filter-panel-done-button {
    background-color: #5D604B;
  }

  .filter-panel-list {
    display: none;
    border-top: 1px solid #171816;
    margin-top: 20px;
    padding: 19px 0 0 3px;
  }

  .filter-panel-list li {
    margin-bottom: 4px;
  }

  .filter-panel-list li:last-child {
    margin-bottom: 0;
  }

  .filter-panel-list span.value {
    font: 16px var(--font-sans-serif);
    color: #171816;
    text-transform: uppercase;
  }

  .filter-panel-list span.remove img {
    float: left;
    margin: -2px 6px 0 0;
  }

  .facet-widget .count {
    display: inline-block;
    padding-left: 5px;
    color: #000 !important;
    display: none;
  }

  ul.rollup {
    overflow: hidden;
  }

  #filters-backpanel,
  #address-backpanel {
    display: none;
    height: 100%;
    width: 100%;
    position: fixed;
    opacity: 0.5;
    top: 0;
    left: 0;
    background: #000;
    z-index: 2000;
  }

  .facet-widget.facet-collapse,
  .facet-widget {
    background-color: #e2d9c5;
    margin: 0 14px 0 10px;
    padding: 1px 10px;
    border-bottom: 1px solid #171816 !important;
    float: unset !important;
  }

  .facet-widget.facet-collapse:last-child {
    border: none;
  }

  .facet-widget h3.facet-title button {
    width: 100% !important;
    display: block !important;
    padding-right: 0 !important;
    font-size: 17px !important;
  }

  .facet-widget .facet-title::after{
    float: right;
    font-size: 22px;
    margin: -37px 7px 0 0 !important;
  }

  .facet-widget ul li {
    font-size: 16px;
    margin: 9px 0 !important;
    padding-left: 15px;
  }

  .facet-widget li.facet-value label input {
    padding: 9px !important;
    margin: -3px 14px 4px 2px !important;
  }
  
  .facet-widget li label > input:checked + span::before {
    left: 8px !important;
    top: -3px !important;
    width: 8px !important;
    height: 15px !important;
  }

  div.breadcrumbs {
    display: block;
    margin: 0 10px 5px 10px;
    border: 1px solid #ddd;
    border-top: 0;
    width: auto;
    padding: 10px 0 0;
  }

  div.breadcrumbs h3,
  div.breadcrumbs h4,
  div.breadcrumbs .trail {
    margin-left: 10px;
    background-color: #fff;
  }

  div.breadcrumbs .breadcrumb {
    width: auto;
    padding: 3px 15px 5px 0;
  }

  button.clear-all.primaryButton {
    background-color: #333;
  }


  /* Category & Nextopia Pages - RR Container */

  body.category .productList.pr-recommendations .products li.grid_2,
  body.search .productList.pr-recommendations .products li.grid_2 {
    width: 151px;
    height: auto;
    border-top: none;
  }

  /* Product Page */

  div.product {
    width: 100%;
  }

  .productPage #addErrorMessage {
    font-size: 14px;
    margin: 15px 0 5px;
  }

  .productPage .mainImage {
    width: 100%;
    height: 100%;
    margin-top: 0;
  }

  .productPage .item-details .box {
    padding: 0;
  }

  body.product.mobile .productPage .personalize-button {
    margin-bottom: 5px !important;
  }

  body.product.mobile .photo-upload #addToCart.ng-invalid input.checkout {
    margin-top: 0 !important;
  }

  .productPage .prodInfoAccord {
    display: block;
    margin: 15px 0;
  }

  .prodInfoAccord .columnHead {
    padding: 20px 10px 15px;
    border: none;
    border-top: 1px solid #ccc;
    background: #fff;
    color: #000;
    text-transform: uppercase;
    font: 16px var(--font-sans-serif);
    font-weight: 100;
    width: 100%;
    text-align: left;
    display: flex;
  }

  .prodInfoAccord .subMenuSubItems {
    padding: 0 10px;
  }

  .prodInfoAccord .subMenuItems:last-child {
    border-bottom: 1px solid #ccc;
  }

  .prodInfoAccord .columnHead:after {
    margin-left: auto;
    content: "+";
  }

  .prodInfoAccord .subMenuItems.collapse .columnHead:after {
    margin-left: auto;
    content: "-";
  }

  .prodInfoAccord .product-description,
  .prodInfoAccord .area-content {
    padding-left: 5px;
    padding-top: 10px;
    color: #181817;
    font: 12px/1.6em var(--font-sans-serif);
    font-weight: 300;
    text-transform: none;
  }

  .mobile-magic .mz-hint-message:before {
    display: inline-block;
  }

  .mz-zoom-window {
    height: 390px !important;
    border-bottom: 1px solid #CCC;
  }

  .mz-zoom-window .mz-caption:before {
    content: url("../images/v2/layout/icon_hint.gif?auto=webp&quality=50");
    margin-right: 2px;
    vertical-align: middle;
  }

  .mz-zoom-window .mz-caption {
    background: none;
    color: #000;
    text-transform: uppercase;
    font: 13px var(--font-sans-serif);
    font-weight: 600;
    padding-bottom: 3px;
  }

  .productPage .picviewer img {
    height: auto;
    width: 100%;
    margin: 0;
  }

  .productPage .skuTitle .product-name {
    display: inline-block;
    font-size: 22px;
    line-height: 30px;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 5px;
    width: 100%;
    text-align: center;
  }

  .productPage .mobileDetails {
    display: block;
    width: 100%;
    text-align: center;
  }

  .productPage .mobileSku {
    display: block;
    margin: 10px 0 -7px 0;
    font-size: 12px;
  }

  .productPage a.MagicZoom {
    /* avoid a content shift */
    min-height: 300px;
  }

  .productPage .mobileDetails .prices {
    font-weight: 400;
    margin: 6px 0 0;
    display: inline-block;
    background-color: #fff;
  }

  .productPage .mobileDetails .prices,
  .productPage .mobileDetails .prices .yourPriceProduct {
    font: 18px var(--font-serif) !important;
    font-weight: 400;
    margin: 0;
    display: inline-block;
    background-color: #fff;
  }

  .productPage .mobileDetails .prices strong {
    font-weight: 500;
  }

  .productPage .mobileDetails .free-shipping-label {
    margin-bottom: 0;
    padding-bottom: 0;
    background-color: #fff;
    display: block;
    text-align: center;
    width: 100%;
  }

  .productPage .mobileDetails .prices .yourPriceProduct {
    color: #000;
    margin: 0 0 3px;
    font-size: 12px;
    text-transform: uppercase;
    background-color: #fff;
  }

  .productPage .mobileDetails .prices .salePrice {
    margin-bottom: 3px;
    padding: 4px 2px 2px;
    height: 18px;
    font: 15px var(--font-sans-serif);
    color: #fff;
    background-color: #ff6840;
  }

  .productPage .mobileDetails .prices .regularPrice,
  .productPage .mobileDetails .prices .price {
    display: inline-block;
  }

  .productPage .mobileDetails .prices .regularPrice span {
    color: #757575;
    background-color: #fff;
  }

  .product-delivery {
    display: none;
  }

  .product-delivery .delivery-date.selected,
  .product-delivery .delivery-date.parent {
    display: block;
  }

  .productPage ul.swagOptions,
  /*.productPage div.cross-sell h3,*/
  /*.productPage .cross-sell .label,
  .productPage .cross-sell .name,
  .productPage .cross-sell .price,
  .productPage .cross-sell .regularPrice,
  .productPage .cross-sell .salePrice,*/
  span.requiredField,
  .product li#navTwo {
    display: none;
  }

  .productPage .area-title {
    font: 600 22px var(--font-sans-serif);
  }

  .productPage .product-info-tabs {
    display: none;
  }

  #pr-also-bought-magicscroll {
    height: var(--pr-height-override);
  }

  body.product #tabs .cross-sell-container {
    margin-bottom: 0px;
  }

  body.product .pr-also-bought-container {
    display: block;
    float: none;
    position: inherit;
    margin: 0;
    top: auto;
    clear: both;
    width: 100%;
  }

  body.product .pr-also-bought-container h2 {
    font: 36px var(--font-script);
    font-weight: 300;
    color: var(--dark-green);
    text-align: center;
    margin: 10px 0 12px 0;
    width: 100%;
   }

  body.product .pr-also-bought-container ul li {
    margin: 0 10px;
    border: 0;
    width: auto;
    width: calc(100%);
  }

  body.product .pr-also-bought-container a {
    color: #000;
  }

  body.product .pr-also-bought-container .image {
    display: block;
    text-align: left;
    font-size: 12px;
  }

  body.product .pr-also-bought-container img {
    width: 100%;
    height: auto;
  }

  body.product .pr-also-bought-container .label {
    color: #999;
    text-decoration: none;
    font: 12px/1.1em var(--font-sans-serif);
    padding: 5px 5px 3px 0;
    text-transform: uppercase;
    width: 136px;
  }

  body.product .pr-also-bought-container .label .font {
    font-size: 12px !important;
    line-height: .99em;
  }

  body.product .pr-also-bought-container .name {
    margin: 5px 10px 0 5px;
  }

  body.product .pr-also-bought-container .regularPrice {
    color: #999;
  }

  body.product .pr-also-bought-container .price {
    float: left;
    padding: 3px 3px 3px 1px;
    font-size: 12px;
  }

  .mobile.product .description.truncate .product-description {
    overflow: hidden;
    height: 45px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .mobile.product .description .product-description {
    display: inline-block;
    margin-top: 0;
  }

  .mobile.product .description::after {
    content: '« Less';
    font-weight: bold;
    font-size: 14px;
    margin: -3px 0 12px;
    display: inline-block;
  }

  .mobile.product .description.truncate::after {
    content: 'Read More »';
    font-weight: bold;
    font-size: 14px;
    margin: 8px 0 12px;
    display: inline-block;
  }

  .productPage .description p span {
    width: 100%;
  }

  body.product .as-seen-in {
    padding: 10px 0;
  }

  body.product .as-seen-in  .img-desktop{
    display: none;
  }

  body.product .as-seen-in .img-mobile {
    display: block;
    width: 100%;
  }

  .product .mobileTabHead {
    width: 100%;
    display: block;
  }

  .product .mobileTabHead {
    font: 13px var(--font-sans-serif);
    font-weight: 600;
    text-transform: uppercase;
    background: #000;
    color: #fff;
    text-align: center;
    padding: 8px 0 7px;
    margin-bottom: 10px;
  }

  .productPage .cross-sell ul {
    width: 100%;
    margin-bottom: 5px;
  }

  .productPage .cross-sell {
    margin-bottom: -10px;
  }

  .productPage .cross-sell ul li {
    width: 33%;
    padding: 0;
  }

  .productPage .cross-sell .image img {
    width: 100%;
    height: auto;
  }

  .productPage .sku {
    background-color: #FFF;
    margin: 0 auto;
    width: 100%;
    text-align: center;
  }

  .productPage .product-details-grid .sku {
    display: none;
  }

  .productPage .product-details-grid .reviewsTop {
    display: none;
  }

  .productPage .product-details-grid .skuTitle {
    display: none;
  }

  .reviewsTop {
    margin: 6px auto 6px;
    width: fit-content;
    padding-right: 75px;
  }

  .productPage .reviewsTop #stars {
    margin-top: 2px;
    height: 22px;
  }

   .productPage .reviewsTop #stars {
    margin-top: 2px;
    height: 22px;
    width: 100px;
  }

  .productPage div.price-label {
    float: right;
    margin-bottom: 15px;
    margin-top: -32px;
  }

  .productPage div.price-label {
    float: unset;
    height: unset;
    background-color: #e3d9c5;
    margin: 10px 0;
  }

  .productPage div.price-label p font {
    margin-top: -20px;
  }

  .productPage div.price-label p font {
    float: unset;
    background-color: #e3d9c5;
    font-size: 16px;
    line-break: initial;
  }

  body.product div.productPage div.details {
    display: none;
  }

  .productPage .mobileFreeShipping {
    margin-top: 4px;
    color: #000;
    font-family: var(--font-sans-serif);
    font-weight: bold;
  }

  .productPage .mobileCouponCode {
    color: #FE00D8;
    margin-top: 3px;
    font: 13px var(--font-sans-serif);
    font-weight: 600;
  }

  .productPage .mobileHolidayShipping {
    display: block;
    font-weight: bold;
  }

  .productPage .variation {
    margin-right: 0;
    margin-bottom: 10px
  }

  .productPage .variation,
  .productPage .variation label,
  .productPage .variation select {
    width: 100% !important;
    background-color: #fff;
    text-transform: none;
    font-size: 16px !important;
    color: #000 !important;
  }

  .mobile.product .productPage .variation,
  .mobile.product .productPage .variation label {
    width: 100% !important;
    background-color: #fff;
    text-transform: none;
    font-size: 14px !important;
  }

  .mobile.product .productPage .variation select {
    width: 100% !important;
    background-color: #fff;
    text-transform: none;
    font-size: 16px !important;
    background-color: #fff;
    color: #333;
    border-radius: 2px;
  }

  .mobile.product .productPage .variation,
  .mobile.product .productPage .variation label {
    width: 100% !important;
    background-color: #fff;
    text-transform: none;
    font-size: 14px !important;
  }

  .mobile.product .productPage .variation select {
    width: 100% !important;
    background-color: #fff;
    text-transform: none;
    font-size: 16px !important;
    background-color: #fff;
    color: #333;
    border-radius: 2px;
  }

  .productPage .variation table select {
    margin-top: 5px;
    width: 100%;
  }

  .mobile.product .productPage .variation {
    margin: 10px 0 0 -10px !important;
    width: calc(100% + 20px) !important;
    background: #fff;
    height: auto;
    padding: 5px 10px 0;
  }

  .mobile.product .productPage .variation .label {
    background: #fff;
    text-transform: none;
    font-size: 16px;
  }

  .productPage .product-addon-container {
    margin: 0 0 10px !important;
  }

  .productPage .product-addon label strong {
    font: 12px var(--font-sans-serif);
    font-weight: 600;
  }

  .productPage .product-addon label {
    font: 12px var(--font-sans-serif);
  }

  
  .productPage .personalize-button {
    width: auto;
    font-size: 22px;
    padding: 12px;
    margin: 10px 0 20px;
  }

  .productPage .photo .input.success {
    margin: 12px 0 0 0 !important;
  }

  .productPage .photo-button {
    width: 100%;
  }

   .productPage .photo-button {
    padding: 10px 0 !important;
  }

  .productPage span.personalizationRequired {
    font-weight: bold;
    color: #990000;
  }

  .productPage img.confirmCustomization {
    float: right;
    margin: 0 20px 0 -280px;
  }

  .productPage .variation table select {
    margin-top: 5px;
    width: 100%;
  }

  .embellish-preview.productPage ul.alternateImages {
    margin-top: -5px;
  }

  /* Write A Review Page */

  .review-product .search,
  .review-product img.item,
  .review-product a.return,
  .requirednotice {
    display: none;
  }

  iframe#submitReviewIframe {
    margin-top: -15px;
    width: 100%;
  }

  .review-product h1 {
    margin-top: -35px;
    margin-right: 10px;
    width: 100%;
    font-size: 18px;
  }

  .review-product h1 strong {
    line-height: 1em;
    font-size: 28px;
    width: 100%;
  }


  /* Cart */

  body.cart div.makeItSpecial {
    background: none;
  }

  body.cart div.makeItSpecial .makeItSpecialHeader {
    height: auto;
    border-top: 1px solid #ddd;
    padding-top: 5px;
  }

  body.cart div.makeItSpecial form {
    width: auto;
  }

  body.cart div.makeItSpecial .makeItSpecialHeader div.expand {
    margin: -15px 0 0 0;
  }

  body.cart div.makeItSpecial div.grid_3 {
    display: inline-block;
    margin: 0 auto;
    width: 100% !important;
  }

  body.cart .makeItSpecial .customizations input {
    width: 43% !important;
  }

  body.cart .makeItSpecial form.makeItSpecialForm .pickfont .value {
    width: 120px;
  }

  body.cart .makeItSpecial form.makeItSpecialForm .pickfont input[type=radio]:checked~.value {
    width: 118px;
  }

  body.cart .mobileRefCode,
  body.cart .mobileSearch,
  body.cart .categoryBannerMobile {
    display: none;
  }

  body.cart div.price-label font {
    margin: 0 -10px 0 0;
  }

  body.cart div.desc div.title {
    width: 100%;
  }

  body.cart .makeItSpecial .customizations {
    margin-top: 0;
    width: 100%;
  }

  body.cart div.desc div.extra div:first-child label {
    width: 100%;
  }

  body.cart .makeItSpecial .primaryButton.checkout {
    margin-left: 0;
    width: 100%;
  }

  body.cart ul.cartHead,
  body.cart div.price,
  body.cart span.giftMsgFree,
  body.cart .desktopCartHead {
    display: none;
  }

  body.cart .giftWrap~.qty {
    display: none !important;
  }

  body.cart .giftWrap~.total {
    display: none !important;
  }

  body.cart div.cart-line-items {
    clear: both;
    width: 100%;
  }

  body.cart div.cart-order-summary {
    float: left;
    width: 92%;
    margin: 0 auto 10px auto;
    padding-top: 10px;
  }

  body.cart div.cart-order-promo {
    width: 92%;
    margin: 0 auto 15px auto;
    float: left;
    height: auto;
  }

  body.cart div.cart-order-promo.open {
    margin-bottom: 14px;
  }

  body.cart div.cart-order-summary div.subtotal-lines,
  body.cart div.cart-order-summary div.total-lines {
    float: none;
  }

  body.cart div.total-lines ul,
  body.cart div.subtotal-lines ul {
    float: none;
  }

  body.cart div.total-lines li,
  body.cart div.subtotal-lines li {
    float: none;
    display: inline-block;
    width: 100%;
  }

  body.cart div.cart-order-summary>div {
    width: 92% !important;
    margin: 0 auto !important;
  }

  body.cart ul.cartBody {
    border-bottom: 0;
  }

  body.cart input.add-rush-fee {
    display: inline-block !important;
  }

  body.cart div.image,
  body.cart div.desc {
    float: left;
    display: block;
  }

  body.cart div.image {
    max-width: 33%;
    width: 33%;
  }

  body.cart div.desc {
    width: 62%;
    margin-right: 0;
  }

  body.cart div.grid_2.qty,
  body.cart div.grid_2.total {
    display: inline-block;
    padding-left: 33%;
    text-align: left;
    margin: 0 10px;
  }

  body.cart div.grid_2.total {
    margin-top: 14px;
  }

  body.cart ul.cartBody li {
    width: 100%;
    padding: 15px 0;
  }

  body.cart div.grid_2.qty {
    margin-bottom: 15px;
    margin-top:20px;
  }

  body.cart ul.cartBody > li input[type="hidden"] + label:first-of-type {
    margin-top: 0;
  }

  body.cart div.grid_2.qty[data-removable="0"][data-updatable="0"] {
    display: none;
  }

  body.cart div.image img.cartSKU {
    max-width: 100%;
  }

  body.cart div.qty[data-removable="0"] div {
    display: none;
  }

  body.cart div.qty input[type=text] {
    margin-left: 0;
    padding: 2px 2px 2px 5px;
  }

  body.cart div.freeMsgs {
    width: 100%;
    margin-top: 40px;
    padding-top: 7px;
    font: 14px var(--font-sans-serif);
    font-weight: 500;
    text-align: center;
    color: #000;
    margin: 10px 0 0 0;
    padding: 13px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    font-size: 15px;
    height: unset;
  }

  body.cart div.freeMsgs .freeMsgs1,
  body.cart div.freeMsgs .freeMsgs2 {
    height: auto;
  }

  body.cart div.giftWrap {
    margin-bottom: 10px;
  }

  body.cart div.desc img {
    max-width: 60px;
    max-height: 60px;
  }

  body.cart div.desc p {
    margin-top: 0;
  }

  body.cart div.desc #order_d_card_type {
    width: 102%;
  }

  body.cart div.desc textarea {
    width: 100%;
  }

  body.cart div.cart-order-summary div.summary-header {
    padding-bottom: 9px;
  }

  body.cart div.discounts {
    float: left;
  }

  body.cart div.desc input.counter {
    float: right;
    margin-right: -8px;
  }

  body.cart div.cart-order-summary div.checkout-buttons {
    margin: 0    !important;
    width:  100% !important;
  }

  body.cart .checkout-buttons ul {
    margin: 15px 0 0 0;
    display: inline-block;
    width: 100%;
    padding: 0;
  }

  body.cart .checkout-buttons li {
    width:  100%;
    margin: 5px 0;
  }

  body.cart .checkout-buttons form>input {
    width: 100% !important;
  }

  body.cart .checkout-buttons li input {
    width: 100% !important;
  }

  body.cart .checkout-buttons li:nth-child(2) {
    display: none;
  }

  body.cart .checkout-buttons .checkout.primaryButton {
    height: 45px;
    margin: 0 !important;
    padding: 0 35px !important;
    font-size: 14px !important;
  }

  body.cart div.promo-input input {
    height: 33px;
  }

  body.cart .promo-input input[type=text] {
    font-size: 16px;
  }

  body.cart div.desc #gift_card_type {
    width: 100%;
  }

  body.cart img.cross-sell-header,
  body.cart .cross-sell-container,
  body.cart .cross-sell-container .cross-sell ul {
    width: 100%;
  }

  body.cart div.owl {
    margin-bottom: -30px;
  }

  body.cart .cross-sell-container .cross-sell ul {
    margin-bottom: 5px;
  }

  body.cart .cross-sell-container .cross-sell ul li {
    width: 48%;
    padding: 0;
  }

  body.cart .cross-sell-container .cross-sell ul li:nth-child(n+3) {
    display: none;
  }

  body.cart .cross-sell-container .cross-sell ul li img {
    width: 100%;
    height: auto;
  }

  body.cart .owl-theme .owl-controls {
    margin: 3px 0 20px !important;
  }

  body.cart div.discounts {
    width: 100%;
  }

  body.cart .continueShopping,
  a.continueShopping {
    width: 98%;
    margin: -5px 0 10px !important;
    padding-bottom: 23px;
  }

  body.cart .continueShopping:hover,
  a.continueShopping:hover {
    background: #000;
  }

  div.magOffer .grid_1 {
    width: 28%;
    display: inline-block;
  }

  div.magOffer .grid_1 img {
    height: 114px;
    width: 80px;
  }

  div.magOffer .grid_6 {
    width: 69%;
    display: inline-block;
  }

  /* My Account */

  body.mobile.account .messages {
    margin: 10px 0 15px 10px;
  }

  body.mobile.account div.account h1 {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  body.mobile.account ul.account-tabs {
    margin: 0;
    width: 100%;
  }

  body.mobile.account ul.account-tabs li {
    display: block;
  }

  body.mobile.account .account-nav,
  body.mobile.account .account-tabs .account-tab-subheader,
  body.mobile.account .account-tabs .account-tab-content {
    display: none;
  }

  body.mobile.account .account-tabs h2 {
    color: #555;
    font-weight: normal;
    padding-top: 12px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ccc;
    font-size: 18px;
  }

  body.mobile.account ul.account-tabs li > h2:after {
    content: '+';
    float: right;
    margin-right: 5px;
  }

  body.mobile.account div.account[data-active-widget="details"] li.details > h2:after,
  body.mobile.account div.account[data-active-widget="payments"] li.payments > h2:after,
  body.mobile.account div.account[data-active-widget="addresses"] li.addresses > h2:after,
  body.mobile.account div.account[data-active-widget="orders"] li.orders > h2:after   {
    content: '-';
    margin-right: 8px;
  }

  body.mobile.account div.account[data-active-widget="details"] li.details h2,
  body.mobile.account div.account[data-active-widget="payments"] li.payments h2,
  body.mobile.account div.account[data-active-widget="addresses"] li.addresses h2,
  body.mobile.account div.account[data-active-widget="orders"] li.orders h2 {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 5px;
  }

  body.mobile.account div.account[data-active-widget="details"] li.details,
  body.mobile.account div.account[data-active-widget="payments"] li.payments,
  body.mobile.account div.account[data-active-widget="addresses"] li.addresses,
  body.mobile.account div.account[data-active-widget="orders"] li.orders {
    padding-bottom: 5px;
    border-bottom: 1px solid #ccc;
  }

  body.mobile.account div.account[data-active-widget="details"] li.details div,
  body.mobile.account div.account[data-active-widget="payments"] li.payments > div,
  body.mobile.account div.account[data-active-widget="addresses"] li.addresses div,
  body.mobile.account div.account[data-active-widget="orders"] li.orders div {
    display: block;
  }

  body.mobile.account .account-tabs .account-tab-subheader {
    font-style: italic;
    margin-bottom: 10px;
  }

  body.mobile.account form#account-details label {
    display: block;
    font-size: 16px;
    margin-bottom: 3px;
    width: 100%;
  }

  body.mobile.account form#account-details input {
    display: block;
    font-size: 16px;
    width: calc(100% - 12px);
    margin-bottom: 20px;
  }

  body.mobile.account form#account-details select {
    display: block;
    float: left;
    width: calc(50% - 3px);
    margin-right: 6px;
    margin-bottom: 20px;
    font-size: 16px;
  }

  body.mobile.account form#account-details select:last-of-type {
    margin-right: 0;
  }

  body.mobile.account form#account-details input[type="button"] {
    width: 100%;
  }

  body.mobile.account form#account-details a.account-details-mailing-list {
    display: block;
    font-size: 14px;
    text-decoration: underline;
    font-weight: bold;
    margin-bottom: 20px;
  }

  body.mobile.account dl.address dl dt {
    text-align: right;
    float: left;
    clear: both;
  }

  body.mobile.account div.account-view {
    width: 100%;
    overflow: hidden;
  }

  body.mobile.account dl.billing.address,
  body.mobile.account dl.shipping.address {
    display: block;
    width: calc(100% - 2px);
    margin: 0;
  }

  body.mobile.account a.primaryButton {
    width: calc(50% - 10px);
    margin: 10px 5px 0 5px;
    float: left;
  }

  body.mobile.edit form.account-edit {
    width: 100%;
  }

  body.mobile.edit fieldset.address.billing,
  body.mobile.edit fieldset.address.shipping,
  body.mobile.edit div.submit {
    width: 100%;
    margin: 0;
  }

  body.mobile.edit fieldset.address label {
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: center;
    padding-bottom: 5px;
  }

  body.mobile.edit fieldset.address input {
    margin: 5px 5px;
    padding: 5px 5px;
    width: calc(100% - 20px);
  }

  body.mobile.account .account-tabs li.orders .account-tab-content table {
    width: 100%;
    margin-top: 5px;
    border-top: 1px solid #ddd;
    color: #888;
  }

  body.mobile.account .account-tabs li.orders .account-tab-content thead {
    display: none;
  }

  body.mobile.account .account-tabs li.orders .account-tab-content tr {
    display: block;
    position: relative;
    overflow: hidden;
    padding-bottom: 10px;
    border-bottom: 4px double #ddd;
    margin-bottom: 5px;
  }

  body.mobile.account .account-tabs li.orders .account-tab-content tr {
    height: 39px;
  }

  body.mobile.account .account-tabs li.orders .account-tab-content tr:last-child {
    border-bottom: none !important;
    margin-bottom: 0;
  }

  body.mobile.account .account-tabs li.orders .account-tab-content tr.expanded {
    height: auto;
  }

  body.mobile.account .account-tabs li.orders .account-tab-content td {
    display: none;
    width: 100%;
  }

  body.mobile.account .account-tabs li.orders .account-tab-content tr.expanded td {
    display: block;
  }

  body.mobile.account .account-tabs li.orders .account-tab-content .summary,
  body.mobile.account .account-tabs li.orders .account-tab-content .order_number,
  body.mobile.account .account-tabs li.orders .account-tab-content .order_date,
  body.mobile.account .account-tabs li.orders .account-tab-content .order_recipient,
  body.mobile.account .account-tabs li.orders .account-tab-content .order_total,
  body.mobile.account .account-tabs li.orders .account-tab-content .order_tracking {
    padding-top: 0;
  }

  body.mobile.account .account-tabs li.orders .account-tab-content td.order_number {
    display: block;
    position: absolute;
    top: 5px;
    font: 16px var(--font-sans-serif);
    font-weight: 600;
    color: #000;
  }

  body.mobile.account .account-tabs li.orders .account-tab-content td.summary {
    padding-top: 55px;
    padding-bottom: 32px;
    border-bottom: 1px solid #ddd;
  }

  body.mobile.account .account-tabs li.orders .account-tab-content td.order_number:before {
    content: 'ORDER #';
  }

  body.mobile.account .account-tabs li.orders .account-tab-content tr.expanded td.order_number:after {
    content: '-';
    right: 30px;
    top: -2px;
  }

  body.mobile.account .account-tabs li.orders .account-tab-content td.order_number:after {
    content: '+';
    position: absolute;
    right: 10px;
    font-size: 24px;
    top: 4px;
  }

  body.mobile.account .account-tabs li.orders .account-tab-content td.order_date {
    display: block;
    position: absolute;
    top: 25px;
    left: 2px;
    font: 12px var(--font-sans-serif);
    font-weight: 600;
  }

  body.mobile.account .account-tabs li.orders .account-tab-content .order_item .image {
    float: left;
  }

  body.mobile.account .account-tabs li.orders .account-tab-content .order_item .info {
    float: left;
    padding: 5px 0 0 10px;
    width: calc(100% - 50px - 10px);
  }

  body.mobile.account .account-tabs li.orders .account-tab-content .clearfix {
    clear: both;
  }

  body.mobile.account .account-tabs li.orders .account-tab-content .order_recipient {
    float: left;
    width: 30%;
    margin-right: 10px;
  }

  body.mobile.account .account-tabs li.orders .account-tab-content .order_recipient:before {
    content: 'RECIPIENT';
  }

  body.mobile.account .account-tabs li.orders .account-tab-content .order_total {
    float: left;
    width: 30%;
  }

  body.mobile.account .account-tabs li.orders .account-tab-content .order_total:before {
    content: 'TOTAL';
  }

  body.mobile.account .account-tabs li.orders .account-tab-content .order_tracking {
    float: left;
    width: 30%;
    word-wrap: break-word;
  }

  body.mobile.account .account-tabs li.orders .account-tab-content .order_tracking:before {
    content: 'TRACKING';
  }

  body.mobile.account .account-tabs li.orders .account-tab-content .order_recipient:before,
  body.mobile.account .account-tabs li.orders .account-tab-content .order_total:before,
  body.mobile.account .account-tabs li.orders .account-tab-content .order_tracking:before {
    display: block;
    margin-top: -20px;
    margin-bottom: 10px;
    color: #000;
    font: 15px var(--font-sans-serif);
    font-weight: 600;
  }

  body.mobile.account .mobile-account-footer {
    display: block;
    font: 20px var(--font-sans-serif);
    font-weight: 300;
    clear: both;
    text-align: center;
    padding-top: 20px;
    font-weight: lighter;
  }

  body.mobile.account .mobile-account-footer span {
    font-weight: 600;
    font-family: var(--font-sans-serif);
  }


  ul.account-tabs div.account-payments-modal,
  body.account .mobile .addresses .popup.active,
  body.account .mobile .addresses .edit-address.active {
    width: calc(96% - 20px);
    top: 5px;
    left: calc((100% - (96%)) / 2);
    padding: 10px;
    max-height: calc(100% - 10px);
    overflow: scroll;
  }

  body.mobile.account ul.account-tabs div.account-payments-modal h2.account-payments-edit-header,
  body.mobile.account ul.account-tabs .account-tab-content tr.new-address-edit td .popup.active h2.account-payments-edit-header,
  body.mobile.account .addresses .edit-address.active #account-edit-modal-title {
    border-bottom: 1px solid #ccc !important;
    padding-bottom: 5px !important;
    margin-top: -3px;
    font-size: 18px;
    color: #4e6a87 !important;
  }

  .account-tabs .account-tab-content table {
    margin-bottom: -5px;
  }
  .account-tabs .account-tab-content thead {
    border-bottom: 2px solid #ccc;
  }

  body.account ul.account-tabs div.account-payments-modal li iframe,
  body.account li.account-payments-edit-addr select#client_pay_addr_id,
  ul.account-tabs div.account-payments-modal li label {
    width: 100%;
  }

  body.account ul.account-tabs div.account-payments-modal li iframe {
    height: 2.4em;
  }

  ul.account-tabs div.account-payments-modal li select {
    width: 100%;
    margin-bottom: 8px;
  }

  ul.account-tabs div.account-payments-modal li.account-payments-edit-button {
    margin-top: 20px;
  }

  .account-tabs li.payments th.client_pay_card_type {
    width: 27%;
  }

  .account-tabs li.payments th.client_pay_number {
    width: 30%;
  }

  .account-tabs li.payments th.client_pay_exp {
    width: 24%;
  }

  .account-tabs li.payments th.client_pay_default {
    width: 20%;
    text-align: center;
  }

  .account-tabs li.payments th.client_pay_edit {
    display: none;
  }

  .account-tabs li.payments td.client_pay_edit {
    position: absolute;
    left: 0;
    margin-top: 25px;
    margin-left: 10px;
  }

  .account-tabs li.payments td.client_pay_default {
    padding-top: 7px;
    padding-bottom: 28px;
  }

  body.account li.account-payments-edit-exp select#client_pay_card_exp_month,
  body.account li.account-payments-edit-exp select#client_pay_card_exp_year {
    width: 100%;
  }

  .account-tabs li.addresses th.client_addr_name {
    width: 35%;
  }

  .account-tabs li.addresses th.client_addr_addr {
    width: 40%;
  }

  .account-tabs li.addresses th.client_addr_default {
    width: 25%;
    text-align: center;
  }

  .account-tabs li.addresses th.client_addr_city,
  .account-tabs li.addresses th.client_addr_state,
  .account-tabs li.addresses th.client_addr_zip {
    display: none;
  }

  .account-tabs li.addresses td.client_addr_default {
    text-align: center;
  }

  .account-tabs li.addresses td span.mobile {
    display: block;
  }

  .account-tabs li.addresses td span[data-field-name="client_addr_addr_1"],
  .account-tabs li.addresses td span[data-field-name="client_addr_addr_2"] {
    display: block;
  }

  .account-tabs li.addresses td span[data-field-name="client_addr_city"],
  .account-tabs li.addresses td span[data-field-name="client_addr_state"] {
    display: inline;
  }

  .account-tabs li.addresses td.desktop,
  .account-tabs li.addresses th.desktop {
    display: none;
  }

  body.mobile.account .addresses fieldset input {
    width: 275px;
    margin-bottom: 10px;
  }

  body.mobile.account div.account[data-active-widget="addresses"] fieldset div.form-row div.error {
    display: inline-block;
    width: 100%;
  }

  body.mobile.account .addresses fieldset input.primaryButton {
    width: 100%;
  }

  body.mobile.account .addresses fieldset label {
    float: none;
    display: block;
    font: 14px var(--font-serif);
  }

  body.mobile.account .account-tabs li.payments a.account-payments-add-button,
  body.mobile.account .account-tabs li.addresses .add-address-button,
  body.mobile.account .account-tabs li.addresses .add-address {
    background: #eee;
    text-align: center;
    padding: 5px 0 8px;
    margin-top: 2px;
    width: 100%;
  }

  body.mobile.account .account-tabs .account-tab-content tr:last-child {
    border-bottom: none !important;
  }

  body.mobile.account .account-tabs li.addresses td.client_addr_name .edit-address,
  body.mobile.account .account-tabs li.addresses td.client_addr_name .remove-address {
    width: 100%;
    margin: 0;
    background: none;
    text-align: left;
  }

  body.mobile.account .account-tabs li.addresses td.client_addr_name .edit-address {
    margin-top: 10px;
  }

  body.mobile.account .account-tabs li.addresses td.client_addr_name .remove-address {
    margin-top: 3px;
    margin-bottom: 10px;
  }

  body.mobile.account .addresses #address-edit-modal {
    transform: unset;
    width: calc( 100% - 1em );
    margin-left: 0.5em;
    height: calc( 100% - 3em );
    max-height: 660px;
    left: 0;
    box-sizing: border-box;
    top: 2em;
  }

  body.mobile.account .addresses .edit-address.active {
    position: unset;
    z-index: 2001;
    width: inherit;
    left: 0;
    top: 50px;
    padding: 0 20px;
    border: none;
    color: #000;
    font-size: 14px;
    background-color: #FFF;
    font: 14px var(--font-serif);
    line-height: 28px;
    overflow: auto;
  }

  body.mobile.account .modal .address-edit-close {
    position: fixed;
    top: 65px;
    z-index: 2002;
  }

  body.mobile.account li.payment-address-edit .form-row input {
    width: calc(100% - 10px);
  }

  body.mobile.account .edit-address input.primaryButton {
    width: 100%;
    margin-top: 0;
  }

  body.reset-password form.account-edit.login {
    width: calc(100% - 20px);
    margin: 20px 0 0 10px;
  }

  body.reset-password form.account-edit fieldset {
    width: 100%;
  }

  body.reset-password form.account-edit fieldset ul {
    padding: 10px;
  }

  body.reset-password form.account-edit input[type=submit] {
    margin: 0 0 10px 10px;
  }

  body.mobile .account-linking {
    width: 95%;
    margin: 0 auto;
  }

  body.mobile .account-linking .link-btn,
  body.mobile .account-linking .skip-linking-link {
    display: block;
    width:   100%;
    text-align: center;
    padding: 10px 0;
    margin: 0 auto;
  }

  body.mobile .account-linking .link-password-input {
    width:      100%;
    text-align: center;
    margin: 0 auto;
  }

  body.mobile .account-linking .link-password-input input {
    width: 95%;
  }

  /* Footer (Legacy) */

  .mobile-hr {
    border-bottom: 1px #ccc solid;
  }

  .glyphicon {
    float: right;
    font-size: 18px;
    font-weight: 600;
    margin-right: 5px;
  }

  .footerContent ul li {
    font-size: 14px;
  }

  div#___ratingbadge_0 {
    display: inline-block !important;
  }

  .orderTrack {
    background-color: #ea80a8;
    width: 100%;
    display: inline-block;
    text-align: center;
    padding: 5px 0;
    font: 15px var(--font-sans-serif);
    font-weight: 500;
  }

  .chatWidgetMobile a img {
    width: 100%;
  }

  a.mobileChat {
    width: 100%;
    background-color: #000;
    display: inline-block;
    margin-top: 15px;
    padding: 7px 0;
    color: white !important;
    font: 18px var(--font-sans-serif);
    font-weight: 500;
  }

  .footerMobile {
    margin: -10px auto 0;
    text-align: center;
    width: 100%;
  }

  .footerMobile a.trackOrder {
    background: #dbdbdb;
    padding: 20px 0 0 0;
    height: 32px;
    width: 110% !important;
    margin-left: -10px;
    margin-top: 0;
    text-align: center;
  }

  .footerMobile a.trackOrder:hover {
    color: #fff;
    background-color: #000;
  }

  .footerMobile ul.socialLinks {
    display: none;
  }

  .footerMobile ul.socialLinks li a {
    width: 20%;
    height: 64px;
    text-align: center;
    margin-right: 0;
    background-size: 50px !important;
  }

  .footerMobile ul.socialLinks li.socialInstagram a {
    background: url("../images/v2/layout_320/icon_social.png?auto=webp&quality=25") no-repeat center 10px;
  }

  .footerMobile ul.socialLinks li.socialFacebook a {
    background: url("../images/v2/layout_320/icon_social.png?auto=webp&quality=25") no-repeat center -48px;
    margin-right: 0;
  }

  .footerMobile ul.socialLinks li.socialPinterest a {
    background: url("../images/v2/layout_320/icon_social.png?auto=webp&quality=25") no-repeat center -107px;
  }

  .footerMobile ul.socialLinks li.socialYoutube a {
    background: url("../images/v2/layout_320/icon_social.png?auto=webp&quality=25") no-repeat center -166px;
  }

  .footerMobile ul.socialLinks li.socialTwitter a {
    background: url("../images/v2/layout_320/icon_social.png?auto=webp&quality=25") no-repeat center -225px;
  }

  .footerMobile ul.socialLinks li.socialInstagram a:hover {
    background-position: center -279px;
  }

  .footerMobile ul.socialLinks li.socialFacebook a:hover {
    background-position: center -338px;
  }

  .footerMobile ul.socialLinks li.socialPinterest a:hover {
    background-position: center -397px;
  }

  .footerMobile ul.socialLinks li.socialYoutube a:hover {
    background-position: center -456px;
  }

  .footerMobile ul.socialLinks li.socialTwitter a:hover {
    background-position: center -514px;
  }

  .footerContent p.copyright {
    margin-top: 3px;
    color: #000;
  }

  /* Track Your Order Page */

  .track-your-order-input {
    width: 95%;
  }

  body.track-your-order .track-your-order-submit {
    width: 99%;
    height: 45px;
    font-size: 14px;
    margin-bottom: 25px;
  }

  /* Contact Us Page */

  .trackOrderBubble {
    display: none;
  }

  body.custsrv ul.contactMethods {
    float: left;
    margin: -40px 0 -20px;
  }

  body.custsrv ul.contactMethods li.contactPhone,
  body.custsrv ul.contactMethods li.contactEmail {
    width: 100%;
    background: none;
    padding-top: 0;
  }

  body.custsrv ul.contactMethods li p {
    font-size: 36px;
  }


  /* Coupon Page */

  .couponCodes p {
    font-size: 12px;
  }

  .couponCodes ul li span.deal {
    width: 100% !important;
  }

  .couponCodes ul li span.deal h3.dealHeader,
  .couponCodes ul li span.deal p.dealTerms {
    padding-left: 15px !important;
  }

  .couponCodes ul li span.deal p.dealTerms {
    width: 90% !important;
  }

  .couponCodes ul li span.dealDetails {
    text-align: left !important;
    float: left !important;
    padding: 0 20px 10px 15px !important;
    width: 90%;
  }

  .couponCodes ul li span.dealDetails a.apply {
   width: 100% !important;
   }

  /* Mailing List /email.html */
  .mailing-list {
  overflow-x: hidden;
  }

  .mailing-list input.primaryButton {
   height: 40px;
   font-size: 16px;
   margin-bottom: 6px;
   }

  .mailing-list img.sign-up {
   display: none;
   }

   #birthmonth, #birthday {
    margin: 5px 0;
    width: 100%;
  }

  /* Inline mini-cart */

  body.mobile .inline-cart {
    top: 49px;
    right: 0;
    width: 100%;
    margin-left: auto;
    padding-right: 7px;
    /* padding for inner div box-shadow */
    padding-bottom: 7px;
  }

  body.mobile .inline-cart .triangle {
    display: none;
    left: auto;
    right: 16px;
  }

  body.mobile .inline-cart .wrap {
    width: 100%;
    min-height: 190px;
    max-height: 290px;
    margin: -49px -7px 0 0;
    box-shadow: 0 0 25px 7px #666;
    background-color: #000;
  }

  body.mobile .inline-cart .emptyCart p {
    letter-spacing: 1px;
  }

  body.mobile .inline-cart .top {
    float: right;
    width: 40px;
    height: 45px;
    margin: 7px 10px 0 0;
  }

  body.mobile .inline-cart .items ul {
    max-height: 190px;
  }

  body.mobile .inline-cart .items ul li {
    margin-left: 10px;
    margin-right: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  body.mobile .inline-cart .items ul li .price {
    padding-right: 5px;
  }

  body.mobile .inline-cart .items ul li .image img {
    width: 54px;
    max-height: 54px;
  }

  body.mobile .inline-cart .items ul li .desc {
    font-size: 92%;
    width: 120px;
    margin-right: 5px;
  }

  body.mobile .inline-cart .items ul li .remove {
    float: right;
    padding-right: 5px;
  }

  body.mobile .inline-cart .items .message {
    display: block;
    margin: 12px 0 0 10px;
    text-align: center;
    color: #fff;
    font: 16px var(--font-sans-serif);
    font-weight: 600;
    float: left;
  }

  body.mobile .inline-cart .bottom {
    width: 93%;
    margin-left: 10px;
    margin-right: 10px;
    padding-top: 4px;
    color: #fff;
    background-color: #000;
    border-top: 1px solid #888;
  }

  body.mobile .inline-cart .bottom .total {
    font-size: 1em;
    color: #fff;
  }

  body.mobile .inline-cart .bottom .primaryButton {
    margin-bottom: 10px;
    border: none;
    background-color: #000;
  }

  body.mobile .inline-cart .bottom .primaryButton.continue-shopping {
    background-color: #5d604b;
  }

  /* Modal cart addons */
  .cart-addons-modal.product-recommendations-container {
    width: calc(100% - 40px) !important;
    left: 10px;
    top: 10px;
    border: 0;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .cart-addons-modal .cart-addons-added-products {
    margin-top: 0;
    margin-bottom: 10px;
  }

  .cart-addons-modal .added-product-details {
    width: 100%;
  }

  .cart-addons-modal .added-product-header {
    width: 100%;
    padding: 0 0 0 40px;
    text-align: left;
    background-position: 5px 5px;
    margin: 30px 0 15px;
    font-size: 24px;
    background-color: #FFF;
  }

  .cart-addons-modal .cart-addons-button {
    /* left renders the same but this is 
       effectively none given the width */
    float: none;
    margin: 0;
    width: 100%;
    font: 14px var(--font-sans-serif);
    font-weight: 600;
  }

  .cart-addons-modal .cart-addons-link {
    float: right;
    margin: 2px 0 -5px;
    width: 100%;
    font-size: 12px;
    text-align: center;
    height: 40px;
  }

  .cart-addons-modal .added-product-image,
  .cart-addons-modal .added-product-qty,
  .cart-addons-modal .added-product-name,
  .cart-addons-modal .added-product-price,
  .cart-addons-modal .added-product-subtotal {
    display: none;
  }

  .cart-addons-modal div.cart-addons-modal-header {
    margin-top: -20px;
    font-size: 28px;
    padding-top: 24px;
    margin-bottom: 10px;
  }

  .cart-addons-modal .addon-list {
    width: 100%;
    overflow: unset;
    overflow-x: auto;
    overflow-y: overlay;
    white-space: nowrap;
    position: relative;
    margin-bottom: -100px;
    padding-bottom: 0;
  }

  .cart-addons-modal .cart-addon {
    width: calc(100% / 2.8);
    margin: 0;
    float: none;
    display: inline-block;
    vertical-align: top;
    padding: 5px;
  }

  .cart-addons-modal .cart-addon a {
    display: block;
    width: 100%;
    margin: 0 auto;
  }

  .cart-addons-modal .cart-addon-name,
  .cart-addons-modal .cart-addon-price {
    text-align: left;
    margin-bottom: 5px;
    white-space: normal;
    font-size: 12px;
  }

  #scroll-to-top {
    opacity: 0;
    width: 50px;
    height: 50px;
    background-color: #222;
    position: fixed;
    right: 25px;
    bottom: 25px;
    border-radius: 25%;
    text-align: center;
    line-height: 44px;
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    transition: all .8s ease-in-out;
    -webkit-transition: all .8s ease-in-out;
    -moz-transition: all .8s ease-in-out;
    -o-transition: all .8s ease-in-out;
    z-index: 1;
  }

  #scroll-to-top.visible {
    opacity: 0.6;
  }

  .productPage ul.alternateImages:not(.previewer) {
    display: table;
    margin: 0 auto 7px auto;
  }

  .productPage ul.alternateImages.mz-hide:not(.previewer) {
    display: none;
  }

  .productPage ul.alternateImages:not(.previewer) li {
    display: table-cell;
    height: 10px;
    width: 10px;
  }

  .productPage ul.alternateImages:not(.previewer) li a {
    height: 10px;
    width: 10px;
    background: url("../images/v2/layout/bg_homeSlideshow.jpg?auto=webp&quality=50") top left no-repeat;
  }

  .productPage ul.alternateImages:not(.previewer) li a.mz-thumb-selected {
    background: url("../images/v2/layout/bg_homeSlideshow.jpg?auto=webp&quality=50") -8px 0 no-repeat;
  }

  .productPage ul.alternateImages:not(.previewer) li a img {
    display: none;
  }

  .productPage .skuTitle.no-border {
    margin-top: -9px;
  }

  /* Login for User Account */
  body.login form.login {
    width: calc(100% - 30px);
  }

  body.login form.login input[type=submit],
  body.login form.login input[type=button] {
    margin: 0 auto;
    width: 100%;
    height: 40px;
    font-size: 15px;
    margin-top: 13px;
  }

  body.login form.login ul {
    padding: 0;
  }

  body.login form.login ul li input {
    width: calc(100% - 2px);
    padding: 5px 0;
  }

  body.login .create-account-widget {
    width: 100%;
    padding-top: 0;
  }

  body.login .create-account-widget ul li input {
    margin: 0 0 10px 0;
  }

  body.login .create-account-widget li.account-footer {
    width: 100%;
  }

  .password-strength-meter.meter-on-account-details {
    margin-left: 0;
  }

  .password-strength-meter.meter-on-page {
    margin-left: 0;
  }

  .login-dialog #login-modal {
    padding: .5em 1em;
    padding-top: 0;
  }

  .login-dialog .create-account-widget.non-login-page, .login-dialog .login-widget.non-login-page {
    width: 280px;
  }

  .login-dialog .create-account-legend {
    display: inherit !important;
    margin: 0 auto;
  }

  .login-dialog h2 {
    float: none !important;
  }

  .login-dialog .create-account-widget ul {
    display: inline-grid;
    width: 100%;
  }

  .login-dialog .create-account-widget .account-footer {
    width: 100%;
  }

  .login-dialog .create-account-widget ul li {
    display: block;
  }

  .login-dialog .create-account-widget ul li input{
    display: block;
    margin-left: 0;
    box-sizing: border-box;
  }

  .login-dialog .create-account-widget ul li input:not(.create-account-submit){
    padding: 19px;
  }

  .login-dialog form.login.widget .create-account-widget ul li .error {
    margin-left: 0;
  }

  .login-dialog .create-account-legend {
    font-size: 21px;
    margin-bottom: 10px;
  }

  /* Begin Newsletter Modal */

  div.newsletter-modal-bottom {
    display: none;
  }

  #newsletter-modal-accordian {
    width:100%;
  }

  div.newsletter-modal-mobile {
    display: block;
    position:fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100vw;
    z-index: 100;
    padding: 0;
    margin: 0;
    color: #000;
    background-color: #fff;
  }

  div.newsletter-modal-title {
    color: #fff;
    background-color: #e4d9c5;
    margin:0 !important;
    width:100%;
    padding: 6px 0 !important;
    border: 0;
    border-radius: 0;
  }

  /* disable the focus outline ring on the modal title */
  div.newsletter-modal-title:focus {
    outline: -webkit-focus-ring-color 0 0;
    outline-color: -webkit-focus-ring-color;
    outline-style: auto;
  }

  div.newsletter-modal-title #newsletter-modal-submit-title {
    margin: 3px 0 0 10px;
    border-bottom: 0;
    text-align: left;
    padding-bottom: 0;
  }

  div.newsletter-modal-title > #newsletter-modal-submit-title button {
    font-size: 20px;
  }

  div.newsletter-modal-title > .ui-accordion-header-icon {
    display: none;
  }

  .newsletter-modal-button {
    background-color: black;
    width:100%;
    font-family: var(--font-sans-serif) !important;
    font-weight: 500;
  }

  div.newsletter-modal-body {
    text-align: center;
    padding: 0 10px 0 !important;
    font: 13px var(--font-sans-serif) !important;
    font-weight: 500;
  }

  div.newsletter-modal-body input[type=text] {
    width: 98%;
    padding: 7px 0 7px 5px !important;
    font-family: var(--font-sans-serif);
  }

  div#newsletter-signup-form-mobile,
  div#newsletter-signup-form-mobile input#newsletter-modal-button-mobile {
    width: 100%;
    margin-top: 10px;
    font: 16px var(--font-sans-serif);
  }

  div#newsletter-signup-form-mobile input#newsletter-modal-button-mobile {
    height: 40px;
  }

  button.newsletter-modal-close-mobile {
    display: block;
    height: 28px;
    width: 28px;
    background: none;
    border: none;
    position: absolute;
    top: 10px;
  }

  span.newsletter-open-close {
    position: absolute;
    background-color: #e4d9c5;
    left: 49%;
    top: -8px;
    width: 20px;
    height: 20px;
    text-align: center;
    border-radius: 15px;
  }

  span.newsletter-open-close,
  div.newsletter-modal-title #newsletter-modal-submit-title { color: #000; }

  div.email-thank-you > p {
    font: 13px var(--font-sans-serif) !important;
    font-weight: 500 !important;
    margin-top:15px;
  }

  /* End Newsletter Modal */
  body.product .get-it-by {
    margin-top: 0;
  }

  body.product .ship-it a {
    margin-top: 2px;
    display: block;
    background-color: #fff;
  }

  /* Begin Delivery Date Estimations Modal */
  body.product .delivery-date-table {
    width: 90%;
    height: calc(100% - 40px);
    overflow: scroll;
  }

  body.product .delivery-date-table h2 {
    font-size: 20px;
  }

  body.product .delivery-date-table table,
  body.product .delivery-date-table thead {
    font-size: 16px;
  }
  /* End Delivery Date Estimations Modal */

  /*   Mobile Hover Fix   */
  input[type=button]:hover,
  input[type=submit]:hover,
  .primaryButton:hover {
    background-color: #000;
  }

  /* Product Recommendations MagicScroll Carousel Styling */

  #search-results-pr-container {
    clear: both;
    width: 100%;
  }
  #search-no-results-pr-container,
  .product-recommendations-container {
    clear: both;
    width: 100% !important;
  }

  #cross-sell-container {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }

  #cross-sell-carousel {
    width: 100% !important;
    margin: 0 !important;
  }

  #search-no-results-pr-container p,
  #search-results-pr-container p {
    width: 100%;
    margin: 15px 0 10px;
  }

  #parent-category-carousel {
    margin: 8px 0 30px;
  }

  .product-recommendations-carousel {
    width: calc(100% - 20px) !important;
    margin: 0 10px !important;
  }

  body.product .product-recommendations-carousel {
    width: calc(100%) !important;
    margin: 0 0 !important;
  }

  #cart-addons-modal-carousel {
    width: 100% !important;
    margin: 0 !important;
  }

  .product-recommendations-carousel img {
    height: 120px !important;
    width: 120px !important;
  }

  .product-recommendations-carousel span.customBanner {
    display: none;
  }

  .product-recommendations-container .product-recommendations-carousel span {
    width: calc(100% - 8px);
    margin: 0 4px;
    background-color: #fff;
  }

  .product-recommendations-container .product-recommendations-carousel a {
    display: block;
    height: var(--pr-height-override);
  }

  .product-recommendations-carousel div.item {
    width: calc(100%);
    border: 0;
    margin: 0;
  }

  .product-recommendations-carousel.MagicScroll-horizontal .mcs-item {
    width: calc(100% / 2.5) !important;
  }

  #gift-guide-container {
    margin-top: 25px;
  }

  #search-no-results-pr-container .doubleLines {
    margin: 0 10px;
    /* display: block !important; */
  }

  .cart-addons-modal .doubleLines {
    display: block !important;
  }

  .pr-also-bought-container > .doubleLines:first-child,
  .recommendation-double > .doubleLines:first-child {
    display: block !important;
  }

  .cart-addons-modal {
    width: calc(100% - 20px) !important;
    height: 450px;
    left: 10px;
    top: 10px;
    border: 0;
    overflow-y: auto;
    overflow-x: hidden;
  }

  /* End Product Recommendations MagicScroll Carousel Styling */

  /* Begin No Results Search Page Styling */
  .noResults.grid_12 .doubleLines {
   display: block !important;
  }

  .noResults ul.suggestedTips {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
  }

  .search #search-no-results-products .grid_2 {
    width: 50%;
    margin-right: 0 !important;
  }

  body.search #search-no-results-pr-container {
    float: none;
    margin: 0 !important;
  }

  body.search #search-no-results-pr-container p {
    margin-top: 15px;
  }
  /* End No Results Search Page Styling */

  /* Begin Final Sale Product "See Details" */
  body.product .mobileDetails {
    position: relative;
  }

  body.product .final-sale-details {
    z-index: 100;
    width: 250px;
    top: 30px;
  }
  /* End Final Sale Product "See Details" */
}
/* END OF mobile.css MOBILE CSS */

body.cart div.cartContainer {
  clear: both;
  padding-top: 2px;
  margin-top: 22px;
}

body.cart div.cart-line-items li > .desc {
  width: 66%;
  padding-left: 20px;
}

body.cart form.cart-submit-checkout {
  float: right;
  width: 34%;
  background-color: #F6F4F0;
}

body.cart ul.cartBody > li {
  width: 100%;
}


body.cart ul.cartBody .title {
  font-family: var(--font-sans-serif);
  font-weight: normal;
}

body.cart .cart-line-items .personalizations {
  margin: 0;
}

body.cart .cart-line-items .personalizations .variation,
body.cart .cart-line-items .personalizations .customizations {
  font-size: 14px;
  color: #000;
  margin: 0;
}

body.cart .personalizations-button {
  border: 0;
  background: none;
  text-transform: uppercase;
  font: 12px var(--font-sans-serif);
  font-weight: 600;
  padding: 0;
  margin: 0 0 10px 0;
  border-bottom: 1px solid #000;
  display: block;
  padding-top: 8px;
  cursor: pointer;
}

body.cart .cart-line-items .total .total {
  display: inline;
  margin-left: 10px;
  font: 16px var(--font-sans-serif);
  font-weight: 500;
}

body.cart .cart-line-items .desc > div {
  display: block;
  float: none;
  width: 100%;
  text-align: left;
  padding: 8px 0 8px 0 !important;
  margin:  0;
}

body.cart .cart-line-items .desc > div.qty {
  padding-bottom: 0 !important;
}

body.cart .cart-line-items .desc > div.personalizations {
  margin-top: 0;
  padding-bottom: 0 !important;
}

body.cart input {
  -webkit-appearance: none;
}

body.cart .qty button {
  border: none;
  background-color: #E4D9C5;
  border-radius: 50%;
  font-size: 18px;
  min-height: 22px;
  max-height: 22px;
  min-width: 22px;
  max-width: 22px;
  height: 22px !important;
  width: 22px !important;
  margin: 0 8px;
  padding: 0;
}

body.cart .qty button.increase-quantity:before {
  content: '+';
}

body.cart .qty button.decrease-quantity:before {
  content: '\2013';
}

body.cart li > .desc > .addons {
  margin-top: -8px;
  font-size: 13px;
}

body.cart li > .desc > .addons input[type="checkbox"] {
  vertical-align: baseline;
  transform: scale(1.2);
  margin-right: 6px;
  border: 1px solid #000;
}

body.cart .cart-line-items .addons label strong {
  font-family: var(--font-sans-serif);
  font-weight: 600;
}

body.cart .cart-line-items .desc > div.sum {
  padding-top: 0px !important;
  font: 15px var(--font-sans-serif);
  font-weight: 600;
}

body.cart .cart-line-items ul.cartBody > li {
  border-bottom: 1px solid #000;
}

body.cart form.cart-submit-checkout > div {
  clear: both;
  width: calc(100% - 28px);
  padding: 0;
  margin: 0 14px 10px 14px;
}

body.cart form.cart-submit-checkout > div.cart-order-promo {
  background-color: #E4D9C5;
}

body.cart form.cart-submit-checkout .giftWrap {
  float: none;
  margin-top: 15px;
  max-width: unset;
  background-color: #F6F4F0;
  margin: 0;
  padding: 10px 0 15px 0;
}

body.cart form.cart-submit-checkout .giftWrap a {
  display: block;
  position: relative;
  text-align: left;
  background-color: #F6F4F0;
}

body.cart form.cart-submit-checkout .giftWrap a img {
  max-width: 116px;
}

body.cart form.cart-submit-checkout .giftWrap a span {
  position: absolute;
  top: 50%;
  left: 130px;
  transform: translateY(-50%);
  text-align: center;
  text-transform: uppercase;
  font: 14px var(--font-sans-serif);
  font-weight: 600;
  max-width: calc(100% - 120px);
}

body.cart form.cart-submit-checkout div.gift-message {
  background-color: #E4D9C5;
  margin-bottom: 14px;
}

body.cart form.cart-submit-checkout label.giftMessage {
  padding: 10px 15px 10px 20px;
  color: #000;
  font: 14px var(--font-sans-serif);
  width: 100%;
  margin:  0;
  cursor: pointer;
}

body.cart form.cart-submit-checkout div.gift-message .gift_card_form {
  margin-top: 0;
}

body.cart form.cart-submit-checkout div.gift-message textarea {
  margin: 0 auto;
  display: block;
  width: calc(100% - 24px);
  height: 80px;
}

body.cart form.cart-submit-checkout div.gift-message #gift_card_counter {
  display: block;
  margin: 1px 0 6px 0;
  background: none;
  border: none;
  padding: 0 10px 0 0 !important;
  float: none;
  width: 100%;
  height: unset;
  text-align: right;
}

body.cart form.cart-submit-checkout .personalized-disclaimer {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  text-transform: uppercase;
  font: 12px var(--font-sans-serif);
  font-weight: 500;
  color: #000;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 16px;
  background-color: #F6F4F0;
}

body.cart .cart-order-promo .promo-container {
  padding: 15px;
  width: 100%;
  background-color: #E4D9C5;
}

body.cart .cart-order-promo .promo-container .promo-header .promo-header-text {
  font: 20px var(--font-sans-serif);
  float: left;
  margin-left: 4px;
}

body.cart .cart-order-promo .promo-container .promo-input {
  margin-top: 24px;
}

body.cart .cart-order-promo .promo-container .promo-input input[type="text"] {
  display: block;
  width: 75%;
  border: 1px solid #FFF;
  height: 47px;
  font: 16px var(--font-sans-serif);
  padding: 7px 0 0 10px;
  font-weight: 600;
  text-align: left;
  color: #000;
}

body.cart .cart-order-promo .promo-container .promo-input input[type="submit"] {
  display: block;
  width: 25%;
  margin: 0;
  border: 0;
  height: 47px;
  padding: 7px 0 0;
  font-size: 16px;
}

body.cart #error-coupon-code,
body.cart .cart-order-promo .promo-container .success {
  clear: both;
  font: 16px var(--font-sans-serif);
  font-weight: 500;
}

body.cart #error-coupon-code {
  width: 100%;
  color: #AA0000;
}

body.cart .cart-order-summary li {
  text-align: center;
  display: block;
  padding-bottom: 10px;
}

body.cart .cart-order-summary li > div {
  float: none;
  display: inline;
  font: 18px var(--font-sans-serif);
  font-weight: 600;
  padding-left: 8px;
}

body.cart .cart-order-summary li > div[data-cart-summary="tax"] {
  font: 16px var(--font-sans-serif);
  padding-left: 4px;;
}

body.cart .cart-order-summary .total-lines > ul {
  padding-top: 15px;
}

@media(max-width: 760px) {

  body.cart form.cart-submit-checkout {
    float: none;
    width: 100%;
    background-color: #FFF;
  }

  body.cart .cart-line-items {
    float: none;
  }

  body.cart ul.cartBody {
    font: 16px var(--font-sans-serif);
  }

  body.cart div.total,
  body.cart div.qty,
  body.cart div.addons,
  body.cart div.sum {
    width: 100% !important;
    padding: 0;
    margin:  0;
  }

  body.cart li > .desc > .addons input[type="checkbox"] {
    border: 0.5px solid #000;
    vertical-align: text-top;
    transform: none;
  }

  body.cart form.cart-submit-checkout .personalized-disclaimer,
  body.cart form.cart-submit-checkout .cart-order-summary {
    background-color: #FFF;
  }

  body.cart form.cart-submit-checkout > div {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }

  body.cart div.cart-order-summary .checkout.primaryButton {
    font-size: 18px !important;
  }

  body.cart div.cart-order-summary div.checkout-buttons.checkout-button-floating {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    padding: 16px 10px 0 10px;
    border-top:  1px solid #DEDBD4;
    background-color: #F6F4F0;
  }

  body.cart div.checkout-buttons {
    background-color: #FFF;
  }

  body.cart .continue-shopping {
    display: block;
    padding: 10px 0;
  }

  body.cart .continue-shopping a {
    font: 16px var(--font-sans-serif);
    text-decoration: underline;
    background-color: #FFF;
  }

  body.cart .checkout-button-floating .continue-shopping a {
    background-color: #F6F4F0;
  }

  body.cart form.cart-submit-checkout .giftWrap {
    background: none;
  }

  body.cart form.cart-submit-checkout .giftWrap a {
    background: none;
  }
} /* end cart-redesign mobile */

body.cart label[for="gift_card_message"]:after {
  font-size: 18px;
  float: right;
  margin-right: 10px;
  line-height: 14px;
  margin-top: 3px;
}

body.cart label[for="gift_card_message"][aria-expanded="false"]:after {
  content: '+';
}

body.cart label[for="gift_card_message"][aria-expanded="true"]:after {
  content: '\2013';
}

body.cart .newsletter-modal-bottom,
body.cart .newsletter-modal-mobile {
  display: none;
}

body.cart .customizations .photo-upload .thumbnail {
  float: none;
}

@media (min-width: 761px) {
  .headerBanner {
    display: block !important;
    width: 100%;
  }

  .headerBanner img {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
  }
}
