/*!
 * -------------------------------------------------------------------------------
 * Product Detail page (webuy and wesell) - Responsive
 * ------------------------------------------------------------------------------- 
*/
@font-face {
  font-family: "bodoni";
  src: url("/fonts/bodoni-72-book.ttf") format("truetype");
}
/*
 * Set up the keyframes to actually describe the begining and end states of 
 * the animation.  The browser will interpolate all the frames between these 
 * points.  Again, remember your vendor-specific prefixes for now!
 */
@-webkit-keyframes loadingRefresh {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(180deg);
  }
}
@-moz-keyframes loadingRefresh {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(180deg);
  }
}
@-o-keyframes loadingRefresh {
  from {
    -o-transform: rotate(0deg);
  }
  to {
    -o-transform: rotate(180deg);
  }
}
@keyframes loadingRefresh {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(180deg);
  }
}
/* Variables*/
/* Font Families*/
/* Font settings */
/* Color Palette*/
/* Shadows */
/* Max content width and paddings */
main section.padding-sm {
  padding: 40px 24px;
}

@media (min-width: 968px) {
  main section {
    padding: 44px 50px;
  }
}
@media (min-width: 1200px) {
  /* the below is to give 10 padding for the product-catalog section to show the ribbon
      All products category tabs on top sometimes will show scroll bar so product categoy 
      section needs to have overflow hidden
  */
  main section .section-content.multi-col {
    gap: 30px;
  }
  main section {
    padding: 44px 24px;
  }
}
@media (min-width: 1400px) {
  main section .section-content.multi-col {
    gap: 40px;
  }
  main section {
    padding: 44px 50px;
  }
}
@media (min-width: 1920px) {
  main section {
    padding: 88px 100px;
  }
  main section.padding-sm {
    padding: 64px 96px 32px 96px;
  }
}
@media (min-width: 1200px) {
  .navlist-container {
    min-width: 296px;
  }
  .navlist-container .btn.before-signin {
    height: 40px;
    margin-bottom: 28px;
    font-size: 1.125rem;
  }
}
@media (min-width: 1400px) {
  .navlist-container {
    min-width: 330px;
  }
  .navlist-container .btn.before-signin {
    height: 52px;
    margin-bottom: 32px;
    font-size: 1.25rem;
  }
}
@media (min-width: 1920px) {
  .navlist-container {
    width: 416px;
    min-width: 416px;
  }
  .navlist-container .btn.before-signin {
    font-size: 1.5rem;
  }
}
#product-detail {
  text-align: left;
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  overflow: hidden;
}

@media (min-width: 1400px) {
  #product-detail {
    overflow: hidden;
    padding-left: 10px;
  }
}
h1 {
  font-size: 2.25rem;
}

@media (min-width: 1200px) {
  h1 {
    font-size: 1.75rem;
  }
}
@media (min-width: 1400px) {
  h1 {
    font-size: 2rem;
  }
}
@media (min-width: 1920px) {
  h1 {
    font-size: 2.25rem;
  }
}
.product-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.product-info h4.section-title {
  font-size: 2.25rem;
  line-height: 110%;
  color: #293343;
}
.product-info-main {
  display: grid;
  flex-direction: column;
  column-gap: 40px;
  row-gap: 24px;
  grid-template-areas: "image" "description";
}
.product-info-main .breadcrumbs {
  grid-area: breadcrumb;
}
.product-info-general {
  display: flex;
  flex-direction: column;
  gap: 24px;
  grid-area: description;
}
.product-info-special {
  background: rgba(6, 128, 205, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  padding: 20px;
  font-size: 0.875rem;
  line-height: 120%;
  color: #333;
}
.product-info-special h2, .product-info-special h3 {
  font-size: 1.5rem;
}
.product-info-special p {
  margin: 0;
  max-width: 600px;
}
.product-info-tabs {
  display: flex;
  justify-content: space-around;
  gap: 40px;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  position: absolute;
  top: 2.5px;
}
.product-info-tabs-container {
  position: relative;
  height: 38px;
  border-bottom: 2px solid #F0F2F3;
}
.product-info-tab {
  padding-bottom: 14px;
  border-bottom: 2px solid transparent;
  font-weight: 700;
  color: #333;
  white-space: nowrap;
}
.product-info-tab.active {
  color: #0680CD;
  border-bottom: 2px solid #0680CD;
}
.product-info-tab-content {
  max-width: 800px;
  width: 100%;
}
.product-info-tab-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 1rem;
  line-height: 120%;
  color: #333;
}
.product-info-tab-content-wrapper h2, .product-info-tab-content-wrapper h3, .product-info-tab-content-wrapper h5 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: normal;
  color: #003871;
  font-weight: 700;
  margin: 0;
}
.product-info-tab-content-wrapper h2, .product-info-tab-content-wrapper h3 {
  color: #000;
  font-size: 1.25rem;
}
.product-info-tab-content-wrapper h2 strong, .product-info-tab-content-wrapper h3 strong {
  font-weight: 700;
}
.product-info-tab-content-wrapper p {
  margin: 0;
}
.product-info-tab-content-wrapper ul, .product-info-tab-content-wrapper ol {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 1.65rem;
  margin: 0;
}
.product-info-tab-content-wrapper ul li::marker {
  font-size: 0.875rem;
}
.product-info-tab-content-wrapper a {
  color: #0680CD;
}
.product-info-secondary {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.product-info-secondary hr {
  width: 100%;
  height: 1px;
  background: #F0F2F3;
  border-top: 1px solid #F0F2F3;
  margin: 0;
}
.product-info-secondary .navlist-subheading {
  margin-bottom: 40px;
  gap: 60px;
  align-items: flex-start;
}
.product-info-secondary .navlist-subheading h4 {
  font-size: 2.25rem;
  line-height: 110%;
  color: #293343;
}
.product-info-secondary .navlist-toggler {
  width: 32px;
  height: 32px;
}
.product-info-secondary .navlist-toggler-icon {
  width: 32px;
  height: 32px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32" fill="none"><path d="M24 20L16 12L8 20" stroke="%23333333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-position: center center;
}

@media (min-width: 1200px) {
  .product-info h4.section-title {
    font-size: 1.75rem;
  }
  .product-info-main {
    grid-template-areas: "image description";
    /*"image breadcrumb"
    "image description";*/
    grid-template-columns: 1fr 320px;
    column-gap: 30px;
  }
  .product-info-general .currency-selector {
    font-size: 1rem;
  }
  .product-info-special h2, .product-info-special h3 {
    font-size: 1.75rem;
  }
  .product-info-secondary {
    gap: 30px;
  }
  .product-info-secondary .navlist-subheading {
    margin-bottom: 24px;
    gap: 50px;
    align-items: flex-start;
  }
  .product-info-secondary .navlist-subheading h4 {
    font-size: 1.75rem;
  }
}
@media (min-width: 1400px) {
  .product-info {
    gap: 60px;
  }
  .product-info h4.section-title {
    font-size: 2rem;
  }
  .product-info-main {
    grid-template-columns: 1fr 424px;
    padding-bottom: 80px;
    border-bottom: 1px solid #F0F2F3;
    column-gap: 40px;
  }
  .product-info-general .currency-selector {
    font-size: 1.125rem;
  }
  .product-info-special {
    padding: 24px;
    font-size: 1rem;
    line-height: 120%;
  }
  .product-info-special h2, .product-info-special h3 {
    font-size: 2rem;
  }
  .product-info-tabs {
    justify-content: space-between;
    max-width: 800px;
    left: 50%;
    transform: translateX(-50%);
  }
  .product-info-secondary {
    gap: 40px;
  }
  .product-info-secondary hr {
    width: 0;
  }
  .product-info-secondary .navlist-subheading h4 {
    font-size: 2rem;
  }
  .product-info-secondary .navlist-toggler {
    width: 40px;
    height: 40px;
  }
  .product-info-secondary .navlist-toggler-icon {
    width: 40px;
    height: 40px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40" fill="none"><path d="M30 25L20 15L10 25" stroke="%23333333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  }
}
@media (min-width: 1920px) {
  .product-info {
    gap: 80px;
  }
  .product-info h4.section-title {
    font-size: 2.25rem;
  }
  .product-info-special h2, .product-info-special h3 {
    font-size: 2.25rem;
  }
  .product-info-secondary .navlist-subheading {
    margin-bottom: 40px;
    gap: 60px;
  }
  .product-info-secondary .navlist-subheading h4 {
    font-size: 2.25rem;
  }
}
.product-image {
  text-align: center;
  padding: 6px;
  display: flex;
  align-items: center;
  position: relative;
}
.product-image .icon-zoom-in {
  position: absolute;
  right: 8px;
  bottom: 12px;
  padding: 10px 11px;
  border-radius: 6px;
  border: 1px solid #003871;
  background: #ffffff;
}
.product-image-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
  grid-area: image;
  max-width: calc(100vw - 48px);
}
.product-image-carousel .carousel-item {
  padding: 24px 0;
}
.product-image-carousel .carousel-item img {
  max-width: 100%;
  cursor: pointer;
}
.product-image-carousel .carousel-controls {
  display: flex;
  column-gap: 31px;
  position: relative;
}
.product-image-carousel .carousel-controls > button {
  display: none;
}
.product-image-carousel .carousel-indicators {
  position: initial;
  margin: 4px 0 0 0;
  justify-content: flex-start;
}
.product-image-carousel .carousel-indicators [data-bs-target] {
  width: 96px;
  min-width: 96px;
  height: 96px;
  border-radius: 6px;
  background: #fff;
  border: 2px solid #F0F2F3;
  display: flex;
  align-items: center;
  cursor: pointer;
  margin: 0;
  box-sizing: border-box;
}
.product-image-carousel .carousel-indicators [data-bs-target] img {
  width: 100%;
  height: auto;
}
.product-image-carousel .carousel-indicators [data-bs-target].active {
  border-color: #003871;
  border-radius: 2px;
}
.product-image-carousel .carousel-indicators [data-bs-target].active:hover {
  cursor: default;
}
.product-image-thumbnails {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  /* For WebKit-based browsers (Chrome, Safari, Edge, Opera) */
}
.product-image-thumbnails::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: #F4F4F7; /* or add it to the track */
  border-radius: 10px;
}
.product-image-thumbnails::-webkit-scrollbar-thumb {
  background: #CBCBCD;
  border-radius: 10px;
}

@media (min-width: 576px) {
  .product-image {
    text-align: center;
    padding: 6px;
    display: flex;
    align-items: center;
    position: relative;
  }
  .product-image .icon-zoom-in {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 10px 11px;
    border-radius: 6px;
    border: 1px solid #003871;
    background: #ffffff;
  }
  .product-image-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
    grid-area: image;
    max-width: calc(100vw - 48px);
  }
  .product-image-carousel .carousel-item {
    padding: 24px 0;
  }
}
@media (min-width: 768px) {
  .product-image-container {
    max-width: 60%;
    text-align: center;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .product-image-container {
    max-width: calc(100vw - 296px - 48px - 320px - 30px - 30px);
    text-align: left;
    margin: 0;
  }
  .product-image-carousel .carousel-item {
    padding: 50px 0;
  }
  .product-image-carousel .carousel-controls {
    align-items: center;
  }
  .product-image-carousel .carousel-controls > button {
    display: block;
    position: initial;
    width: 50px;
    height: 50px;
    transform: none;
  }
  .product-image-carousel .carousel-indicators {
    margin: 16px 0 0 0;
    flex: 1;
  }
  .product-image-carousel .carousel-indicators [data-bs-target].active {
    border-color: #003871;
    border-radius: 6px;
  }
}
@media (min-width: 1400px) {
  .product-image {
    padding: 10px;
  }
  .product-image > img {
    height: auto;
  }
  .product-image .icon-zoom-in {
    right: 10px;
    bottom: 10px;
  }
  .product-image-container {
    gap: 16px;
    max-width: calc(100vw - 100px - 424px - 40px - 40px - 330px);
  }
  .product-image-thumbnails {
    gap: 31px;
  }
  .product-image-carousel .carousel-item {
    padding: 73px 0;
  }
  .product-image-carousel .carousel-controls > button {
    width: 60px;
    height: 60px;
  }
}
@media (min-width: 1920px) {
  .product-image-container {
    max-width: 676px;
  }
}
#zoomedInImageModal .modal-body {
  justify-content: center;
}
#zoomedInImageModal .modal-body-content {
  overflow: hidden;
}
#zoomedInImageModal img {
  max-width: 90vw;
  max-height: 80vh;
}
#zoomedInImageModal .carousel-control-prev {
  margin-left: 15px;
}
#zoomedInImageModal .carousel-control-next {
  margin-right: 15px;
}

.product-video {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
  /* Then style the iframe to fit in the container div with full height and width */
}
.product-video .responsive-iframe, .product-video .responsive-iframe-fullscreen {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.product-video .responsive-iframe-fullscreen {
  max-width: calc(100vw - 52px);
  max-height: calc(100vh - 52px);
}
.product-video .open-modal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 744px) {
  .product-video .responsive-iframe-fullscreen {
    max-width: calc(100vw - 100px);
    max-height: calc(100vh - 100px);
  }
}
.product-spec-table {
  color: #555;
  font-size: 0.875rem;
  line-height: 120%;
  border-collapse: collapse;
  min-width: 327px;
}
.product-spec-table td {
  border: 1px solid #F4F4F7;
  padding: 8px 12px;
  height: 48px;
  min-width: 160px;
}
.product-spec-label {
  padding-right: 28px;
}
.product-spec-value {
  font-weight: 700;
  padding-left: 28px;
  text-align: right;
}

@media (min-width: 768px) {
  .product-spec-table {
    min-width: 434px;
  }
}
@media (min-width: 1400px) {
  .product-spec {
    font-size: 1rem;
    line-height: 120%;
  }
  .product-spec-table td {
    min-width: 217px;
  }
}
.storage-benefit {
  flex: 1;
  border-left: 2px solid #F0F2F3;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.875rem;
  line-height: normal;
}
.storage-benefit-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #000;
}
.storage-benefit-contact > div {
  display: flex;
  gap: 16px;
}
.storage-benefit-contact-label {
  width: 90px;
}
.storage-benefit-contact a {
  color: #000;
}
.storage-benefits-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 1400px) {
  .storage-benefits-row {
    flex-direction: row;
    gap: 32px;
  }
}
#productInfoMint h2 {
  display: none;
}

#product_just_stars .SA__total_reviews {
  display: flex;
  align-items: center;
}
#product_just_stars .SA__total_reviews a {
  font-size: 0.75rem !important;
  color: #000;
  margin-left: 6px;
  padding-top: 3px;
}

#item_price {
  font-size: 1.875rem;
  line-height: 120%;
  color: #293343;
  display: flex;
  gap: 8px;
  align-items: center;
}
#item_price .promo_red {
  color: #CF4055;
}
#item_price .reg_price {
  color: #555;
  font-size: 1.125rem;
  text-decoration: line-through;
}

@media (min-width: 1200px) {
  #item_price {
    font-size: 1.5rem;
  }
}
@media (min-width: 1400px) {
  #item_price {
    font-size: 1.75rem;
  }
}
@media (min-width: 1920px) {
  #item_price {
    font-size: 1.875rem;
  }
}
/* child product */
#product_select_block {
  max-width: 347px;
}

.add_msg_container {
  display: none;
}
.add_msg_container p {
  padding-left: 20px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="17" viewBox="0 0 16 17" fill="none"><path d="M13.3346 4.5L6.0013 11.8333L2.66797 8.5" stroke="%2300884A" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: left center;
  margin-bottom: 8px;
  color: #293343;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 120%;
}

.purchase-cta {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quantity_input_block {
  display: flex;
  gap: 8px;
  align-items: center;
}
.quantity_input_block .btn.add {
  font-size: 1.125rem;
  white-space: nowrap;
}

.product-status {
  color: #555;
  font-size: 0.875rem;
  line-height: 120%;
}
.product-status-title {
  font-size: 1.25rem;
  color: #293343;
  margin-bottom: 8px;
  line-height: 120%;
}
.product-status a {
  color: #0680CD;
}

@media (min-width: 576px) {
  .product-status {
    font-size: 1rem;
  }
}
@media (min-width: 1400px) {
  .product-status {
    max-width: 372px;
  }
}
.continue-shopping-cta .btn {
  padding: 12px 16px;
  width: max-content;
}

.bulk-discount-list {
  width: max-content;
}
.bulk-discount-list th, .bulk-discount-list td {
  text-align: center;
  line-height: 120%;
  padding-left: 24px;
}
.bulk-discount-list th:first-of-type, .bulk-discount-list td:first-of-type {
  padding-left: 0;
}
.bulk-discount-list th {
  color: #293343;
  font-weight: 700;
  font-size: 0.75rem;
}
.bulk-discount-list th[data-bs-toggle] {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  cursor: pointer;
}
.bulk-discount-list th span {
  display: block;
}
.bulk-discount-list td {
  color: #333;
  font-size: 0.875rem;
  padding-top: 8px;
}

@media (min-width: 576px) {
  .bulk-discount-list th span {
    display: inline;
  }
}
@media (min-width: 1200px) {
  .bulk-discount-list th, .bulk-discount-list td {
    padding-left: 12px;
  }
}
@media (min-width: 1400px) {
  .bulk-discount-list th, .bulk-discount-list td {
    padding-left: 24px;
  }
}
.product-availability-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #555;
  line-height: 120%;
  font-size: 0.75rem;
}
.product-availability-info *[data-bs-toggle=tooltip] {
  width: auto;
  cursor: pointer;
}
.product-availability-info .icon {
  margin-right: 4px;
  vertical-align: center;
  width: 16px;
  height: 16px;
}

.free-shipping-support {
  padding: 0 24px;
  border-radius: 6px;
  border: 1px solid #F4F4F7;
}
.free-shipping-support > div {
  padding: 16px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  line-height: 20px;
  color: #555;
  font-size: 0.875rem;
}
.free-shipping-support > div:not(:last-of-type) {
  border-bottom: 1px solid #F4F4F7;
}
.free-shipping-support h6 {
  color: #333;
  font-size: 1rem;
  font-weight: 700;
  line-height: 20px;
  font-family: Arial, Helvetica, sans-serif;
}
.free-shipping-support a {
  color: #555;
}

@media (min-width: 1200px) {
  .free-shipping-support h6 {
    font-size: 0.875rem;
  }
}
@media (min-width: 1400px) {
  .free-shipping-support h6 {
    font-size: 1rem;
  }
}
/* Sell this product to us section*/
.sell-this-product {
  padding: 16px;
  border-radius: 6px;
  background-color: #EBBC4E;
  background-image: url(/images/bg-pdp-sell-to-kitco.png);
  background-size: cover;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  color: #293343;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 120%;
}
.sell-this-product-price {
  font-size: 1.25rem;
  line-height: 120%;
  margin-top: 4px;
}
.sell-this-product-cta {
  border-radius: 6px;
  background: #293343;
  display: inline-flex;
  height: 40px;
  padding: 2px 16px;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  line-height: 28px;
  font-size: 1.125rem;
}

@media (min-width: 1200px) {
  .sell-this-product-price {
    font-size: 1.125rem;
  }
  .sell-this-product-cta {
    font-size: 0.875rem;
  }
}
@media (min-width: 1400px) {
  .sell-this-product-price {
    font-size: 1.25rem;
  }
  .sell-this-product-cta {
    font-size: 1rem;
  }
}
@media (min-width: 1920px) {
  .sell-this-product-cta {
    font-size: 1.125rem;
  }
}
/* SA review */
#SA_review_wrapper .SA__review_container {
  padding: 0;
}

/* Bulk Discount Table */
.table-volume-pricing {
  width: 100%;
}
.table-volume-pricing th {
  padding: 0px 0px 4px 8px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #555;
  line-height: 1rem;
  border-bottom: 1px solid #F4F4F7;
}
.table-volume-pricing th:last-child {
  padding-right: 8px;
}
.table-volume-pricing td {
  padding: 6px 0px 6px 8px;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #333;
}
.table-volume-pricing td:last-child {
  padding-right: 8px;
}
.table-volume-pricing tr.highlighted {
  background: #F4F4F7;
}
.table-volume-pricing-qty {
  width: 108px;
}

@media (min-width: 768px) {
  .table-volume-pricing th {
    font-size: 0.75rem;
  }
}

/*# sourceMappingURL=prod-details-v2.css.map */
