@charset "UTF-8";
/*
* Custom price slider styling for IonRangeSlider
*/
.c-range-slider .irs {
  height: 70px;
}
.c-range-slider .irs-slider {
  background: none;
  width: 23px;
  height: 23px;
  border: 2px solid #424242;
  border-radius: 20px;
  background-color: #fff;
  cursor: pointer;
}
.c-range-slider .irs-line-left,
.c-range-slider .irs-line-right,
.c-range-slider .irs-line-mid {
  background: none;
  background-color: #E0E0E0;
  height: 4px;
  margin-top: 2px;
  cursor: pointer;
}
.c-range-slider .irs-line-left {
  margin-left: 5px;
}
.c-range-slider .irs-line-right {
  margin-right: 5px;
}
.c-range-slider .irs-bar {
  background: none;
  background-color: #ED1C24;
  height: 4px;
  margin-top: 2px;
  cursor: pointer;
}
.c-range-slider .irs-from,
.c-range-slider .irs-to,
.c-range-slider .irs-min,
.c-range-slider .irs-max,
.c-range-slider .irs-single {
  top: auto;
  bottom: 5px;
  padding: 0;
  background: none;
  font-size: 13px;
  color: #9E9E9E;
}
.c-range-slider .irs-from,
.c-range-slider .irs-to,
.c-range-slider .irs-single {
  color: #424242;
}
.c-range-slider--no-bar .irs-bar-edge,
.c-range-slider--no-bar .irs-bar {
  display: none;
}

.custom-control {
  position: relative;
  display: block;
  min-height: 1.25rem;
  padding-left: 1.5rem;
}

.custom-control-inline {
  display: inline-flex;
  margin-right: 1rem;
}

.custom-control-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #007bff;
  background-color: #007bff;
}
.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #80bdff;
}
.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: #b3d7ff;
  border-color: #b3d7ff;
}
.custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}
.custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}
.custom-control-label::before {
  position: absolute;
  top: 0.125rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: #adb5bd solid 1px;
}
.custom-control-label::after {
  position: absolute;
  top: 0.125rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: no-repeat 50%/50% 50%;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 0.25rem;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: #007bff;
  background-color: #007bff;
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}
.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-switch {
  padding-left: 2.25rem;
}
.custom-switch .custom-control-label::before {
  left: -2.25rem;
  width: 1.75rem;
  pointer-events: all;
  border-radius: 0.5rem;
}
.custom-switch .custom-control-label::after {
  top: calc(0.125rem + 2px);
  left: calc(-2.25rem + 2px);
  width: calc(1rem - 4px);
  height: calc(1rem - 4px);
  background-color: #adb5bd;
  border-radius: 0.5rem;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .custom-switch .custom-control-label::after {
    transition: none;
  }
}
.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #fff;
  transform: translateX(0.75rem);
}
.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  appearance: none;
}
.custom-select:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}
.custom-select[multiple], .custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}
.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}
.custom-select::-ms-expand {
  display: none;
}

.custom-select-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
}

.custom-select-lg {
  height: calc(1.5em + 1rem + 2px);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
}

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin-bottom: 0;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin: 0;
  opacity: 0;
}
.custom-file-input:focus ~ .custom-file-label {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-file-input:disabled ~ .custom-file-label {
  background-color: #e9ecef;
}
.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}
.custom-file-input ~ .custom-file-label[data-browse]::after {
  content: attr(data-browse);
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}
.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(1.5em + 0.75rem);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: inherit;
  border-radius: 0 0.25rem 0.25rem 0;
}

.custom-range {
  width: 100%;
  height: calc(1rem + 0.4rem);
  padding: 0;
  background-color: transparent;
  appearance: none;
}
.custom-range:focus {
  outline: none;
}
.custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-range::-moz-focus-outer {
  border: 0;
}
.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-webkit-slider-thumb {
    transition: none;
  }
}
.custom-range::-webkit-slider-thumb:active {
  background-color: #b3d7ff;
}
.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-moz-range-thumb {
    transition: none;
  }
}
.custom-range::-moz-range-thumb:active {
  background-color: #b3d7ff;
}
.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0.2rem;
  margin-left: 0.2rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-ms-thumb {
    transition: none;
  }
}
.custom-range::-ms-thumb:active {
  background-color: #b3d7ff;
}
.custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
}
.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}
.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}
.custom-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}
.custom-range:disabled::-webkit-slider-runnable-track {
  cursor: default;
}
.custom-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}
.custom-range:disabled::-moz-range-track {
  cursor: default;
}
.custom-range:disabled::-ms-thumb {
  background-color: #adb5bd;
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .custom-control-label::before,
.custom-file-label,
.custom-select {
    transition: none;
  }
}

.alert {
  position: relative;
  padding: 1.5625rem 1.875rem;
  margin-bottom: 30px;
  border: 1px solid transparent;
  border-radius: 0;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 5.25rem;
}
.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1.5625rem 1.875rem;
  color: inherit;
}

.alert-primary {
  color: #5185b9;
  background-color: #f8fafc;
  border-color: #c0d3e6;
}
.alert-primary hr {
  border-top-color: #aec6df;
}
.alert-primary .alert-link {
  color: #3e6c99;
}

.alert-secondary {
  color: #9e9e9e;
  background-color: #fbfbfb;
  border-color: gainsboro;
}
.alert-secondary hr {
  border-top-color: #cfcfcf;
}
.alert-secondary .alert-link {
  color: #858585;
}

.alert-success {
  color: #51a251;
  background-color: #f8fbf8;
  border-color: #c0dec0;
}
.alert-success hr {
  border-top-color: #afd5af;
}
.alert-success .alert-link {
  color: #408040;
}

.alert-info {
  color: #17a2b8;
  background-color: #f6fbfc;
  border-color: #abdee5;
}
.alert-info hr {
  border-top-color: #98d6df;
}
.alert-info .alert-link {
  color: #117a8b;
}

.alert-warning {
  color: #ffa200;
  background-color: #fffbf5;
  border-color: #ffdea3;
}
.alert-warning hr {
  border-top-color: #ffd58a;
}
.alert-warning .alert-link {
  color: #cc8200;
}

.alert-danger {
  color: #ed1c24;
  background-color: #fef6f6;
  border-color: #f9adb0;
}
.alert-danger hr {
  border-top-color: #f79599;
}
.alert-danger .alert-link {
  color: #c61017;
}

.alert-light {
  color: whitesmoke;
  background-color: white;
  border-color: #fbfbfb;
}
.alert-light hr {
  border-top-color: #eeeeee;
}
.alert-light .alert-link {
  color: gainsboro;
}

.alert-dark {
  color: #424242;
  background-color: #f7f7f7;
  border-color: #bbbbbb;
}
.alert-dark hr {
  border-top-color: #aeaeae;
}
.alert-dark .alert-link {
  color: #292929;
}

.alert-black {
  color: #212121;
  background-color: #f6f6f6;
  border-color: #afafaf;
}
.alert-black hr {
  border-top-color: #a2a2a2;
}
.alert-black .alert-link {
  color: #080808;
}

.c-addtocart-popup {
  position: relative;
  z-index: 1030;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
}
.c-addtocart-popup.opened {
  opacity: 1;
  visibility: visible;
}
.c-addtocart-popup__overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1030;
}
.c-addtocart-popup__inner {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  padding: 20px;
  box-sizing: border-box;
  z-index: 1036;
  background-color: #fff;
  overflow-y: scroll;
  box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.15);
}
@media (min-width: 980px) {
  .c-addtocart-popup__inner {
    height: auto;
    width: 800px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow-y: hidden;
  }
}
.c-addtocart-popup__product-name {
  display: -webkit-box;
  line-height: 15px;
  max-height: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media (min-width: 768px) {
  .c-addtocart-popup__recommendation {
    border-bottom: 1px solid #E0E0E0;
  }
}
.c-addtocart-popup__suggestion-name {
  display: -webkit-box;
  line-height: 14px;
  height: 28px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.c-addtocart-popup__suggestion .newprice {
  display: inline-block;
  font-weight: bold;
  white-space: nowrap;
}
.c-addtocart-popup__suggestion .oldprice {
  display: inline-block;
  margin-left: 10px;
  color: #9E9E9E;
  text-decoration: line-through;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .c-addtocart-popup__suggestion-form--size {
    height: 85px;
  }
  .c-addtocart-popup__suggestion-form--input {
    height: 160px;
  }
}
@media (max-width: 767.98px) {
  .c-addtocart-popup__suggestion-form {
    overflow: hidden;
    transition: max-height 0.3s;
    max-height: 160px;
  }
  .c-addtocart-popup__suggestion-form.collapsed {
    max-height: 0;
    margin: 0;
  }
}
@media (max-width: 767.98px) {
  .c-addtocart-popup__suggestion-slide {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    border-top: 1px solid #E0E0E0;
  }
}

.c-checkbox {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media (min-width: 980px) {
  .c-checkbox:hover .c-checkbox__mark {
    background-color: #F5F5F5;
  }
}
.c-checkbox__mark {
  position: absolute;
  left: 0;
  height: 30px;
  width: 30px;
  border: 2px solid #424242;
  border-radius: 2px;
  background-color: #fff;
}
.c-checkbox__mark i {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #424242;
}
.c-checkbox__input {
  position: absolute;
  display: none;
  cursor: pointer;
}
.c-checkbox__input:checked ~ .c-checkbox__mark i {
  display: inline-block;
}
.c-checkbox--disabled .c-checkbox__mark {
  border: 2px solid #BDBDBD;
  pointer-events: none;
}
.c-checkbox--disabled .c-checkbox__mark i {
  color: #BDBDBD;
}
.c-checkbox--sm {
  padding-left: 25px;
  font-size: 16px;
}
.c-checkbox--sm .c-checkbox__mark {
  height: 20px;
  width: 20px;
}
.c-checkbox.invalid .c-checkbox__mark {
  border-color: #ED1C24;
  background-color: #fde4e5;
}

.c-collapse-icon--chevron:before {
  content: "";
}

.collapsed .c-collapse-icon--chevron:before {
  content: "";
}

.c-color-swatch {
  position: relative;
  width: 100%;
  padding: 0 3px 15px;
  display: inline-block;
  cursor: pointer;
}
.c-color-swatch.active:after {
  content: "";
  position: absolute;
  bottom: 9px;
  left: 0;
  right: 0;
  height: 2px;
  margin: 0 3px;
  background-color: #212121;
}
.c-color-swatch__callout {
  position: absolute;
  top: -5px;
  right: 0;
  z-index: 1;
}
.c-color-swatch img {
  pointer-events: none;
}

.c-cta-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 1030;
}

.c-countdown {
  display: flex;
}
@media (max-width: 767.98px) {
  .c-countdown {
    margin-bottom: 15px;
  }
}
.c-countdown__header {
  margin-bottom: 5px;
  padding: 15px 0 10px 0;
  font-size: 14px;
}
.c-countdown__num {
  font-size: 22px;
  font-weight: bold;
}
.c-countdown__value {
  text-transform: uppercase;
  font-size: 10px;
  color: #757575;
}

.custom-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: none;
  background-image: linear-gradient(45deg, transparent 50%, #9E9E9E 50%), linear-gradient(135deg, #9E9E9E 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(50% - 2px), calc(100% - 15px) calc(50% - 2px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  box-shadow: 0 2px 1px 0 rgba(0, 0, 0, 0.03);
  border-color: #E0E0E0;
  color: #9E9E9E;
}
.custom-select--selected {
  color: #212121;
  background-image: linear-gradient(45deg, transparent 50%, #212121 50%), linear-gradient(135deg, #212121 50%, transparent 50%);
}
.custom-select--invalid {
  border-color: #ED1C24;
}
.custom-select option {
  color: #212121;
  padding: 5px;
}
.custom-select option:disabled {
  color: #9E9E9E;
}

.c-embroidery {
  border: 1px dotted #E0E0E0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #424242;
  cursor: pointer;
}
.c-embroidery:hover {
  color: #ED1C24;
}
.c-embroidery__icon:before {
  content: "";
}
.c-embroidery.active {
  border: 1px dotted #424242;
}
.c-embroidery.active .c-embroidery__icon:before {
  content: "쀁";
}

.c-giftcard-design__img {
  border: 2px solid #E0E0E0;
}
.c-giftcard-design__input:checked + .c-giftcard-design__img {
  border: 2px solid #51a251;
}
.c-giftcard-design.loading-image {
  opacity: 0.2;
  transition: opacity 0.3s;
}
.c-giftcard-design__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.1s;
}
.c-giftcard-design__spinner.active {
  opacity: 1;
}
.c-giftcard-design__form {
  border-top: 1px solid #E0E0E0;
  border-radius: 3px;
  box-shadow: 0 2px 1px 0 rgba(0, 0, 0, 0.03);
}

.c-image-select {
  border: 2px solid transparent;
}
.c-image-select.selected {
  border: 2px solid #212121;
}

.c-img--dark {
  position: relative;
}
.c-img--dark:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.0390625);
}

.c-nav {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.c-nav__item {
  padding: 10px;
}
.c-nav__item.active {
  font-weight: bold;
}
.c-nav__item.disabled {
  color: #757575;
}

.c-play-overlay {
  position: relative;
}
.c-play-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}
.c-play-overlay::after {
  content: "";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 70px;
  z-index: 2;
}
.c-play-overlay--show::before, .c-play-overlay--show::after {
  opacity: 1;
}
.c-play-overlay--sm::after {
  font-size: 48px;
}

@keyframes scarcityGlow {
  0% {
    text-shadow: 0 0 1px rgba(255, 0, 0, 0.5);
  }
  50% {
    text-shadow: 0 0 6px rgba(255, 0, 0, 0.5);
  }
  100% {
    text-shadow: 0 0 1px rgba(255, 0, 0, 0.5);
  }
}
@keyframes scarcityScale {
  0% {
    transform: scale(1, 1);
  }
  5% {
    transform: scale(0.9, 0.9);
  }
  6% {
    transform: scale(1.05, 1.05);
  }
  6.5% {
    transform: scale(0.97, 0.97);
  }
  7% {
    transform: scale(1.03, 1.03);
  }
  7.5% {
    transform: scale(0.98, 0.98);
  }
  8% {
    transform: scale(1.02, 1.02);
  }
  8.5% {
    transform: scale(1, 1);
  }
}
.c-pulse-text {
  display: inline-block;
  color: #5185b9;
  animation: 10s 5s scarcityScale infinite ease-in-out;
}
.c-pulse-text--strong {
  color: #ED1C24;
  animation: 3s scarcityGlow infinite ease-in-out, 10s 5s scarcityScale infinite ease-in-out;
}

.c-qty-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-qty-input__wrapper {
  width: 60px;
  position: relative;
  height: 0;
  padding-bottom: 100%;
}

.c-ratio {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.c-ratio--16-9 {
  padding-bottom: 56.25%;
}
.c-ratio--4-3 {
  padding-bottom: 75%;
}
.c-ratio--1-1 {
  padding-bottom: 100%;
}
@media (max-width: 767.98px) {
  .c-ratio--sm {
    height: auto;
    padding-bottom: 0;
  }
  .c-ratio--sm .c-ratio__item {
    position: static;
  }
}
.c-ratio__item {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}

.c-review__write {
  text-decoration: underline;
  font-size: 14px;
}
.c-review__sort-by {
  padding: 5px 0;
}
.c-review__item {
  margin: 30px 0 0;
}
.c-review__item-stars .star {
  width: 20px;
}
.c-review__item-stars--large .star {
  font-size: 18px;
}
.c-review__item-info {
  margin-left: 10px;
  color: #757575;
  font-size: 12px;
}
.c-review__item-like {
  cursor: pointer;
  color: #9E9E9E;
}
.c-review__item-like.liked {
  color: #ED1C24 !important;
}
.c-review__heading {
  margin: 5px 0 30px;
}
.c-review__footer {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .c-review__form {
    width: 768px;
  }
}
@media (min-width: 768px) {
  .c-review__form-info {
    border-left: 1px solid #E0E0E0;
  }
}
.c-review__form-stars .star {
  margin-right: 10px;
}

.c-scroll {
  -webkit-overflow-scrolling: touch;
}
.c-scroll _::-webkit-full-page-media, .c-scroll _:future, :root .c-scroll::-webkit-scrollbar {
  -webkit-appearance: color-well;
}
.c-scroll _::-webkit-full-page-media, .c-scroll _:future, :root .c-scroll::-webkit-scrollbar:vertical {
  width: 11px;
}
.c-scroll _::-webkit-full-page-media, .c-scroll _:future, :root .c-scroll::-webkit-scrollbar:horizontal {
  height: 11px;
}
.c-scroll _::-webkit-full-page-media, .c-scroll _:future, :root .c-scroll::-webkit-scrollbar-thumb {
  background-color: #E0E0E0;
}
.c-scroll--x {
  overflow-x: scroll;
}
.c-scroll--y {
  overflow-y: scroll;
}
@media (max-width: 767.98px) {
  .c-scroll--mobile-x {
    overflow-x: scroll;
  }
  .c-scroll--mobile-y {
    overflow-y: scroll;
  }
}
@media (min-width: 768px) {
  .c-scroll--sm-x {
    overflow-x: scroll;
  }
  .c-scroll--sm-y {
    overflow-y: scroll;
  }
}
.c-scroll__shade-wrapper {
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .c-scroll__shade-wrapper:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background-image: linear-gradient(to top, white, rgba(255, 255, 255, 0));
  }
}

.c-switch__bg {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 25px;
  background-color: #9E9E9E;
  border: 2px solid #9E9E9E;
  border-radius: 15px;
  transition: background-color 0.3s, border-color 0.3s;
}
@media (min-width: 768px) {
  .c-switch__bg {
    width: 32px;
    height: 20px;
  }
}
.c-switch__handle {
  position: absolute;
  left: 0;
  top: 0;
  background-color: #fff;
  width: 21px;
  height: 21px;
  border-radius: 21px;
  transition: transform 0.3s;
}
@media (min-width: 768px) {
  .c-switch__handle {
    width: 16px;
    height: 16px;
  }
}
.c-switch__checkbox:checked ~ .c-switch__bg {
  background-color: #212121;
  border-color: #212121;
}
.c-switch__checkbox:checked ~ .c-switch__bg .c-switch__handle {
  transform: translateX(15px);
}
@media (min-width: 768px) {
  .c-switch__checkbox:checked ~ .c-switch__bg .c-switch__handle {
    transform: translateX(12px);
  }
}

.c-youtube-player {
  cursor: pointer;
}
.c-youtube-player:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  opacity: 0.5;
  transition: opacity 0.7s;
}
.c-youtube-player:after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 75px;
  height: 65px;
  transform: translate(-50%, -50%);
  content: "";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  font-style: normal;
  font-size: 65px;
  text-shadow: 5px 0px 20px rgba(0, 0, 0, 0.5);
  line-height: 1;
  color: #ED1C24;
  opacity: 0.8;
  transition: color 0.15s, opacity 0.15s;
}
.c-youtube-player--no-play-btn:after {
  display: none;
}
@media (max-width: 767.98px) {
  .c-youtube-player--mobile-lower-play:after {
    top: 60%;
  }
}
.c-youtube-player:hover:before {
  opacity: 1;
}
.c-youtube-player:hover:after {
  color: #ED1C24;
}

.c-zoom-popup {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  flex-direction: column;
  background-color: #fff;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.c-zoom-popup.in {
  opacity: 1;
  visibility: visible;
  cursor: pointer;
}
.c-zoom-popup__heading {
  display: flex;
  justify-content: space-between;
  flex-shrink: 0;
  height: 40px;
  line-height: 40px;
  z-index: 1;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}
.c-zoom-popup__body {
  overflow-y: auto;
  overflow-y: overlay;
  -webkit-overflow-scrolling: touch;
}
.c-zoom-popup__close-btn {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 15px;
  font-size: 22px;
  line-height: 40px;
  cursor: pointer;
  z-index: 2;
}

@media (min-width: 768px) {
  .l-pdp--sticky {
    position: -webkit-sticky;
    /* Safari */
    position: sticky;
    top: 115px;
  }
}
@media (min-width: 980px) {
  .l-pdp--sticky {
    top: 55px;
  }
}
.l-pdp__callout {
  position: absolute;
  top: 20px;
  right: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
@media (max-width: 767.98px) {
  .l-pdp__callout {
    top: 10px;
    right: 40px;
  }
}
.l-pdp__panel {
  position: absolute;
  top: 40px;
  left: 15px;
  opacity: 0;
  transition: opacity 0.3s;
}
@media (max-width: 767.98px) {
  .l-pdp__panel {
    top: 10px;
    left: 0;
  }
}
@media (max-width: 767.98px) {
  .l-pdp__product-name {
    font-size: 20px;
  }
}
@media (min-width: 768px) {
  .l-pdp__details-section {
    background-color: #F5F5F5;
  }
}
@media (min-width: 768px) {
  .l-pdp__details-section--border {
    border-bottom: 1px solid #E0E0E0;
  }
}
.l-pdp__details-text h3, .l-pdp__details-text .h3 {
  font-size: 16px;
  font-weight: bold;
}
.l-pdp__details-text ul, .l-pdp__details-text ol, .l-pdp__details-text dl {
  padding-left: 25px;
}
.l-pdp__reviews-section {
  height: 100%;
}
@media (min-width: 768px) {
  .l-pdp__reviews-section {
    min-height: 384px;
  }
}
@media (min-width: 980px) {
  .l-pdp__reviews-section {
    min-height: 490px;
  }
}
@media (min-width: 1200px) {
  .l-pdp__reviews-section {
    min-height: 600;
  }
}

.slick-initialized ~ .l-pdp__panel,
.slick-initialized ~ .l-pdp__callout {
  opacity: 1;
}

.l-pdp-section {
  margin: 0 -15px 40px;
}
@media (min-width: 768px) {
  .l-pdp-section {
    margin: 20px 0px;
    background-color: #F5F5F5;
    border-top: 1px solid #E0E0E0;
    border-bottom: 1px solid #E0E0E0;
  }
  .l-pdp-section--reverse {
    flex-direction: row-reverse;
  }
}

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !important;
}

.ab-sticky-cta__new-cta {
  display: none;
}

@media (max-width: 767.98px) {
  .ab_sticky_cta_v .ab-sticky-cta__original-cta {
    display: none !important;
  }
  .ab_sticky_cta_v .ab-sticky-cta__new-cta {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.05);
    z-index: 1020;
  }
}

/*# sourceMappingURL=cartridges/app_hrz/cartridge/static/default/css/pdp.css.map */
