/* Loder hiding */

div.sft-cart-wait-spin {
  display: none;
}

/* Using flexbox for aligning the license and loader */
#edd_checkout_cart tr td.sft_price_selection {
  border: none !important;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 30px;
}

tr td.sft_price_selection .sft_price_div_container {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* To align the radiobutton and license text */
tr td.sft_price_selection .sft_price_div_container>div {
  display: flex;
  align-items: center;
  gap: 5px;
}

tr td.sft_price_selection .sft_price_div_container>div p {
  padding: 0;
  font-size: 15px !important;
  font-weight: 500;
  color: #333;
  text-shadow: 0px 0px 1px #656565;
}

tr td.sft_price_selection .sft_price_div_container>div input[type="radio"] {
  margin: 2px 0px 0px 0px;
}

/* Media queries for responsive behaviour */
@media screen and (max-width: 1000px) {

  /* Shifting the loader to end of table */
  #edd_checkout_cart tr td.sft_price_selection {
    align-items: center;
    justify-content: space-between;
  }

  #edd_checkout_cart tr td.sft_price_selection {
    display: table-cell;
    position: relative;
  }

  /* Calculating the position to place loader in center */
  div.sft-cart-wait-spin {
    position: absolute;
    top: calc(50% - 14px);
    right: 10px;
  }

}

/* Media query for mobile device */
@media screen and (max-width: 691px) {

  /* Shifting from row to column layout for licenses */
  tr td.sft_price_selection .sft_price_div_container {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5px;
  }
}

/* View Price tab */

div.sft-price-box {
  width: 30%;
}

.iwithtext {
  font-size: 16px;
}

.iwt-text p {
  font-size: 16px;
}

/* To align the Product Pricing Bundle in the center of the screen */
.vc_row.vc_row-flex>.span_12,
.vc_row.vc_row-flex>.span_12>.vc_column_container {
  display: flex;
  justify-content: center;
}

/* CSS for Price Bundle Fancy Box only */
.sft-pricing-tab .nectar-fancy-box[data-style="color_box_basic"] {
  margin-bottom: 0;
}

/* To adjust price button size */
.sft-pricing-tab .nectar-fancy-box[data-style="color_box_basic"] .pb-buy-now-button {
  width: 100%;
  max-width: 180px;
}

/* Most popular or best seller tag CSS */
.sft-price-box {
  position: relative;
}

.sft-price-box .custom-bundle-pricing-tag {
  position: absolute;
  z-index: 1000;
  top: 0;
  right: 20px;
  color: white;
  background: #1FBDA5;
  padding: 0px 12px;
  font-weight: 800;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.sft-price-box .custom-bundle-pricing-tag p {
  font-size: 14px !important;
}


.product-bundle-pricing-value {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 25px;
}

.product-bundle-pricing-value h3 s {
  color: #636363e8;
  font-size: 30px;
}

.product-bundle-pricing-value .product-bundle-percent-off {
  color: white;
  font-size: 12px;
  font-weight: 600;
  background-color: #e33535;
  /* border: 2px solid #1FBDA5; */
  border-radius: 5px;
  padding: 2px 8px;
}