/**
 * Custom Gutters Mixin
 * This will create custom gutters for localized implentation.
 * Usage: Pass in a new gutter value and this will apply those to child grid classnames.
 *
 * - does not loop through breakpoints
 * - intended to be used in an already-defined media query or child structure
 *
 * param: $number new gutter value, already halved
 * param: $context 'container', 'row'. Used to skip the L1 or L2 classname selectors. Pass as an empty string to only apply to columns.
 * param: $colclassname custom classname to use for columns. Defaults to a generic '.col-' selector
 */
/* --------------------------------
Typography - Fonts
-------------------------------- */
/**
 * Custom Gutters Mixin
 * This will create custom gutters for localized implentation.
 * Usage: Pass in a new gutter value and this will apply those to child grid classnames.
 *
 * - does not loop through breakpoints
 * - intended to be used in an already-defined media query or child structure
 *
 * param: $number new gutter value, already halved
 * param: $context 'container', 'row'. Used to skip the L1 or L2 classname selectors. Pass as an empty string to only apply to columns.
 * param: $colclassname custom classname to use for columns. Defaults to a generic '.col-' selector
 */
/* --------------------------------
Typography - Fonts
-------------------------------- */
.pull-left-xs {
  float: left;
}

.pull-right-xs {
  float: right;
}

@media (min-width: 600px) and (max-width: 1023.98px) {
  .pull-left-sm {
    float: left;
  }
  .pull-right-sm {
    float: right;
  }
}
@media (min-width: 1024px) and (max-width: 1439.98px) {
  .pull-left-md {
    float: left;
  }
  .pull-right-md {
    float: right;
  }
}
@media (min-width: 1440px) and (max-width: 1759.98px) {
  .pull-left-lg {
    float: left;
  }
  .pull-right-lg {
    float: right;
  }
}
@media (min-width: 1760px) {
  .pull-left-xl {
    float: left;
  }
  .pull-right-xl {
    float: right;
  }
}
@media (max-width: 599.98px) {
  .hidden-xs-down {
    display: none !important;
  }
}

@media (max-width: 1023.98px) {
  .hidden-sm-down {
    display: none !important;
  }
}

@media (max-width: 1439.98px) {
  .hidden-md-down {
    display: none !important;
  }
}

@media (max-width: 1759.98px) {
  .hidden-lg-down {
    display: none !important;
  }
}

.hidden-xl-down {
  display: none !important;
}

.row.equal-height > [class^=col] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* stylelint-disable-next-line scss/no-global-function-names */
.swatch-circle-beige {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 2.5em;
  height: 2.5em;
  background: #f5f5dc; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 1.25em;
  display: block;
  position: relative;
}
.swatch-circle-beige.disabled {
  opacity: 0.2;
}

.swatch-filter-beige {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 1.38em;
  height: 1.38em;
  background: #f5f5dc; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 0.69em;
  background-color: #f5f5dc;
  display: block;
  position: relative;
}
.swatch-filter-beige.disabled {
  opacity: 0.2;
}

/* stylelint-disable-next-line scss/no-global-function-names */
.swatch-circle-black {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 2.5em;
  height: 2.5em;
  background: #000; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 1.25em;
  display: block;
  position: relative;
}
.swatch-circle-black.disabled {
  opacity: 0.2;
}

.swatch-filter-black {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 1.38em;
  height: 1.38em;
  background: #000; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 0.69em;
  background-color: #000;
  display: block;
  position: relative;
}
.swatch-filter-black.disabled {
  opacity: 0.2;
}

/* stylelint-disable-next-line scss/no-global-function-names */
.swatch-circle-blue {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 2.5em;
  height: 2.5em;
  background: #0070d2; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 1.25em;
  display: block;
  position: relative;
}
.swatch-circle-blue.disabled {
  opacity: 0.2;
}

.swatch-filter-blue {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 1.38em;
  height: 1.38em;
  background: #0070d2; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 0.69em;
  background-color: #0070d2;
  display: block;
  position: relative;
}
.swatch-filter-blue.disabled {
  opacity: 0.2;
}

/* stylelint-disable-next-line scss/no-global-function-names */
.swatch-circle-brown {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 2.5em;
  height: 2.5em;
  background: #a52a2a; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 1.25em;
  display: block;
  position: relative;
}
.swatch-circle-brown.disabled {
  opacity: 0.2;
}

.swatch-filter-brown {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 1.38em;
  height: 1.38em;
  background: #a52a2a; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 0.69em;
  background-color: #a52a2a;
  display: block;
  position: relative;
}
.swatch-filter-brown.disabled {
  opacity: 0.2;
}

/* stylelint-disable-next-line scss/no-global-function-names */
.swatch-circle-green {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 2.5em;
  height: 2.5em;
  background: #008827; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 1.25em;
  display: block;
  position: relative;
}
.swatch-circle-green.disabled {
  opacity: 0.2;
}

.swatch-filter-green {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 1.38em;
  height: 1.38em;
  background: #008827; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 0.69em;
  background-color: #008827;
  display: block;
  position: relative;
}
.swatch-filter-green.disabled {
  opacity: 0.2;
}

/* stylelint-disable-next-line scss/no-global-function-names */
.swatch-circle-grey {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 2.5em;
  height: 2.5em;
  background: #8f979d; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 1.25em;
  display: block;
  position: relative;
}
.swatch-circle-grey.disabled {
  opacity: 0.2;
}

.swatch-filter-grey {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 1.38em;
  height: 1.38em;
  background: #8f979d; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 0.69em;
  background-color: #8f979d;
  display: block;
  position: relative;
}
.swatch-filter-grey.disabled {
  opacity: 0.2;
}

/* stylelint-disable-next-line scss/no-global-function-names */
.swatch-circle-navy {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 2.5em;
  height: 2.5em;
  background: #000080; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 1.25em;
  display: block;
  position: relative;
}
.swatch-circle-navy.disabled {
  opacity: 0.2;
}

.swatch-filter-navy {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 1.38em;
  height: 1.38em;
  background: #000080; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 0.69em;
  background-color: #000080;
  display: block;
  position: relative;
}
.swatch-filter-navy.disabled {
  opacity: 0.2;
}

/* stylelint-disable-next-line scss/no-global-function-names */
.swatch-circle-orange {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 2.5em;
  height: 2.5em;
  background: #ffa500; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 1.25em;
  display: block;
  position: relative;
}
.swatch-circle-orange.disabled {
  opacity: 0.2;
}

.swatch-filter-orange {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 1.38em;
  height: 1.38em;
  background: #ffa500; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 0.69em;
  background-color: #ffa500;
  display: block;
  position: relative;
}
.swatch-filter-orange.disabled {
  opacity: 0.2;
}

/* stylelint-disable-next-line scss/no-global-function-names */
.swatch-circle-pink {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 2.5em;
  height: 2.5em;
  background: #fe249a; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 1.25em;
  display: block;
  position: relative;
}
.swatch-circle-pink.disabled {
  opacity: 0.2;
}

.swatch-filter-pink {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 1.38em;
  height: 1.38em;
  background: #fe249a; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 0.69em;
  background-color: #fe249a;
  display: block;
  position: relative;
}
.swatch-filter-pink.disabled {
  opacity: 0.2;
}

/* stylelint-disable-next-line scss/no-global-function-names */
.swatch-circle-purple {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 2.5em;
  height: 2.5em;
  background: #800080; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 1.25em;
  display: block;
  position: relative;
}
.swatch-circle-purple.disabled {
  opacity: 0.2;
}

.swatch-filter-purple {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 1.38em;
  height: 1.38em;
  background: #800080; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 0.69em;
  background-color: #800080;
  display: block;
  position: relative;
}
.swatch-filter-purple.disabled {
  opacity: 0.2;
}

/* stylelint-disable-next-line scss/no-global-function-names */
.swatch-circle-red {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 2.5em;
  height: 2.5em;
  background: #f00; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 1.25em;
  display: block;
  position: relative;
}
.swatch-circle-red.disabled {
  opacity: 0.2;
}

.swatch-filter-red {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 1.38em;
  height: 1.38em;
  background: #f00; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 0.69em;
  background-color: #f00;
  display: block;
  position: relative;
}
.swatch-filter-red.disabled {
  opacity: 0.2;
}

/* stylelint-disable-next-line scss/no-global-function-names */
.swatch-circle-white {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 2.5em;
  height: 2.5em;
  background: #fff; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 1.25em;
  display: block;
  position: relative;
}
.swatch-circle-white.disabled {
  opacity: 0.2;
}

.swatch-filter-white {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 1.38em;
  height: 1.38em;
  background: #fff; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 0.69em;
  background-color: #fff;
  display: block;
  position: relative;
}
.swatch-filter-white.disabled {
  opacity: 0.2;
}

/* stylelint-disable-next-line scss/no-global-function-names */
.swatch-circle-yellow {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 2.5em;
  height: 2.5em;
  background: #ff0; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 1.25em;
  display: block;
  position: relative;
}
.swatch-circle-yellow.disabled {
  opacity: 0.2;
}

.swatch-filter-yellow {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 1.38em;
  height: 1.38em;
  background: #ff0; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 0.69em;
  background-color: #ff0;
  display: block;
  position: relative;
}
.swatch-filter-yellow.disabled {
  opacity: 0.2;
}

.swatch-circle-miscellaneous {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, rgb(130, 30, 145)), color-stop(25%, rgb(130, 30, 145)), color-stop(25%, rgb(237, 209, 52)), color-stop(50%, rgb(255, 255, 0)), color-stop(50%, rgb(237, 209, 52)), color-stop(50%, #59ba00), color-stop(76%, #59ba00), color-stop(76%, #111), to(#111)), -webkit-gradient(linear, left bottom, left top, color-stop(0, rgb(14, 92, 209)), color-stop(50%, rgb(14, 92, 209)), color-stop(50%, rgb(226, 11, 11)), to(rgb(226, 11, 11)));
  background: linear-gradient(0deg, rgb(130, 30, 145) 0, rgb(130, 30, 145) 25%, rgb(237, 209, 52) 25%, rgb(255, 255, 0) 50%, rgb(237, 209, 52) 50%, #59ba00 50%, #59ba00 76%, #111 76%, #111 100%), linear-gradient(0deg, rgb(14, 92, 209) 0, rgb(14, 92, 209) 50%, rgb(226, 11, 11) 50%, rgb(226, 11, 11) 100%);
  background-repeat: repeat-y, repeat;
  background-size: 50% 100%, 100% 100%;
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  border-radius: 1.25em;
  display: block;
  height: 2.5em;
  position: relative;
  -webkit-transform: rotate(35deg);
          transform: rotate(35deg);
  width: 2.5em;
}
.swatch-circle-miscellaneous.disabled {
  opacity: 0.2;
}
.swatch-circle-miscellaneous.selected::after {
  -webkit-transform: rotate(-35deg);
          transform: rotate(-35deg);
}

.product-detail .attributes .swatch-circle {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 2.5em;
  height: 2.5em;
  background: #fff; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 1.25em;
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  display: inline-block;
  margin-right: 0.313em;
  position: relative;
}
.product-detail .attributes .swatch-circle.color-value[data-selected=true]::after {
  color: #000;
  content: "\f058";
  display: table-caption;
  font-family: FontAwesome, sans-serif;
  font-size: 1.625em;
  left: 0.295em;
  position: absolute;
}
.product-detail .attributes .swatch-circle.color-value.selected::after {
  background: #fff;
  border-radius: 50%;
  color: #000;
  content: "\f058";
  display: table-caption;
  font-family: FontAwesome, sans-serif;
  font-size: 1.625em;
  height: 0.75em;
  left: 0.31em;
  line-height: 0.8em;
  position: absolute;
  top: 0.35em;
  width: 0.8em;
}
.product-detail .attributes .swatch-circle i.fa-times-circle {
  background: #fff;
  border-radius: 50%;
  height: 0.75em;
  line-height: 0.8em;
  width: 0.8em;
}

.product-detail [disabled] .swatch-circle,
.product-detail .swatch-circle.unselectable {
  cursor: not-allowed;
}
.product-detail [disabled] .swatch-circle.color-value.selected::after,
.product-detail .swatch-circle.unselectable.color-value.selected::after {
  background-color: #495057;
}

.social-container {
  padding-top: 0.9375em;
  text-align: center;
}
.social-container .social-icons {
  text-decoration: none;
  font-size: 1.875em;
  list-style-type: none;
  padding: 0;
  color: #444;
}
@media (max-width: 1439.98px) {
  .social-container .social-icons {
    font-size: 1.5625em;
  }
}
.social-container .social-icons i,
.social-container .social-icons a {
  color: #444;
  padding-right: 0.2em;
}

label.color ~ a:hover {
  text-decoration: none;
}

.description-and-detail {
  margin-top: 2em;
}
@media (max-width: 599.98px) {
  .description-and-detail {
    margin-top: 0;
  }
  .description-and-detail .title {
    font-size: 1.5rem;
    margin-bottom: 0;
    font-family: Dosis, sans-serif;
  }
  .description-and-detail > div:last-child {
    margin-bottom: 1em;
  }
}
@media (min-width: 600px) {
  .description-and-detail .description {
    margin-bottom: 2em;
  }
}
@media (max-width: 599.98px) {
  .description-and-detail .content {
    margin-top: 1em;
  }
}

label.availability {
  padding-right: 0.3125em;
}

@media (min-width: 600px) {
  .product-number-rating {
    border-bottom: 1px solid #ccc;
  }
}
@media (min-width: 1024px) {
  .product-number-rating {
    border-top: 1px solid #ccc;
  }
}
@media (min-width: 600px) and (max-width: 1023.98px) {
  .product-name {
    border-bottom: 1px solid #ccc;
  }
}
@media (min-width: 600px) {
  .product-number-rating .ratings {
    margin-top: 0.625em;
  }
}
@media (max-width: 599.98px) {
  .product-number-rating .ratings {
    background-color: #fff;
    margin-top: -1.875em; /* 30/16 */
    margin-right: -0.9375em; /* 15/16 */
    padding: 0.1875em; /* 3/16 */
  }
}

.product-number {
  color: #ccc;
  font-size: 0.875em;
  padding-bottom: 0.938em;
  padding-top: 0.938em;
}

.promotions {
  font-weight: normal;
  text-align: center;
  height: 85%;
}
.promotions div.collapsible-xl button.callout {
  font-size: 1.25em;
  padding-bottom: 1.25rem;
  padding-top: 1.25rem;
  color: #c00;
}
@media (min-width: 600px) {
  .promotions div.collapsible-xl button.callout {
    font-size: 1.375em;
  }
}
.promotions div.collapsible-xl button.callout::after {
  color: #000;
}

.product-breadcrumb .breadcrumb {
  border-bottom: none;
  margin-left: -1rem;
  margin-bottom: 0;
}
@media (max-width: 1439.98px) {
  .product-breadcrumb .breadcrumb {
    border-top: 1px solid #d0d0d0;
  }
}

.price {
  font-size: 1.5rem;
}

.product-options {
  margin-top: 1.25em;
}

.size-chart .size-chart-collapsible {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.5s;
  transition: max-height 0.5s;
  -webkit-transition-timing-function: cubic-bezier(0, 1, 0, 1);
          transition-timing-function: cubic-bezier(0, 1, 0, 1);
}
.size-chart .size-chart-collapsible.active {
  max-height: 100%;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}

.color-attribute {
  border: none;
  padding: 0;
  background: none;
}

.non-input-label {
  display: block;
  margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
  .attributes {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

@media (max-width: 599.98px) {
  .product-grid {
    padding-top: 0.938em;
  }
  .product-grid .col-6 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.quick-view-dialog {
  max-width: 62.8em;
  /* stylelint-disable-next-line selector-class-pattern */
}
.quick-view-dialog .beenSelected {
  background-color: #979797;
}
.quick-view-dialog .modal-header {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  padding: 1rem 1rem 0.3125rem 0.75rem;
}
@media (min-width: 1024px) {
  .quick-view-dialog .modal-header {
    padding: 1.875rem 1.5625rem 1.5rem 3.125rem;
  }
}
.quick-view-dialog .modal-header .full-pdp-link {
  color: #33788e;
}
.quick-view-dialog .modal-header .close {
  font-size: 2rem;
  line-height: 1.5rem;
  opacity: 1;
}
@media (min-width: 1024px) {
  .quick-view-dialog .modal-header .close {
    margin-top: -0.7rem;
    margin-right: -1.2rem;
  }
}
.quick-view-dialog .modal-header .close svg {
  width: 1.5625rem;
  height: 1.5625rem;
  opacity: 1;
  fill: #404040;
  padding: 0;
  margin: 0;
}
.quick-view-dialog .modal-header .close:focus {
  outline: 3px dotted currentColor;
}
.quick-view-dialog .modal-header .quickview-heading {
  font-size: 1.125rem;
  color: #404040;
  line-height: 24px;
  font-family: "brandon-grotesque", "brandon-fallback", sans-serif;
}
@media (min-width: 1024px) {
  .quick-view-dialog .modal-header .quickview-heading {
    font-size: 1.75rem;
    color: #404040;
    line-height: 36px;
    font-family: "brandon-grotesque", "brandon-fallback", sans-serif;
  }
}
.quick-view-dialog .modal-title {
  font-size: 1em;
}
.quick-view-dialog .product-name {
  margin-bottom: 16px;
  word-break: break-word;
  font-weight: normal;
  text-transform: uppercase;
  font-size: 1.75rem;
  color: #404040;
  line-height: 36px;
  font-family: "EB Garamond", "eb-garamond-fallback", serif;
}
@media (min-width: 1024px) {
  .quick-view-dialog .product-name {
    font-size: 1.75rem;
    line-height: 36px;
    margin-left: 0.625rem;
  }
}
@media (max-width: 599.98px) {
  .quick-view-dialog .product-name {
    margin-top: 2.0625rem;
  }
}
.quick-view-dialog .swatch-circle {
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  width: 2.5em;
  height: 2.5em;
  background: #fff; /* stylelint-disable-line property-no-vendor-prefix */
  border-radius: 1.25em;
  border: 0.063em solid rgba(0, 0, 0, 0.3);
  display: inline-block;
  margin-right: 0.313em;
  position: relative;
}
.quick-view-dialog .swatch-circle.color-value[data-selected=true]::after {
  color: #000;
  content: "\f058";
  display: table-caption;
  font-family: FontAwesome, sans-serif;
  font-size: 1.625em;
  left: 0.295em;
  position: absolute;
}
.quick-view-dialog .swatch-circle.color-value.selected::after {
  background: #fff;
  border-radius: 50%;
  color: #000;
  content: "\f058";
  display: table-caption;
  font-family: FontAwesome, sans-serif;
  font-size: 1.625em;
  height: 0.75em;
  left: 0.31em;
  line-height: 0.8em;
  position: absolute;
  top: 0.35em;
  width: 0.8em;
}
.quick-view-dialog .swatch-circle i.fa-times-circle {
  background: #fff;
  border-radius: 50%;
  height: 0.75em;
  line-height: 0.8em;
  width: 0.8em;
}
.quick-view-dialog a[disabled] .swatch-circle {
  cursor: not-allowed;
}
.quick-view-dialog a[disabled] .swatch-circle.color-value.selected::after {
  background-color: #495057;
}
.quick-view-dialog .availablity-container {
  text-align: right;
}
.quick-view-dialog .availablity-container,
.quick-view-dialog .size-chart {
  margin-top: 0.938em;
}
.quick-view-dialog .modal-content {
  border: none;
  border-radius: 0;
}
.quick-view-dialog .modal-body {
  max-height: none;
  overflow-y: auto;
  padding-bottom: 2.125rem !important;
}
.quick-view-dialog button.close {
  font-size: 1.25em;
}
.quick-view-dialog .modal-footer {
  background-color: #fff;
  border: none;
  border-bottom-right-radius: 0.1875rem;
  border-bottom-left-radius: 0.1875rem;
  padding-top: 0;
  padding-bottom: 0.9375rem;
}
@media (min-width: 1024px) {
  .quick-view-dialog .modal-footer {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-bottom: 2.25rem;
  }
}
.quick-view-dialog .modal-footer > :not(:first-child) {
  margin-left: 0;
}
.quick-view-dialog .modal-footer .prices .price {
  font-size: 1.6em;
}
@media (max-width: 1023.98px) {
  .quick-view-dialog .modal-footer .price-qty-btn .price-btn {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 1024px) {
  .quick-view-dialog .modal-footer .price-qty-btn > .row {
    margin-left: 0;
    margin-right: 0;
  }
}
.quick-view-dialog .prices .sales {
  font-size: 1.5rem;
}
.quick-view-dialog .promotions {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: #33788e;
  line-height: 24px;
  font-family: "brandon-grotesque", "brandon-fallback", sans-serif;
}
.quick-view-dialog .promotions .collapsible-xl .title {
  font-weight: bold;
  padding-top: 0.0625rem;
  font-size: 0.875rem;
  color: #404040;
  line-height: 20px;
  font-family: "EB Garamond", "eb-garamond-fallback", serif;
  text-decoration: underline;
  text-transform: capitalize;
}
.quick-view-dialog .promotions .collapsible-xl .title::after {
  content: "";
}
.quick-view-dialog .promotions .collapsible-xl .title:hover {
  text-decoration: underline;
}
.quick-view-dialog .promotions .collapsible-xl .title:focus {
  outline: 0.1875rem dotted #404040;
}
.quick-view-dialog .promotions .collapsible-xl .value {
  display: none;
}
.quick-view-dialog .promotions .collapsible-xl.active .title::after {
  content: "";
}
.quick-view-dialog .promotions .collapsible-xl.active .title::before {
  content: "Close";
}
.quick-view-dialog .promotions .collapsible-xl.active .value {
  display: block;
  text-align: center;
  font-size: 0.875rem;
  color: #404040;
  line-height: 20px;
  font-family: "EB Garamond", "eb-garamond-fallback", serif;
}
.quick-view-dialog .promotions a {
  text-decoration: underline;
}
.quick-view-dialog .promotions a, .quick-view-dialog .promotions a:focus, .quick-view-dialog .promotions a:hover {
  color: unset;
}
.quick-view-dialog .pre-cart-products {
  margin-right: 0.125em;
}
.quick-view-dialog .color-attribute {
  border: none;
  padding: 0;
  background: none;
}
.quick-view-dialog .non-input-label {
  display: block;
  margin-bottom: 0.3125rem;
}
.quick-view-dialog .attribute {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: flex column wrap;
          flex-flow: flex column wrap;
}
.quick-view-dialog .attribute ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.quick-view-dialog .attribute button {
  display: block;
  font-weight: normal;
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
}
.quick-view-dialog .attribute button.color-attribute {
  line-height: 0;
  margin-right: 0.625rem;
  margin-bottom: 0.625rem;
}
.quick-view-dialog .attribute button.color-attribute:focus {
  outline-offset: 0;
}
.quick-view-dialog .attribute button.color-attribute.selected {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}
.quick-view-dialog .attribute button img.swatch-value {
  margin-right: 0;
}
.quick-view-dialog .attribute button .swatch-circle {
  margin: 0;
}
.quick-view-dialog .attribute .color-attribute .swatch-value {
  border-radius: unset;
  background-repeat: no-repeat;
  background-size: cover;
  width: 3rem;
  height: 3rem;
  border-color: #f5f5f5;
}
.quick-view-dialog .attribute .color-attribute .swatch-value.color-value {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.quick-view-dialog .attribute .color-attribute .swatch-value.color-value.selected {
  border: 3px solid #000;
  margin-top: -0.125rem;
  margin-left: 0;
}
.quick-view-dialog .attribute .color-attribute .swatch-value.color-value.selected::after {
  content: none;
}
.quick-view-dialog .attribute .color-attribute .swatch-value.color-value.unselectable {
  opacity: 0.5;
}
.quick-view-dialog .color-attribute .swatch-value {
  border-radius: unset;
  background-repeat: no-repeat;
  background-size: cover;
  width: 3rem;
  height: 3rem;
  border-color: #f5f5f5;
}
.quick-view-dialog .color-attribute .swatch-value.color-value {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.quick-view-dialog .color-attribute .swatch-value.color-value.selected {
  border: 3px solid #000;
  margin-top: -0.125rem;
  margin-left: -0.125rem;
}
.quick-view-dialog .color-attribute .swatch-value.color-value.selected::after {
  content: none;
}
.quick-view-dialog .color-attribute .swatch-value.color-value.unselectable {
  opacity: 0.5;
}
.quick-view-dialog .color-attribute.unselectable {
  pointer-events: none;
}
.quick-view-dialog .size-attribute,
.quick-view-dialog .width-attribute,
.quick-view-dialog .accessorySize-attribute {
  height: 2.25rem;
  width: 2.25rem;
  max-width: 2.25rem;
  position: relative;
  z-index: 1;
  padding: 0;
}
.quick-view-dialog .size-attribute.unselectable[disabled],
.quick-view-dialog .width-attribute.unselectable[disabled],
.quick-view-dialog .accessorySize-attribute.unselectable[disabled] {
  pointer-events: none;
  opacity: 1;
}
.quick-view-dialog .size-attribute.unselectable[disabled] .swatch-line1,
.quick-view-dialog .width-attribute.unselectable[disabled] .swatch-line1,
.quick-view-dialog .accessorySize-attribute.unselectable[disabled] .swatch-line1 {
  background: linear-gradient(to top right, transparent calc(50% - 1px), #404040, transparent calc(50% + 1px));
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  position: absolute;
  top: -0.0625rem;
  right: -0.0625rem;
  z-index: 1;
}
.quick-view-dialog .size-attribute.unselectable[disabled] .swatch-line2,
.quick-view-dialog .width-attribute.unselectable[disabled] .swatch-line2,
.quick-view-dialog .accessorySize-attribute.unselectable[disabled] .swatch-line2 {
  background: linear-gradient(to top left, transparent calc(50% - 1px), #404040 50%, transparent calc(50% + 1px));
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  position: absolute;
  top: -0.0625rem;
  right: -0.0625rem;
  z-index: 1;
}
.quick-view-dialog .size-attribute.unselectable[disabled] .swatch-text,
.quick-view-dialog .width-attribute.unselectable[disabled] .swatch-text,
.quick-view-dialog .accessorySize-attribute.unselectable[disabled] .swatch-text {
  background: inherit;
  display: block;
  z-index: 2;
  position: relative;
  line-height: 1rem;
}
.quick-view-dialog .size-attribute.unselectable.selected[disabled],
.quick-view-dialog .width-attribute.unselectable.selected[disabled],
.quick-view-dialog .accessorySize-attribute.unselectable.selected[disabled] {
  background-color: #737373;
  color: #fff;
  border-color: #737373;
}
.quick-view-dialog .size-attribute.unselectable.selected[disabled] .swatch-line1,
.quick-view-dialog .width-attribute.unselectable.selected[disabled] .swatch-line1,
.quick-view-dialog .accessorySize-attribute.unselectable.selected[disabled] .swatch-line1 {
  background: linear-gradient(to top right, transparent calc(50% - 1px), #fff, transparent calc(50% + 1px));
}
.quick-view-dialog .size-attribute.unselectable.selected[disabled] .swatch-line2,
.quick-view-dialog .width-attribute.unselectable.selected[disabled] .swatch-line2,
.quick-view-dialog .accessorySize-attribute.unselectable.selected[disabled] .swatch-line2 {
  background: linear-gradient(to top left, transparent calc(50% - 1px), #fff 50%, transparent calc(50% + 1px));
}
.quick-view-dialog .attribute-name {
  text-transform: uppercase;
}
.quick-view-dialog .quickview-selected-color,
.quick-view-dialog .attribute-name,
.quick-view-dialog .width-one-value,
.quick-view-dialog .size-attribute,
.quick-view-dialog .offer-link,
.quick-view-dialog .width-attribute {
  font-size: 0.875rem;
  color: #404040;
  line-height: 20px;
  font-family: "brandon-grotesque", "brandon-fallback", sans-serif;
  font-weight: bold;
}
.quick-view-dialog .quickview-selected-color {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .quick-view-dialog .quickview-selected-color {
    margin-bottom: 0.25rem;
  }
}
.quick-view-dialog .width-one-value {
  position: absolute;
  top: 0;
  left: 2.1875rem;
}
.quick-view-dialog .offer-message {
  font-size: 1.125rem;
  color: #753e2d;
  line-height: 24px;
  font-family: "EB Garamond", "eb-garamond-fallback", serif;
  margin-top: 12px;
}
.quick-view-dialog .offer-link {
  text-decoration: underline;
}
.quick-view-dialog .btn-update-wishlist-product {
  width: 100%;
  padding: 9px;
}
.quick-view-dialog .btn-update-wishlist-product .fa-shopping-bag {
  display: none;
}
.quick-view-dialog .prices {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 0.875rem;
  width: 100%;
}
@media (min-width: 1024px) {
  .quick-view-dialog .prices {
    width: 17.25rem;
  }
}
.quick-view-dialog .prices .sales {
  font-weight: normal;
}
.quick-view-dialog .prices .sales .sale-price {
  font-weight: bold;
  font-size: 1.25rem;
  color: #33788e;
  line-height: 28px;
  font-family: "EB Garamond", "eb-garamond-fallback", serif;
}
@media (min-width: 1024px) {
  .quick-view-dialog .prices .sales .sale-price {
    font-size: 1.5rem;
    line-height: 32px;
  }
}
.quick-view-dialog .prices .sales .regular-price {
  font-family: "EB Garamond", "eb-garamond-fallback", serif;
  font-weight: bold;
  font-size: 1.25rem;
  color: #737373;
  line-height: 28px;
  font-family: "EB Garamond", "eb-garamond-fallback", serif;
}
@media (min-width: 1024px) {
  .quick-view-dialog .prices .sales .regular-price {
    font-size: 1.5rem;
    line-height: 32px;
  }
}
.quick-view-dialog .prices .strike-through {
  color: #737373;
  font-size: 1rem;
  line-height: 24px;
  font-family: "EB Garamond", "eb-garamond-fallback", serif;
  margin-right: 0;
}
@media (min-width: 1024px) {
  .quick-view-dialog .prices .strike-through {
    font-size: 1.25rem;
    line-height: 28px;
  }
}
.quick-view-dialog .prices .range .regular-price {
  font-size: 1.25rem;
  color: #737373;
  line-height: 28px;
  font-family: "EB Garamond", "eb-garamond-fallback", serif;
  text-decoration: line-through;
}
.quick-view-dialog .availability {
  margin: 0.8125rem 0rem 0rem;
  color: #404040;
  font-family: "EB Garamond", "eb-garamond-fallback", serif;
  font-size: 0.875rem;
  line-height: 20px;
}
@media (min-width: 1024px) {
  .quick-view-dialog .availability {
    font-size: 1rem;
    line-height: 24px;
    padding-left: 2.625rem;
    margin-bottom: 0.6875rem;
  }
}

.product-quickview .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 0.625rem;
  max-width: 80%;
  margin: 0 auto;
}
.product-quickview .slick-dots li {
  background-color: #737373;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  margin-right: 0.25rem;
  margin-left: 0.25rem;
  z-index: 1;
  margin-bottom: 3%;
}
.product-quickview .slick-dots li.slick-active {
  border: 1px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  opacity: 1;
  color: #737373;
}
.product-quickview .slick-dots li.video-item {
  margin-left: 0.5rem;
  background-color: transparent;
  width: auto;
  opacity: 1;
}
.product-quickview .slick-dots li.video-item img {
  font-size: 0.625rem;
}
.product-quickview .slick-dots li .video-text {
  font-size: 0.75rem;
}
.product-quickview .slick-dots button {
  font-size: 0;
  width: 0.75rem;
  height: 0.75rem;
  margin: -3px 0 0 -3px;
  display: block;
}
.product-quickview .slick-dots button:focus {
  outline: 3px dotted currentColor;
  outline-offset: 0;
}
.product-quickview .slick-slide {
  padding: 0 0.625rem;
}
.product-quickview .carousel-item .img-fluid {
  max-height: 18.75rem;
  padding-left: 2.1875rem;
  padding-right: 2.1875rem;
}
.product-quickview .carousel-inner-wrapper {
  width: 100%;
}
.product-quickview .slick-prev {
  font-size: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  z-index: 1;
  width: 2.25rem;
  height: 2.25rem;
}
.product-quickview .slick-prev::before {
  content: "";
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23737373' fill-rule='evenodd'%3E%3Cpath d='m9.618854 2 6.9833904 9.973315-.0382444.026685.0382444.026685-6.9833904 9.973315-1.618854-1.1335338 6.208-8.8664662-6.208-8.86646623z'%3E%3C/path%3E%3C/svg%3E") center/contain no-repeat;
  position: absolute;
  left: 0.125rem;
  bottom: 0;
  width: 2.25rem;
  height: 2.25rem;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.product-quickview .slick-next {
  font-size: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0.5rem;
  width: 2.25rem;
  height: 2.25rem;
}
.product-quickview .slick-next::before {
  content: "";
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23737373' fill-rule='evenodd'%3E%3Cpath d='m9.618854 2 6.9833904 9.973315-.0382444.026685.0382444.026685-6.9833904 9.973315-1.618854-1.1335338 6.208-8.8664662-6.208-8.86646623'%3E%3C/path%3E%3C/svg%3E") center/contain no-repeat;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 2.25rem;
  height: 2.25rem;
}
.product-quickview .carousel-images {
  position: relative;
}
@media (min-width: 1024px) {
  .product-quickview .attributes {
    padding-left: 2.0625rem;
    padding-right: 0.8125rem;
  }
}
.product-quickview .attributes div[data-attr=width] {
  position: relative;
}
.product-quickview .attributes div[data-attr=color] {
  min-width: 19rem;
  margin-bottom: 0.8125rem;
}
.product-quickview .attributes div[data-attr=color] .attribute {
  display: block;
}
.product-quickview .attributes div[data-attr=size] {
  min-width: 18.0625rem;
  margin-top: 0.25rem;
}
@media (max-width: 1023.98px) {
  .product-quickview .quickview-details {
    margin: 0 auto;
  }
}
.product-quickview .promotion-message,
.product-quickview .final_sale {
  text-align: center;
  font-size: 1.125rem;
  color: #33788e;
  line-height: 24px;
  font-family: "brandon-grotesque", "brandon-fallback", sans-serif;
}

@media (max-width: 599.98px) {
  .quick-view-dialog {
    width: 100%;
    margin-left: 0;
  }
}

#editWishlistProductModal {
  padding-right: 0 !important;
}
@media (max-width: 1023.98px) {
  #editWishlistProductModal .modal-dialog.quick-view-dialog {
    max-height: 99vh;
  }
  #editWishlistProductModal .modal-dialog.quick-view-dialog .modal-content {
    min-height: 13.75rem;
  }
  #editWishlistProductModal .modal-dialog.quick-view-dialog .modal-footer {
    border-top: solid 1px #ccc;
  }
}
@media (max-width: 1023.98px) {
  #editWishlistProductModal .modal-body {
    height: 64vh;
  }
}
@media (max-width: 599.98px) and (min-aspect-ratio: 1/1) {
  #editWishlistProductModal { /* stylelint-disable-line */ }
  #editWishlistProductModal .modal-body .product-quickview {
    padding-bottom: 2rem;
  }
  #editWishlistProductModal .modal-footer {
    position: absolute;
    z-index: 1;
    width: 100%;
    bottom: -0.75rem;
  }
  #editWishlistProductModal .modal-footer .prices,
  #editWishlistProductModal .modal-footer .wishlist-item-update-button-block {
    display: inline-block;
    width: 49%;
  }
}
