/*!
 * -------------------------------------------------------------------------------
 * Product catalog page (webuy) - 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: 0;
}

@media (min-width: 968px) {
  main > section {
    padding: 0 50px 44px 50px;
  }
}
@media (min-width: 1200px) {
  main > section {
    padding: 0 24px 44px 24px;
  }
}
@media (min-width: 1400px) {
  main > section {
    padding: 0 50px 44px 50px;
  }
}
@media (min-width: 1920px) {
  main > section {
    padding: 0 100px 88px 100px;
  }
}
h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  line-height: 120%;
  font-weight: 700;
  margin-bottom: 16px;
  color: #000;
}

.sell-main {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

.header-section {
  padding: 24px 24px 0 24px;
  margin-bottom: 4px;
  display: flex;
  flex-direction: column;
}
.header-section .searchbox {
  position: relative;
}
.header-section #sell-searchresults-container {
  top: 50px;
  width: 100%;
  position: absolute;
  right: 0;
  border-top: 4px solid rgb(0, 56, 113);
  border-bottom: 4px solid rgb(0, 56, 113);
  background: #ffffff;
  z-index: 99990;
  padding: 0;
  display: none;
  -webkit-box-shadow: 0px 6px 5px 3px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 6px 5px 3px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 6px 5px 3px rgba(0, 0, 0, 0.16);
}
.header-section #sell-searchresults-container .searchresults {
  width: 100%;
}
.header-section #sell-searchresults-container .searchresults .items .info {
  width: auto;
}
.header-section #sell-searchresults-container #sell-show-more-from-search {
  background: rgb(0, 56, 113);
  text-align: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 5px 0;
  cursor: pointer;
}
.header-section .form-search {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.header-section .form-search .form-group {
  display: flex;
  position: relative;
  width: 100%;
}
.header-section .form-search input {
  height: 50px;
  padding: 10px 16px 10px 44px;
  border-radius: 4px;
  border: 1px solid var(--Secondary-Dark-Navy, #293343);
  background: rgba(6, 128, 205, 0.08);
  color: #555;
  font-weight: 700;
  font-size: 1rem;
  line-height: 120%;
  flex: 1;
}
.header-section .form-search button {
  outline: none;
  box-shadow: none;
  background-color: transparent;
  border: none;
  position: absolute;
  left: 16px;
  top: 12px;
  padding: 0;
}
.header-section #no-product-found-link {
  color: #293343;
  font-weight: bold;
  font-size: 1rem;
  line-height: 120%;
  cursor: pointer;
  width: max-content;
}
.header-section #payout-info-block {
  position: fixed;
  padding: 16px;
  bottom: 0;
  left: 0;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  border-top: 1px solid #F0F2F3;
  background: #ffffff;
  box-shadow: 0 -3px 32px 0 rgba(0, 0, 0, 0.06);
  z-index: 1;
}
.header-section #payout-info-block > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header-section #payout-info-block .estimate-payout {
  gap: 6px;
  color: #000;
  font-size: 1rem;
  line-height: 120%;
  font-weight: 700;
}
.header-section #payout-info-block .estimate-payout .column {
  display: none;
}
.header-section #payout-info-block #minimum-displace-div {
  display: none;
  padding-top: 16px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 120%;
  color: #333;
  text-align: center;
}
.header-section #payout-info-block #minimum-displace-div.red {
  color: #CF4055;
}
.header-section #payout-info-block .sell_btn {
  border-radius: 6px;
  margin-bottom: 0;
  padding: 10px 39px;
  width: 100%;
  max-width: 375px;
  height: 52px;
  font-size: 1.5rem;
  line-height: 20px;
  font-weight: 700;
  border: none;
}
.header-section #payout-info-block .sell_btn:disabled {
  background: linear-gradient(180deg, #B8B8B8 0%, #4D4C4C 100%);
  opacity: 1;
}
.header-section #payout-info-block .sell_btn:hover {
  color: #ffffff;
}

.main .container_content {
  flex: 1;
}

@media (min-width: 992px) {
  .sell-main {
    display: grid;
    column-gap: 24px;
    grid-template-areas: "header header" "main banner";
    grid-template-columns: 1fr 178px;
  }
  #container_content {
    flex: 1;
  }
  .header-section {
    grid-area: header;
    padding: 24px 0;
    flex-direction: row;
    justify-content: space-between;
    column-gap: 60px;
  }
  .header-section .heading-block {
    flex: 1;
  }
  .header-section #payout-info-block {
    position: initial;
    gap: 20px;
    width: auto;
    border: none;
    box-shadow: none;
    align-items: flex-end;
    padding: 0;
  }
  .header-section #payout-info-block > div {
    align-items: flex-end;
  }
  .header-section #payout-info-block .estimate-payout {
    flex-direction: row;
    gap: 0;
    font-size: 1.25rem;
  }
  .header-section #payout-info-block .estimate-payout .column {
    display: inline;
  }
  .header-section #payout-info-block #minimum-displace-div {
    padding-top: 8px;
    font-size: 0.875rem;
  }
  .header-section #payout-info-block .sell_btn {
    width: 291px;
    font-size: 1.25rem;
  }
  .main {
    grid-area: main;
  }
  .spot-container {
    grid-area: banner;
  }
}
@media (min-width: 1200px) {
  .header-section {
    margin-bottom: 20px;
  }
  .main {
    display: flex;
    gap: 24px;
  }
}
@media (min-width: 1920px) {
  h1 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .header-section {
    margin-bottom: 60px;
  }
  .header-section #payout-info-block .estimate-payout {
    font-size: 1.5rem;
  }
}
/* Main product list */
#product-container {
  padding: 20px 24px 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
}

.toolbar {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}
.toolbar-tool-title {
  color: #333;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 120%;
}
.toolbar-view {
  background-color: #F4F4F7;
  padding: 2px;
  border-radius: 6px;
  display: none;
}
.toolbar-view .tabs-bg__button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
  color: #333;
  cursor: pointer;
  transition: all 0.5s;
}
.toolbar-view .tabs-bg__button svg {
  stroke: #333;
}
.toolbar-view .tabs-bg__button.active {
  background-color: #ffffff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.1), 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  color: #0680CD;
  cursor: default;
}
.toolbar-view .tabs-bg__button.active svg {
  stroke: #0680CD;
}
.toolbar-tools {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}
.toolbar-currency {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 9px;
}
.toolbar-mobile {
  display: flex;
  gap: 12px;
}
.toolbar-mobile > * {
  flex: 1;
}
.toolbar-mobile .btn {
  gap: 10px;
}
.toolbar .btn-filter {
  display: flex;
  width: 32px;
  height: 32px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  border: 1px solid #CBCBCD;
}
.toolbar .sort-by-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  list-style: none;
}
.toolbar .sort-by-list .list-item {
  padding: 0 12px;
  height: 28px;
  color: #333;
  font-size: 1.125rem;
  justify-content: center;
  line-height: 28px;
}
.toolbar .sort-by-list .list-item.active, .toolbar .sort-by-list .list-item:hover {
  background-color: #F4F4F7;
}

.product-list {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
  justify-content: center;
  align-items: flex-start;
}

.product-card {
  width: 100%;
  display: flex;
  column-gap: 16px;
  row-gap: 24px;
}

.product-card img {
  width: 72px;
  height: auto;
}

.headline_product_link {
  margin-bottom: 0;
  color: #003871;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 120%;
  text-overflow: ellipsis;
  height: 17px;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.product-price {
  color: #000;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 120%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-price-blk {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: stretch;
}

.product-name-price {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}

.product-price.blank {
  height: 0;
  display: none;
}

.product-card img:hover, .product-price:hover, .price_product:hover {
  cursor: pointer;
}

.product-price.blank:hover {
  cursor: default;
}

.sell_field {
  position: initial;
}
.sell_field .btn.call {
  margin: 0;
  padding: 4px 20px;
  font-size: 0.875rem;
  line-height: 120%;
  border-radius: 4px;
  color: #ffffff;
  border: 0;
  height: auto;
}

.price_product {
  white-space: nowrap;
}

.quantity_input {
  font-size: 0.875rem;
  line-height: 120%;
  color: #555;
  text-align: center;
  padding: 6px;
  height: 25px;
  border: 1px solid #CBCBCD;
  width: 100px;
  border-radius: 0px;
}
.quantity_input.error {
  border: 2px solid #CF4055;
}

.unit_input_block select {
  padding: 0 6px;
  border-radius: 0px;
  border-left: none;
  height: 25px;
  font-size: 0.875rem;
  line-height: 120%;
  color: #555;
  font-weight: 400;
  width: 52px;
  height: 25px;
  background-position: calc(100% - 6px) center;
  background-size: 12px 12px;
}

.quantity_input_block {
  display: flex;
  column-gap: 8px;
}
.quantity_input_block .btn.add {
  width: 68px;
  padding: 4px 20px;
  font-size: 0.875rem;
  line-height: 120%;
  border-radius: 4px;
  color: #ffffff;
  border: 0;
  height: auto;
}

.weight_input_block {
  display: flex;
}

.add-cart-msg, .qty-error-msg {
  display: none;
  color: #00884A;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 120%;
  align-items: flex-start;
  margin-top: 8px;
  column-gap: 4px;
}
.add-cart-msg img, .qty-error-msg img {
  width: 13.5px;
  height: 11px;
  margin: -2px 0 0 4px;
  align-self: center;
}

.qty-error-msg {
  color: #CF4055;
}

#search-result-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 12px;
  padding: 12px 0;
}
#search-result-info .title {
  color: #293343;
  font-size: 1.5rem;
  line-height: 110%;
  font-family: "bodoni", Georgia, serif;
}
#search-result-info a {
  color: #0680CD;
  font-size: 1.125rem;
  line-height: normal;
  text-transform: capitalize;
}

@media (min-width: 768px) {
  #product-container {
    padding: 24px;
    border-radius: 4px;
    gap: 32px;
  }
  .toolbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
  }
  .toolbar-view {
    display: flex;
  }
  .toolbar-tools {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
  .product-list {
    flex-direction: row;
    row-gap: 40px;
    column-gap: 20px;
    flex-wrap: wrap;
  }
  .product-card {
    width: calc((100% - 40px) / 3);
    text-align: center;
    flex-direction: column;
  }
  .product-card img {
    margin: 0 auto;
    width: auto;
    height: 110px;
  }
  .headline_product_link {
    font-size: 1rem;
    -webkit-line-clamp: 2;
    height: 38.5px;
  }
  .product-price {
    font-size: 1rem;
  }
  .product-info {
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .product-price-blk {
    text-align: center;
    justify-content: space-between;
    flex: 1;
  }
  .product-price.blank {
    height: auto;
    display: block;
  }
  .sell_field {
    min-width: 151px;
  }
  .sell_field .btn.call {
    padding: 8px 30px;
    margin: 0 auto;
  }
  .quantity_input {
    font-size: 1rem;
    text-align: left;
    padding: 6px 16px 6px 10px;
    height: 38px;
  }
  .quantity_input_block {
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
  }
  .quantity_input_block .btn.add {
    width: 68px;
    padding: 8px 30px;
  }
  .unit_input_block select {
    width: 70px;
    height: 38px;
    text-align: left;
    padding: 0 10px;
    font-size: 1rem;
    background-position: calc(100% - 10px) center;
    background-size: 16px 16px;
  }
  .add-cart-msg, .qty-error-msg {
    margin-top: 4px;
    width: 100%;
    justify-content: center;
    margin-top: 6px;
  }
  .add-cart-msg img, .qty-error-msg img {
    width: 13.5px;
    height: 11px;
    margin: -2px 0 0 4px;
  }
  #search-result-info {
    flex-wrap: nowrap;
    column-gap: 20px;
    padding: 32px 0;
  }
  #search-result-info .title {
    font-size: 2.25rem;
  }
  /* List view */
  .product-list.list {
    row-gap: 0;
    /*.product-list.list .product-card:not(:last-of-type) {border-bottom: 1px solid rgba(158, 171, 189, 0.50);}*/
  }
  .product-list.list .product-card {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid #CBCBCD;
  }
  .product-list.list .product-card img {
    display: none;
  }
  .product-list.list .product-img-container {
    display: none;
  }
  .product-list.list .headline_product_link {
    height: auto;
    max-width: 320px;
    white-space: nowrap;
    font-size: 0.875rem;
  }
  .product-list.list .product-price-blk {
    flex-direction: row;
    align-items: center;
    column-gap: 16px;
    justify-content: space-between;
    width: 100%;
  }
  .product-list.list .product-name-price {
    flex-direction: row;
    justify-content: space-between;
    flex: 1;
  }
  .product-list.list .product-price {
    flex-grow: 1;
    font-size: 0.875rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-end;
  }
  .product-list.list .price_product.per-g {
    margin-left: 16px;
  }
  .product-list.list .sell_field {
    text-align: right;
  }
  .product-list.list .sell_field .btn.call {
    height: 25px;
    padding: 4px 20px;
    margin: 0 0 0 auto;
    font-size: 0.875rem;
  }
  .product-list.list .quantity_input_block {
    flex-wrap: nowrap;
  }
  .product-list.list .quantity_input_block .btn.add {
    width: 68px;
    height: 25px;
    padding: 4px 20px;
    font-size: 0.875rem;
  }
  .product-list.list .quantity_input {
    width: 100px;
    height: 25px;
    font-size: 0.875rem;
    text-align: center;
  }
  .product-list.list .unit_input_block select {
    width: 52px;
    height: 25px;
    font-size: 0.875rem;
    padding: 0 6px;
    background-position: calc(100% - 6px) center;
    background-size: 12px 12px;
  }
  .product-list.list .add-cart-msg {
    justify-content: flex-end;
    margin-top: 8px;
  }
  .product-list.list .add-cart-msg img {
    display: inline;
    margin-right: 7px;
  }
  .product-list.list .qty-error-msg {
    text-align: right;
    margin-top: 8px;
  }
}
@media (min-width: 992px) {
  #product-container {
    border-radius: 4px;
    border: 2px solid #F0F2F3;
  }
  .product-list.list .headline_product_link {
    max-width: 250px;
  }
}
@media (min-width: 1200px) {
  .quantity_input {
    width: 80px;
    padding: 7px 8px;
    font-size: 0.875rem;
    height: auto;
  }
  .quantity_input_block {
    align-items: center;
  }
  .quantity_input_block .btn.add {
    padding: 8px 12px;
  }
  .product-list.list .headline_product_link {
    max-width: 200px;
  }
}
@media (min-width: 1400px) {
  .headline_product_link {
    font-size: 1.125rem;
    height: 43.2px;
  }
  .product-price {
    font-size: 1.125rem;
  }
  .quantity_input {
    width: 110px;
    height: 38px;
    font-size: 1rem;
  }
  .quantity_input_block .btn.add {
    width: 96px;
    padding: 8px 30px;
    font-size: 1rem;
    height: 38px;
  }
  .sell_field .btn.call {
    font-size: 1rem;
  }
  .product-list.list .headline_product_link {
    max-width: 300px;
  }
}
@media (min-width: 1920px) {
  .quantity_input_block {
    flex-wrap: nowrap;
  }
  .quantity_input_block .btn.add {
    font-size: 1.125rem;
  }
  .quantity_input {
    width: 139px;
  }
  .weight_input_block .quantity_input {
    width: 121px;
  }
  .sell_field .btn.call {
    font-size: 1.125rem;
  }
  .product-list.list .product-price {
    flex-grow: 1;
    white-space: nowrap;
    font-size: 0.875rem;
    flex-direction: row;
    justify-content: flex-end;
  }
  .product-list.list .headline_product_link {
    max-width: 420px;
  }
}
/* no search result found block & no filtered result match block*/
.empty-result-blk {
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  padding-top: 40px;
}
.empty-result-blk p {
  margin-bottom: 1rem;
}
.empty-result-blk h2 {
  color: #293343;
  line-height: 110%;
  font-size: 2.25rem;
}
.empty-result-blk .heading {
  color: #293343;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 120%;
}
.empty-result-blk .btn.btn-clear-search {
  margin: 0 auto;
}
.empty-result-blk-grey-container {
  display: flex;
  padding: 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  align-self: stretch;
  border-radius: 4px;
  background: #F4F4F7;
  color: #555;
  text-align: left;
  max-width: 400px;
  margin: 0 auto;
}
.empty-result-blk-grey-container .title {
  color: #000;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 120%;
  margin-bottom: 12px;
}
.empty-result-blk-grey-container .small-text {
  font-size: 0.75rem;
}

/* Contact instructions */
.contact-instructions {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  justify-content: center;
  font-size: 0.875rem;
}

.contact-instructions > div {
  display: flex;
  align-items: flex-start;
  column-gap: 8px;
}

.contact-instructions img {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.pop-up__container .contact-instructions {
  row-gap: 12px;
  font-size: 18px;
  justify-content: flex-start;
  width: auto;
}

@media (min-width: 968px) {
  .pop-up__container .contact-instructions {
    row-gap: 16px;
    font-size: 16px;
    justify-content: center;
    width: 360px;
  }
}
@media (min-width: 1400px) {
  .empty-result-blk {
    row-gap: 60px;
    padding-top: 0;
  }
  .empty-result-blk > div {
    margin: 0 auto;
  }
  .empty-result-blk p {
    max-width: 400px;
  }
  .empty-result-blk h2 {
    font-size: 3rem;
  }
  .empty-result-blk-grey-container {
    padding: 20px;
    max-width: 509px;
    margin: 0 auto;
    width: 100%;
  }
  .empty-result-blk-grey-container .title {
    font-size: 1.5rem;
    white-space: nowrap;
  }
  .empty-result-blk-grey-container .small-text {
    font-size: 0.75rem;
  }
}
/* POP-UP nextGen style */
.pop-up, .pop-uppermost {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1100;
  display: none;
  overflow: hidden;
}

@media (min-width: 968px) {
  .pop-up, .pop-uppermost {
    padding-left: 17px;
  }
}
@media (min-width: 1024px) {
  .pop-up, .pop-uppermost {
    align-items: center;
    justify-content: center;
  }
}
.pop-up--active .pop-up__content, .pop-uppermost--active .pop-up__content {
  animation-name: drawerOpen;
  animation-duration: var(--animation-speed-modal-wrapper-animation);
  animation-fill-mode: forwards;
}

@media (min-width: 1024px) {
  .pop-up--active .pop-up__content, .pop-uppermost--active .pop-up__content {
    animation-name: fade-in;
    animation-duration: var(--animation-speed-modal-wrapper-animation);
    animation-direction: normal;
    animation-fill-mode: backwards;
  }
}
.pop-up-with-aside__overlay, .pop-up__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  cursor: pointer;
  background: rgba(30, 30, 30, 0.4);
}

.pop-up__mobile-control {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .pop-up__mobile-control {
    display: none;
  }
}
.pop-up__mobile-control {
  height: 23px;
}

.pop-up__mobile-control:after {
  position: absolute;
  --tw-bg-opacity: 1;
  background-color: rgba(77, 92, 111, var(--tw-bg-opacity));
  content: "";
  height: 2px;
  width: 24px;
  margin-left: -12px;
  left: 50%;
  top: 7px;
}

.pop-up__content {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  --tw-shadow: 2px 20px 80px rgba(0, 0, 0, 0.08);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
  top: 47px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding-top: 21px;
  animation-name: drawerClose;
  animation-duration: var(--animation-speed-modal-wrapper-animation);
  animation-delay: var(--animation-speed-modal-wrapper-animation-delay);
  animation-fill-mode: backwards;
  display: flex;
  font-size: 16px;
}

@media (min-width: 1024px) {
  .pop-up__content {
    position: relative;
    top: 0;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: calc(100vh - 110px);
    min-height: 240px;
    border-radius: 10px;
    transform: none;
    padding-top: 0;
    max-width: 635px;
    animation-name: fade-out;
    animation-duration: var(--animation-speed-modal-wrapper-animation);
    animation-delay: 0s;
    animation-direction: normal;
  }
  .pop-up__content.full {
    max-width: 80vw;
    max-height: calc(100vh - 100px);
  }
  .pop-up-with-padding .pop-up__content {
    padding: 24px;
    max-width: 965px;
  }
}
@media (min-width: 1400px) {
  .pop-up__content.full {
    max-width: 1330px;
  }
}
.pop-up__container {
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 1024px) {
  .pop-up__container {
    padding-left: 59px;
    padding-right: 59px;
  }
  .pop-up-with-padding .pop-up__container {
    padding-left: 0px;
    padding-right: 0px;
  }
}
.pop-up__container--mobile-centered {
  position: absolute;
  inset: 0;
  bottom: 23px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 1024px) {
  .pop-up__container--mobile-centered {
    display: block;
    position: static;
  }
}
.pop-up__header {
  padding-left: 24px;
}

@media (min-width: 1024px) {
  .pop-up__header {
    padding-left: 59px;
    padding-right: 59px;
  }
}
.pop-up__header {
  position: relative;
  margin-bottom: 40px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  --tw-border-opacity: 1;
  border-color: rgba(216, 224, 233, var(--tw-border-opacity));
  padding-bottom: 1.375rem;
}

@media (min-width: 1024px) {
  .pop-up__header {
    border-bottom-width: 2px;
  }
  .pop-up-with-padding .pop-up__header {
    padding: 0 40px 16px 0;
    margin-bottom: 24px;
  }
}
.pop-up__header {
  padding-right: 60px;
}

@media (min-width: 1024px) {
  .pop-up__header {
    padding-top: 46px;
    padding-bottom: 23px;
    padding-right: 80px;
  }
  .pop-up__header--theme-info {
    margin-bottom: 0;
    border-style: none;
    padding-bottom: 0.875rem;
  }
}
.pop-up__close {
  position: absolute;
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
  top: 2px;
  right: 27px;
  background-color: transparent;
  background-image: none;
  border: 0;
}

@media (min-width: 1024px) {
  .pop-up__close {
    top: 45px;
    right: 45px;
  }
  .pop-up-with-padding .pop-up__close {
    top: 0px;
    right: 0px;
  }
}
.pop-up__title {
  display: flex;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  letter-spacing: 0.2px;
  --tw-text-opacity: 1;
  color: rgba(44, 54, 66, var(--tw-text-opacity));
}

@media (min-width: 1024px) {
  .pop-up__title {
    font-size: 26px;
    line-height: normal;
    padding-bottom: 0;
  }
  .pop-up-with-padding .pop-up__title {
    font-size: 20px;
  }
}
.pop-up__sub-title {
  display: none;
  --tw-text-opacity: 1;
  color: rgba(77, 92, 111, var(--tw-text-opacity));
}

@media (min-width: 1024px) {
  .pop-up__sub-title {
    display: block;
    margin-top: 3px;
    margin-bottom: 6px;
  }
}
.pop-up__scroll {
  position: relative;
  width: 100%;
  overflow-y: auto;
  padding-bottom: 20px;
}

@media (min-width: 1024px) {
  .pop-up__scroll {
    padding-bottom: 0;
  }
}
.pop-up__footer {
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 1024px) {
  .pop-up__footer {
    padding-left: 59px;
    padding-right: 59px;
  }
}
.pop-up__footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  padding-top: 24px;
  padding-bottom: 24px;
}

@media (min-width: 1024px) {
  .pop-up__footer {
    position: static;
    flex-direction: row;
    padding-top: 40px;
    padding-bottom: 46px;
  }
}
.pop-up__footer {
  box-shadow: 0 4px 20px 4px rgba(0, 0, 0, 0.15);
}

@media (min-width: 1024px) {
  .pop-up__footer {
    box-shadow: none;
  }
  .pop-up__footer button:first-of-type {
    margin-left: 0;
  }
  .pop-up__footer--results {
    padding-top: 21px;
    padding-bottom: 95px;
  }
}
.pop-up__cta_btn {
  border-radius: 6px;
  background: var(--Current-Store-Button, linear-gradient(180deg, #296693 0%, #003871 100%));
  display: flex;
  width: 255px;
  height: 46px;
  padding: 10px 34px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #fff !important;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 0.2px;
  border: 0;
  margin: 10px auto 0 auto;
}

#call-to-sell-popup .pop-up__container, #call-helpdesk-sell-popup .pop-up__container {
  text-align: center;
  padding-bottom: 46px;
}

#call-to-sell-popup .pop-up__container a.btn, #call-helpdesk-sell-popup .pop-up__container a.btn {
  margin: 40px auto;
}

/* Bookmark instructions */
#bookmark .btn {
  padding: 8px 30px;
  font-size: 1.125rem;
  line-height: 120%;
  width: 100%;
  border-radius: 4px;
  color: #ffffff;
  border: none;
}

.bookmark-instructions-content {
  display: flex;
  flex-direction: column;
  column-gap: 16px;
  row-gap: 10px;
}

#bookmark-mobile .btn {
  padding: 10px 12px;
}
#bookmark-mobile .btn:active, #bookmark-mobile .btn:hover {
  background: #ffffff;
}

@media (min-width: 768px) {
  #bookmark-mobile .btn {
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    border: 1px solid #CBCBCD;
    padding: 0;
  }
  #bookmark-mobile .btn svg path, #bookmark-mobile .btn svg path:hover {
    stroke: #555;
  }
}
.platform {
  color: #2C3642;
  width: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
  text-align: center;
}

.platform.hidden-xs, .platform.hidden-sm {
  display: none;
}

.platform.visible-xs, .platform.visible-xs {
  display: flex !important;
}

.platform img {
  width: auto;
  height: 28px;
}

.platform ol {
  text-align: left;
  padding-left: 20px;
  max-width: 400px;
}

@media (min-width: 968px) {
  .platform.hidden-xs, .platform.hidden-sm {
    display: flex;
  }
  .platform.visible-xs, .platform.visible-xs {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  .bookmark-instructions-content {
    flex-direction: row;
  }
  .platform {
    width: 50%;
    text-align: left;
    align-items: flex-start;
  }
}
@media (min-width: 1200px) {
  #bookmark {
    margin-top: 24px;
  }
}
/* Product detail POPUP */
.product-detail {
  padding-bottom: 46px;
}

.product-detail, .prod-img-carousel {
  display: flex;
  flex-direction: column;
}

.prod-img-carousel > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.product-detail .product-image {
  display: flex;
  justify-content: center;
  align-items: end;
  width: 100%;
  position: relative;
}

.product-detail .product-image:hover {
  cursor: pointer;
}

.product-detail .product-image img.main {
  width: auto;
  height: auto;
  max-width: 80%;
  max-height: 204px;
}

.product-detail .product-image img.icon-zoomin {
  width: 26px;
  height: auto;
  position: absolute;
  right: 50px;
  bottom: 0;
}

.product-detail .product-image-thumbnails {
  margin: 20px auto;
  display: flex;
  justify-content: center;
  column-gap: 8px;
}

.product-detail .product-image-thumbnails img, .prod-img-carousel .prod-img-carousel-thumbnails img {
  width: auto;
  height: auto;
  max-width: 40px;
  max-height: 40px;
}

.product-detail .product-image-thumbnails div.product-thumb {
  border-radius: 3px;
  border: 2px solid #fff;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
}

.product-detail .product-image-thumbnails div.product-thumb.selected {
  border: 2px solid var(--Sell-Black---Links, #000);
}

.product-detail .product-specifications {
  border-collapse: collapse;
  color: #555;
  font-size: 16px;
  line-height: normal;
  width: 100%;
}

.product-detail .product-specifications th {
  height: 43px;
  background: #000;
  color: #fff;
  padding: 10px 14px;
  font-weight: 700;
}

.product-detail .product-specifications td {
  border: 1px solid var(--System-Line, #D8E0E9);
  padding: 8px 14px;
  width: 50%;
  vertical-align: top;
}

.product-detail .product-specifications td > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 8px;
  color: #2C3642;
}

.product-detail .product-specifications td .spec-name {
  font-size: 12px;
}

.product-detail .product-specifications td .spec-value {
  font-size: 16px;
}

.product-detail .product-price-addcart {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 8px;
}

.product-detail .product-price-container {
  font-size: 20px;
  line-height: normal;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  row-gap: 2px;
  white-space: nowrap;
}

.product-detail .product-price-container .sub {
  font-size: 12px;
  font-weight: 400;
  color: #555;
}

.product-detail .sell_field {
  font-size: 12px;
  position: initial;
}

.product-detail .sell_field.flex-grow {
  flex-grow: 1;
}

.product-detail .quantity_input {
  width: 86px;
  height: 22px;
  padding: 10px;
}
.product-detail .unit_input_block select {
  width: 66px;
  height: 22px;
  padding: 0px;
  text-align: center;
  background-position: calc(100% - 6px) center;
}
.product-detail .quantity_input_block {
  column-gap: 5px;
  justify-content: flex-end;
}
.product-detail .quantity_input_block .btn.add {
  width: 60px;
  padding: 4px 16px;
  font-size: 0.875rem;
  line-height: 1em;
  border-radius: 3px;
  height: auto;
}
.product-detail .sell_field .btn.call {
  font-size: 0.875rem;
  line-height: 1em;
  padding: 4px 16px;
  border-radius: 3px;
}
.product-detail .add-cart-msg {
  justify-content: flex-end;
}
.product-detail .qty-error-msg {
  text-align: right;
}

@media (min-width: 768px) {
  .product-detail .quantity_input {
    font-size: 0.875rem;
    text-align: center;
    width: 86px;
    height: 22px;
    padding: 10px;
  }
  .product-detail .unit_input_block select {
    width: 52px;
    height: 22px;
    padding-left: 6px;
    border-radius: 0px;
    text-align: left;
    font-size: 0.875rem;
    background-position: calc(100% - 6px) center;
  }
}
@media (min-width: 1024px) {
  .product-detail {
    flex-direction: row;
    column-gap: 24px;
    padding-bottom: 0;
  }
  .product-image-container {
    width: 372px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .product-detail .product-image-thumbnails {
    margin: 0;
    padding: 0 24px;
  }
  .product-detail .product-image-thumbnails div.product-thumb {
    width: 64px;
    height: 64px;
  }
  .product-detail .product-image-thumbnails img, .prod-img-carousel .prod-img-carousel-thumbnails img {
    max-width: 60px;
    max-height: 60px;
  }
  .product-information {
    flex-grow: 1;
  }
  .product-detail .product-specifications th, .product-detail .product-specifications td {
    padding: 8px 12px;
  }
  .product-detail .product-specifications td .spec-value {
    font-size: 14px;
  }
  .product-detail .product-specifications td > div {
    row-gap: 4px;
  }
}
.prod-img-carousel {
  display: none;
}

.prod-img-carousel .prod-img-carousel-main {
  width: 70%;
  text-align: center;
}

.prod-img-carousel .prod-img-carousel-main img {
  height: auto;
  width: 95%;
}

.prod-img-carousel .prod-img-carousel-thumbnails {
  display: flex;
  margin-top: 40px;
  column-gap: 8px;
}

.prod-img-carousel .prod-img-carousel-thumbnails > div {
  padding: 2px;
  border-radius: 3px;
  border: 2px solid transparent;
  text-align: center;
}

.prod-img-carousel .prod-img-carousel-thumbnails > div.selected {
  border: 2px solid #000;
}

/* Carousel */
.product-image-thumbnails .row-fluid {
  display: flex;
  justify-content: center;
  column-gap: 12px;
}

.product-image-thumbnails .carousel-control.left, .carousel-control.right {
  width: 34px;
  height: 34px;
  background: url(/images/Oval.svg) no-repeat center;
  opacity: 1;
  margin: 0;
}

.product-image-thumbnails .glyphicon-chevron-left, .product-image-thumbnails .glyphicon-chevron-right {
  top: 45%;
}

.product-image-thumbnails .carousel-control .glyphicon {
  font-size: 22px;
}

.product-image-thumbnails .glyphicon-chevron-left:before {
  content: url(/images/chevron-left.svg);
  width: 20px;
  height: 20px;
}

.product-image-thumbnails .glyphicon-chevron-right:before {
  content: url(/images/chevron-right.svg);
  width: 20px;
  height: 20px;
}

.product-image-thumbnails .carousel-control:hover, .product-image-thumbnails .carousel-control:focus {
  opacity: 1;
}

@media (min-width: 1024px) {
  .prod-img-carousel > div {
    flex-direction: row;
    column-gap: 20px;
  }
  .prod-img-carousel .prod-img-carousel-thumbnails {
    margin-top: 0px;
    column-gap: 0;
    row-gap: 8px;
    flex-direction: column;
  }
}
@media (min-width: 1024px) {
  .prod-img-carousel .prod-img-carousel-main img {
    height: calc(100vh - 450px);
    width: auto;
  }
}
/* Range slider & inputs*/
.range_container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.sliders_control {
  position: relative;
  min-height: 12px;
  margin: 7px 0 8px 0;
}

input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  width: 100%;
  position: absolute;
  background-color: #003871;
  pointer-events: none;
  padding: 0;
  border: 0;
  border-radius: 0px;
}

/* chromium */
input[type=range i]::-webkit-slider-thumb {
  height: 14px;
  width: 14px;
  aspect-ratio: 1;
  -webkit-appearance: none;
  pointer-events: all;
  background-color: #003871;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #003871;
  cursor: pointer;
}

/* Firefox */
input[type=range]::-moz-range-thumb {
  height: 14px;
  width: 14px;
  -webkit-appearance: none;
  pointer-events: all;
  background-color: #003871;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #003871;
  cursor: pointer;
}

input[type=range]::-webkit-slider-thumb:hover {
  background: #003871;
}

input[type=range]::-webkit-slider-thumb:active {
  box-shadow: inset 0 0 3px #003871, 0 0 9px #003871;
  -webkit-box-shadow: inset 0 0 3px #003871, 0 0 9px #003871;
}

.form_control {
  position: relative;
  display: flex;
  justify-content: center;
  color: #333;
  column-gap: 12px;
  align-items: center;
  font-weight: 700;
}

.form_control_container {
  padding: 5px 10px 5px 10px;
  border: 1px solid #CBCBCD;
  border-radius: 4px;
  flex: 1;
  display: flex;
  justify-content: space-between;
}

.form_control input[type=number] {
  color: #333;
  width: 100%;
  text-overflow: ellipsis;
  font-size: 1rem;
  line-height: 120%;
  border: none;
  text-align: left;
  padding: 0;
}

.form_control_container.with_unit input[type=number] {
  width: calc(100% - 40px);
}

.form_control_container.with_unit span {
  font-weight: 400;
  white-space: nowrap;
  text-align: right;
}

.form_control input[type=number]::-webkit-inner-spin-button,
.form_control input[type=number]::-webkit-outer-spin-button {
  opacity: 0;
}

.range_container .unit_input_block {
  margin-top: 20px;
  border: 1px solid #a3a3a3;
  width: 100%;
  height: 24px;
}

.range_container .unit_input_block select {
  font-size: 12px;
  color: #000;
  padding: 1px 10px 0 10px;
}

#fromSliderPurity, #fromSliderWeight, #fromSliderFaceValue, #fromSliderDiameter {
  height: 0;
  z-index: 1;
  margin-top: 3px;
}

#weightUnitSelect {
  padding: 5px 10px;
  background-position: calc(100% - 10px) center;
  font-size: 1rem;
  line-height: 120%;
}

/* Select 3 override style */
.select2-selection, .multiselect-dropdown {
  border-radius: 4px !important;
  border-color: #CBCBCD !important;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="13" height="8" viewBox="0 0 13 8" fill="none"><path d="M1.04004 1.03906L6.04004 6.03906L11.04 1.03906" stroke="%23555555" stroke-width="2.08" stroke-linecap="round" stroke-linejoin="round"/></svg>') !important;
  background-position-x: calc(100% - 10px) !important;
}

.select2-selection__rendered {
  height: 30px;
}

.select2-container--bootstrap .select2-selection {
  box-shadow: none;
  color: #555;
  font-size: 1rem;
}

.select2-container--bootstrap .select2-selection--multiple {
  min-height: 32px;
}

.select2-container--bootstrap .select2-search__field::-webkit-input-placeholder {
  color: #555;
}

.select2-container--bootstrap .select2-search__field:-moz-placeholder {
  color: #555;
}

.select2-container--bootstrap .select2-search__field::-moz-placeholder {
  color: #555;
}

.select2-container--bootstrap .select2-search__field:-ms-input-placeholder {
  color: #555;
}

.multiselect-dropdown {
  padding: 5px 10px;
  background-size: auto;
}
.multiselect-dropdown span.optext {
  margin: 2px 0.5em 2px 0;
}
.multiselect-dropdown .placeholder {
  cursor: pointer;
  background: #ffffff;
  color: #555 !important;
  opacity: 1;
  margin: 0;
  padding: 0;
}

/*# sourceMappingURL=prod-catalog-sell-v2.css.map */
