/**
 * NOTICE OF LICENSE
 *
 * This file is licenced under the Software License Agreement.
 * With the purchase or the installation of the software in your application
 * you accept the licence agreement.
 *
 * You must not modify, adapt or create derivative works of this source code
 *
 * @author    Musaffar Patel
 * @copyright 2016-2019 Musaffar Patel
 * @license   LICENSE.txt
 */
.pbp-widget {
  margin-bottom: 20px;
  /* The container */
  /* Hide the browser's default checkbox */
  /* Create a custom checkbox */
  /* On mouse-over, add a grey background color */
  /* When the checkbox is checked, add a blue background */
  /* Create the checkmark/indicator (hidden when not checked) */
  /* Show the checkmark when checked */
  /* Style the checkmark/indicator */
}
.pbp-widget .tab-links a {
  display: inline-block;
  background-color: #f1f1f1;
  border: 1px solid #ccc;
  border-bottom: none;
  color: #666;
  padding: 15px 50px;
  cursor: pointer;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  font-size: 14px;
}
.pbp-widget .tab-links a.active {
  background-color: #fff;
  color: #333;
  font-weight: bold;
}
.pbp-widget .tab-content {
  margin-top: 35px;
  overflow-y: scroll;
}
.pbp-widget .tab-content-wrapper.has_tabs {
  background-color: #fff;
  padding: 20px;
}
.pbp-widget .tab-content-wrapper.has_tabs .tab-content {
  background-color: #fff;
}
.pbp-widget .tab-content-wrapper.has_tabs .bundle-inner {
  border: 0px;
  border-bottom: 1px solid #ccc;
}
.pbp-widget .bundle:not(:nth-of-type(1)) .title {
  display: none;
}

@media only screen and (max-width: 900px) {
  .pbp-widget .bundle:not(:nth-of-type(1)) {
    display: none !important;
  }
  .pbp-widget .bundle.visible:not(:nth-of-type(1)) {
    display: block !important;
  }
  .pbp-widget .btn-show-more-bundles {
    display: block;
    background-color: #dedede;
    width: 100%;
    padding: 10px;
    text-align: center;
    margin-top: 12px;
  }
}

.pbp-widget .container-checkbox {
  display: inline;
  position: relative;
  padding-left: 22px;
  top: 10px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.pbp-widget .container-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.pbp-widget .container-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  background-color: #ccc;
}
.pbp-widget .container-checkbox:hover input ~ .checkmark {
  background-color: #ccc;
}
.pbp-widget .container-checkbox input:checked ~ .checkmark {
  background-color: #557423;
}
.pbp-widget .container-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.pbp-widget .container-checkbox input:checked ~ .checkmark:after {
  display: block;
}
.pbp-widget .container-checkbox .checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.pbp-widget .btn-show-more-bundles {
  display: none;
}

.pbp-widget-half-width .tab-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media only screen and (max-width: 900px) {
  .pbp-widget-half-width .tab-content {
    display: block;
  }
}
.pbp-widget-half-width .bundle {
  background-color: #fff;
  border: 1px solid #cdcdcd;
  width: calc(50% - 14px);
  padding: 20px;
}
@media only screen and (max-width: 900px) {
  .pbp-widget-half-width .bundle {
    width: 100%;
  }
}
.pbp-widget-half-width .bundle .title {
  font-size: 16px;
  color: #555;
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}
.pbp-widget-half-width .bundle .parent-product {
  height: 230px;
  width: 100%;
  text-align: center;
}
.pbp-widget-half-width .bundle .parent-product .image {
  height: 140px;
}
.pbp-widget-half-width .bundle .parent-product .image img {
  max-height: 140px;
}
.pbp-widget-half-width .bundle .parent-product .name {
  font-weight: bold;
  font-size: 14px;
  display: block;
  margin: 10px 0px;
}
.pbp-widget-half-width .bundle .parent-product .parent_product_ipa {
  width: 100%;
  padding: 4px;
  font-size: 13px;
}
.pbp-widget-half-width .bundle .child-product {
  float: left;
  width: calc(50% - 7px);
}
@media only screen and (max-width: 900px) {
  .pbp-widget-half-width .bundle .child-product {
    width: 100%;
    float: none;
    display: flex;
    flex-wrap: wrap;
  }
}
.pbp-widget-half-width .bundle .child-product .image {
  width: 100%;
  text-align: center;
}
.pbp-widget-half-width .bundle .child-product .image .saving-label-child {
  font-size: 14px;
  font-weight: bold;
  color: #F2991D;
}
@media only screen and (max-width: 900px) {
  .pbp-widget-half-width .bundle .child-product .image {
    width: 80px;
    flex: 1 0 0;
  }
}
.pbp-widget-half-width .bundle .child-product .image img {
  max-width: 100px;
}
@media only screen and (max-width: 900px) {
  .pbp-widget-half-width .bundle .child-product .image img {
    max-width: 80px;
  }
}
.pbp-widget-half-width .bundle .child-product .name {
  text-align: center;
  width: 100%;
  font-size: 13px;
  font-weight: bold;
  margin: 10px 0;
}
@media only screen and (max-width: 900px) {
  .pbp-widget-half-width .bundle .child-product .options {
    width: 50%;
  }
}
.pbp-widget-half-width .bundle .child-product .options select {
  width: 100%;
  font-size: 13px;
  padding: 4px;
}
@media only screen and (max-width: 900px) {
  .pbp-widget-half-width .bundle .child-product .prices {
    width: 50%;
  }
}
.pbp-widget-half-width .bundle .child-product .prices .pbp-discount {
  width: 100%;
  text-align: center;
  display: block;
  margin: 10px 0;
}
.pbp-widget-half-width .bundle .child-product .prices .pbp-original-price {
  text-decoration: line-through;
}
.pbp-widget-half-width .bundle .child-product:nth-child(odd) {
  margin-left: 14px;
}
.pbp-widget-half-width .bundle .bundle-action {
  clear: both;
  width: 100%;
  margin: 10px 0px;
  text-align: center;
}
.pbp-widget-half-width .bundle .bundle-action .pbp_bundle_total {
  font-weight: bold;
}
.pbp-widget-half-width .bundle .bundle-action .saving-label {
  font-weight: bold;
  color: #F2991D;
}
.pbp-widget-half-width .bundle .bundle-action .btn_add_bundle_cart {
  width: 100%;
  margin-top: 10px;
}

.pbp-widget-full-width .tab-content, .pbp-widget-mini-width .tab-content {
  overflow: auto !important;
}
.pbp-widget-full-width .bundle, .pbp-widget-mini-width .bundle {
  padding: 0 !important;
  overflow: auto;
}
.pbp-widget-full-width .bundle .title, .pbp-widget-mini-width .bundle .title {
  font-size: 20px;
  margin-bottom: 12px;
}
.pbp-widget-full-width .bundle .bundle-inner, .pbp-widget-mini-width .bundle .bundle-inner {
  display: flex;
  flex-direction: row;
  background-color: #fff;
  padding: 20px;
  border: 1px solid #e7e7e7;
}
@media only screen and (max-width: 900px) {
  .pbp-widget-full-width .bundle .bundle-inner, .pbp-widget-mini-width .bundle .bundle-inner {
    display: block;
  }
}
.pbp-widget-full-width .bundle .products, .pbp-widget-mini-width .bundle .products {
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  flex-flow: wrap;
}
@media only screen and (max-width: 900px) {
  .pbp-widget-full-width .bundle .products, .pbp-widget-mini-width .bundle .products {
    display: block;
  }
}
.pbp-widget-full-width .bundle .products .product, .pbp-widget-mini-width .bundle .products .product {
  position: relative;
  width: 200px;
  margin: 10px 20px;
}
@media only screen and (max-width: 900px) {
  .pbp-widget-full-width .bundle .products .product, .pbp-widget-mini-width .bundle .products .product {
    width: 100%;
  }
}
.pbp-widget-full-width .bundle .products .product .image, .pbp-widget-mini-width .bundle .products .product .image {
  text-align: center;
  position: relative;
  height: 135px;
}
.pbp-widget-full-width .bundle .products .product .image img, .pbp-widget-mini-width .bundle .products .product .image img {
  max-width: 73%;
  top: 53%;
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  max-height: 63%;
}
.pbp-widget-full-width .bundle .products .product .image .saving-label-child, .pbp-widget-mini-width .bundle .products .product .image .saving-label-child {
  background-color: #F2991D;
  position: absolute;
  padding: 2px 7px 1px 7px;
  color: #fff;
  font-weight: 500;
  font-size: 13px;
  z-index: 999;
  left: 50%;
  white-space: nowrap;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.pbp-widget-full-width .bundle .products .product .name, .pbp-widget-full-width .bundle .products .product .prices, .pbp-widget-mini-width .bundle .products .product .name, .pbp-widget-mini-width .bundle .products .product .prices {
  width: 100%;
  text-align: center;
  font-size: 14px;
  padding: 10px 0px;
}
.pbp-widget-full-width .bundle .products .product .name {
    font-weight: 600;
}
.pbp-widget-full-width .bundle .products .product .prices .pbp-original-price, .pbp-widget-mini-width .bundle .products .product .prices .pbp-original-price {
  text-decoration: line-through;
  color: #919191;
  font-weight: 200;
  margin-right: 1px;
}
.pbp-widget-full-width .bundle .products .product .prices .pbp-offer-price, .pbp-widget-mini-width .bundle .products .product .prices .pbp-offer-price {
  font-weight: 600 !important;
}
.pbp-widget-full-width .bundle .products .product select, .pbp-widget-mini-width .bundle .products .product select {
  width: 100%;
  font-size: 13px;
  padding: 4px;
}
.pbp-widget-full-width .bundle .products .product:first-child::before, .pbp-widget-mini-width .bundle .products .product:first-child::before {
  content: "";
  display: none;
}

.pbp-widget-full-width .bundle .products .parent-product::after, .pbp-widget-mini-width .bundle .products .parent-product::after {
  content: "+";
  position: absolute;
  right: -14%;
  top: calc(30% - 10px);
  font-size: 26px;
  font-weight: 600;
  color: #888;
}

@media only screen and (max-width: 900px) {
  .pbp-widget-full-width .bundle .products .product::before, .pbp-widget-mini-width .bundle .products .product::before {
    width: 30px;
    height: 30px;
    text-align: center;
    color: #fff;
    left: calc(50% - 10px);
    top: 0px;
    z-index: 9;
    background-color: #2fb5d2;
    border-radius: 15px;
    line-height: 27px;
    padding-left: 2px;
  }
}
.pbp-widget-full-width .bundle .bundle-action, .pbp-widget-mini-width .bundle .bundle-action {
  width: 300px;
  text-align: center;
  padding: 20px;
}
@media only screen and (max-width: 1024px) {
  .pbp-widget-full-width .bundle .bundle-action, .pbp-widget-mini-width .bundle .bundle-action {
    width: 250px;
  }
}
@media (max-width: 490px) {
  .product-customization-item {
      width: 77%;
  }
  #product-details.active {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (min-width: 490px) and (max-width: 900px) {
  .product-customization-item {
      width: 50%;
  }
}

@media only screen and (max-width: 900px) {
  .pbp-widget-full-width .bundle .bundle-action, .pbp-widget-mini-width .bundle .bundle-action {
    width: 100%;
    display: block;
  }

  .product-customization-item {
      margin: 0 auto;
  }

  .pbp-widget-mini-width .bundle .products .product {
    margin: 0 0 44px 0;
  }

  .pbp-widget-full-width .bundle .products .product {
    margin: 0 0 53px 0;
  }
}

.pbp-widget-full-width .bundle .bundle-action .saving-label, .pbp-widget-mini-width .bundle .bundle-action .saving-label {
  color: #F2991D;
  text-align: center;
  padding: 0 12px 12px 12px;;
  width: 100%;
  font-weight: bold;
  margin-bottom: 6px;
}
.pbp-widget-full-width .bundle .bundle-action .pbp_add_quantity_wrapper, .pbp-widget-mini-width .bundle .bundle-action .pbp_add_quantity_wrapper {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: row;
}
.pbp-widget-full-width .bundle .bundle-action .pbp_add_quantity_wrapper .pbp-quantity-wrapper, .pbp-widget-mini-width .bundle .bundle-action .pbp_add_quantity_wrapper .pbp-quantity-wrapper {
  margin-right: 5px;
}
.pbp-widget-full-width .bundle .bundle-action .pbp_add_quantity_wrapper .pbp-quantity-wrapper input[name=pbp_quantity], .pbp-widget-mini-width .bundle .bundle-action .pbp_add_quantity_wrapper .pbp-quantity-wrapper input[name=pbp_quantity] {
  height: 100%;
}
.pbp-widget-full-width .bundle .bundle-action .pbp_add_quantity_wrapper .pbp-quantity-wrapper .bootstrap-touchspin, .pbp-widget-mini-width .bundle .bundle-action .pbp_add_quantity_wrapper .pbp-quantity-wrapper .bootstrap-touchspin {
  float: none;
  box-shadow: none;
  display: flex;
  flex-direction: row;
  height: 100%;
}
.pbp-widget-full-width .bundle .bundle-action .pbp_add_quantity_wrapper .pbp-quantity-wrapper .input-group-btn-vertical, .pbp-widget-mini-width .bundle .bundle-action .pbp_add_quantity_wrapper .pbp-quantity-wrapper .input-group-btn-vertical {
  float: none;
}
.pbp-widget-full-width .bundle .bundle-action .pbp_add_quantity_wrapper .pbp-quantity-wrapper .btn-default, .pbp-widget-mini-width .bundle .bundle-action .pbp_add_quantity_wrapper .pbp-quantity-wrapper .btn-default {
  margin-top: 0;
  height: 50%;
}
.pbp-widget-full-width .bundle .bundle-action .btn_add_bundle_cart, .pbp-widget-mini-width .bundle .bundle-action .btn_add_bundle_cart {
  width: 100%;
}
.pbp-widget-full-width .bundle .bundle-action .bundle-prices, .pbp-widget-mini-width .bundle .bundle-action .bundle-prices {
  padding: 10px 0;
  font-size: 22px;
}
.pbp-widget-full-width .bundle .bundle-action .bundle-prices .pbp_bundle_original_total, .pbp-widget-mini-width .bundle .bundle-action .bundle-prices .pbp_bundle_original_total {
  margin-right: 10px;
  color: #919191;
}
.pbp-widget-full-width .bundle .bundle-action .bundle-prices .pbp_bundle_total, .pbp-widget-mini-width .bundle .bundle-action .bundle-prices .pbp_bundle_total {
  font-weight: 600;
}

#engravTextWrap {
    margin-top: 6px;
}

#engravTextWrap input {
    width: 100%;
}

/*# sourceMappingURL=product.css.map */
