html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
}

.header {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
  padding: 10px 15px;
  -webkit-transition: height 2s ease-out;
  -o-transition: height 2s ease-out;
  transition: height 2s ease-out;
  /* Rotate first bar */
  /* Fade out the second bar */
  /* Rotate last bar */
}
.header .header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header .header__logo {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header .header__logo img {
  width: 110px;
  height: auto;
}
.header .header__nav-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  font-size: 16px;
  font-weight: 700;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header .header__nav-bar a {
  padding: 8px 12px;
}
.header .header__nav-bar a:hover {
  text-decoration: underline;
  text-decoration-color: #ff4500;
}
.header .header__nav-bar.mobile {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  display: none;
}
.header .header__nav-bar.mobile.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header .burger-button {
  cursor: pointer;
  display: none;
}
.header .bar1,
.header .bar2,
.header .bar3 {
  width: 35px;
  height: 5px;
  background-color: #333;
  margin: 6px 0;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.header .change .bar1 {
  -webkit-transform: translate(0, 11px) rotate(-45deg);
  -ms-transform: translate(0, 11px) rotate(-45deg);
  transform: translate(0, 11px) rotate(-45deg);
}
.header .change .bar2 {
  opacity: 0;
}
.header .change .bar3 {
  -webkit-transform: translate(0, -11px) rotate(45deg);
  -ms-transform: translate(0, -11px) rotate(45deg);
  transform: translate(0, -11px) rotate(45deg);
}

@media screen and (max-width: 992px) {
  .header .header__nav-bar {
    display: none;
  }
  .header .burger-button {
    display: inline-block;
  }
}
.body {
  height: 100%;
  font-family: "Roboto", sans-serif;
  background: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

.ingredients {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
  margin: 30px auto 50px;
}
.ingredients .title {
  color: black;
  font-size: 25px;
  font-weight: 600;
  text-align: center;
}
.ingredients .subtitle {
  margin-top: 20px;
  margin-bottom: 20px;
  color: black;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}
.ingredients .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px auto;
  gap: 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 900px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.ingredients .wrapper .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 260px;
  flex-basis: 260px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: start;
}
.ingredients .wrapper .card .card__img {
  border-radius: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
  margin-bottom: 20px;
}
.ingredients .wrapper .card .card__img img {
  max-width: 100%;
}
.ingredients .wrapper .card .card__img .card__title {
  text-align: center;
  background-color: #175b9c;
  padding: 5px;
  font-size: 27px;
  font-weight: 500;
  color: white;
  margin-top: -5px;
}
.ingredients .wrapper .card p {
  display: none;
  font-size: 1rem;
  padding-left: 12px;
  padding-bottom: 5px;
  font-weight: 400;
  line-height: 27px;
  position: relative;
  text-align: start;
}
.ingredients .wrapper .card p::before {
  content: "";
  width: 10px;
  height: 10px;
  top: 8px;
  left: -5px;
  margin-bottom: 5px;
  border-radius: 50%;
  background-color: #175b9c;
  position: absolute;
}

.order {
  max-width: 1050px;
  padding: 0 10px;
  margin: 50px auto 70px;
}
.order .order__title {
  font-size: 30px;
  text-align: center;
  line-height: 1.4;
  font-weight: 700;
}
.order .order__title img {
  width: 123px;
}
.order .order__title .orange-background {
  background-color: #ff4500;
  padding: 3px 15px;
}
.order .order__container {
  margin-top: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #000;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 50px;
}
.order .order__container .product-item {
  border: 1px solid #175b9c;
  padding: 40px 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-preferred-size: 33%;
  flex-basis: 33%;
}
.order .order__container .product-item h2 {
  font-size: 35px;
  font-weight: 600;
  color: #175b9c;
}
.order .order__container .product-item .supply-txt {
  font-weight: 600;
}
.order .order__container .product-item .product-img {
  height: 240px;
  -o-object-fit: contain;
  object-fit: contain;
  margin: 15px 0;
}
.order .order__container .product-item .product-img img {
  max-width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.order .order__container .product-item .price-box .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  color: #175b9c;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 1.4;
}
.order .order__container .product-item .price-box .price span:nth-of-type(1) {
  font-size: 16px;
}
.order .order__container .product-item .price-box .price span:nth-of-type(2) {
  font-size: 50px;
  line-height: 1;
}
.order .order__container .product-item .price-box .price span:nth-of-type(3) {
  font-size: 17px;
  text-align: left;
}
.order .order__container .product-item .price-box .saved-money {
  text-transform: uppercase;
  font-size: 12px;
}
.order .order__container .product-item .add-to-cart-button {
  cursor: pointer;
  margin: 15px 0;
  font-size: 1rem;
  width: 100%;
  font-weight: 600;
  white-space: nowrap;
  color: white;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f68101), to(#ff4500));
  background-image: -o-linear-gradient(top, #f68101, #ff4500 100%);
  background-image: linear-gradient(to bottom, #f68101, #ff4500 100%);
  border-radius: 5px;
  -webkit-box-shadow: rgba(255, 69, 0, 0.35) 0px 5px 15px;
  box-shadow: rgba(255, 69, 0, 0.35) 0px 5px 15px;
  padding: 10px 20px;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  text-align: center;
}
.order .order__container .product-item .add-to-cart-button:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.order .order__container .product-item .total {
  margin-top: 15px;
  font-weight: 600;
}
.order .order__container .product-item .total .linethrough {
  text-decoration: line-through;
}
.order .order__container .product-item .shipping {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  font-weight: 600;
}
.order .order__container .product-item .shipping span {
  margin-left: 5px;
  color: red;
}
.order .order__container .product-item .rating {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  padding: 5px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 5px;
  color: #54595f;
  text-align: center;
}
.order .order__container .product-item:nth-of-type(2) {
  border: 1px dashed #ff4500;
  position: relative;
  border-top: 1px solid #ff4500;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.order .order__container .product-item:nth-of-type(2)::after {
  content: "PREMIUM";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  background-color: #ff4500;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: 600;
  color: white;
  font-size: 35px;
  border: 1px dashed #ff4500;
}

@media screen and (max-width: 992px) {
  .order .order__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
    margin: 50px auto 50px;
  }
  .order .order__container .product-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 330px;
  }
  .order .order__container .product-item .add-to-cart-button .add-to-cart-button-text {
    font-size: 1rem;
  }
  .order .order__container .product-item .add-to-cart-button img {
    width: 16px;
  }
  .order .order__container .product-item:nth-of-type(2) {
    width: 350px;
    margin-top: 50px;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
.faq {
  background-color: #3383bb;
  /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
  /* Style the accordion panel. Note: hidden by default */
}
.faq .wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
  padding-top: 40px;
  padding-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.faq .wrapper h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.faq .wrapper button {
  margin-top: 5px;
}
.faq .accordion {
  background-color: #fff;
  color: #54595f;
  font-size: 23px;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  position: relative;
}
.faq .accordion::after {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../../images/icons/arrow-down-mint.svg);
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.2s ease-in;
  transition: -webkit-transform 0.2s ease-in;
  -o-transition: transform 0.2s ease-in;
  transition: transform 0.2s ease-in;
  transition:
    transform 0.2s ease-in,
    -webkit-transform 0.2s ease-in;
}
.faq .active::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.faq .active,
.faq .accordion:hover {
  background-color: #ccc;
}
.faq .panel {
  background-color: white;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.2s ease-out;
  -o-transition: max-height 0.2s ease-out;
  transition: max-height 0.2s ease-out;
  background-color: #3383bb;
  color: white;
}
.faq .panel p {
  padding: 18px;
  text-align: start;
  line-height: 1.5;
}

@media screen and (max-width: 992px) {
  .faq .wrapper h2 {
    font-size: 18px;
    margin-bottom: 9px;
  }
  .faq .wrapper .accordion {
    font-size: 16px;
  }
  .faq .wrapper .panel {
    font-size: 14px;
  }
}
.prefooter {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [5];
  grid-template-columns: repeat(5, 1fr);
  grid-template-areas: ". title title title ." "guarantee text text text text" ". . . signature signature" ". sertifications sertifications sertifications .";
  margin-bottom: 50px;
  padding-top: 50px;
}
.prefooter .prefooter__title {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 3;
  font-size: 25px;
  margin-bottom: 20px;
  text-align: center;
  color: #175b9c;
  opacity: 1;
  font-weight: 600;
  grid-area: title;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.prefooter .prefooter__text {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  -ms-grid-column-span: 4;
  color: #54595f;
  opacity: 0.9;
  grid-area: text;
}
.prefooter .prefooter__text p {
  line-height: 22px;
  font-size: 15px;
  font-weight: 400;
  text-align: start;
}
.prefooter .prefooter__guarantee {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: guarantee;
  -o-object-fit: cover;
  object-fit: cover;
  margin: auto;
  padding: 0 10px;
}
.prefooter .prefooter__signature {
  -ms-grid-row: 3;
  -ms-grid-column: 4;
  -ms-grid-column-span: 2;
  grid-area: signature;
  opacity: 0.4;
  -o-object-fit: cover;
  object-fit: cover;
  margin: auto;
}
.prefooter .prefooter__sertifications-line {
  -ms-grid-row: 4;
  -ms-grid-column: 2;
  -ms-grid-column-span: 3;
  grid-area: sertifications;
  margin: 0 auto;
}

@media screen and (max-width: 992px) {
  .prefooter {
    -ms-grid-columns: (1fr) [4];
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas: "title title title title" "text text text text" "guarantee .  signature signature" "sertifications sertifications sertifications sertifications";
  }
  .prefooter__guarantee {
    padding: 20px 0 !important;
    max-width: 100px;
  }
  .prefooter__title {
    width: auto !important;
    font-size: 18px !important;
  }
  .prefooter__sertifications-line {
    max-width: 70%;
  }
  .prefooter .prefooter__title {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 4;
  }
  .prefooter .prefooter__text {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 4;
  }
  .prefooter .prefooter__guarantee {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .prefooter .prefooter__signature {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
    -ms-grid-column-span: 2;
  }
  .prefooter .prefooter__sertifications-line {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 4;
  }
}
.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
  padding-top: 50px;
}
.footer .footer__left {
  width: 170px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  white-space: nowrap;
  font-weight: 600;
}
.footer .footer__left .footer__logo {
  margin-left: -10px;
  margin-bottom: 20px;
}
.footer .footer__left .copyright {
  margin-bottom: 20px;
  font-size: 10px;
}
.footer .footer__left h6 {
  margin-bottom: 30px;
}
.footer .footer__left ul li {
  opacity: 0.4;
  margin-bottom: 10px;
  font-size: 14px;
}
.footer .footer__right p {
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 15px;
}

@media screen and (max-width: 870px) {
  .footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }
  .footer .footer__left {
    width: auto;
    text-align: center;
    margin: 0 auto;
  }
  .footer .footer__left .footer__logo {
    max-width: 200px;
  }
}
.kprofileBox {
  margin-bottom: 20px;
}

.kprofileTitle {
  background-color: #277098;
  color: white;
  font-size: 1.4em;
  text-align: center;
  padding: 5px;
}

.kprofileSubTitle {
  font-size: larger;
  font-weight: bold;
  margin: 10px 0;
}

.kprofileLabel {
  display: inline-block;
  font-weight: bold;
}

.kprofileValue {
  display: inline-block;
}

.kprofileChangeThis {
  color: blue;
  cursor: pointer;
  text-decoration: underline;
  font-size: smaller;
}

.kprofileShipmentDetails {
  display: none;
}

#kprofileFormHiddenAddress {
  display: none;
}

.kprofilePaySourceTile {
  border: 1px solid #ccc;
  padding: 10px;
  background-color: #efefef;
  margin: 10px 0;
}

.kprofilePaySourceTile span {
  display: inline-block;
  line-height: 1;
  margin-left: 20px;
  vertical-align: middle;
}

.kprofilePaySourceTile input {
  vertical-align: middle;
}

.kprofilePrimaryPaySource {
  border: 1px solid black !important;
}

table.kprofileTable {
  width: 100%;
  border-spacing: 0;
  padding-top: 5px;
  font-size: 16px;
  border-radius: 0.5em;
  word-wrap: break-word;
}

.kprofileTable td {
  text-align: left;
  padding: 0.8em 0.5em;
  border-bottom: thin dotted #ccc;
}

.kprofileTable tr.titleRow td {
  padding: 0.8em 0.5em !important;
  white-space: nowrap;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  font-style: italic;
  font-size: 18px;
}

/*
Form styling
*/
h3 {
  font-size: 1.5em;
}

h3 > img {
  vertical-align: text-top;
}

.limited-offer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 600;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 20px;
}

.timer2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: red;
  margin-left: 5px;
}

.boxs_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  gap: 30px;
  margin-bottom: 40px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.popup__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
  z-index: 2;
}

.popup__bg.active {
  opacity: 1;
  pointer-events: all;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
}

.popup {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  background: #fff;
  padding: 25px;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  border-radius: 5px;
  border: 4px dashed #f45a1a;
  font-weight: 100;
}

.buy-btn:visited {
  color: black;
}

.close-btn {
  font-weight: 500;
  font-size: 2rem;
  width: 90%;
  margin: 0 auto;
  height: 10vh;
  background: #f45a1a;
  border: 1px solid #ff9f3f;
  border-radius: 7px;
  color: white;
}

.popup.active {
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
  opacity: 1;
}

.popup__head {
  font-size: 5rem;
  font-weight: 700;
  text-align: center;
  color: #f45a1a;
  margin: 0 0 1rem 0;
}

.popup__text {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.popup__foot {
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
  margin: 0 7rem;
}

.popup__text span {
  text-decoration: underline;
}

.kform {
  font-size: 1em;
}

div.kform {
  position: relative;
}

.kform div.kform_spacer {
  margin: 0.75em 0;
  display: block;
}

.kformSpacer {
  margin: 0.75em 0;
  display: block;
}

.kform input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"] {
  display: inline-block;
  margin-right: 5px;
  padding: 0.5em 14px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.inline {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.inline > input,
.inline > select {
  width: 49% !important;
  margin: 0 !important;
}

h4 {
  margin: 5px 0;
}

.kform input[type="checkbox"] {
  display: inline-block;
}

.kform select {
  padding: 0.5em 14px;
  width: 100%;
}

.kform .kform_checkbox label {
  margin-left: 0.25em;
  text-align: left;
  font-size: 1em;
  cursor: pointer;
}

.kform label {
  padding: 5px 5px;
  display: inline-block;
  text-align: left;
}

.kformTitle {
  font-size: larger;
  font-weight: bold;
  margin: 20px 0;
}

.kformSubTitle {
  font-size: 1em;
  font-weight: bold;
  margin: 10px 0;
}

.kformPaySourceTile {
  border: 1px solid #ccc;
  padding: 10px;
  background-color: #efefef;
  margin: 10px 0;
}

.kformPaySourceTile span {
  display: inline-block;
  line-height: 1;
  margin-left: 20px;
  vertical-align: middle;
}

.kformPaySourceTile input {
  vertical-align: middle;
}

#kform_paySelect {
  padding-top: 1em;
  border-top: 0 dashed #666;
}

#kform_paySelectTitle {
  font-size: 1em;
  font-weight: bold;
  display: inline-block;
}

.kform_paySelectOption {
  display: inline-block;
  margin-left: 1em;
}

.kform_title {
  font-size: 1em;
  font-weight: bold;
}

#kform_paySourceCard {
  margin-bottom: 2em;
}

#kform_paySourceCheck {
  margin-bottom: 2em;
  display: none;
}

.kform_submitBtn {
  border: none;
  color: white;
  height: 2em;
  font-weight: bold;
  font-size: 2em;
  background-color: #f3591b;
  display: block;
  border-radius: 5px;
}

.kform_submitBtn:hover {
  cursor: pointer;
  background-color: #f3591b;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.kform_upsellBtn {
  border: thin outset black;
  color: white;
  padding: 0.75em 0.5em;
  font-weight: bold;
  font-size: 1.6em;
  background-color: #3383bb;
  display: inline-block;
  margin-right: 2em;
}

.kform_upsellBtn:hover {
  cursor: pointer;
  background-color: #3383bb;
}

#formfields {
  -webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 10px;
  border-radius: 10px;
  background-color: #f5f5f5;
  margin-bottom: 30px;
}

.kform_salesTaxMessage {
  float: left;
  font-weight: bold;
  font-size: 90%;
  color: red;
}

#kform_taxBtn {
  margin-left: 40px;
  margin-top: 0px;
}

#kform_payPalButton {
  width: 100%;
}

#kform_payPalButton:hover {
  cursor: pointer;
}

#AmazonPayButton {
  margin-top: 20px;
}

#addressBookWidgetDiv {
  width: 400px;
  height: 200px;
}

#walletWidgetDiv {
  width: 400px;
  height: 200px;
  margin-top: 20px;
}

/*Signature Styling */
#kform_sigPad {
  border: 1px solid #000;
  width: 100%;
}

#signatureTypedInput {
  color: #145394;
  font:
    normal 80px "dafoe",
    Georgia,
    Times,
    serif;
  width: auto;
}

#kform_sigDisplay {
  padding: 15px;
}

/*
Order Summary Styling
*/
.kform_orderSummaryTable {
  cell-spacing: 1em;
  width: 100%;
}

.kform_orderSummaryTitleRow {
  font-weight: bold;
  padding: 0 1em;
}

.kform_orderSummaryRow {
  padding: 0 1em;
}

/*
Shopping cart styling
*/
#kform_cartDiv {
  font-family: Arial, Helvetica, sans-serif;
}

#kform_cartTitle {
  font-size: 1.2em;
  font-weight: bold;
  padding: 10px 0;
}

#kform_cartTable {
  width: 100%;
  margin: 0px auto 15px auto;
  font-size: 0.8em;
  border-spacing: 0;
}

#kform_cartTable td {
  border-bottom: 1px solid #ccc;
  padding: 6px 10px;
}

#kform_cartTitleRow {
  background-color: #f8f8f8;
  font-weight: bold;
}

#kform_cartTitleRow td {
  font-size: 1em;
  line-height: 60px;
  border-top: 1px solid #ccc;
}

#kform_emptyCartMessage {
  text-align: center;
  font-size: 1.2em;
  font-style: italic;
  padding: 2em 0 !important;
}

.kform_itemQtyBox {
  width: 30px;
  display: inline-block;
}

.kform_cartProductImg {
  max-width: 150px;
  max-height: 75px;
  vertical-align: middle;
}

.kform_removeBtn {
  font-size: 10px;
  padding: 2px 1px;
}

.kform_layout2Col {
  float: left;
  width: 340px;
  position: relative;
  padding-right: 20px;
  float: left;
}

.kform_continueShoppingBtn {
  float: right;
  padding: 0.25em 1em;
}

/*
Product Box styling
*/
.kform_catalogBox {
  padding: 1em 0;
  border-bottom: 1px solid #ccc;
}

.kform_catalogBox h3 {
  margin-top: 0;
}

.kform_productBoxImage {
  max-width: 100%;
  max-height: 400px;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.kform_productSelect {
  width: 80px;
  height: 26px;
  background-image: url(../images/productSelect.png);
  background-size: 100% 100%;
  cursor: pointer;
}

.kform_productSelect:hover {
  cursor: pointer;
}

.kform_productBox {
  text-align: left;
  padding: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.kform_productBox h3 {
  margin-top: 0;
}

/*
Pricing and totals styling
*/
.kform_pricingDiv {
  font-size: 1em;
  padding: 20px 0;
}

.kform_pricingDiv div {
  width: auto;
}

.kform_priceLabel {
  margin-right: 1em;
  text-align: right;
  display: inline-block;
}

#kform_discount {
  display: none;
  color: green;
}

#kform_insurance {
  display: none;
}

#kform_grandTotal {
  border-top: 1px solid #ccc;
}

.kcartTotals {
  width: 100%;
  border-spacing: 10px;
}

.kcartTotals tr {
  -webkit-box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.3);
}

.kcartTotals tr td:nth-of-type(even) {
  text-align: end;
}

/*Upsell Page Styling */
.kform_upsellImage {
  margin-right: 20px;
  max-height: 200px;
  max-width: 200px;
}

/*
Form Error styling
*/
.kformSubmitError {
  padding: 10px 0;
  font-size: 19px;
  border: none;
  color: #cc0000;
  font-weight: bold;
}

.kformSubmitErrorContainer {
  display: block;
}

.kformInlineError {
  padding: 10px;
  font-size: 14px;
  font-family: Arial;
  border: none;
  color: #cc0000;
  font-weight: bold;
}

.kformErrorPop {
  padding: 10px 20px 10px 10px;
  border: medium solid #cc0000;
  color: #cc0000;
  background: white;
  font-size: 14px;
  font-family: Arial;
  color: #cc0000;
  font-weight: bold;
}

.kformErrorPopContainer {
  position: absolute;
  z-index: 10000;
  -webkit-box-shadow: 5px 5px 5px #888888;
  box-shadow: 5px 5px 5px #888888;
}

.kformErrorOutline {
  outline: thin solid red !important;
}

/*
Progress bar dialog styling
*/
.kdialogWrap {
  position: absolute;
  z-index: 2000000;
  top: 0;
  left: 0;
  padding: 10px;
  width: 100%;
  height: 100%;
  z-index: 1000;
  -webkit-backface-visibility: hidden;
}

.kdialogBackground {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #666;
  opacity: 0.3;
  width: 100%;
  height: 100%;
}

.kdialogContent {
  position: absolute;
  z-index: 2000000;
  background-color: white;
  padding: 40px;
  border-radius: 5px;
  font-size: 1em;
  min-width: 300px;
  max-width: 800px;
  font-family: Arial;
  max-height: 80%;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.kdialogTitle {
  font-size: 22px;
  font-weight: bold;
  border: 1px solid #ccc;
  padding-bottom: 5px;
  border-width: 0 0 1px 0;
  font-weight: bold;
  margin-top: 0;
}

.kdialogSorry {
  font-size: 18px;
  color: #cc0000;
}

.kformProgressBar {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.kformProgressBar div {
  -webkit-transform-origin: 40px 40px;
  -ms-transform-origin: 40px 40px;
  transform-origin: 40px 40px;
  -webkit-animation: lds-spinner 1.2s linear infinite;
  animation: lds-spinner 1.2s linear infinite;
}

.kformProgressBar div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 37px;
  width: 6px;
  height: 18px;
  border-radius: 20%;
  background: #cc0000;
}

.kformProgressBar div:nth-child(1) {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.kformProgressBar div:nth-child(2) {
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.kformProgressBar div:nth-child(3) {
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.kformProgressBar div:nth-child(4) {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

.kformProgressBar div:nth-child(5) {
  -webkit-transform: rotate(120deg);
  -ms-transform: rotate(120deg);
  transform: rotate(120deg);
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}

.kformProgressBar div:nth-child(6) {
  -webkit-transform: rotate(150deg);
  -ms-transform: rotate(150deg);
  transform: rotate(150deg);
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

.kformProgressBar div:nth-child(7) {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

.kformProgressBar div:nth-child(8) {
  -webkit-transform: rotate(210deg);
  -ms-transform: rotate(210deg);
  transform: rotate(210deg);
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

.kformProgressBar div:nth-child(9) {
  -webkit-transform: rotate(240deg);
  -ms-transform: rotate(240deg);
  transform: rotate(240deg);
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}

.kformProgressBar div:nth-child(10) {
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}

.kformProgressBar div:nth-child(11) {
  -webkit-transform: rotate(300deg);
  -ms-transform: rotate(300deg);
  transform: rotate(300deg);
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}

.kformProgressBar div:nth-child(12) {
  -webkit-transform: rotate(330deg);
  -ms-transform: rotate(330deg);
  transform: rotate(330deg);
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

@-webkit-keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.kdialogXOut {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 15px;
  right: 15px;
  background-image: url(../images/icons/icon_xout.png);
  background-position: 0 100%;
  background-size: 100% 200%;
}

.kdialogXOut:hover {
  background-position: 0 0;
  cursor: pointer;
  cursor: hand;
}

.kdialogConfirmOptions {
  text-align: center;
  margin: 20px;
}

.kdialogConfirmOptions input {
  margin-right: 20px;
}

.ktemplate_header__img {
  width: 100%;
}

@media only screen and (min-width: 980px) {
  #formfields {
    -webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 10px;
    border-radius: 10px;
  }
  .ktemplate_pageContainer {
    max-width: 980px;
    margin: 0 auto;
    position: relative;
    font-family: Arial;
  }
  .ktemplate_boxLeft {
    -ms-flex-preferred-size: 400px;
    flex-basis: 400px;
    float: left;
    margin-right: 20px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .ktemplate_boxRight {
    -ms-flex-preferred-size: 380px;
    flex-basis: 380px;
    -webkit-box-flex: 1.1;
    -ms-flex-positive: 1.1;
    flex-grow: 1.1;
    float: right;
  }
  .ktemplate_sideBar {
    width: 340px;
    float: right;
    background-color: #f7f7f7;
    min-height: 800px;
  }
  .ktemplate_sideBar h1 {
    margin-top: 200px;
    text-align: center;
    font-size: 2em;
    font-style: italic;
    font-weight: 100;
  }
  .ktemplate_userCopy {
    padding: 40px 0;
    text-align: center;
    font-size: 2em;
    font-weight: bold;
  }
  .ktemplate_header h1 {
    text-align: center;
    font-size: 2em;
    padding-top: 40px;
    font-weight: 200;
  }
  .kthanks {
    width: 500px;
    margin: 0 auto;
    font-family: Arial;
  }
  .kthanks_box {
    border: 1px solid black;
    border-radius: 5px;
    margin-bottom: 20px;
    width: 500px;
    float: left;
    margin-right: 20px;
  }
  .kthanks_boxTitle {
    background-color: #277098;
    color: white;
    font-size: 1.4em;
    text-align: left;
    padding: 5px;
  }
  .kthanks_boxContent {
    padding: 20px;
  }
  .kthanksItemsTable {
    width: 100%;
  }
  .kthanksItemsTable_TitleRow td {
    font-weight: bold;
    font-size: larger;
  }
  .kthanksItemsTable td {
    padding: 5px;
  }
  .kthanks_spacer {
    white-space: nowrap;
  }
  .kthanks_label {
    font-weight: bold;
    width: 100px;
    text-align: right;
    margin-right: 10px;
    display: inline-block;
  }
  .kthanks_value {
    display: inline-block;
  }
  #kform input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"] {
    width: 100%;
  }
  #kform select {
    width: 100%;
  }
  #kform_paySourceCard {
    width: 100%;
  }
  .formfields {
    width: 340px;
  }
  .kform_submitBtn {
    width: 100%;
  }
  /*styling for shopping cart, which has fields inside the .layout2Col class*/
  .kform_layout2Col_L {
    width: 440px;
  }
  #kform .kform_layout2Col_L input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"] {
    width: 400px;
  }
  #kform .kform_layout2Col_L select {
    width: 430px;
  }
  .kform_layout2Col_R {
    width: 440px;
  }
  .kform_layout2Col_R input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"] {
    width: 310px;
  }
  #kform .kform_layout2Col_R select {
    width: 430px;
  }
  .kform_layout2Col #kform_paySourceCard {
    width: 430px;
  }
  .kform_layout2Col #kform_paySourceCard input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"] {
    width: 400px;
  }
  .kform_kcartCheckout .kform_submitBtn {
    width: 100%;
  }
  .ktemplate_header__img {
    width: 100%;
  }
}
@media only screen and (min-width: 1px) and (max-width: 979px) {
  .ktemplate_pageContainer {
    padding: 0 10px;
    margin: 0 auto;
    position: relative;
    font-family: Arial;
  }
  .kprofile_container {
    max-width: 520px !important;
  }
  .ktemplate_boxLeft {
    max-width: 400px;
    margin-right: 20px;
  }
  .ktemplate_boxRight {
    max-width: 400px;
  }
  .ktemplate_sideBar {
    max-width: 400px;
    background-color: #f7f7f7;
    height: auto;
  }
  .ktemplate_sideBar h1 {
    margin-top: 200px;
    text-align: center;
    font-size: 2em;
    font-style: italic;
    font-weight: 100;
  }
  .ktemplate_userCopy {
    padding: 40px 0;
    text-align: center;
    font-size: 2em;
    font-weight: bold;
  }
  .ktemplate_header h1 {
    text-align: center;
    font-size: 2em;
    padding-top: 40px;
    font-weight: 100;
  }
  .kthanks {
    width: 400px;
    margin: 0 auto;
    font-family: Arial;
    font-size: 12px;
  }
  .kthanks_box {
    border: 1px solid black;
    border-radius: 5px;
    margin-bottom: 20px;
    float: left;
    margin-right: 20px;
    width: 400px;
  }
  .kthanks_boxTitle {
    background-color: #277098;
    color: white;
    font-size: 1.4em;
    text-align: left;
    padding: 5px;
  }
  .kthanks_boxContent {
    padding: 20px;
  }
  .kthanksItemsTable {
    width: 100%;
  }
  .kthanksItemsTable_TitleRow td {
    font-weight: bold;
  }
  .kthanksItemsTable td {
    padding: 5px;
  }
  .kthanks_spacer {
    white-space: nowrap;
    font-size: 12px;
  }
  .kthanks_label {
    font-weight: bold;
    width: 100px;
    text-align: right;
    margin-right: 10px;
    display: inline-block;
  }
  .kthanks_value {
    display: inline-block;
  }
  .kprofileTitle {
    width: 460px !important;
  }
  .formfields {
    width: 400px;
  }
  #formfields {
    -webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 10px;
    border-radius: 10px;
  }
  #kform input {
    font-size: 16px;
  }
  #kform select {
    font-size: 16px;
  }
  .kform_submitBtn {
    width: 100%;
    font-size: 32px !important;
  }
  .ktemplate_header__img {
    width: 100%;
  }
}
#kcartSigninButton {
  cursor: pointer;
  color: blue;
}

/*additional styles*/
/*
Form styling
*/
h3 {
  font-size: 1.5em;
}

h3 > img {
  vertical-align: text-top;
}

.limited-offer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 600;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 20px;
}

.timer2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: red;
  margin-left: 5px;
}

.boxs_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  gap: 30px;
  margin-bottom: 40px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.popup__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
  z-index: 2;
}

.popup__bg.active {
  opacity: 1;
  pointer-events: all;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
}

.popup {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  background: #fff;
  padding: 25px;
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  border-radius: 5px;
  border: 4px dashed #f45a1a;
  font-weight: 100;
}

.buy-btn:visited {
  color: black;
}

.close-btn {
  font-weight: 500;
  font-size: 2rem;
  width: 90%;
  margin: 0 auto;
  height: 10vh;
  background: #f45a1a;
  border: 1px solid #ff9f3f;
  border-radius: 7px;
  color: white;
}

.popup.active {
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  -webkit-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
  opacity: 1;
}

.popup__head {
  font-size: 5rem;
  font-weight: 700;
  text-align: center;
  color: #f45a1a;
  margin: 0 0 1rem 0;
}

.popup__text {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.popup__foot {
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
  margin: 0 7rem;
}

.popup__text span {
  text-decoration: underline;
}

.kform {
  font-size: 1em;
}

div.kform {
  position: relative;
}

.kform div.kform_spacer {
  margin: 0.75em 0;
  display: block;
}

.kformSpacer {
  margin: 0.75em 0;
  display: block;
}

.kform input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"] {
  display: inline-block;
  margin-right: 5px;
  padding: 0.5em 14px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.inline {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.inline > input,
.inline > select {
  width: 49% !important;
  margin: 0 !important;
}

h4 {
  margin: 5px 0;
}

.kform input[type="checkbox"] {
  display: inline-block;
}

.kform select {
  padding: 0.5em 14px;
  width: 100%;
}

.kform .kform_checkbox label {
  margin-left: 0.25em;
  text-align: left;
  font-size: 1em;
  cursor: pointer;
}

.kform label {
  padding: 5px 5px;
  display: inline-block;
  text-align: left;
}

.kformTitle {
  font-size: larger;
  font-weight: bold;
  margin: 20px 0;
}

.kformSubTitle {
  font-size: 1em;
  font-weight: bold;
  margin: 10px 0;
}

.kformPaySourceTile {
  border: 1px solid #ccc;
  padding: 10px;
  background-color: #efefef;
  margin: 10px 0;
}

.kformPaySourceTile span {
  display: inline-block;
  line-height: 1;
  margin-left: 20px;
  vertical-align: middle;
}

.kformPaySourceTile input {
  vertical-align: middle;
}

#kform_paySelect {
  padding-top: 1em;
  border-top: 0 dashed #666;
}

#kform_paySelectTitle {
  font-size: 1em;
  font-weight: bold;
  display: inline-block;
}

.kform_paySelectOption {
  display: inline-block;
  margin-left: 1em;
}

.kform_title {
  font-size: 1em;
  font-weight: bold;
}

#kform_paySourceCard {
  margin-bottom: 2em;
}

#kform_paySourceCheck {
  margin-bottom: 2em;
  display: none;
}

.kform_submitBtn {
  border: none;
  color: white;
  height: 2em;
  font-weight: bold;
  font-size: 2em;
  background-color: #f3591b;
  display: block;
  border-radius: 5px;
}

.kform_submitBtn:hover {
  cursor: pointer;
  background-color: #f3591b;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.kform_upsellBtn {
  border: thin outset black;
  color: white;
  padding: 0.75em 0.5em;
  font-weight: bold;
  font-size: 1.6em;
  background-color: #3383bb;
  display: inline-block;
  margin-right: 2em;
}

.kform_upsellBtn:hover {
  cursor: pointer;
  background-color: #3383bb;
}

#formfields {
  -webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 10px;
  border-radius: 10px;
  background-color: #f5f5f5;
  margin-bottom: 30px;
}

.kform_salesTaxMessage {
  float: left;
  font-weight: bold;
  font-size: 90%;
  color: red;
}

#kform_taxBtn {
  margin-left: 40px;
  margin-top: 0px;
}

#kform_payPalButton {
  width: 100%;
}

#kform_payPalButton:hover {
  cursor: pointer;
}

#AmazonPayButton {
  margin-top: 20px;
}

#addressBookWidgetDiv {
  width: 400px;
  height: 200px;
}

#walletWidgetDiv {
  width: 400px;
  height: 200px;
  margin-top: 20px;
}

/*Signature Styling */
#kform_sigPad {
  border: 1px solid #000;
  width: 100%;
}

#signatureTypedInput {
  color: #145394;
  font:
    normal 80px "dafoe",
    Georgia,
    Times,
    serif;
  width: auto;
}

#kform_sigDisplay {
  padding: 15px;
}

/*
Order Summary Styling
*/
.kform_orderSummaryTable {
  cell-spacing: 1em;
  width: 100%;
}

.kform_orderSummaryTitleRow {
  font-weight: bold;
  padding: 0 1em;
}

.kform_orderSummaryRow {
  padding: 0 1em;
}

/*
Shopping cart styling
*/
#kform_cartDiv {
  font-family: Arial, Helvetica, sans-serif;
}

#kform_cartTitle {
  font-size: 1.2em;
  font-weight: bold;
  padding: 10px 0;
}

#kform_cartTable {
  width: 100%;
  margin: 0px auto 15px auto;
  font-size: 0.8em;
  border-spacing: 0;
}

#kform_cartTable td {
  border-bottom: 1px solid #ccc;
  padding: 6px 10px;
}

#kform_cartTitleRow {
  background-color: #f8f8f8;
  font-weight: bold;
}

#kform_cartTitleRow td {
  font-size: 1em;
  line-height: 60px;
  border-top: 1px solid #ccc;
}

#kform_emptyCartMessage {
  text-align: center;
  font-size: 1.2em;
  font-style: italic;
  padding: 2em 0 !important;
}

.kform_itemQtyBox {
  width: 30px;
  display: inline-block;
}

.kform_cartProductImg {
  max-width: 150px;
  max-height: 75px;
  vertical-align: middle;
}

.kform_removeBtn {
  font-size: 10px;
  padding: 2px 1px;
}

.kform_layout2Col {
  float: left;
  width: 340px;
  position: relative;
  padding-right: 20px;
  float: left;
}

.kform_continueShoppingBtn {
  float: right;
  padding: 0.25em 1em;
}

/*
Product Box styling
*/
.kform_catalogBox {
  padding: 1em 0;
  border-bottom: 1px solid #ccc;
}

.kform_catalogBox h3 {
  margin-top: 0;
}

.kform_productBoxImage {
  max-width: 100%;
  max-height: 400px;
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.kform_productSelect {
  width: 80px;
  height: 26px;
  background-image: url(../images/productSelect.png);
  background-size: 100% 100%;
  cursor: pointer;
}

.kform_productSelect:hover {
  cursor: pointer;
}

.kform_productBox {
  text-align: left;
  padding: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.kform_productBox h3 {
  margin-top: 0;
}

/*
Pricing and totals styling
*/
.kform_pricingDiv {
  font-size: 1em;
  padding: 20px 0;
}

.kform_pricingDiv div {
  width: auto;
}

.kform_priceLabel {
  margin-right: 1em;
  text-align: right;
  display: inline-block;
}

#kform_discount {
  display: none;
  color: green;
}

#kform_insurance {
  display: none;
}

#kform_grandTotal {
  border-top: 1px solid #ccc;
}

.kcartTotals {
  width: 100%;
  border-spacing: 10px;
}

.kcartTotals tr {
  -webkit-box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.3);
}

.kcartTotals tr td:nth-of-type(even) {
  text-align: end;
}

/*Upsell Page Styling */
.kform_upsellImage {
  margin-right: 20px;
  max-height: 200px;
  max-width: 200px;
}

/*
Form Error styling
*/
.kformSubmitError {
  padding: 10px 0;
  font-size: 19px;
  border: none;
  color: #cc0000;
  font-weight: bold;
}

.kformSubmitErrorContainer {
  display: block;
}

.kformInlineError {
  padding: 10px;
  font-size: 14px;
  font-family: Arial;
  border: none;
  color: #cc0000;
  font-weight: bold;
}

.kformErrorPop {
  padding: 10px 20px 10px 10px;
  border: medium solid #cc0000;
  color: #cc0000;
  background: white;
  font-size: 14px;
  font-family: Arial;
  color: #cc0000;
  font-weight: bold;
}

.kformErrorPopContainer {
  position: absolute;
  z-index: 10000;
  -webkit-box-shadow: 5px 5px 5px #888888;
  box-shadow: 5px 5px 5px #888888;
}

.kformErrorOutline {
  outline: thin solid red !important;
}

/*
Progress bar dialog styling
*/
.kdialogWrap {
  position: absolute;
  z-index: 2000000;
  top: 0;
  left: 0;
  padding: 10px;
  width: 100%;
  height: 100%;
  z-index: 1000;
  -webkit-backface-visibility: hidden;
}

.kdialogBackground {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #666;
  opacity: 0.3;
  width: 100%;
  height: 100%;
}

.kdialogContent {
  position: absolute;
  z-index: 2000000;
  background-color: white;
  padding: 40px;
  border-radius: 5px;
  font-size: 1em;
  min-width: 300px;
  max-width: 800px;
  font-family: Arial;
  max-height: 80%;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.kdialogTitle {
  font-size: 22px;
  font-weight: bold;
  border: 1px solid #ccc;
  padding-bottom: 5px;
  border-width: 0 0 1px 0;
  font-weight: bold;
  margin-top: 0;
}

.kdialogSorry {
  font-size: 18px;
  color: #cc0000;
}

.kformProgressBar {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.kformProgressBar div {
  -webkit-transform-origin: 40px 40px;
  -ms-transform-origin: 40px 40px;
  transform-origin: 40px 40px;
  -webkit-animation: lds-spinner 1.2s linear infinite;
  animation: lds-spinner 1.2s linear infinite;
}

.kformProgressBar div:after {
  content: " ";
  display: block;
  position: absolute;
  top: 3px;
  left: 37px;
  width: 6px;
  height: 18px;
  border-radius: 20%;
  background: #cc0000;
}

.kformProgressBar div:nth-child(1) {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.kformProgressBar div:nth-child(2) {
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.kformProgressBar div:nth-child(3) {
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.kformProgressBar div:nth-child(4) {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

.kformProgressBar div:nth-child(5) {
  -webkit-transform: rotate(120deg);
  -ms-transform: rotate(120deg);
  transform: rotate(120deg);
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}

.kformProgressBar div:nth-child(6) {
  -webkit-transform: rotate(150deg);
  -ms-transform: rotate(150deg);
  transform: rotate(150deg);
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

.kformProgressBar div:nth-child(7) {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

.kformProgressBar div:nth-child(8) {
  -webkit-transform: rotate(210deg);
  -ms-transform: rotate(210deg);
  transform: rotate(210deg);
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

.kformProgressBar div:nth-child(9) {
  -webkit-transform: rotate(240deg);
  -ms-transform: rotate(240deg);
  transform: rotate(240deg);
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}

.kformProgressBar div:nth-child(10) {
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}

.kformProgressBar div:nth-child(11) {
  -webkit-transform: rotate(300deg);
  -ms-transform: rotate(300deg);
  transform: rotate(300deg);
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}

.kformProgressBar div:nth-child(12) {
  -webkit-transform: rotate(330deg);
  -ms-transform: rotate(330deg);
  transform: rotate(330deg);
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.kdialogXOut {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 15px;
  right: 15px;
  background-image: url(../images/icons/icon_xout.png);
  background-position: 0 100%;
  background-size: 100% 200%;
}

.kdialogXOut:hover {
  background-position: 0 0;
  cursor: pointer;
  cursor: hand;
}

.kdialogConfirmOptions {
  text-align: center;
  margin: 20px;
}

.kdialogConfirmOptions input {
  margin-right: 20px;
}

.ktemplate_header__img {
  width: 100%;
}

@media only screen and (min-width: 980px) {
  #formfields {
    -webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 10px;
    border-radius: 10px;
  }
  .ktemplate_pageContainer {
    max-width: 980px;
    margin: 0 auto;
    position: relative;
    font-family: Arial;
  }
  .ktemplate_boxLeft {
    -ms-flex-preferred-size: 400px;
    flex-basis: 400px;
    float: left;
    margin-right: 20px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .ktemplate_boxRight {
    -ms-flex-preferred-size: 380px;
    flex-basis: 380px;
    -webkit-box-flex: 1.1;
    -ms-flex-positive: 1.1;
    flex-grow: 1.1;
    float: right;
  }
  .ktemplate_sideBar {
    width: 340px;
    float: right;
    background-color: #f7f7f7;
    min-height: 800px;
  }
  .ktemplate_sideBar h1 {
    margin-top: 200px;
    text-align: center;
    font-size: 2em;
    font-style: italic;
    font-weight: 100;
  }
  .ktemplate_userCopy {
    padding: 40px 0;
    text-align: center;
    font-size: 2em;
    font-weight: bold;
  }
  .ktemplate_header h1 {
    text-align: center;
    font-size: 2em;
    padding-top: 40px;
    font-weight: 200;
  }
  .kthanks {
    width: 500px;
    margin: 0 auto;
    font-family: Arial;
  }
  .kthanks_box {
    border: 1px solid black;
    border-radius: 5px;
    margin-bottom: 20px;
    width: 500px;
    float: left;
    margin-right: 20px;
  }
  .kthanks_boxTitle {
    background-color: #277098;
    color: white;
    font-size: 1.4em;
    text-align: left;
    padding: 5px;
  }
  .kthanks_boxContent {
    padding: 20px;
  }
  .kthanksItemsTable {
    width: 100%;
  }
  .kthanksItemsTable_TitleRow td {
    font-weight: bold;
    font-size: larger;
  }
  .kthanksItemsTable td {
    padding: 5px;
  }
  .kthanks_spacer {
    white-space: nowrap;
  }
  .kthanks_label {
    font-weight: bold;
    width: 100px;
    text-align: right;
    margin-right: 10px;
    display: inline-block;
  }
  .kthanks_value {
    display: inline-block;
  }
  #kform input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"] {
    width: 100%;
  }
  #kform select {
    width: 100%;
  }
  #kform_paySourceCard {
    width: 100%;
  }
  .formfields {
    width: 340px;
  }
  .kform_submitBtn {
    width: 100%;
  }
  /*styling for shopping cart, which has fields inside the .layout2Col class*/
  .kform_layout2Col_L {
    width: 440px;
  }
  #kform .kform_layout2Col_L input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"] {
    width: 400px;
  }
  #kform .kform_layout2Col_L select {
    width: 430px;
  }
  .kform_layout2Col_R {
    width: 440px;
  }
  .kform_layout2Col_R input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"] {
    width: 310px;
  }
  #kform .kform_layout2Col_R select {
    width: 430px;
  }
  .kform_layout2Col #kform_paySourceCard {
    width: 430px;
  }
  .kform_layout2Col #kform_paySourceCard input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"] {
    width: 400px;
  }
  .kform_kcartCheckout .kform_submitBtn {
    width: 100%;
  }
  .ktemplate_header__img {
    width: 100%;
  }
}
@media only screen and (min-width: 1px) and (max-width: 979px) {
  .ktemplate_pageContainer {
    padding: 0 10px;
    margin: 0 auto;
    position: relative;
    font-family: Arial;
  }
  .kprofile_container {
    max-width: 520px !important;
  }
  .ktemplate_boxLeft {
    max-width: 400px;
    margin-right: 20px;
  }
  .ktemplate_boxRight {
    max-width: 400px;
  }
  .ktemplate_sideBar {
    max-width: 400px;
    background-color: #f7f7f7;
    height: auto;
  }
  .ktemplate_sideBar h1 {
    margin-top: 200px;
    text-align: center;
    font-size: 2em;
    font-style: italic;
    font-weight: 100;
  }
  .ktemplate_userCopy {
    padding: 40px 0;
    text-align: center;
    font-size: 2em;
    font-weight: bold;
  }
  .ktemplate_header h1 {
    text-align: center;
    font-size: 2em;
    padding-top: 40px;
    font-weight: 100;
  }
  .kthanks {
    width: 400px;
    margin: 0 auto;
    font-family: Arial;
    font-size: 12px;
  }
  .kthanks_box {
    border: 1px solid black;
    border-radius: 5px;
    margin-bottom: 20px;
    float: left;
    margin-right: 20px;
    width: 400px;
  }
  .kthanks_boxTitle {
    background-color: #277098;
    color: white;
    font-size: 1.4em;
    text-align: left;
    padding: 5px;
  }
  .kthanks_boxContent {
    padding: 20px;
  }
  .kthanksItemsTable {
    width: 100%;
  }
  .kthanksItemsTable_TitleRow td {
    font-weight: bold;
  }
  .kthanksItemsTable td {
    padding: 5px;
  }
  .kthanks_spacer {
    white-space: nowrap;
    font-size: 12px;
  }
  .kthanks_label {
    font-weight: bold;
    width: 100px;
    text-align: right;
    margin-right: 10px;
    display: inline-block;
  }
  .kthanks_value {
    display: inline-block;
  }
  .kprofileTitle {
    width: 460px !important;
  }
  .formfields {
    width: 400px;
  }
  #formfields {
    -webkit-box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 10px;
    border-radius: 10px;
  }
  #kform input {
    font-size: 16px;
  }
  #kform select {
    font-size: 16px;
  }
  .kform_submitBtn {
    width: 100%;
    font-size: 32px !important;
  }
  .ktemplate_header__img {
    width: 100%;
  }
}
#kcartSigninButton {
  cursor: pointer;
  color: blue;
}

/*additional styles*/
#popupError {
  width: auto;
  padding: 40px;
}
#popupError .popup__head {
  font-size: 4rem;
  margin-bottom: 0;
  color: black;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}
#popupError .popup__text {
  color: red;
}
#popupError .popup__sorry {
  text-align: center;
  color: red;
}

.ktemplate_pageContainer .ktemplate_header {
  position: relative;
}
.ktemplate_pageContainer .ktemplate_header .trivexa-call {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.ktemplate_pageContainer .boxs_container {
  margin-top: 30px;
  position: relative;
}
.ktemplate_pageContainer .boxs_container .show {
  display: block;
}
.ktemplate_pageContainer .load-popup {
  position: absolute;
  height: 100%;
  width: 102%;
  left: -1%;
  top: 0;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.ktemplate_pageContainer .load-popup .lds-roller {
  margin-top: 200px;
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.ktemplate_pageContainer .load-popup .lds-roller div {
  -webkit-animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  -webkit-transform-origin: 40px 40px;
  -ms-transform-origin: 40px 40px;
  transform-origin: 40px 40px;
}
.ktemplate_pageContainer .load-popup .lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #175b9c;
  margin: -4px 0 0 -4px;
}
.ktemplate_pageContainer .load-popup .lds-roller div:nth-child(1) {
  -webkit-animation-delay: -0.036s;
  animation-delay: -0.036s;
}
.ktemplate_pageContainer .load-popup .lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}
.ktemplate_pageContainer .load-popup .lds-roller div:nth-child(2) {
  -webkit-animation-delay: -0.072s;
  animation-delay: -0.072s;
}
.ktemplate_pageContainer .load-popup .lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}
.ktemplate_pageContainer .load-popup .lds-roller div:nth-child(3) {
  -webkit-animation-delay: -0.108s;
  animation-delay: -0.108s;
}
.ktemplate_pageContainer .load-popup .lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}
.ktemplate_pageContainer .load-popup .lds-roller div:nth-child(4) {
  -webkit-animation-delay: -0.144s;
  animation-delay: -0.144s;
}
.ktemplate_pageContainer .load-popup .lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.ktemplate_pageContainer .load-popup .lds-roller div:nth-child(5) {
  -webkit-animation-delay: -0.18s;
  animation-delay: -0.18s;
}
.ktemplate_pageContainer .load-popup .lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}
.ktemplate_pageContainer .load-popup .lds-roller div:nth-child(6) {
  -webkit-animation-delay: -0.216s;
  animation-delay: -0.216s;
}
.ktemplate_pageContainer .load-popup .lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}
.ktemplate_pageContainer .load-popup .lds-roller div:nth-child(7) {
  -webkit-animation-delay: -0.252s;
  animation-delay: -0.252s;
}
.ktemplate_pageContainer .load-popup .lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}
.ktemplate_pageContainer .load-popup .lds-roller div:nth-child(8) {
  -webkit-animation-delay: -0.288s;
  animation-delay: -0.288s;
}
.ktemplate_pageContainer .load-popup .lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}
@-webkit-keyframes lds-roller {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes lds-roller {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.ktemplate_pageContainer h3,
.ktemplate_pageContainer h4 {
  font-weight: 600;
}
.ktemplate_pageContainer h3 {
  margin-bottom: 15px;
}
.ktemplate_pageContainer .ktemplate_boxLeft .kcartTotals {
  border: none;
  border-collapse: separate;
}
.ktemplate_pageContainer .ktemplate_boxLeft .kcartTotals b {
  font-weight: 600;
}

.limited-offer {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 25px 10px;
  background-color: #175b9c;
  color: white;
  width: 100%;
}
.limited-offer .text {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  line-height: 18px;
}
.limited-offer .timer2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 5px;
  font-weight: 600;
  color: #ff4500;
  font-size: 28px;
}

@media screen and (max-width: 992px) {
  .limited-offer .text {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 490px) {
  .limited-offer .text {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.get_free_shipping {
  background-color: #175b9c;
}
.get_free_shipping .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  color: white;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100px;
  gap: 30px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.get_free_shipping .container div {
  height: 100%;
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.get_free_shipping .container div img {
  -o-object-fit: cover;
  object-fit: cover;
  margin: 0 auto;
  max-height: 100%;
  padding: 10px;
}
.get_free_shipping .container .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  text-align: end;
  -ms-flex-preferred-size: 70%;
  flex-basis: 70%;
}
.get_free_shipping .container .text .yellow-under {
  text-decoration-color: #ffe400 !important;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}
.get_free_shipping .container .text .light-blue {
  color: #70ffc3;
}
.get_free_shipping .container .text .first-line {
  font-weight: 600;
  font-size: 20px;
}
.get_free_shipping .container .text .second-line {
  font-size: 14px;
  opacity: 0.9;
  font-size: 400;
}

@media screen and (max-width: 992px) {
  .get_free_shipping .container .text .first-line {
    font-size: 16px;
  }
  .get_free_shipping .container .text .second-line {
    font-size: 12px;
  }
}
.introduction {
  background-color: #175b9c;
  color: white;
  -webkit-box-shadow:
    rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset,
    rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset,
    rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
  position: relative;
  overflow: hidden;
}
.introduction .introduction__wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.introduction .introduction__wrapper .introduction__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  padding: 55px;
  max-width: 55%;
}
.introduction .introduction__wrapper .introduction__left .introduction__title {
  font-size: 34px;
  font-weight: 600;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  line-height: 1.5;
  white-space: nowrap;
}
.introduction .introduction__wrapper .introduction__left .introduction__text {
  font-size: 16px;
  line-height: 1.9;
  font-weight: 400;
}
.introduction .introduction__wrapper .introduction__left .order-now {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px 25px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.9px;
  margin-top: 20px;
}
.introduction .introduction__img {
  position: absolute;
  top: 0;
  left: 55%;
  width: 500px;
  height: 455px;
  background-image: url(../../images/img/trivexa_flowers.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 45px;
}

@media screen and (max-width: 670px) {
  .introduction .introduction__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .introduction .introduction__wrapper .introduction__left {
    max-width: 100%;
    padding-top: 20px;
  }
  .introduction .introduction__img {
    position: static;
    width: 100%;
  }
}
@media screen and (max-width: 470px) {
  .introduction .introduction__wrapper .introduction__left {
    gap: 1px;
    padding: 25px;
  }
  .introduction .introduction__wrapper .introduction__left .introduction__title {
    font-size: 25px;
  }
  .introduction .introduction__wrapper .introduction__left .introduction__text {
    font-size: 12px;
  }
  .introduction .introduction__img {
    height: 250px;
    margin-top: 20px;
  }
}
.about {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
  margin: 50px auto;
}
.about .about__logo {
  width: 120px;
  margin: 0 auto 50px;
}

.docs {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
  margin-top: 20px;
  opacity: 0.8;
}
.docs .docs__title {
  font-size: 30px;
  margin: 30px auto;
  text-align: center;
}
.docs .docs__subtitle {
  font-size: 20px;
  margin: 30px auto;
  text-align: center;
}
.docs p {
  margin-bottom: 20px;
}
.docs ul {
  list-style-type: decimal;
}
.docs .circle {
  list-style: circle;
  margin-left: 40px;
  margin-bottom: 20px;
}

.unsub .docs__title {
  text-align: start;
}
.unsub .unsub__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.unsub .unsub__container .unsub__input {
  width: 300px;
  margin: 0;
}
.unsub .unsub__container .unsub__btn {
  background-color: black;
  color: white;
  padding: 10px;
  max-width: 100%;
  cursor: pointer;
}

.upsell__bottom-text {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
  margin-top: 20px;
}

.upsell__container {
  position: relative;
  height: 100vh;
  width: 100vw;
}
.upsell__container .popup {
  display: block;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  -webkit-transition: 0 all;
  -o-transition: 0 all;
  transition: 0 all;
}
.upsell__container .upsell {
  text-align: center;
  font-weight: 600;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 80%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 350px;
  overflow-y: auto;
}
.upsell__container .upsell .popup__head {
  margin-bottom: 0;
  font-size: 45px;
}
.upsell__container .upsell h3 {
  font-size: 25px;
}
.upsell__container .upsell p {
  font-size: 25px;
}
.upsell__container .upsell .upsell__img {
  max-width: 500px;
  margin: 0 auto;
}
.upsell__container .upsell .medium-text {
  font-size: 14px;
  margin-top: 5px;
}
.upsell__container .upsell .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  width: 100%;
}
.upsell__container .upsell .buttons .small-text {
  font-size: 10px;
  opacity: 0.7;
}
.upsell__container .upsell .buttons a,
.upsell__container .upsell .buttons button {
  max-width: 250px;
  cursor: pointer;
  font-size: 1rem;
  width: 100%;
  padding: 10px 20px;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  text-align: center;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  white-space: nowrap;
}
.upsell__container .upsell .buttons a:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.upsell__container .upsell .buttons .add-to-cart-button {
  color: white;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f68101), to(#ff4500));
  background-image: -o-linear-gradient(top, #f68101, #ff4500 100%);
  background-image: linear-gradient(to bottom, #f68101, #ff4500 100%);
  -webkit-box-shadow: rgba(255, 69, 0, 0.35) 0px 5px 15px;
  box-shadow: rgba(255, 69, 0, 0.35) 0px 5px 15px;
  margin-bottom: 5px;
}
.upsell__container .upsell .buttons .no-thank-you {
  background-color: inherit;
  border: 1px solid #000000;
}
.upsell__container .upsell .buttons .cards {
  max-width: 100px;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  color: inherit;
  /* blue colors for links too */
  text-decoration: inherit;
  /* no underline */
}

b {
  font-weight: bold;
}

.orange {
  color: #ff4500;
}

.line-through {
  text-decoration: line-through;
}

.light-blue-underline {
  text-decoration: underline;
  text-decoration-color: #70ffc3;
  text-decoration-thickness: 1px;
}

.im-ready {
  z-index: 100001;
  padding: 10px 20px;
  background-color: #ff4500;
  outline: 2px solid #175b9c;
  border-radius: 5px;
  border: none;
  position: fixed;
  bottom: 10%;
  left: 50%;
  font-size: 18px;
  white-space: nowrap;
  color: #175b9c;
  cursor: pointer;
  -webkit-animation: pulse 1.4s infinite;
  animation: pulse 1.4s infinite;
}
.im-ready strong {
  font-weight: 600;
}

.order-now {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f68101), to(#ff4500));
  background-image: -o-linear-gradient(top, #f68101, #ff4500 100%);
  background-image: linear-gradient(to bottom, #f68101, #ff4500 100%);
  border-radius: 10px;
  padding: 8px 12px;
  color: white;
}

.hide,
.hide-content {
  display: none;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: translateX(-50%) scale(0.95);
    transform: translateX(-50%) scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }
  70% {
    -webkit-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
    -webkit-box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }
  100% {
    -webkit-transform: translateX(-50%) scale(0.95);
    transform: translateX(-50%) scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: translateX(-50%) scale(0.95);
    transform: translateX(-50%) scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }
  70% {
    -webkit-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
    -webkit-box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }
  100% {
    -webkit-transform: translateX(-50%) scale(0.95);
    transform: translateX(-50%) scale(0.95);
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}
