/*@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");*/
/*@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");*/

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

nav {
  /*border-bottom: 1px solid #daddde;*/
  padding: 12px 0;
}

nav .nav-left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

nav .nav-left span.v-line {
  color: transparent;
  border-right: 1px solid #daddde;
  font-size: 25px;
  /* line-height: 1; */
  margin: 0 10px;
}

nav .nav-left span.secure-checkout {
  /*font-weight: 500;*/
  font-size: 16px;
  /*border-left: 1px solid black;*/
}

nav .nav-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

.nav-right .breadcumb {
  font-weight: 500;
  font-size: 16px;
  color: #707a80;
  position: relative;
}

.nav-right .breadcumb.is-current {
  color: #000;
  font-weight: 600;
}

.nav-right .breadcumb:not(:last-child) {
  margin-right: 40px;
}

.nav-right .breadcumb:not(:first-child)::before {
  content: "";

  position: absolute;
  top: 5px;
  left: -25px;
  height: 25px;
  display: inline-block;
  width: 25px;
  background-repeat: no-repeat;
}

.banner {
  /* height: 300px; */
  height: calc(200px + 3vw);
  position: relative;
}
/* .banner::before{
    position: absolute;
    display: inline-block;
    height: 300px;
    width: 100%;
    background: linear-gradient(90deg, rgba(237,246,253,1) 0%, rgba(233,229,220,1) 100%);
} */

.banner .img-text {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  /* height: 300px; */
  height: calc(200px + 3vw);
}

.banner .img-text img {
  max-width: 91px;
  margin-right: 20px;
  max-height: 91px;
  margin-left: 30px;
}

.banner .img-text p {
  font-size: 34px;
  font-weight: 600;
  line-height: 1.5;
  color: #000;
  margin-bottom: 0px;
}

.banner .img-text p span {
  color: #f20000;
  display: block;
}

.main-section .main-section-left {
  padding: 50px 48px 50px 0;
}

.main-section .main-section-right {
  padding: 50px 0px 50px 48px;
}

.main-section {
  position: relative;
}

.main-section::before {
  content: "";
  background-color: rgba(249, 249, 249, 1);
  display: inline-block;
  width: 50%;
  height: 100%;
  position: absolute;
  z-index: -1;
}

.timer-section {
  border-radius: 10px;
  border: 1px solid #daddde;
  background: #fff;
  margin-bottom: 40px;
}

.timer-section .part1 {
  background: #f05a23;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  text-align: center;
  padding: 14px;
}

.timer-section .part1 h6 {
  color: #fff;
  font-size: 15px;
  font-family: Montserrat;
  font-weight: 700;
  line-height: 20px;
}

.timer-section .part1 p {
  color: #fff;
  font-size: 15px;
  font-family: Montserrat;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0px;
}

.timer-section .part1 p > span {
  background-color: #fff;
  color: #f05a23;
  padding: 3px 5px;
  border-radius: 4px;
  margin-left: 10px;
  font-weight: 700;
  white-space: nowrap;
  width: 80px;
  display: inline-block;
}

.timer-section .part1 p span img {
  width: 16px;
  margin-top: 3px;
  /* margin-right: 6px; */
  float: left;
}

.timer-section .part2 {
  padding: 16px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.timer-section .part2 img {
  margin-right: 10px;
}

.timer-section .part2 span {
  font-family: "Poppins", sans-serif;
  color: #000;
  font-size: 18px;
  font-weight: 600;
}

.timer-section .part2 span.additional-plus {
  font-weight: 500;
  margin: 0 15px;
}

h3 {
  color: #000;
  font-size: 20px;
  font-weight: 700;
}

.main-section-right .express-checkout {
  /* margin-bottom: 30px; */
  margin-bottom: 50px;
}

.mt-50 {
  margin-top: 50px;
}

.main-section-right .paypal-button {
  border-radius: 4px;
  background: #f5c055;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 17px;
  cursor: pointer;
  margin-top: 20px;
}
.main-section-right .apay-button {
  border-radius: 4px;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 17px;
  cursor: pointer;
}
@media screen and (min-width: 992px) {
  .main-section-right .apay-button {
    margin-top: 20px;
  }
}
.main-section-right .apay-button img {
  height: 26px;
  filter: invert(1);
}
.main-section-right .paypal-button:hover {
  background: #ecb23d;
}
.main-section-right .apay-button:hover {
  opacity: 0.85;
}

.main-section-right .google-pay-button {
  border-radius: 4px;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px;
  cursor: pointer;
}
@media screen and (min-width: 992px) {
  .main-section-right .google-pay-button {
    margin-top: 20px;
  }
}
.main-section-right .google-pay-button img {
  height: 32px;
}
.main-section-right .google-pay-button:hover {
  opacity: 0.85;
}
#google_pay_Payment{
  position: fixed;
  opacity: 0;
  pointer-events: none;
}

input[type="text"],
input[type="search"],
input[type="number"],
input[type="password"],
input[type="tel"],
input[type="email"],
select,
textarea,
input[type="text"].input-flds,
select.selcet-fld {
  background: #fff;
  float: left;
  width: 100%;
  outline: none;
  border: 1px solid #ccc;
  height: 54px;
  padding: 10px 10px 10px 10px;
  border-radius: 4px;
  color: #000;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  box-sizing: border-box;
  font-size: 17px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.5px;
  -webkit-appearance: none;
  font-weight: 400;
  /* color: rgb(117, 117, 117); */
  /*margin-bottom: 14px;*/
}
.shipping-info .row div {
  /*margin-bottom: 14px;*/
}
input:focus-visible,
input:focus {
  outline: none !important;
}
select,
select.selcet-fld {
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  float: left;
  width: 100%;
  background-repeat: no-repeat;
  outline: none;
  border: 1px solid #ccc;
  height: 54px;
  padding: 10px 10px 10px 10px;
  border-radius: 4px;
  /* color: #000; */
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  box-sizing: border-box;
  font-size: 17px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.5px;
  -webkit-appearance: none;
  font-weight: 400;
  color: rgb(117, 117, 117);
  /*margin-bottom: 14px;*/
  background-position: right 0.75rem center, center right 2.25rem;
  background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.shipping-info p {
  color: #707a80;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

/* .shipping-time{
    display: flex;
    justify-content: flex-start;
    align-items: center;
} */
.shipping-time p {
  display: inline;
  color: #000;
  font-size: 14px;
  font-weight: 500;
}

#deliver_date {
  color: #f05a23;
}

.select-package-section .package {
  border-radius: 12px;
  border: 2px solid #ccc;
  background: #fff;
  padding-top: 48px;
  padding-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  padding-left: 16px;
  padding-right: 16px;
}

.select-package-section .package h4 {
  color: #000;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}

.select-package-section .package p {
  color: #f05a23;
  font-size: 14px;
  font-weight: 500;
  margin: 8px 0;
}

.select-package-section .package p span {
  color: #707a80;
  text-decoration: line-through;
}

.select-package-section .package .price {
  color: #000;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 100%;
}

.price span {
  font-size: 16px;
}

.package.selected {
  border-color: #34a853;
}

.package .selected-banner {
  display: none;
}

.package.selected .selected-banner {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
  background-color: #34a853;
  color: #fff;
  text-align: right;
  padding-right: 15px;
  height: 30px;
  padding-top: 3px;
  z-index: 2;
}

.package .most-popular {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background-color: #179bd7;
  color: #fff;
  text-align: left;
  padding-left: 15px;
  height: 30px;
  padding-top: 3px;
}

.order-summary {
  margin: 20px 0;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
}

.discount {
  color: #34a853;
}

.order-summary h5 {
  color: #111;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-transform: capitalize;
  margin-left: 10px;
}

.order-summary-mobile h5 {
  color: #111;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-transform: capitalize;
  margin-left: 10px;
}

.customer-reviews {
  margin: 40px 0;
}

.customer-reviews .card {
  padding: 16px;
  border-radius: 10px;
  border: 1px solid #daddde;
  background: #fff;
}

.card .author {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

.author span {
  padding: 0 5px;
}

.card .title {
  color: #000;
  margin: 8px 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 150%;
}

.card .review {
  color: #707a80;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}

.payment-option-radio.active {
  border-color: #f05a23;
}

.payment-option-radio {
  border: 1px solid #ccc;
  border-radius: 10px;
  /* padding: 20px; */
  margin-bottom: 15px;
  /* display: flex;
    justify-content: flex-start;
    align-items: center; */
  position: relative;
}

.payment-option-radio label {
  cursor: pointer;
  /* margin-left: 10px; */
  color: #111;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  padding: 10px 20px 10px 55px;
  width: 100%;
  display: inline-block;
  z-index: 999;
  position: relative;
}

.payment-option-radio.active label {
  cursor: default;
  pointer-events: none;
}

.payment-option-label img {
  max-height: 45px;
  margin-left: 10px;
}

label[for="cardPayment"],
label[for="klarna_Payment"] {
  padding-top: 20px;
  padding-bottom: 20px;
}

input[type="radio"] {
  height: 25px;
  width: 25px;
  position: absolute;
  accent-color: #f05a23;
  display: inline-block;
  top: 20px;
  left: 20px;
}

.btn-main {
  padding: 14px 40px;
  border-radius: 88px;
  background: linear-gradient(139deg, #54dd30 0%, #459f49 100%);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.26);
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  line-height: 150%;
  cursor: pointer;
}

a.btn-main:hover {
  background: #248579;
}

.choosing-lifevac {
  margin: 40px 0;
}

.choosing-lifevac .choosing-lifevac-part {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 20px 0;
  color: #707a80;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}

.choosing-lifevac .choosing-lifevac-part p {
  margin-bottom: 5px;
}

.choosing-lifevac .choosing-lifevac-part p b {
  font-size: 16px;
  color: #000;
}

.choosing-lifevac .choosing-lifevac-part img {
  margin-right: 20px;
}

.upsell {
  margin: 40px 0;
}

.upsell .upsell-item {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  padding: 20px 30px 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.upsell-item .btn-main {
  /*font-size: 16px;
    padding: 10px 20px;*/
  padding: 10px 10px;
  max-width: 148px;
}

.upsell-item .upsell-item-details {
  margin-right: auto;
}

.upsell-item .upsell-item-details .title {
  color: #111;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.upsell-item .upsell-item-details .quantity-price {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.upsell-item .upsell-item-details .quantity-price .quantity {
  border-radius: 5.873px;
  border: 1px solid #a1abb6;
  display: inline-block;
}

.quantity span,
.quantity button {
  background-color: transparent;
  border: none;
  width: 35px;
  display: inline-block;
  text-align: center;
  height: 34px;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  color: inherit;
  padding: 0;
}

.quantity span {
  border-right: 1px solid rgba(161, 171, 182, 1);
  border-left: 1px solid rgba(161, 171, 182, 1);
  font-size: 20px;
  height: 28px;
  line-height: 1.4;
}

.upsell-item .upsell-item-details .quantity-price .price {
  margin-left: 10px;
}

.upsell-item .upsell-item-details .quantity-price .price .actual-price {
  color: #707a80;
  font-size: 14px;
  font-weight: 500;
  text-decoration: line-through;
}

.upsell-item .upsell-item-details .quantity-price .price .discounted-price {
  color: #111;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  text-transform: capitalize;
}

footer {
  color: #000;
  font-size: 16px;
  font-weight: 500;
}

footer a {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

footer .footer-heading {
  color: #000;
  font-size: 18px;
  font-weight: 600;
}

footer ul {
  padding-left: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

footer ul li {
  list-style: none;
  /*margin-right: 7px;*/
}

footer .copyright p {
  color: #707a80;
  font-size: 16px;
  font-weight: 500;
}

.package .package-mobile h4 {
  display: none;
}

.btn-secondary {
  display: none;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  padding: 8px 12px;
  border-radius: 88px;
  background: linear-gradient(139deg, #ff9b3f 0%, #f05a23 100%);
  text-decoration: none;
  margin-top: 10px;
}
.mob-remove {
  display: inline !important;
}

@media screen and (max-width: 1199px) {
  .upsell .upsell-item {
    padding: 20px 15px 20px 0;
  }

  .upsell-item .btn-main {
    font-size: 14px;
    padding: 10px 10px;
  }

  .select-package-section .package p span {
    display: block;
  }

  .payment-option-radio label {
    font-size: 16px;
  }
}

@media screen and (max-width: 991px) {
  nav .nav-left span.v-line {
    display: none;
  }

  nav .nav-left span.secure-checkout {
    display: none;
  }

  nav .nav-right {
    display: none;
  }

  nav .nav-left {
    justify-content: center;
  }

  .main-section .main-section-left {
    padding: 50px 0 0 0;
  }

  .main-section::before {
    background-color: transparent;
  }

  .select-package-section .package p span {
    display: inline-flex;
  }

  .main-section .main-section-right {
    padding: 10px 0px;
  }

  .upsell-item .btn-main {
    font-size: 15px;
    padding: 10px 20px;
  }

  .upsell .upsell-item {
    padding: 20px 20px 20px 0;
  }
  .card .author {
    display: flex;
    align-items: center;
    margin: 8px 0;
  }
  .card .title {
    margin: 0;
  }
  .author span {
    padding: 0;
  }
}

@media screen and (min-width: 767px) {
  .btn-secondary {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .package > h4 {
    display: none;
  }

  .payment-flds-box select,
  .payment-flds-box select.selcet-fld {
    margin-bottom: 0px;
  }

  .package.selected .selected-banner {
    top: -1px;
  }

  .package .package-mobile h4 {
    display: block;
    margin-bottom: 3px;
    font-size: 20px;
    /*text-align: left;*/
  }

  .select-package-section .package {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    border: none;
  }

  .package.selected {
    border: 2px solid #34a853;
  }

  .package .package-mobile {
    display: flex;
    justify-content: center;
    /*align-items: flex-start;*/
    flex-direction: column;
    /*margin-left: 12px;*/
    margin: 0 auto;
  }

  .select-package-section .package p {
    margin: 3px 0;
  }

  .select-package-section .package .price {
    font-size: 20px;
  }
  .btn-secondary {
    display: block;
  }
  .timer-section {
    border-radius: 0px;
    border: none;
  }
  .timer-section .part1 {
    background: #f05a23;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
  }
  .main-section .main-section-left {
    padding: 0px 0 0 0;
  }
  .package.selected .selected-banner {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
  }
  .upsell-item .upsell-item-details .quantity-price {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
  }
  .upsell-item .upsell-item-details .quantity-price .price {
    margin-left: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
  }
  .upsell-item .upsell-item-details .quantity-price .price .actual-price {
    margin-right: 8px;
  }
  .upsell .upsell-item {
    padding: 20px 10px 20px 0;
    position: relative;
  }
  .upsell-item .btn-main {
    font-size: 15px;
    padding: 10px 20px;
  }
  .order-summary {
    position: relative;
  }
  .order-summary::before {
    content: "";
    /*background-color: #F0F7FE;*/
    display: inline-block;
    width: 767px;
    height: 450px;
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 50%;
    overflow-x: hidden;
    transform: translate(-50%, -50%);
  }
  .main-section {
    position: relative;
    overflow-x: hidden;
  }
  .choosing-lifevac .choosing-lifevac-part {
    align-items: flex-start;
  }
  .timer-section .part2 span {
    font-family: "Poppins", sans-serif;
    color: #000;
    font-size: 16px;
    font-weight: 600;
  }
  .timer-section .part2 img {
    margin-right: 5px;
  }
  .timer-section .part2 span.additional-plus {
    margin: 0 7px;
  }
  .mob-remove {
    display: none !important;
  }
}
@media screen and (max-width: 480px) {
  .btn-secondary {
    font-size: 16px;
    text-align: center;
  }
  .select-package-section .package {
    align-items: center;
  }
  .package img {
    max-width: 45%;
  }
  .banner .img-text {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: auto;
    margin-top: 15px;
  }
  .banner .img-text p {
    font-size: 16px;
    font-weight: 600;
    line-height: 2.5;
    color: #000;
    margin-bottom: 0px;
  }
  .banner .img-text p span {
    color: #f20000;
    display: inline;
  }
  .banner .img-text img {
    max-width: 40px;
    margin-right: 10px;
    max-height: 40px;
    margin-left: 0px;
  }
  .banner {
    height: 320px;
  }
  label[for="klarna_Payment"] img {
    max-height: 13px;
  }
  label[for="cardPayment"] img {
    max-height: 20px;
  }
}
@media screen and (max-width: 426px) {
  .shipping-time p {
    display: block;
  }
  .shipping-time {
    display: flex !important;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .shipping-time img {
    margin-top: 5px;
    margin-right: 7px;
  }
  .shipping-time.mt-2.d-lg-block.d-none {
    display: none !important;
  }
  .upsell-item .btn-main {
    font-size: 13px;
    padding: 10px 10px;
    max-width: 120px;
    bottom: 20px;
  }
}

@media screen and (min-width: 768px) {
  .select-package-section .package {
    height: 341px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .select-package-section .package {
    height: 353px;
  }
}

.upsell-item img {
  margin: 0 10px;
}

.checkout-modal-outer {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1024;
  overflow-y: auto;
  /*background: rgba(14, 21, 52, 0.46);*/
  background: rgb(255 255 255 / 90%);
}
.checkout-modal-outer .checkout-modal-inner {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}
.checkout-modal-outer .checkout-modal-inner .checkout-modal {
  background-color: #fff;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
  rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  border-radius: 20px;
  /* / padding: 15px; / */
  max-width: 800px;
  width: 100%;
  height: auto;
}
.checkout-modal-outer
.checkout-modal-inner
.checkout-modal
.checkout-modal-head {
  padding: 15px;
}
.checkout-modal-outer
.checkout-modal-inner
.checkout-modal
.checkout-modal-head {
  background: #3f73cb;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  position: relative;
}
.checkout-modal-head h4 {
  font-size: 35px;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  font-weight: 700;
}
.checkout-modal-head .close-checkout-modal {
  position: absolute;
  top: -15px;
  right: -15px;
  background: #000;
  padding: 10px;
  border-radius: 50px;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.checkout-modal-head .close-checkout-modal i {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.freeShip {
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  color: #f05a23;
}
/* .checkout-modal-outer .checkout-modal-inner .checkout-modal .checkout-modal-body{
    padding: 0 15px 15px 15px;
} */
.checkout-modal-body .special-offer {
  background: #f0f7fe;
  padding: 10px 15px;
  text-align: center;
}
.checkout-modal-body .special-offer p {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  margin: 0;
}
.checkout-modal-body .special-offer p span {
  font-weight: 600;
  padding-bottom: 1px;
  border-bottom-style: solid;
  border-bottom-width: 2px;
}
.checkout-modal-body h4 {
  font-size: 35px;
  color: #000;
  line-height: 1.2;
  text-align: center;
  font-weight: 700;
  margin-top: 15px;
}
.checkout-modal-body .line {
  width: 65%;
  height: 2px;
  background: #e8e8e9;
  margin: 0 auto;
}
.checkout-modal-body .product-desc p {
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  color: #040404;
  margin-bottom: 15px;
}
.checkout-modal-body .product-price {
  margin-top: 15px;
}
.checkout-modal-body .product-price span.actual-price {
  font-size: 22px;
  text-decoration: line-through;
  color: #a59888;
  margin-right: 15px;
}
.checkout-modal-body .product-price span.discounted-price {
  color: #040404;
  font-size: 34px;
  font-weight: 700;
}
.checkout-modal-body .product-price span.discounted-price span.sub {
  font-size: 20px;
}
.btn-upsell {
  color: #fff !important;
  background-color: #21b415 !important;
  border-color: #21b415 !important;
  font-size: 1.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(140.12deg, #54dd30 4.07%, #459f49 97.48%);
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2588235294);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2588235294);
  border-radius: 8.8rem;
  border: transparent;
  -webkit-transition: background 0.2s ease;
  transition: background 0.2s ease;
  display: inline-block;
  width: auto;
}
.btn.btn-upsell.upsell-submit {
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  color: #ffffff;
}
.no-thanks {
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  text-decoration-line: underline;
  color: #000000 !important;
  white-space: nowrap;
  cursor: pointer;
}
@media (min-width: 800px) {
  .checkout-modal-body .row img {
    max-width: 250px;
  }
}
@media (max-width: 767px) {
  .btn.btn-upsell.upsell-submit {
    padding: 1rem 1.5rem;
  }
}
@media (max-width: 425px) {
  /* .checkout-modal-outer{
        margin: 15px 0;
    } */
  .checkout-modal-outer {
    top: 50px;
    left: 50%;
    transform: translate(-50%, -50px);
  }
}
@media (max-width: 375px) {
  .checkout-modal-outer .checkout-modal-inner {
    padding: 15px;
  }
  .upsell-item img {
    max-width: 60px;
    margin: 0 10px;
  }
}
@media (max-width: 350px) {
  .checkout-modal-outer .checkout-modal-inner {
    padding: 15px;
  }
  .upsell-item img {
    max-width: 50px;
    margin: 0 0px;
  }
}
.product-desc p span {
  display: none;
}
@media (max-width: 767px) {
  .checkout-modal-outer
  .checkout-modal-inner
  .checkout-modal
  .checkout-modal-head {
    padding: 5px 15px;
  }
  .checkout-modal-head h4 {
    font-size: 20px;
  }
  .checkout-modal-body h4 {
    font-size: 23px;
  }
  .checkout-modal-body .product-price span.actual-price {
    font-size: 18px;
    text-decoration: line-through;
    color: #a59888;
    margin-right: 8px;
  }
  .checkout-modal-body .product-price span.discounted-price {
    color: #040404;
    font-size: 22px;
    font-weight: 700;
  }
  .btn.btn-upsell.upsell-submit {
    padding: 0.5rem 1.5rem;
  }
  .no-thanks {
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    text-decoration-line: underline;
    color: #000000 !important;
    white-space: nowrap;
  }
  .freeShip {
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    color: #f05a23;
  }
  .checkout-modal-body .special-offer p {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
  }

  .checkout-modal-body h4 {
    margin-top: 10px;
  }
  .checkout-modal-head .close-checkout-modal {
    position: absolute;
    top: -13px;
    right: -13px;
    background: #000;
    padding: 10px;
    border-radius: 50px;
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  .checkout-modal-head .close-checkout-modal i {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
  }
}
@media (max-width: 575px) {
  .product-desc {
    display: none;
  }
  .checkout-modal-body img {
    max-width: 210px;
  }
  .checkout-modal-body .product-price {
    margin-top: 0px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .product-desc p span {
    color: #f05a23;
    cursor: pointer;
    display: inline-block;
  }
  .product_desc-2 {
    display: none;
  }

  .checkout-modal-body .product-desc p {
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    color: #040404;
    margin-bottom: 5px;
  }
}

a.remove-upsell {
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 25px;
  font-weight: 400;
  color: #adadad;
  transform: rotateZ(45deg);
  display: inline-block;
  line-height: 1;
  height: 25px;
  width: 25px;
  text-decoration: none;
  cursor: pointer;
}
@media only screen and (max-width: 991px) {
  a.remove-upsell {
    top: 10px;
  }
}

img.img_change {
  border: 1px solid #dedddd;
  height: 75px;
  width: 75px;
  object-fit: contain;
  border-radius: 4px;
}

img.upsell_img {
  border: 1px solid #dedddd;
  height: 75px;
  width: 75px;
  object-fit: contain;
  border-radius: 4px;
}

.product-thumbnail__quantity {
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  white-space: nowrap;
  text-align: center;
  border-radius: 21px;
  background-color: rgba(114, 114, 114, 0.9);
  color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 21px;
  height: 21px;
  padding: 0 7px;
  position: absolute;
  left: 75px;
  top: -9px;
  z-index: 3;
}

a.remove-upsell {
  position: absolute;
  left: -20px;
  top: 20px;
  font-size: 25px;
  font-weight: 400;
  color: #adadad;
  transform: rotateZ(45deg);
  display: inline-block;
  line-height: 1;
  height: 25px;
  width: 25px;
  text-decoration: none;
}
@media only screen and (max-width: 575px) {
  a.remove-upsell {
    top: 20px;
    left: -5px;
  }
  .product-thumbnail__quantity {
    left: 88px;
  }
}

form {
  padding: 0px !important;
}

.modal-wrapper {
  background: rgba(0, 0, 0, 0.9);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: fixed;
  z-index: 9999999999;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-box {
  width: 800px;
  max-width: 90vw;
  background: #fff;
  padding: 0;
  position: relative;
  max-height: 80vh;
}

.footer__popup-modal__toggle {
  border: 01px solid #000;
  border-radius: 50%;
  color: rgba(18, 18, 18, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  top: 04px;
  right: 04px;
  padding: 12px;
  z-index: 2;
  width: 40px;
  margin: 0 0 0 auto;
}
.footer__popup-modal__toggle {
  position: absolute;
  top: 5px;
  /* right: 5px; */
  right: 20px;
  padding: 10px;
  width: 30px;
  height: 30px;
  background-color: rgb(240, 240, 240);
}
.footer__popup-modal__toggle:hover {
  color: rgba(18, 18, 18, 0.75);
  background-color: rgb(240, 240, 240);
}

.modal-box h2 {
  margin-top: 0 !important;
  margin-bottom: 20px !important;
  line-height: 1.2;
}

.footer__popup-modal__content-info {
  text-align: justify;
  padding: 20px;
  overflow: hidden;
  overflow-y: scroll;
  height: 76vh;
  /* margin: 20px 0; */
}
.mw p {
  color: rgba(18, 18, 18, 0.75);
  line-height: calc(1 + 0.8 / 1);
}
.mw ul {
  padding: 20px;
}
.mw ul li {
  color: rgba(18, 18, 18, 0.75);
  line-height: calc(1 + 0.8 / 1);
  list-style-type: disc;
}

table:not([class]) {
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 14px;
  border-style: hidden;
  box-shadow: 0 0 0 0.1rem rgba(18, 18, 18, 0.2);
}
table:not([class]) td,
table:not([class]) th {
  padding: 1em;
  border: 1px solid rgba(18, 18, 18, 0.2);
  color: #212529;
}
.mw p {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #212529;
}
footer .link {
  text-decoration: none;
}

.button:hover,
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover {
  /*background: #248579 !important;*/
}
.label-checkbox {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.label-checkbox input {
  margin-right: 6px;
  accent-color: #f05a23;
  height: 20px;
  width: 20px;
}
#app_common_modal_close,
#error_handler_overlay_close {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .footer__popup-modal__toggle {
    right: 5px;
  }
}
@media (max-height: 650px) {
  #app_common_modal .app_modal_body iframe {
    min-height: 230px;
    width: 100%;
    border: 1px solid #d5d6ef;
  }
  #app_common_modal .app_modal_body {
    margin: 30px auto;
    min-height: 230px;
  }
}
.owl-dots button:hover,
.quantity button:hover {
  background: transparent !important;
}
@media (min-width: 1150px) and (max-width: 1300px) {
  .banner {
    height: calc(200px + 5vw);
  }
  .banner .img-text {
    height: calc(200px + 5vw);
  }
}
/* @media (min-width: 1301px) and (max-width: 1499px){ */
/*@media (min-width: 1301px) and (max-width: 1440px) {*/
@media (min-width: 1301px) {
  .banner {
    height: calc(200px + 7vw);
    max-width: 1320px;
    margin: 0 auto;
  }
  .banner .img-text {
    height: calc(200px + 7vw);
  }
}
@media (min-width: 1441px) {
  .banner {
    /*height: 300px;*/
    /*background: url("https://d1e70rtlfmc4ez.cloudfront.net/lifevac/funnel3/background-funnel-3.jpg") no-repeat center;*/
  }
  .banner .img-text {
    /*height: 300px;*/
  }
}
/* @media (min-width: 1500px){
    .banner {
        height: calc(275px + 10vw);
    }
    .banner .img-text {
        height: calc(275px + 10vw);
    }
} */
/* @media (min-width: 1500px) and (max-width: 1700px){
    .banner {
        height: calc(200px + 9vw);
    }
    .banner .img-text {
        height: calc(200px + 9vw);
    }
}
@media (min-width: 1701px) and (max-width: 1900px){
    .banner {
        height: calc(200px + 10vw);
    }
    .banner .img-text {
        height: calc(200px + 10vw);
    }
}
@media (min-width: 1901px) and (max-width: 2100px){
    .banner {
        height: calc(200px + 11vw);
    }
    .banner .img-text {
        height: calc(200px + 11vw);
    }
}
@media (min-width: 2101px) and (max-width: 2300px){
    .banner {
        height: calc(200px + 12vw);
    }
    .banner .img-text {
        height: calc(200px + 12vw);
    }
}
@media (min-width: 2301px){
    .banner {
        height: calc(200px + 13vw);
    }
    .banner .img-text {
        height: calc(200px + 13vw);
    }
} */

.btn-checkout {
  margin-top: 24px;
  font-size: 20px;
}
@media (max-width: 991px) {
  .upsell {
    margin: 0 0 40px 0;
  }
  .payment-option {
    margin-top: 20px;
  }
  .main-section-right .express-checkout {
    /* margin-bottom: 30px; */
    margin-bottom: 30px;
  }
}

.topbar {
  -webkit-box-shadow: 0px 6px 9px -5px rgba(9, 44, 124, 0.1);
  box-shadow: 0px 6px 9px -5px rgba(9, 44, 124, 0.1);
  background-color: #fff;
  position: relative;
}
.topbar .breadcrumb {
  margin-bottom: 0;
}
.topbar .breadcrumb .breadcrumb-item {
  color: #6c757d;
}
@media (max-width: 991.98px) {
  .topbar .breadcrumb .breadcrumb-item {
    font-size: 0.813rem;
  }
}
.topbar .breadcrumb .breadcrumb-item.is-complete {
  color: #bbb;
}
.topbar .breadcrumb .breadcrumb-item.is-current {
  color: black;
}
@media (min-width: 992px) {
  .topbar .breadcrumb .breadcrumb-item + .breadcrumb-item {
    padding-left: 2rem;
  }
}
.topbar .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #ccc;
}
@media (min-width: 992px) {
  .topbar .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    padding-right: 2rem;
  }
}

footer ul li img {
  height: 25px;
  width: 40px;
}
/* banner same as perf 4 ..edit 19 oct 2023 start */
@media screen and (max-width: 767px){
  .banner {
    height: 216px;
    background-position: center right;
    position: relative;
  }
  .banner .img-text {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 216px;
  }
  .banner .img-text img {
    max-width: 91px;
    margin-right: 20px;
    max-height: 91px;
    margin-left: 30px;
  }
  .banner .img-text p {
    font-size: 34px;
    font-weight: 600;
    line-height: 1.5;
    color: #000;
    margin-bottom: 0px;
  }
  .banner .img-text p span {
    color: #F20000;
    display: block;
  }
}
@media screen and (max-width: 480px){
  .banner {
    height: 186px;
  }
  .banner .img-text {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: auto;
    margin-top: 20px;
  }
  .banner .img-text img {
    max-width: 40px;
    margin-right: 10px;
    max-height: 40px;
    margin-left: 0px;
  }
  .banner .img-text p {
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    color: #000;
    margin-bottom: 0px;
  }
  .banner .img-text p span {
    display: block;
    line-height: 1;
    margin-bottom: 2px;
  }
}
@media screen and (max-width: 420px){
  .banner {
    height: 163px;
  }
}
@media screen and (max-width: 360px){
  .banner {
    height: 124px;
  }
}
/* banner same as perf 4 ..edit 19 oct 2023 start */

.logo img{
  width: auto;
  height: 100%;
  max-height: 48px;
}

.payment-icons{
  padding-left: 0;
  margin-top: 10px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

footer ul li img {
  height: 25px;
  width: 40px;
}

footer .footer-heading {
  color: #000;
  font-size: 18px;
  font-weight: 600;
}