#productInteraction {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 99;
  border-top: 1px solid #153242;
  border-bottom: 1px solid #153242;
  transition: all 0.4s ease-out;
}
.pq--inner-wrapper {
  width: 100%;
  max-width: 996px;
  margin: 0 auto;
}
#productInteraction .pq--add-quantity-row {
  width: 100%;
  background: #e4e4e4;
  padding: 23px 24px;
  min-height: 87px;
}
#productInteraction .pq--add-quantity-row .pq--inner-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#productInteraction.hide-quantity-row {
  bottom: -88px;
}
#productInteraction.hide-quantity-row .pq--add-quantity-row {
  opacity: 0;
  pointer-events: none;
  transition-delay: 0.32s;
}
#productInteraction .pq--confirm-row {
  /* display: none; */
  width: 100%;
  background: #cad8e0;
  transition: all 0.25s ease-out;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}
#productInteraction .pq--confirm-row.shown {
  height: 87px;
  pointer-events: all;
}
#productInteraction .pq--confirm-row .pq--inner-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 23px 24px;
  max-width: 1044px;
}
#productInteraction .pq--confirm-row .pq--success-response {
  padding-left: 35px;
  position: relative;
  color: #153242;
  font-size: 16px;
  line-height: 23px;
}
#productInteraction .pq--confirm-row .pq--success-response svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: auto;
  height: auto;
  display: inline-block;
}
#productInteraction .pq--confirm-row .pq--buttons-wrapper {
  display: flex;
  align-items: center;
}
#productInteraction .pq--confirm-row .pq--buttons-wrapper button:last-child {
  margin-left: 24px;
}

.pq--btn-primary {
  width: auto;
  display: inline-block;
  background: #1d78ad;
  color: #fff;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
  padding: 11px 15px 9px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 19px;
  cursor: pointer;
  transition: all 0.15s linear;
  text-decoration: none;
}
.pq--btn-primary:hover {
  background: #95c0da;
}
.pq--btn-secondary {
  width: auto;
  display: inline-block;
  background: #cad8e0;
  color: #1d78ad;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
  padding: 11px 15px 9px;
  border-radius: 4px;
  border: 1px solid #1d78ad !important;
  font-size: 14px;
  line-height: 19px;
  cursor: pointer;
  transition: all 0.15s linear;
  text-decoration: none;
}
.pq--btn-secondary:hover {
  background: #1d78ad;
  color: #fff;
}
.pq--btn-tertiary {
  width: auto;
  display: inline-block;
  background: transparent;
  color: #000;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
  padding: 11px 15px 9px;
  border-radius: 4px;
  border: 1px solid #909090 !important;
  font-size: 14px;
  line-height: 19px;
  cursor: pointer;
  transition: all 0.15s linear;
  text-decoration: none;
}
.pq--btn-tertiary:hover {
  background: #909090;
  color: #fff;
}
.pq--btn-quaterna {
  width: auto;
  display: inline-block;
  background: #c93b2b;
  color: #fff;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
  padding: 11px 15px 9px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 19px;
  cursor: pointer;
  transition: all 0.15s linear;
  border: none !important;
  text-decoration: none;
}
.pq--btn-quaterna:hover {
  background: #db6e62;
}
.pq--btn-quinary {
  width: auto;
  display: inline-block;
  background: #cad8e0;
  color: #153242;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
  padding: 11px 15px 9px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 19px;
  cursor: pointer;
  transition: all 0.15s linear;
  border: none !important;
  text-decoration: none;
}
.pq--btn-quinary:hover {
  background: #95c0da;
}

/*product quantity selector*/
.pq--quantity-selector,
.pq--qs-main {
  position: relative;
}
#productInteraction .pq--qs-remove-confirm {
  display: none;
  position: absolute;
  bottom: calc(100% + 24px);
  right: 0;
  width: 300px;
  padding: 12px;
  border-radius: 4px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
  background: #fff;
}
.pq--qs-remove-confirm p {
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 20px;
  text-align: left;
}
.pq--qs-remove-confirm {
  display: flex;
  align-items: center;
  justify-content: center;
}
#productInteraction .pq--qs-remove-confirm .pq--btn-quaterna {
  margin-left: 12px;
}
@media (max-width: 700px) {
  #productInteraction .pq--confirm-row {
    background: none;
  }
  #productInteraction .pq--confirm-row.shown {
    height: 132px;
  }
  #productInteraction .pq--confirm-row .pq--inner-wrapper {
    padding: 0 !important;
    display: block !important;
  }
  #productInteraction .pq--confirm-row .pq--success-response {
    background-color: #b5d0e0;
    padding: 17px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #productInteraction .pq--confirm-row .pq--success-response svg {
    position: relative;
    top: initial;
    transform: none;
    margin-right: 13px;
  }
  #productInteraction .pq--confirm-row .pq--buttons-wrapper {
    background: #cad8e0;
    padding: 17px;
    justify-content: center;
  }
  #productInteraction .pq--add-quantity-row .pq--inner-wrapper {
    justify-content: center;
  }
  #productInteraction .pq--qs-remove-confirm {
    transform: translate(25%);
  }
}
@media (max-width: 420px) {
  #productInteraction .pq--confirm-row.shown {
    height: 151px;
  }
}

.product--qs-container {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: stretch;
}
.product--qs-container input {
  color: #1d78ad;
  background: transparent;
  outline: none;
  border-radius: 0 !important;
  border-top: 1px solid #1d78ad;
  border-bottom: 1px solid #1d78ad;
  border-left: none;
  border-right: none;
  width: 74px;
  font-size: 17px;
  line-height: 22px;
  padding: 9px 10px;
  box-shadow: 0px 3px 6px 0px inset rgba(0, 0, 0, 0.16);
  text-align: center;
}
.product--qs-container input::-webkit-outer-spin-button,
.product--qs-container input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product--qs-container input[type="number"] {
  -moz-appearance: textfield; /* Firefox */
}

.product--qs-container button {
  background: none;
  border: 1px solid #1d78ad;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #1d78ad;
  font-size: 17px;
  line-height: 22px;
  box-shadow: 0px 3px 6px 0px inset rgba(0, 0, 0, 0.16);
  padding: 0;
  transition: all 0.15s linear;
  cursor: pointer;
}
.product--qs-container button:hover {
  background: #cad8e0;
  box-shadow: none;
}
.product--qs-container button:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.product--qs-container button:last-child {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.header__cart {
  margin-right: 30px;
  position: relative;
}
.header__cart-desktop {
  display: none;
}
.header__cart-mobile {
  display: none;
}
@media (min-width: 921px) {
  .header__cart-desktop {
    display: block;
  }
}
@media (max-width: 920px) {
  .header__cart-mobile {
    display: block;
  }
}
.header__cart .hc--product-quantity {
  position: absolute;
  top: -9px;
  right: -9px;
  width: 18px;
  height: 18px;
  background: #d60000;
  border-radius: 50%;
  overflow: hidden;
}
.header__cart .hc--product-quantity .hc--product-num {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  line-height: 13px;
  color: #fff;
}

/*cart page*/
.cart-page {
  width: 100%;
  min-height: 100vh;
  background: #1d78ad;
  padding: 56px 18px 122px;
}
.cart-page .wrapper {
  padding: 0;
}
.cart-page.empty-cart {
  padding-top: 200px;
}
.cart-page.empty-cart .cp--inner-wrapper {
  margin: 0 auto;
  max-width: 406px;
}
.cp--empty-cart {
  width: 100%;
  text-align: center;
}
.cp--empty-cart.hidden {
  display: none;
}
.cp--empty-cart h2,
.cp--empty-cart p {
  color: #fff;
}
.cp--empty-cart h2 {
  margin-bottom: 32px;
}
.cp--empty-cart p {
  width: 100%;
  max-width: 338px;
  margin: 0 auto;
}
.cp--empty-cart .pq--btn-quinary {
  margin-top: 54px;
  display: inline-block;
  position: relative;
}
@media (max-width: 680px) {
  .cp--empty-cart h2 {
    margin-bottom: 12px;
    line-height: 42px;
  }
  .cp--empty-cart .pq--btn-quinary {
    margin-top: 36px;
  }
}
@media (max-width: 420px) {
  .cp--empty-cart h2 {
    font-size: 24px;
    line-height: 32px;
  }
}

.cp--inner-wrapper {
  width: 100%;
  max-width: 741px;
}

.cart-page .cp--row-heading h3 {
  color: #e6e6e7;
}
.cart-page .cp--row-content > p {
  color: #cad8e0;
}

.cart-page .cp--row-content > p {
  max-width: 401px;
}

.cart-page .cp--sections {
  border-bottom: 1px solid #e6e6e7;
  padding-top: 20px;
  padding-bottom: 20px;
  transition: all 0.4s ease-out;
}
.cp--sections .cp--row-content {
  display: none;
}
.cp--sections.active {
  padding-bottom: 44px;
}
.cp--sections.active .cp--row-content {
  display: block;
}
.cp--sections .cp--row-heading {
  position: relative;
}
.cp--sections.active .cp--row-heading h3 {
  color: #fff;
}
.cp--sections:nth-child(2).active {
  border-bottom: none;
}

.cart-page .quote-products--container {
  margin-top: 50px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.cart-page .quote-products--container .row--quote-product {
  width: 100%;
  padding: 43px 60px;
  border-bottom: 1px solid #1d78ad;
}
.cart-page .quote-products--container .row--quote-product:last-child {
  border-bottom: none;
}
.cart-page .quote-products--container .row--quote-product .inner-row-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-page
  .quote-products--container
  .row--quote-product
  .col--product-details {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: calc(100% - 223px);
  padding-right: 24px;
}
.quote-products--container
  .row--quote-product
  .col--product-details
  .cpd--featured-thumbnail {
  width: 131px;
  aspect-ratio: 131 / 99;
  background: #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
}
.quote-products--container
  .row--quote-product
  .col--product-details
  .cpd--featured-thumbnail
  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.quote-products--container
  .row--quote-product
  .col--product-details
  .cpd--product-title {
  width: calc(100% - 131px);
  padding-left: 24px;
  font-size: 14px;
  line-height: 20px;
  font-family: "Catamaran", sans-serif;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.6);
}
.cart-page
  .quote-products--container
  .row--quote-product
  .col--product-interact {
  width: 223px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.quote-products--container
  .row--quote-product
  .col--product-interact
  .bin--delete-product {
  margin-left: 63px;
  cursor: pointer;
  background: none;
  border: none;
  background: none;
  padding: 0;
}

.cart-page .quote-products--container .pq--qs-remove-confirm {
  display: none;
  width: 255px;
  max-width: 100%;
  margin-left: auto;
  flex-wrap: wrap;
}

.cart-page .quote-products--container .pq--qs-remove-confirm p {
  width: 100%;
}

.cart-page
  .quote-products--container
  .pq--qs-remove-confirm
  .buttons-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-page .quote-products--container .pq--qs-remove-confirm button {
  width: 118px;
  max-width: 49%;
}

.cart-page .submit-contact-details {
  margin-top: 44px;
}

/*Cart thank you message*/
.cp--thank-you-prompt-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(29, 120, 173, 0.5);
  padding: 50px 18px;
  z-index: 10000;
  display: none;
}

.cp--thank-you-prompt-wrapper .cpty--inner-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cp--thank-you-prompt-wrapper .cpty--white {
  width: 100%;
  max-width: 486px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.1);
  padding: 41px 32px 48px;
  position: relative;
  text-align: center;
}
.cp--thank-you-prompt-wrapper .cpty--white .cpty--close {
  position: absolute;
  top: 22px;
  right: 18px;
  cursor: pointer;
}
.cp--thank-you-prompt-wrapper .cpty--white .cpty--close:hover {
  opacity: 0.75;
}
.cp--thank-you-prompt-wrapper .cpty--white > svg {
  margin: 0 auto 12px;
  display: block;
  width: auto;
  height: auto;
}
.cp--thank-you-prompt-wrapper .cpty--white h4 {
  font-size: 28px;
  line-height: 38px;
  color: #1d78ad;
  text-align: center;
  max-width: 286px;
  margin: 0 auto 24px;
}
.cp--thank-you-prompt-wrapper .cpty--white p {
  color: #153242;
  text-align: center;
  max-width: 294px;
  margin: 0 auto;
}
.cp--thank-you-prompt-wrapper .cpty--white .pq--btn-primary {
  margin-top: 56px;
  color: #fff;
  text-decoration: none;
}
.cart-edit {
  display: none;
  text-decoration: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.cart-edit:hover {
  opacity: 0.75;
}
.cart-page .wpcf7-response-output {
  display: none;
}
.cp--quote-form {
  margin-top: 26px;
}
.cp--quote-form label {
  color: #e6e6e7;
  font-size: 14px;
  line-height: 17px;
  margin-bottom: 8px;
}
.cp--quote-form .wpcf7-not-valid-tip {
  color: #cad8e0;
  margin-top: 5px;
}
.cp--quote-form .field__row {
  margin-bottom: 19px;
}
.cp--quote-form span[data-name="hcap-cf7"] {
  display: block;
  margin-top: 40px;
}
.cp--quote-form .btn--submit {
  width: auto;
}
@media (max-width: 769px) {
  .cart-page .quote-products--container .row--quote-product {
    padding: 26px;
  }
  .cart-page
    .quote-products--container
    .row--quote-product
    .col--product-details {
    width: calc(100% - 193px);
  }
  .cart-page
    .quote-products--container
    .row--quote-product
    .col--product-interact {
    width: 193px;
  }
  .quote-products--container
    .row--quote-product
    .col--product-interact
    .bin--delete-product {
    margin-left: 32px;
  }
}
@media (max-width: 640px) {
  .cart-page {
    padding-top: 24px;
  }
  .cart-page .cp--sections:first-child {
    padding-top: 0;
  }
  .cart-page .cp--sections {
    padding-bottom: 24px;
  }
  .cart-page .cp--sections.active {
    padding-bottom: 49px;
  }
  .cart-page .cp--row-heading h3 {
    color: #95c0da;
  }
  .cart-page .cp--row-content > p {
    margin-top: 6px;
  }
  .cart-page .quote-products--container .row--quote-product {
    padding: 15px 13px 26px;
    position: relative;
  }
  .cart-page .quote-products--container {
    margin-top: 24px;
  }
  .cart-page .quote-products--container .row--quote-product .inner-row-wrapper {
    flex-wrap: wrap;
  }
  .cart-page
    .quote-products--container
    .row--quote-product
    .col--product-details {
    width: 100%;
  }
  .quote-products--container
    .row--quote-product
    .col--product-details
    .cpd--product-title {
    padding-left: 18px;
  }
  .cart-page
    .quote-products--container
    .row--quote-product
    .col--product-interact {
    width: 100%;
    justify-content: flex-start;
    margin-top: 22px;
  }
  .quote-products--container
    .row--quote-product
    .col--product-interact
    .bin--delete-product {
    position: absolute;
    top: 19px;
    right: 13px;
  }
  .cart-page .quote-products--container .pq--qs-remove-confirm {
    width: 100%;
    padding-top: 22px;
  }
  .cart-page .quote-products--container .pq--qs-remove-confirm p {
    padding-left: 7px;
    padding-right: 23px;
  }
  .cart-page .quote-products--container .pq--qs-remove-confirm button {
    width: calc(50% - 5px);
  }
  .cart-edit {
    display: block;
    text-decoration: none;
  }
}
@media (max-width: 375px) {
  .quote-products--container
    .row--quote-product
    .col--product-details
    .cpd--featured-thumbnail {
    width: 96px;
  }
}

/*Fixes 11052023*/
/*header*/
@media screen and (max-width: 920px) {
  .header {
    z-index: 1000;
  }
}

@media (max-width: 700px) {
  #productInteraction.hide-quantity-row {
    bottom: -162px !important;
  }
  #productInteraction.mob-hide-quantity-review .pq--confirm-row.shown {
    height: 57px !important;
  }
  #productInteraction.mob-hide-quantity-review .pq--buttons-wrapper {
    display: none !important;
  }
}
@media (max-width: 420px) {
  #productInteraction.hide-quantity-row {
    bottom: -181px !important;
  }
}

.single-product .product__navigation-container ul li:last-child a{
  display : none;
}

/*7-12-2023  */
.get-quote__row-empty.hidden{
  display: none;
}

.header__cart{
  /* display: none !important; */
  margin-top: 8px;
}

.footer__top{
	height: auto;
	padding-top: 10px;
}

.product-template-default .footer__top{
	padding-bottom: 50px;
}