/* bulma */
@import 'https://cdn.jsdelivr.net/npm/bulma@0.9.3/css/bulma.min.css';

@import './loading.css';

/* fonts */
@font-face {
  font-family: 'AvenirNext-Bold';
  src: url(/assets/checkout/v3/fonts/avenir-next-bold.ttf) format('truetype');
}
@font-face {
  font-family: 'AvenirNext-Demi';
  src: url(/assets/checkout/v3/fonts/avenir-next-demi.ttf) format('truetype');
}
@font-face {
  font-family: 'AvenirNext-DemiBold';
  src: url(/assets/checkout/v3/fonts/avenir-next-demibold.ttf) format('truetype');
}
@font-face {
  font-family: 'AvenirNext-Regular';
  src: url(/assets/checkout/v3/fonts/avenir-next-regular.ttf) format('truetype');
}

/* sales pop */
section.salespop {
  position: fixed;
  top: 120px;
  left: -400px;
  background: white;
  border-radius: 5px;
  box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0px 0 1px rgba(10, 10, 10, 0.02);
  transition: 0.5s all;
}
section.salespop.is-active {
  left: 30px;
}
section.salespop .outer {
  display: flex;
}
section.salespop .outer .has-image {
  padding: 10px 20px;
  background: #29af5c;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
section.salespop .outer .has-image img {
  width: 60px;
}
section.salespop .outer .inner {
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section.salespop .outer .inner p.time {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 5px;
}
section.salespop .outer .inner p.quantity {
  font-style: italic;
}
section.salespop .outer .inner p:last-of-type {
  margin-top: 5px;
  color: #29af5c;
}
section.salespop .outer .inner p:last-of-type i {
  color: #29af5c;
}
/* faq */
body.checkout section.faq {
  background: #eee;
  margin-top: 2rem;
}
body.checkout section.faq > p {
  padding: 20px;
  text-align: center;
  font-size: 1.2rem;
  color: black;
  cursor: pointer;
}
body.checkout section.faq > p span {
  text-decoration: underline;
}
body.checkout section.faq h2 {
  padding: 10px;
  text-align: center;
  font-weight: bold;
  background: hsl(229, 53%, 53%);
  color: white;
}
body.checkout section.faq .questions {
  padding-bottom: 2rem;
}
body.checkout section.faq .questions .faq-item {
  border: 1px solid lightgray;
  border-radius: 3px;
}
body.checkout section.faq .questions .faq-item + .faq-item {
  border-top: 1px solid #ddd;
  margin-top: 1rem;
}
body.checkout section.faq .questions .faq-item.is-active .answer {
  display: block;
}
body.checkout section.faq .questions .faq-item.is-active .question {
  border-bottom: 1px solid #ddd;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
body.checkout section.faq .questions .faq-item.is-active .question svg {
  transform: rotate(270deg);
}
body.checkout section.faq .questions .faq-item .question {
  font-weight: bold;
  padding: 20px;
  padding-right: 40px;
  position: relative;
  background: white;
  cursor: pointer;
  border-radius: 3px;
}
body.checkout section.faq .questions .faq-item .question svg {
  position: absolute;
  right: 20px;
  top: 24px;
}
body.checkout section.faq .questions .faq-item .answer {
  padding: 20px;
  display: none;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}
/* top bar */
body.checkout .topbar {
  padding: 10px 5px;
  margin: 0;
  text-align: center;
  color: #fff;
  font-size: 20px;
  line-height: 22px;
  background: #30bd51;
  font-weight: bold;
}
/* checkout card */
body.checkout .payment .card {
  padding: 20px;
}
/* form */
body.checkout form.form label.label {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans',
    'Droid Sans', 'Helvetica Neue', sans-serif;
  font-size: 14px;
  font-weight: normal;
  color: black;
  margin-bottom: 0;
  line-height: 1.4;
}
body.checkout form.form input[type='submit'] {
  height: auto;
  white-space: normal;
  background: #29af5c;
  border: none;
  font-weight: bold;
  color: white;
  box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0px 0 1px rgba(10, 10, 10, 0.02);
  transition: 0.25s all;
  padding: 20px;
  width: 100%;
}
body.checkout form.form input[type='submit']:hover {
  transform: scale(1.05);
}
/* downsell + upsell */
body.checkout section.upsell {
  z-index: 999999;
}
body.checkout section.downsell {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 12345;
  display: none;
}
body.checkout section.downsell.is-active {
  display: flex;
}
body.checkout section.downsell .inner {
  padding: 40px;
  border-radius: 5px;
  background: white;
  box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0px 0 1px rgba(10, 10, 10, 0.02);
  text-align: center;
  position: relative;
}
body.checkout section.downsell .inner .close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5rem;
  line-height: 1;
  color: black;
  cursor: pointer;
}
body.checkout section.downsell .inner h1 {
  color: #29af5c;
}
body.checkout section.downsell .inner p {
  font-size: 1.25rem;
}
body.checkout section.downsell .inner .button {
  margin-top: 10px;
  font-weight: bold;
  color: white;
  padding: 20px;
  height: auto;
  white-space: normal;
}
body.checkout section.downsell .inner .button.yes {
  background-color: #29af5c;
}
body.checkout section.downsell .inner .button.no {
  background-color: #db1414;
}
body.checkout .loading, body.checkout .loader-2 {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: white;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
  flex-direction: column;
}
body.checkout .loading img {
  width: 300px;
  margin-bottom: 20px;
}
body.checkout .loading.is-active, body.checkout .loader-2.is-active {
  display: flex;
}
body.checkout .loading .inner {
  max-width: 500px;
}
body.checkout .loading .inner p {
  margin-bottom: 10px;
  font-size: 1.5rem;
  text-align: center;
}
body.checkout .loading .inner .cssProgress {
  width: 500px;
}

@media screen and (min-width: 769px) {
  .column.is-7,
  .column.is-7-tablet {
    flex: none;
    width: 55%;
    margin-right: 3.3333%;
  }
}
section.page .container {
  max-width: 900px;
}
section.page .payment h2 {
  border-bottom: none;
  font-weight: bold;
  font-size: 1.5rem;
}
section.page .payment p + h2 {
  margin-top: 20px;
}

section.upsell {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 101;
  display: none;
  justify-content: center;
  align-items: center;
}
section.upsell.is-active {
  display: flex;
}
section.upsell a.button {
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 14px;
}
section.upsell a.button:after {
  display: none;
}
section.upsell a.button.is-large {
  margin-top: 10px;
  font-size: 20px;
  padding: 0.5rem 2rem;
  background: #f28542;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
section.upsell a.button.is-link {
  background: transparent;
  border: none;
  font-size: 1.2rem;
  color: gray;
  text-decoration: underline;
  font-weight: bold;
}
section.upsell .upsell-inner {
  max-width: 700px;
  position: relative;
  border-radius: 5px;
  background: #ffd300;
  padding: 5px;
}
section.upsell .upsell-inner .upsell-header {
  background: #ffd300;
  color: black;
  font-weight: bold;
  text-align: center;
  padding: 10px 20px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  line-height: 1;
}
section.upsell .upsell-inner .upsell-header span {
  font-size: 3rem;
  font-weight: 900;
}
section.upsell .upsell-inner .upsell-close {
  position: absolute;
  right: -15px;
  top: -15px;
  cursor: pointer;
}
section.upsell .upsell-inner .upsell-close img {
  width: 30px;
  height: 30px;
}
section.upsell .upsell-inner .upsell-content {
  padding: 20px;
  background: white;
  border-radius: 5px;
}
section.upsell .upsell-inner .upsell-content .upsell-qty {
  font-size: 1.2rem;
}
section.upsell .upsell-inner .upsell-content a.button .upsell-qty {
  font-size: 1.4rem;
}
section.upsell .upsell-inner .upsell-content h2 {
  text-align: center;
  font-weight: bold;
  position: relative;
  display: block;
  margin-bottom: 1rem;
}
section.upsell .upsell-inner .upsell-content h2 span:not(.upsell-qty) {
  background: white;
  position: relative;
  z-index: 1;
  padding: 0 10px;
}
section.upsell .upsell-inner .upsell-content h2:before {
  content: '';
  position: absolute;
  width: calc(100% - 33.333333% - 0.5rem);
  height: 1px;
  left: calc(16.6666666667% + 0.25rem);
  right: calc(16.6666666667% + 0.25rem);
  top: 12px;
  background: gray;
}
section.upsell .upsell-inner .upsell-content .upsell-cart {
  margin-bottom: 2rem;
}
section.upsell .upsell-inner .upsell-content .upsell-cart .has-images {
  position: relative;
}
section.upsell .upsell-inner .upsell-content .upsell-cart .has-images .check-icon {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 99px;
  background: green;
  color: white;
  padding: 2px;
  font-size: 0.8rem;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 24px;
}
section.upsell .upsell-inner .upsell-content .upsell-cart .has-image {
  height: 80px;
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background: white;
  border-radius: 5px;
  border: 1px solid gray;
}
section.upsell .upsell-inner .upsell-content .upsell-cart .has-image img {
  max-width: 60px;
  max-height: 60px;
}
section.upsell .upsell-inner .upsell-content .has-titles,
section.upsell .upsell-inner .upsell-content .has-price {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section.upsell .upsell-inner .upsell-content .has-titles .has-text-danger,
section.upsell .upsell-inner .upsell-content .has-price .has-text-danger {
  text-decoration: line-through;
}
section.upsell .upsell-inner .upsell-content .upsell-offers {
  padding: 20px;
  background: whitesmoke;
  border-radius: 5px;
  height: calc(250px + 3rem);
  overflow-y: scroll;
  overflow-x: hidden;
}
section.upsell .upsell-inner .upsell-content .upsell-offers h2 span {
  background: whitesmoke;
}
section.upsell .upsell-inner .upsell-content .upsell-offers h2:before {
  width: calc(100% - 2.4rem);
  left: 1.2rem;
  right: 1.2rem;
}
section.upsell .upsell-inner .upsell-content .upsell-offers .upsell-offer {
  padding: 10px;
  margin: 10px;
}
section.upsell .upsell-inner .upsell-content .upsell-offers .upsell-offer h2 {
  text-align: left;
}
section.upsell .upsell-inner .upsell-content .upsell-offers .upsell-offer h2:before {
  display: none;
}
section.upsell .upsell-inner .upsell-content .upsell-offers .upsell-offer .has-titles > p {
  line-height: 1.5;
}
section.upsell .upsell-inner .upsell-content .upsell-offers .upsell-offer .has-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background: white;
  border: 1px solid gray;
  border-radius: 5px;
}
section.upsell .upsell-inner .upsell-content .upsell-offers .upsell-offer .has-image img {
  width: 100%;
}
section.upsell .upsell-inner .upsell-content .upsell-offers .upsell-offer h2 {
  font-size: 1rem;
  letter-spacing: 0.5px;
  line-height: 32px;
  margin-bottom: 0;
}
section.upsell .upsell-inner .upsell-content .upsell-offers .upsell-offer h3 {
  font-size: 1rem;
  font-weight: normal;
  letter-spacing: 0.5px;
  line-height: 32px;
  font-style: italic;
}
section.upsell .upsell-inner .upsell-content .upsell-offers .upsell-offer h4 {
  letter-spacing: 0.5px;
  line-height: 32px;
  color: green;
  font-weight: bold;
}
section.upsell .upsell-inner .upsell-content .upsell-offers .upsell-offer p.has-text-danger {
  text-decoration: line-through;
}
section.upsell .upsell-inner .upsell-content .upsell-offers .upsell-offer .upsell-compare-price {
  margin-bottom: 5px;
}
section.upsell .upsell-inner .upsell-content .upsell-offers .upsell-offer .qty-buttons {
  margin-top: 5px;
}
section.upsell .upsell-inner .upsell-content .upsell-offers .upsell-offer .qty-buttons input {
  font-size: 0.8rem;
  text-align: center;
}
section.upsell .upsell-inner .upsell-content .upsell-offers .upsell-offer .qty-buttons .button {
  font-size: 0.8rem;
}
section.upsell .upsell-inner .upsell-content .upsell-offers .upsell-offer a.button {
  box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0px 0 1px rgba(10, 10, 10, 0.02);
  height: auto;
  white-space: normal;
  background: green;
  border: none;
  border-bottom: 3px solid black;
  font-weight: bold;
  color: white;
  transition: 0.25s all;
  padding: 20px;
  font-size: 1.2rem;
  width: 100%;
  text-align: center;
}
section.upsell .upsell-inner .upsell-content .upsell-offers .upsell-offer a.button svg {
  margin-left: 10px;
}

section.thankyou {
  padding: 4rem 0;
}
section.thankyou .columns {
  margin-left: -0.75rem !important;
  margin-right: -0.75rem !important;
}
section.thankyou .container {
  max-width: 700px;
}
section.thankyou .thankyou-header {
  background-image: url('/assets/shared/checkout/img/thankyou-header.jpg');
  background-size: cover;
  background-position: center center;
  position: relative;
  padding: 2rem 4rem;
  color: white;
}
section.thankyou .thankyou-header .inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
section.thankyou .thankyou-header .inner h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}
section.thankyou .thankyou-header .inner p {
  color: white;
}
section.thankyou .thankyou-header .overlay {
  position: absolute;
  background: rgba(13, 144, 205, 0.9);
  z-index: 1;
}
section.thankyou .thankyou-content {
  padding: 2rem;
}
section.thankyou .thankyou-content .shipping {
  padding: 1rem;
  border: 1px gray dashed;
  font-size: 12px;
  margin-bottom: 1rem;
}
section.thankyou .thankyou-content .shipping img {
  float: left;
  margin-right: 20px;
  max-height: 60px;
}
section.thankyou .thankyou-content .address-box {
  padding: 2rem 2rem 0;
  background: whitesmoke;
  margin-bottom: 1rem;
}
section.thankyou .thankyou-content .address-box p:first-of-type {
  margin-bottom: 10px;
  font-size: 1.1rem;
}
section.thankyou .thankyou-content h2 {
  font-weight: bold;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
section.thankyou .thankyou-content table {
  border: 1px solid whitesmoke;
}

body.warranty {
  background: whitesmoke;
}
body.warranty .menu {
  background: white;
}
body.warranty .navbar-brand {
  margin-left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
body.warranty .navbar-brand img {
  height: 50px;
  max-height: initial;
}
body.warranty section.warranty {
  margin-bottom: 40px;
}
body.warranty section.warranty .container {
  max-width: 900px;
}
body.warranty section.warranty p .has-image {
  padding: 5px 10px;
  border-radius: 10px;
  background: white;
  position: relative;
}
body.warranty section.warranty p .has-image img {
  display: inline-block;
  height: 1.3rem;
  line-height: 50px;
}
body.warranty section.warranty p .has-image.cc {
  line-height: 50px;
  height: 50px;
  display: inline-block;
}
body.warranty section.warranty p .has-image.cc img {
  height: 2.5rem;
}
body.warranty section.warranty .topbar {
  background: #861028;
}
body.warranty section.warranty .topbar .container {
  display: flex;
  color: white;
  padding: 20px;
  font-size: 2rem;
}
body.warranty section.warranty .topbar .container svg,
body.warranty section.warranty .topbar .container i {
  font-size: 4rem;
}
body.warranty section.warranty .topbar .container p {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  padding-left: 20px;
}
body.warranty section.warranty .warranty-header {
  margin-top: 60px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: #861028;
  position: relative;
}
body.warranty section.warranty .warranty-header > img {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
body.warranty section.warranty .warranty-header p {
  color: white;
  padding: 20px 240px 20px 40px;
  font-size: 1.35rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}
body.warranty section.warranty .warranty-content {
  padding: 40px;
  background: white;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
body.warranty section.warranty .warranty-content h2 {
  font-size: 1.5rem;
  font-weight: bold;
}
body.warranty section.warranty .warranty-content ul {
  margin: 20px 0;
}
body.warranty section.warranty .warranty-content ul li {
  display: flex;
  font-size: 1.5rem;
}
body.warranty section.warranty .warranty-content ul li p {
  font-size: 1.1rem;
}
body.warranty section.warranty .warranty-content ul li + li {
  margin-top: 10px;
}
body.warranty section.warranty .warranty-content ul li i,
body.warranty section.warranty .warranty-content ul li svg {
  margin-right: 10px;
}
body.warranty section.warranty .warranty-content .has-text-centered .price {
  font-size: 1.5rem;
  color: #f14668;
  margin-bottom: 20px;
}
body.warranty section.warranty .warranty-content .has-text-centered .price b {
  font-size: 2.5rem;
}
body.warranty section.warranty .warranty-content .has-text-centered a.button {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
body.warranty section.warranty .warranty-content .has-text-centered a.button i,
body.warranty section.warranty .warranty-content .has-text-centered a.button svg {
  margin-right: 10px;
}
body.warranty section.warranty .warranty-content .has-text-centered a.button:after {
  display: none;
}
body.warranty section.warranty .warranty-content .has-text-centered a:not(.button) {
  color: blue;
  text-decoration: underline;
}

@media (max-width: 768px) {
  body.warranty .navbar-brand img {
    height: auto;
    width: 90%;
    max-width: initial !important;
  }
  body.warranty section.warranty .topbar .container i {
    font-size: 2.5rem;
  }
  body.warranty section.warranty .topbar .container p {
    font-size: 1rem;
  }
  body.warranty section.warranty .topbar .container p .has-image img {
    height: 1rem;
  }
  body.warranty section.warranty .warranty-badge-mobile {
    margin-top: 20px;
  }
  body.warranty section.warranty .warranty-header {
    margin: -76px 10px 0 10px;
  }
  body.warranty section.warranty .warranty-header > img {
    display: none;
  }
  body.warranty section.warranty .warranty-header p {
    font-size: 1.1rem;
    padding: 20px;
    letter-spacing: initial;
    line-height: 1.65;
  }
  body.warranty section.warranty .warranty-header p .has-image img {
    height: 1rem;
  }
  body.warranty section.warranty .warranty-content {
    margin: 0 10px 30px 10px;
    padding: 20px;
  }
  body.warranty section.warranty .warranty-content ul li p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 20px;
    line-height: 20px;
  }

  a.button {
    white-space: normal;
    font-size: 13px;
    padding: 20px;
    width: 100%;
    text-align: center;
  }
  a.button:after {
    display: none;
  }

  .menu {
    position: relative !important;
  }
  .menu nav.navbar .navbar-burger {
    display: none;
  }
  .menu nav.navbar .navbar-brand {
    display: flex;
    flex-direction: column;
  }
  .menu nav.navbar .navbar-brand .navbar-item {
    width: 100%;
    text-align: center;
    padding: 20px 10px 5px 10px;
    display: block;
  }
  .menu nav.navbar .navbar-brand .navbar-item + .navbar-item {
    padding-top: 5px;
  }
  .menu nav.navbar .navbar-brand .navbar-item.is-hidden-tablet + .is-hidden-tablet {
    padding-bottom: 20px;
  }
  .menu nav.navbar .navbar-brand .navbar-item img {
    max-width: 250px;
    margin: 0 auto;
  }
  section.upsell .upsell-inner .upsell-content .upsell-offers .upsell-offer {
    margin: 1em 0!important;
  }
  section.banner {
    padding: 20px 10px;
  }
  section.banner h1 {
    font-size: 26px;
  }
  section.banner .column.is-4 {
    padding: 20px 40px;
  }

  section.offerbar {
    padding: 20px 10px;
  }
  section.offerbar p {
    font-size: 12px;
  }

  section.usps {
    padding: 20px;
  }

  section.product-info {
    padding: 20px;
  }

  section.product-info .product-box {
    padding: 20px;
    background: whitesmoke;
  }
  section.product-info .product-image-1 {
    min-height: 250px;
  }
  section.product-info h2 {
    line-height: 1.1;
    margin-bottom: 5px;
  }

  section.cta-banner {
    padding: 20px;
  }

  section.testimonial {
    padding: 20px;
  }

  section.reviews {
    padding: 1rem;
  }
  section.reviews .average-rating {
    display: flex;
    text-align: center;
    justify-content: space-between;
    align-items: center;
  }

  body.checkout section.reviews {
    padding: 20px 10px;
  }
  body.checkout section.reviews .columns {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  body.checkout section.salespop {
    top: 20px;
    width: calc(100% - 40px);
  }
  body.checkout section.salespop p.name {
    font-size: 12px !important;
  }
  body.checkout section.salespop.is-active {
    left: 20px;
  }
  body.checkout section.downsell {
    padding: 20px;
  }
  body.checkout section.downsell .inner {
    width: 100%;
  }
  body.checkout section.downsell .inner h1 {
    font-size: 2rem;
    line-height: 1.1;
  }
  body.checkout section.downsell .inner p {
    font-size: 1rem;
  }

  section.footer .column {
    text-align: left;
  }

  body.checkout .checkout-banner {
    margin-top: 0;
  }
  body.checkout .steps {
    padding: 0 30px;
  }
  body.checkout .secure {
    margin: 0 20px 20px 20px;
  }
  body.checkout .secure .top {
    font-size: 1rem;
  }
  body.checkout .payment {
    margin-bottom: 20px;
  }
  body.checkout .payment .card {
    padding: 20px 10px;
  }
  body.checkout div.discount {
    padding: 10px 20px;
    background: #f28542;
  }
  body.checkout div.discount p {
    font-size: 0.8rem;
  }
  body.checkout .payment .product-options .option .middle img {
    max-width: 30px;
  }
  body.checkout .payment .product-options .option {
    min-height: 150px;
  }
  body.checkout .payment .product-options .option .info {
    flex-direction: row-reverse;
  }
  body.checkout .payment .product-options .option .info .titles {
    margin-bottom: 0;
  }
  body.checkout .payment .product-options .option .info .images {
    width: 40%;
    text-align: right;
    position: absolute;
    top: 1rem;
  }
  body.checkout .payment .product-options .option .info .images .amount {
    position: absolute;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: whitesmoke;
    border: 1px solid gray;
    border-radius: 99px;
    right: 55px;
    top: 40%;
    transform: translateY(-50%);
  }
  body.checkout .payment .product-options .option .info .images img {
    display: none;
  }
  body.checkout .payment .product-options .option .info .images img:first-of-type {
    display: inline-block;
  }
  body.checkout .payment .product-options .option .info .prices {
    width: 100%;
    text-align: left !important;
  }
  body.checkout .payment .product-options .option .info .prices p {
    font-size: 1.1rem;
  }
  body.checkout .payment .product-options .option:first-of-type .ribbon {
    top: initial;
    bottom: -33px;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    font-weight: bold;
  }
  body.checkout .payment .product-options .option:first-of-type .ribbon:after {
    display: none;
  }
  body.checkout .saved {
    margin-bottom: 1rem;
  }
  body.checkout .saved .column {
    flex-direction: column;
  }
  body.checkout .saved .column:first-of-type {
    flex: 3;
  }
  body.checkout .saved .column:nth-child(2) {
    align-items: flex-end;
    flex: 7;
  }
  body.checkout .saved .column p {
    font-size: 1.2rem;
  }
  body.checkout .ribbon {
    top: 0px;
  }

  body.checkout table.table th,
  body.checkout table.table td {
    font-size: 0.8rem;
  }
  body.checkout table.table th .center,
  body.checkout table.table td .center {
    flex-direction: column;
  }
  body.checkout section.reviews {
    padding: 0;
  }

  section.checkout {
    padding: 0;
  }

  section.thankyou {
    padding: 0;
  }
  section.thankyou .thankyou-header {
    padding: 2rem;
  }
  section.thankyou .thankyou-header h2 {
    font-size: 1rem;
  }
  section.thankyou .thankyou-content .address-box {
    margin-bottom: 0;
  }
  section.thankyou .thankyou-content h2 {
    margin-top: 1rem;
  }

  section.sticky {
    background: white;
    border-top: 1px solid #ddd;
    position: fixed;
    bottom: -74px;
    left: 0;
    right: 0;
    transition: 0.5s all;
  }
  section.sticky.is-visible {
    bottom: 0;
  }
  section.sticky .container {
    padding: 10px;
  }

  section.salespop {
    top: 20px;
    z-index: 999;
  }
  section.salespop.is-active {
    left: 20px;
  }
  section.salespop .outer .has-image {
    padding: 10px;
  }
  section.salespop .outer .inner {
    width: calc(100% - 80px);
  }
  section.salespop .outer .inner p.name {
    font-size: 12px;
  }

  .loading .inner {
    width: 100%;
  }
  .loading .inner .cssProgress {
    width: auto !important;
  }

  section.upsell .upsell-inner {
    max-width: calc(100% - 2rem);
  }
  section.upsell .upsell-inner .upsell-content {
    padding: 0;
  }
  section.upsell .upsell-inner .upsell-content .upsell-cart {
    display: none !important;
  }
  section.upsell .upsell-inner .upsell-content .upsell-offers {
    padding: 10px;
    height: calc(250px + 3rem);
    overflow-y: scroll;
  }
  section.upsell .upsell-inner .upsell-content .upsell-offers > h2 {
    font-size: 0.8rem;
    text-decoration: underline;
  }
  section.upsell .upsell-inner .upsell-content .upsell-offers > h2:before {
    display: none;
  }
  section.upsell .upsell-inner .upsell-content .upsell-offers > h2 span {
    padding: 0;
  }
  section.upsell .upsell-inner .upsell-content .upsell-offers .upsell-offer {
    padding: 0;
    margin: 0;
  }
  section.upsell .upsell-inner .upsell-content .upsell-offers .upsell-offer > .columns > .column {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  section.upsell .upsell-inner .upsell-content .upsell-offers .upsell-offer .has-titles > p {
    line-height: 1.5rem;
  }
  section.upsell .upsell-inner .upsell-content .upsell-offers .upsell-offer .qty-buttons {
    margin-top: 5px;
  }
  section.upsell .upsell-inner .upsell-content .upsell-offers .upsell-offer .qty-buttons .button {
    font-size: 0.6rem;
    height: 32px;
    line-height: 32px;
  }
  section.upsell .upsell-inner .upsell-content .upsell-offers .upsell-offer .has-titles {
    margin: 10px 0;
  }
  section.upsell .upsell-inner .upsell-content .upsell-offers .upsell-offer .has-titles h2,
  section.upsell .upsell-inner .upsell-content .upsell-offers .upsell-offer .has-titles h3,
  section.upsell .upsell-inner .upsell-content .upsell-offers .upsell-offer .has-titles h4 {
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.2rem;
  }
  section.upsell .upsell-inner .upsell-content .upsell-offers .upsell-offer .has-titles h4 {
    color: green;
    font-weight: bold;
    font-size: 1rem;
    line-height: 1.4rem;
  }
  section.upsell .upsell-inner .upsell-content .upsell-offers .upsell-offer a.button {
    display: block;
    padding: 10px 20px;
    font-size: 1rem;
  }
  section.upsell .upsell-inner .upsell-content .upsell-offers .upsell-offer a.button span {
    font-size: 1rem;
  }
  section.upsell .upsell-inner .upsell-content a.button.is-link {
    height: auto;
    font-size: 1rem;
    display: block;
    white-space: normal;
    padding: 1rem;
  }

  section.warranty .topbar .container i {
    font-size: 2.5rem;
  }
  section.warranty .topbar .container p {
    font-size: 1rem;
  }
  section.warranty .topbar .container p .has-image img {
    height: 1rem;
  }
  section.warranty .warranty-badge-mobile {
    margin-top: 20px;
  }
  section.warranty .warranty-header {
    margin: -76px 10px 0 10px;
  }
  section.warranty .warranty-header > img {
    display: none;
  }
  section.warranty .warranty-header p {
    font-size: 1.1rem;
    padding: 20px;
    letter-spacing: initial;
    line-height: 1.65;
  }
  section.warranty .warranty-header p .has-image img {
    height: 1rem;
  }
  section.warranty .warranty-content {
    margin: 0 10px 30px 10px;
    padding: 20px;
  }
  section.warranty .warranty-content ul li p {
    font-size: 1rem;
  }
}
@media (min-width: 950px) and (max-height: 750px) {
  section.upsell .upsell-cart {
    display: none;
  }
  section.upsell .upsell-inner {
    max-height: 75vh;
  }
  section.upsell .upsell-inner .upsell-content {
    max-height: calc(95vh - 95px);
    overflow-y: scroll;
  }
  section.upsell .upsell-inner .upsell-content .upsell-cart {
    margin-bottom: 0;
  }
  section.upsell .upsell-inner .upsell-content .upsell-offers .upsell-offer {
    margin: 0;
    padding: 0;
  }
}
/* footer */
body.checkout .footer {
  background: rgb(0, 0, 0);
  padding-left: 100px;
}
body.checkout .footer p,
body.checkout .footer li,
body.checkout .footer a,
body.checkout .footer h2 {
  color: #fff;
  font-size: 13px;
}
body.checkout .footer h2 {
  font-size: 1rem;
  font-weight: bold;
  border-bottom: 1px solid #fff;
  padding-bottom: 5px;
  margin-bottom: 10px;
}
.downsell-text {
  text-align: center;
  margin: 1rem 0;
  color: green;
  font-weight: bold;
}
.box {
  border: 0.5px solid black;
  box-shadow: none;
}
.credit-card-box {
  cursor: pointer;
  display: flex;
  align-items: center;
}
.credit-card-box:hover {
  font-weight: 800;
  box-shadow: 0 0 0px #29af5c;
  box-shadow: none;
}
.credit-card-box:hover .credit-card {
  box-shadow: 0 0 10px #29af5c;
  border: 1px solid #29af5c;
  font-weight: 800;
  border-radius: 4px;
}
.credit-card {
  margin-right: 5px;
  font-size: 16px;
  width: 40px;
  max-height: 40px;
}

/* product.ejs */
div.option.option-quantity {
  margin-top: 0;
  /* padding: 8px; */
  box-shadow: 0 0 5px 1px rgb(0 0 0 / 10%);
  border: 3px solid #fff !important;
  overflow: hidden;
  position: relative;
}
div.option.option-quantity.is-active {
  border: 3px solid #30bd51 !important;
}
.option .option-badge {
  display: none;
}
.option.is-recommended .option-badge {
  display: block;
  background: #30bd51;
  color: #fff;
  font-weight: 700;
  width: 200px;
  position: absolute;
  transform: rotate(-35deg);
  left: -58px;
  top: 14px;
  text-align: center;
  line-height: 2.25;
  line-height: 20px;
  padding: 5px;
  font-size: 10px;
}

#timeCount {
  border: 5px solid #e43b2c;
  background: #ffe300;
  padding: 10px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  width: 260px;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  margin-bottom: 20px;
  margin-top: 20px;
}

#timeCount .ex-minute,
#timeCount .ex-second {
  color: #000;
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 700;
}

#timeCount .semicolon {
  color: #000;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

#timeCount .minute-text,
#timeCount .second-text {
  display: block;
  font-size: 1.2rem;
  margin-top: 2px;
}

.message-header {
  border-radius: 10px;
  background-color: #30bd51;
  justify-content: center;
}
.or {
  width: 100%;
  height: 12px;
  border-bottom: 1px solid black;
  text-align: center;
  margin-top: -20px;
}
.or span {
  font-size: 17px;
  background-color: white;
  padding: 0 10px;
}
@media screen and (min-width: 1140px) {
  .container {
    max-width: 1060px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.xmas1 {
  background-color: #4ead4d;
  position: relative;
}
.xmas2 {
  position: absolute;
  width: 100%;
}

.xmas2 p {
  font-family: 'Montserrat', 'sans-serif';
  font-size: 50px;
}

/* .blink {
  width: 100%;
  height: 80px;
  padding: 15px;
  text-align: center;
  line-height: 50px;
} */
.blink span {
  line-height: 1.3em;
  vertical-align: middle;
  animation: blink 2s linear infinite;
  color: #e90e0e;
  font-weight: 900;
  font-style: italic;
  -webkit-text-stroke: 2px white;
}
@keyframes blink {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}
@media only screen and (min-device-width: 1000px) and (max-device-width: 1250px) {
  .price {
    font-size: 1.5rem!important;
  }
}
@media only screen and (max-width: 900px) {
  .cc-container {
    justify-content: center!important;
  }
  .credit-card {
    width: 30px;
  }
}
.finish-upsell-button {
  display: table-cell;
  vertical-align: middle;
}
.container-xxl {
  max-width: 2000px;
  margin: 0 auto;
}