/* Product Page CSS */
.validate-btn.btn {
    width: 100%;
    padding: 12px 20px;
}
.not-allowed{
  cursor: not-allowed;
}
.validate-btn.btn:disabled {
    cursor: not-allowed;
    background: #555e73;
    pointer-events: none;
    border-color: #555e73;
}
.btn--loading .btn__text {
  visibility: hidden;
  opacity: 0;
}

.btn--loading::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border: 4px solid transparent;
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: btn-loading-spinner 1s ease infinite;
}
.btn:hover.btn--loading:after  {
  border-top-color: #1e2d51;
}
@keyframes btn-loading-spinner {
  from {
    transform: rotate(0turn);
  }

  to {
    transform: rotate(1turn);
  }
}
.product-header-cta {
  background-color: #FFFFFF;
  bottom: -100px;
  width: 100%;
  z-index: 3;
  position: fixed;
  height: 86px;
  border: 2px solid #f5cdd5;
  border-left: 0;
  border-right: 0;
  transition: all .4s ease;
  transition-timing-function: cubic-bezier(0.1, 0.5, 0.25, 1);
  box-shadow: 0px 3px 6px #1e2d511a;
  transition: 0.4s ease;
}
.header-cta-container {
    max-width: 816px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 82px;
}
.cta-left, .cta-right {
    display: flex;
    align-items: center;
}
/* .moretop .product-header-cta {
  top: 131px;
} */
.product-header-cta.come-in {
  bottom: 0px !important; */
}
.product-header-cta img {
  height: 64px;
  width: 64px;
  border-radius: 16px;
  margin-right: 16px;
}
.cta-product-title {
  margin-right: 16px;
}
.product-header-cta .product-price {
  font-size: 16px;
  letter-spacing: 1px;
  margin-right: 16px;
}
.product-header-cta .addcart {
  cursor: pointer;
  width: 234px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 56px;
  border: 2px solid #f5cdd5;
  border-radius: 36px;
  font-weight: 600;
  margin-top: 0;
  color: #1e2d51;
  background-color: #f5cdd5;
  margin-bottom: 0;
}
.product-header-cta .addcart:hover {
  color: #fff;
  background-color: #1e2d51;
  border: 2px solid #1E2D51;
}
.product {
  padding-top: 63px;
}
.product-row-1 {
  width: 60%;
/*   max-width: 606px; */
}
.slider-nav .slick-track {
  width: 100% !important;
}
.product-row-2 {
  width: 35%;
  max-width: 396px;
  margin: 0 24px;
}
.product-top {
  margin-bottom: 8px;
}
.product-back {
  color: #1E2D51;
  font-size: 16px;
  position: absolute;
  top: 16px;
  z-index: 2;
  text-decoration: underline;
  font-weight: 600;
}
.product-back svg {
    display: inline-block;
    width: 15px;
    transform: rotate(90deg);
    margin-bottom: 2px;
}
.product-row {
  display: flex;
  justify-content: space-between;
}
.product-row .product-col:first-child {
  width: calc( 65% - 6px );
}
.product-row .product-col:last-child {
  width: calc( 35% - 6px );
  display: flex;
  justify-content: flex-end;
}
.product-title {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}
.product .product-price {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
}
.product-compare {
  display: flex;
  align-items: flex-end;
  font-size: 16px;
  color: #ADB0B8;
  font-weight: 600;
  text-decoration: line-through;
  margin-right: 6px;
}
.product .designed-by {
  margin-bottom: 16px;
}
.product .product-meta-desc {
  margin-bottom: 24px;
}
.product-description {
  margin-top: 24px;
}
.product-description, .product-description p span {
    color: #1E2D51 !important;
}
.product-details {
  display: flex;
  flex-direction: column;
  /* gap: 1rem; */
}

.product-details > *:not(:last-child) {
  margin-bottom: 1rem;
}
.dropdown-emulate {
  display: flex;
  width: 100%;
  height: 49px;
  border: 1px solid #1E2D51;
  vertical-align: middle;
  padding: 13px 16px;
  position: relative;
  margin-left: 0;
  cursor: pointer;
}
.dropdown-emulate.active {
  border-color: transparent;
}
.dropdown-emulate svg.icon-chevron {
  width: 14px;
  position: absolute;
  top: 16px;
  right: 16px;
  transform: rotate(0deg);
  transition: transform .4s;
}
.dropdown-emulate.active svg.icon-chevron {
    transform: rotate(180deg);
}
.dropdown-emulate.active .options-dd {
  display: block;
}
.options-dd {
  display: none;
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: 2;
  width: calc(100% + 2px );
  background-color: transparent;
  border: 1px solid #1E2D51;
}
.options-dd span {
  background-color: #fff;
  display: block;
  padding: 13px 16px;
  height: 46px;
}
.options-dd span:hover {
  background-color: #f5cdd5;
}
.options-dd span:first-child {
  width: calc(100% - 32px );
  padding-right: 0;
  border-top-left-radius: 4px;  
  border-bottom-right-radius: 0 !important;
}
.options-dd span:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.quantity-text {
  font-size: 16px;
  font-weight: 600;
  margin-top: 30px;
}
.qty-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 81px;
  height: 47px;
  border: 1px solid #1E2D51;
}
.qty-btn {
  height: 20px;
  width: 20px;
  cursor: pointer;
}
.qty-btn.symbol-minus {
  opacity: 0.5;
}
.qty-btn svg {
  width: 100%;
  height: 100%;
}
.qty-number {
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
}
.add-cart-btns {
  width: calc(100% - 105px);
}
.addcart {
  cursor: pointer;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 47px;
  border: 2px solid #1E2D51;
  border-radius: 36px;
  font-weight: 600;
  color: #fff;
  background-color: #1E2D51;
}
.addcart:hover {
  color: #1E2D51;
  background-color: #fff;
}
hr.product-seperator {
  border: 0;
  border-bottom: 1px solid #b6dfe3;
  margin-top: 16px;
  margin-bottom: 16px;
}
.product-row-col {
  width: calc( 42% - 24px );
  padding: 60px 48px;
  background-color: #FFFFFF;
  border-radius: 16px;
  align-self: auto;
}
.product-ratings {
  margin-bottom: 16px;
}
.prod-desc ul {
  padding-left: 20px;
}
.product .stamped-badge-caption {
  text-decoration: underline;
}
.free-shipping {
  width: calc(100% - 105px);
  display: flex;
  justify-content: center;
  font-family: poppins,sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
  margin: 8px 0 16px auto;
}
.discount-label {
    font-family: poppins,sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
}
.not-active .addcart{
	cursor: not-allowed;
  border: 2px solid #5a5a5a;
  background-color: #5a5a5a;
}
.not-active .addcart:hover{
	color: #fff;
}
.small-fonts {
    font-size: 12px;
/*     margin-top: -16px; */
    margin-bottom: 16px;
}
.validate{
  width: calc(35% - 8px);
  display: block;
  background-color: #1e2d51;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  padding: 12px;
  position: relative;
  transition: .4s ease;
  border-radius: 36px;
  border: 2px solid #1e2d51;
}

.form-box {
    margin-bottom: 15px;
}

input[type=text]:disabled {
  cursor: not-allowed;
  background: #dddddd;
}
.small-fonts.icon-check {
  position: absolute;
  width: 25px;
  height: 25px;
  margin: 0;
  right: 45%;
}
.icon-check #Capa_1 {
  width: 100%;
  height: 100%;
  fill: #008000;
}
/* B2B Product CSS */
#b2b_prod .product-row-2 .product-row .product-col {
  width: calc(50% - 9px);
  display: block;
}
#b2b_prod .product-compare-price, #b2b_prod .product-price {
  display: inline-block;
}
.incl-text {
  display: block;
  font-size: 12px;
}
.form-box .field {
  padding: 14px 10px;
  width: -webkit-fill-available;
  border: 1px solid #1e2d51;
/*   margin-bottom: 16px; */
  margin-right: 16px;
  font-size: 16px;
  font-weight: 300;
  color: #1e2d51;
  border-radius: 4px;
}
.checkbox {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
  height: 32px;
}
.checkbox-2 {
  width: calc(100% - 40px);
  font-size: 12px;
  line-height: 16px;
  display: flex;
  align-items: center;
}
.checkbox:not(.check) .svg-check-b {
    stroke: transparent;
}

@media (max-width: 992px) {
  .padd-top-m {
    padding-top: 80px;
  }
  .product-row-1 {
    width: 100%;
  }
  .product-row-2 {
    width: 100%;
    max-width: none;
    padding: 0;
    margin: 0;
    margin-top: 16px;
  }
  .m-row .flex-box {
    flex-direction: column;
  }
  .qty-wrapper {
    width: 100%;
    justify-content: space-between;
    margin-bottom: 16px;
  }
  .qty-btn.symbol-minus {
    margin-left: 12px;
  }
  .qty-btn.symbol-plus {
    margin-right: 12px;
  }
  .add-cart-btns, .free-shipping {
    width: 100%;
  }
  #stamped-main-widget {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .header-cta-container {
    max-width: none;
    padding: 0 60px;
  }
  
  .form-box .field{
    margin-bottom: 10px;
  }
}

@media (max-width: 560px) {
  .header-cta-container {
    padding: 0 20px;
  }
  .product-header-cta img, .cta-product-title, .product-header-cta .product-compare {
    display: none;
  }
  .product-header-cta .product-price {
    margin-right: 8px;
  }
  .tooltip .tooltiptext {
    right: 0;
  }
}