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 {
  height: 30px;
  background-color: #175B9C;
  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: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.header .logo {
  display: block;
  margin: 0 auto;
}
.header .logo img {
  width: 100px;
  height: auto;
}

.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;
}

.banner_wait {
  padding: 20px;
  max-width: 100%;
  border: 5px solid red;
  background-color: white;
  display: none;
  -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;
  border-radius: 10px;
  overflow: hidden;
  width: 624px;
  height: 442px;
  top: 35%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: fixed;
  z-index: 9999;
}

.text_wait {
  color: red;
  font-size: 30px;
  font-weight: bold;
}

.timer_wait {
  color: #008990;
  font-size: 28px;
  font-weight: bold;
}

.underline {
  color: #008990;
  font-size: 28px;
  font-weight: bold;
  text-decoration: underline;
  text-decoration-color: red;
}

.text_below_timer {
  color: #008990;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.text_pic_below_timer {
  color: black;
  font-size: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

.button_wait {
  background-color: yellow;
  color: #005eff;
  border: 2px solid #005eff;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  -webkit-animation: blink 1.1s infinite;
          animation: blink 1.1s infinite;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}

.close-button_wait {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  color: #3bb7f5;
  cursor: pointer;
}

.button_wait:hover {
  color: #77a2e3;
  background: rgba(59, 183, 245, 0);
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
}

@-webkit-keyframes blink {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -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: scale(1.034);
            transform: scale(1.034);
    -webkit-box-shadow: 0 0 0 10px transparent;
            box-shadow: 0 0 0 10px transparent;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-box-shadow: 0 0 0 0 transparent;
            box-shadow: 0 0 0 0 transparent;
  }
}

@keyframes blink {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -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: scale(1.034);
            transform: scale(1.034);
    -webkit-box-shadow: 0 0 0 10px transparent;
            box-shadow: 0 0 0 10px transparent;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-box-shadow: 0 0 0 0 transparent;
            box-shadow: 0 0 0 0 transparent;
  }
}
@media only screen and (max-width: 767px) {
  .banner-text h3 {
    font-size: 25px;
    line-height: 35px;
    padding-top: 2px;
  }
  .content-sec h3 {
    font-size: 20px;
    line-height: 24px;
  }
  .banner_wait {
    width: 90%;
    height: auto;
  }
  .text_below_timer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .text_pic_below_timer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .text_pic_below_timer img {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.video {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#175B9C), color-stop(50%, white), to(#175B9C));
  background-image: -o-linear-gradient(top, #175B9C, white 50%, #175B9C 100%);
  background-image: linear-gradient(to bottom, #175B9C, white 50%, #175B9C 100%);
  background-size: 100% 100%;
  background-position: 50% 100%;
  background-repeat: no-repeat;
  height: 100vh;
  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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 2vw;
}
.video .video_update-box {
  width: 100%;
  -webkit-animation: slidein 10s ease-in-out 1;
          animation: slidein 10s ease-in-out 1;
}
.video .video_update-box h2 {
  max-width: 1200px;
  margin: 0 auto;
}
@-webkit-keyframes slidein {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  10% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  90% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
@keyframes slidein {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  10% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  90% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
.video .video_update-box.full {
  background-color: #175B9C;
  border-bottom: dashed 2px white;
}
.video .video__title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 10px;
  color: white;
  line-height: 1.4;
  font-weight: bold;
  letter-spacing: 0.5px;
}
.video__container {
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgb(0, 0, 0);
}
.video__container .iframeVideo {
  position: absolute !important;
  padding: 0 !important;
  top: 0;
  right: 0;
}
.video__container .iframeVideo .ui-player-container {
  height: 100% !important;
}
.video__container .iframeVideo .ui-player-container video {
  width: auto !important;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
}

.video.full {
  background-color: #000000;
  background-image: none;
  padding: 0;
}

@media screen and (max-width: 500px) {
  .video .video__title {
    font-size: 25px;
  }
  .video__container #video-gif .play-button {
    font-size: 25px;
  }
  .video__container #video-gif .play-button .play-button__img {
    height: 150px;
    width: 150px;
  }
}
.ingredients {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
  margin: 70px auto;
}
.ingredients .title {
  color: black;
  font-size: 36px;
  font-weight: 600;
}
.ingredients .subtitle {
  margin-top: 20px;
  margin-bottom: 20px;
  color: black;
  font-size: 21px;
  font-weight: 400;
}
.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: 280px;
      flex-basis: 280px;
  -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 {
  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;
  margin: 120px auto 150px;
  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;
  padding: 0 10px;
}
.order .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 .product-item h2 {
  font-size: 35px;
  font-weight: 600;
  color: #175B9C;
}
.order .product-item .supply-txt {
  font-weight: 600;
}
.order .product-item .product-img {
  height: 240px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 15px 0;
}
.order .product-item .product-img img {
  max-width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.order .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 .product-item .price-box .price span:nth-of-type(1) {
  font-size: 16px;
}
.order .product-item .price-box .price span:nth-of-type(2) {
  font-size: 50px;
  line-height: 1;
}
.order .product-item .price-box .price span:nth-of-type(3) {
  font-size: 17px;
  text-align: left;
}
.order .product-item .price-box .saved-money {
  text-transform: uppercase;
  font-size: 12px;
}
.order .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 .product-item .add-to-cart-button:hover {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.order .product-item .total {
  margin-top: 15px;
  font-weight: 600;
}
.order .product-item .total .linethrough {
  text-decoration: line-through;
}
.order .product-item .shipping {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  font-weight: 600;
}
.order .product-item .shipping span {
  margin-left: 5px;
  color: red;
}
.order .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 .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 .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 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    margin: 50px auto 50px;
  }
  .order .product-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 330px;
  }
  .order .product-item .add-to-cart-button .add-to-cart-button-text {
    font-size: 1rem;
  }
  .order .product-item .add-to-cart-button img {
    width: 16px;
  }
  .order .product-item:nth-of-type(2) {
    width: 350px;
    margin-top: 50px;
    margin-bottom: 90px;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order .product-item:nth-of-type(1) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.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;
  }
}
.references {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
  margin-top: 40px;
  margin-bottom: 15px;
}
.references .references__title {
  opacity: 0.6;
  text-align: center;
  font-size: 25px;
  margin-bottom: 15px;
}
.references .references__logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  height: 120px;
  margin: 10px auto;
  opacity: 0.9;
}
.references .references__logos .references__logo:nth-of-type(4) {
  opacity: 0.8;
}
.references .references__logos .references__logo {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  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;
  padding: 20px;
}
.references .references__logos .references__logo img {
  max-height: 100%;
}
.references .references__text {
  list-style: decimal;
  opacity: 0.6;
  font-size: 12px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
  margin: 0 auto;
  margin-left: 10px;
  padding: 0 20px;
}

@media screen and (max-width: 750px) {
  .references {
    margin-top: 30px;
  }
  .references .references__title {
    font-size: 18px;
    margin-bottom: 0;
  }
  .references .references__logos .references__logo {
    padding: 10px;
  }
  .references .references__text {
    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;
    padding: 0 10px;
  }
}
.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;
}

.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;
}

.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;
}

.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*/
.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 {
  position: relative;
}
.ktemplate_pageContainer .boxs_container .show {
  display: block;
}
.ktemplate_pageContainer #popupError {
  width: auto;
  padding: 40px;
}
.ktemplate_pageContainer #popupError .popup__head {
  font-size: 4rem;
  margin-bottom: 0;
  color: black;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}
.ktemplate_pageContainer #popupError .popup__text {
  color: red;
}
.ktemplate_pageContainer #popupError .popup__sorry {
  text-align: center;
  color: red;
}
.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 .limited-offer {
  margin-top: 10px;
  margin-bottom: 10px;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 7px;
}
.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 .orange-under {
  text-decoration-color: #FF4500 !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: 12px;
  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: 10px;
  }
}
.bonuses {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
  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;
  margin: 30px auto;
}
.bonuses .title {
  color: #175B9C;
  font-weight: 600;
  margin-bottom: 50px;
}
.bonuses .title .orange-underline {
  text-decoration: underline;
  text-decoration-color: #FF4500;
  text-decoration-thickness: 1px;
}
.bonuses .card-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 100px;
}
.bonuses .card-container .bonus__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 2px dashed #FF4500;
  padding: 10px;
  width: 270px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.bonuses .card-container .bonus__card .bonus__img img {
  max-height: calc(100% - 2px);
}
.bonuses .card-container .bonus__card .title {
  background-color: #175B9C;
  padding: 10px;
  color: white;
  font-weight: 600;
  width: 100%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin-left: -10px;
  margin-bottom: 0;
}
.bonuses .card-container .bonus__card .price {
  font-weight: 600;
  margin: 10px 0 20px;
}
.bonuses .card-container .bonus__card .price .line-through {
  text-decoration-color: red;
}
.bonuses .card-container .bonus__card .text {
  opacity: 0.6;
  line-height: 1.4;
}

@media screen and (max-width: 700px) {
  .bonuses .card-container {
    gap: 20px;
  }
}
.results {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
  margin-bottom: 20px;
}
.results .title {
  text-align: center;
  font-weight: 600;
  font-size: 35px;
  margin: 30px auto;
}
.results .product-shots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1px;
}
.results .product-shots .product-shot {
  background-color: rgba(231, 228, 228, 0.979);
  padding: 5px;
  -webkit-box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
          box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
}
.results .product-shots .product-shot img {
  width: 200px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.results .product-shots .product-shot:nth-last-of-type(1) {
  -webkit-transform: rotate(-3deg);
      -ms-transform: rotate(-3deg);
          transform: rotate(-3deg);
  z-index: 11;
}
.results .product-shots .product-shot:nth-last-of-type(2) {
  -webkit-transform: rotate(5deg);
      -ms-transform: rotate(5deg);
          transform: rotate(5deg);
  z-index: 12;
}
.results .product-shots .product-shot:nth-last-of-type(3) {
  -webkit-transform: rotate(-5deg);
      -ms-transform: rotate(-5deg);
          transform: rotate(-5deg);
  z-index: 13;
}
.results .feedback-list {
  margin: 30px 0;
}
.results .feedback-list .feedback {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
}
.results .feedback-list .feedback .photo {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  -ms-flex-preferred-size: 50px;
      flex-basis: 50px;
  border-radius: 5px;
  border: 2px solid #175B9C;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.results .feedback-list .feedback .photo img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 46px;
  height: 46px;
  max-width: 46px;
}
.results .feedback-list .feedback .feedback__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: 5px;
}
.results .feedback-list .feedback .feedback__container .title {
  color: #175B9C;
  font-size: 20px;
  margin: 0;
  text-align: start;
  font-weight: 600;
}
.results .feedback-list .feedback .feedback__container .purchase {
  color: #FF4500;
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  opacity: 0.8;
}
.results .feedback-list .feedback .feedback__container .purchase img {
  width: 60px;
  margin-right: 5px;
}
.results .feedback-list .feedback .feedback__container .text {
  font-weight: 600;
  font-size: 14px;
  opacity: 0.6;
  line-height: 18px;
}
.results .feedback-list .feedback .feedback__container .contact {
  font-size: 13px;
  font-weight: 700;
  margin-top: 5px;
}
.results .feedback-list .feedback .feedback__container .contact__adress {
  opacity: 0.6;
}
.results .feedback-list .feedback .feedback__container .contact__name {
  opacity: 0.8;
}

@media screen and (max-width: 992px) {
  .results .title {
    font-size: 25px;
  }
  .results .product-shots .product-shot img {
    width: 120px;
    height: 120px;
  }
}
@media screen and (max-width: 510px) {
  .results .product-shots .product-shot img {
    width: 75px;
    height: 75px;
  }
}
.features {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
  margin: 20px a;
}
.features .features__logo {
  width: 120px;
  margin: 20px auto;
}
.features .features__elems {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.features .features__elems .features__elem {
  -ms-flex-preferred-size: 230px;
      flex-basis: 230px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 14px;
}
.features .features__elems .features__elem img {
  height: 45px;
  width: 45px;
}

.upsell__container-step {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}

.upsell__container-step .videost {
  background: none;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.upsell__container-step .oldman .oldman__title {
  text-align: center;
  font-size: 30px;
  font-style: italic;
  font-weight: bold;
  margin: 30px auto;
}

.upsell__container-step .oldman .oldman__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: space-around;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.upsell__container-step .oldman .oldman__container div {
  -ms-flex-preferred-size: 300px;
  flex-basis: 600px;
}

.upsell__container-step .oldman .oldman__container div p {
  font-size: 16px;
  line-height: 40px;
}

.oldman__title-text {
  font-weight: bold;
  margin: 10px 0 10px;
}

.upsell__container-step .upsell__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 10px auto 10px;
}

.upsell__container-step .upsell__logo img {
  width: 200px;
  height: auto;
}

.upsell__container-step .upsell__steps {
  margin: 40px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.upsell__container-step .upsell__steps div {
  padding: 5px 15px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  gap: 3px;
}

.upsell__container-step .upsell__steps .step__first {
  background-color: #3383bb;
  -webkit-transform: translateX(-25px);
  -ms-transform: translateX(-25px);
  transform: translateX(-25px);
}

.upsell__container-step .upsell__steps .step__second {
  background-color: #175b9c;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transform: scale(1.41);
  -ms-transform: scale(1.41);
  transform: scale(1.41);
  position: relative;
}

.total {
  font-size: 35px;
}

@media screen and (max-width: 600px) {
  .upsell__container-step .upsell__steps {
    margin: 40px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .upsell__container-step .upsell__steps div {
    padding: 5px;
    font-size: 16px;
  }
}
.upsell__container-step .no-thank-you {
  background-color: inherit;
  cursor: pointer;
  margin: 20px auto;
  text-align: center;
  display: block;
  font-weight: bold;
  font-size: 12px;
}

.upsell__container-step .no-thank-you span {
  text-decoration: underline;
}

.upsell__container-step .upsell__head {
  margin: 20px auto 30px;
  text-align: center;
  font-weight: bold;
}

.upsell__container-step .upsell__head p {
  font-size: 1.5em;
  line-height: 45px;
}

.orange {
  color: #ff4500;
}

.upsell__container-step .upsell__head h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

.upsell__container-step .upsell-step {
  margin: 0 auto;
  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;
  position: relative;
  display: block;
  -webkit-transition: 0 all;
  -o-transition: 0 all;
  transition: 0 all;
  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: bold;
}

.upsell__container-step .upsell-step .popup__head {
  color: #3383bb;
  font-size: 28px;
}

.upsell__container-step .upsell-step h3 {
  font-size: 25px;
}

.upsell__container-step .upsell-step p {
  font-size: 25px;
}

.upsell__container-step .upsell-step .upsell__img {
  max-width: 500px;
  margin: 0 auto;
}

.upsell__container-step .upsell-step .medium-text {
  font-size: 14px;
  margin-top: 5px;
}

.upsell__container-step .upsell-step .buttons-step {
  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-step .upsell-step .buttons-step .small-text {
  font-size: 10px;
  opacity: 0.7;
}

.upsell__container-step .upsell-step .buttons-step a {
  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-step .upsell-step .buttons-step button:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.upsell__container-step .upsell-step .buttons-step .add-to-cart-button {
  color: white;
  background-image: -o-linear-gradient(top, #f68101, #ff4500 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f68101), to(#ff4500));
  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-step .upsell-step .buttons-step .cards {
  max-width: 100px;
}

.upsell__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}
.upsell__container .videost {
  background: none;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.upsell__container .oldman .oldman__title {
  text-align: center;
  font-size: 30px;
  font-style: italic;
  font-weight: bold;
  margin: 30px auto;
}
.upsell__container .oldman .oldman__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.upsell__container .oldman .oldman__container div {
  -ms-flex-preferred-size: 300px;
      flex-basis: 300px;
}
.upsell__container .upsell__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 10px auto 10px;
}
.upsell__container .upsell__logo img {
  width: 200px;
  height: auto;
}
.upsell__container .upsell__steps {
  margin: 40px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.upsell__container .upsell__steps div {
  padding: 5px 15px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  gap: 3px;
}
.upsell__container .upsell__steps .step__first {
  background-color: #3383BB;
  -webkit-transform: translateX(-25px);
      -ms-transform: translateX(-25px);
          transform: translateX(-25px);
}
.upsell__container .upsell__steps .step__second {
  background-color: #175B9C;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transform: scale(1.41);
      -ms-transform: scale(1.41);
          transform: scale(1.41);
  position: relative;
}
@media screen and (max-width: 600px) {
  .upsell__container .upsell__container .video {
    background: none;
    max-height: 100vh;
    margin-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .upsell__container .upsell__steps {
    margin: 40px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .upsell__container .upsell__steps div {
    padding: 5px;
    font-size: 16px;
  }
}
.upsell__container .no-thank-you {
  background-color: inherit;
  cursor: pointer;
  margin: 20px auto;
  text-align: center;
  display: block;
  font-weight: bold;
  font-size: 12px;
}
.upsell__container .no-thank-you span {
  text-decoration: underline;
}
.upsell__container .upsell__head {
  margin: 20px auto 30px;
  text-align: center;
  color: #FF4500;
}
.upsell__container .upsell__head h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
}
.upsell__container .upsell {
  margin: 0 auto;
  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;
  position: relative;
  display: block;
  -webkit-transition: 0 all;
  -o-transition: 0 all;
  transition: 0 all;
  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: bold;
}
.upsell__container .upsell .popup__head {
  color: #3383BB;
  font-size: 28px;
}
.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 {
  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 button: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 .cards {
  max-width: 100px;
}

/* cyrillic-ext */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fonts.ub-assets.com/fonts/s/opensans/v36/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWV0ewJER.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fonts.ub-assets.com/fonts/s/opensans/v36/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWVQewJER.woff2) format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fonts.ub-assets.com/fonts/s/opensans/v36/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWVwewJER.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fonts.ub-assets.com/fonts/s/opensans/v36/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWVMewJER.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
/* hebrew */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fonts.ub-assets.com/fonts/s/opensans/v36/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWVIewJER.woff2) format("woff2");
  unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* vietnamese */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fonts.ub-assets.com/fonts/s/opensans/v36/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWV8ewJER.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fonts.ub-assets.com/fonts/s/opensans/v36/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWV4ewJER.woff2) format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fonts.ub-assets.com/fonts/s/opensans/v36/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkWVAewA.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fonts.ub-assets.com/fonts/s/opensans/v36/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fonts.ub-assets.com/fonts/s/opensans/v36/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2) format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fonts.ub-assets.com/fonts/s/opensans/v36/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fonts.ub-assets.com/fonts/s/opensans/v36/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
/* hebrew */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fonts.ub-assets.com/fonts/s/opensans/v36/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2) format("woff2");
  unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* vietnamese */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fonts.ub-assets.com/fonts/s/opensans/v36/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fonts.ub-assets.com/fonts/s/opensans/v36/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2) format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fonts.ub-assets.com/fonts/s/opensans/v36/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  src: url(https://fonts.ub-assets.com/fonts/s/opensans/v36/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSKmu1aB.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  src: url(https://fonts.ub-assets.com/fonts/s/opensans/v36/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSumu1aB.woff2) format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  src: url(https://fonts.ub-assets.com/fonts/s/opensans/v36/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSOmu1aB.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  src: url(https://fonts.ub-assets.com/fonts/s/opensans/v36/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSymu1aB.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
/* hebrew */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  src: url(https://fonts.ub-assets.com/fonts/s/opensans/v36/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS2mu1aB.woff2) format("woff2");
  unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
}
/* vietnamese */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  src: url(https://fonts.ub-assets.com/fonts/s/opensans/v36/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSCmu1aB.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  src: url(https://fonts.ub-assets.com/fonts/s/opensans/v36/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTSGmu1aB.woff2) format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  src: url(https://fonts.ub-assets.com/fonts/s/opensans/v36/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* devanagari */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  src: url(https://fonts.ub-assets.com/fonts/s/poppins/v20/pxiByp8kv8JHgFVrLEj6Z11lFc-K.woff2) format("woff2");
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FF;
}
/* latin-ext */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  src: url(https://fonts.ub-assets.com/fonts/s/poppins/v20/pxiByp8kv8JHgFVrLEj6Z1JlFc-K.woff2) format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  src: url(https://fonts.ub-assets.com/fonts/s/poppins/v20/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Source Sans Pro";
  font-style: italic;
  font-weight: 400;
  src: url(https://fonts.ub-assets.com/fonts/s/sourcesanspro/v22/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7qsDJT9g.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Source Sans Pro";
  font-style: italic;
  font-weight: 400;
  src: url(https://fonts.ub-assets.com/fonts/s/sourcesanspro/v22/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7jsDJT9g.woff2) format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: "Source Sans Pro";
  font-style: italic;
  font-weight: 400;
  src: url(https://fonts.ub-assets.com/fonts/s/sourcesanspro/v22/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7rsDJT9g.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Source Sans Pro";
  font-style: italic;
  font-weight: 400;
  src: url(https://fonts.ub-assets.com/fonts/s/sourcesanspro/v22/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7ksDJT9g.woff2) format("woff2");
  unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Source Sans Pro";
  font-style: italic;
  font-weight: 400;
  src: url(https://fonts.ub-assets.com/fonts/s/sourcesanspro/v22/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7osDJT9g.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Source Sans Pro";
  font-style: italic;
  font-weight: 400;
  src: url(https://fonts.ub-assets.com/fonts/s/sourcesanspro/v22/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7psDJT9g.woff2) format("woff2");
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Source Sans Pro";
  font-style: italic;
  font-weight: 400;
  src: url(https://fonts.ub-assets.com/fonts/s/sourcesanspro/v22/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDI.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
.discovery_container {
  display: block;
  background: rgba(0, 102, 204, 0);
  border-style: none;
  margin: auto;
  padding-top: 0px;
  border-radius: 0px;
  min-width: 650px;
  width: 650px;
}

.discovery_logo_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  height: 65px;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 3px solid rgb(15, 0, 149);
}

.discovery_logo_name p {
  margin-left: 10px;
  font-family: Poppins;
  font-weight: 600;
  font-style: normal;
  font-size: 24px;
  color: rgb(0, 6, 101);
  line-height: 20px;
}

.discovery_title_container {
  margin: 20px 5px;
  border-bottom: 2px solid rgb(182, 182, 182);
}

.discovery_title_container_text p, .discovery_video_title p {
  font-weight: bolder;
  font-size: 30px;
  color: rgb(0, 0, 0);
  line-height: 20px;
  margin-bottom: 16px;
}

.discovery_video_title p {
  text-align: center;
  line-height: 30px;
}

.discovery_under_title, .discovery_time, .discovery_calend {
  margin-bottom: 7px;
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.discovery_calend_text, .discovery_time_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 7px;
}

.discovery_time_text {
  font-style: italic;
}

.discovery_time {
  margin-left: 15px;
}

.discovery_time_text p, .discovery_calend_text p {
  color: rgb(0, 0, 0);
  font-weight: 400;
  font-style: normal;
  font-family: "Open Sans";
  font-size: 12px;
}

.discovery_text_container {
  margin-bottom: 40px;
}

.discovery_text_container p, .discovery_text_container a {
  line-height: 26px;
  margin-bottom: 16px;
  color: rgb(0, 0, 0);
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  font-family: "Open Sans";
}

.discovery_video_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.discovery_button {
  border-style: solid;
  border-radius: 10px;
  width: 240px;
  height: 60px;
  -webkit-box-shadow: inset 0px 1px 0px #ffffff, inset 0 -1px 2px #cccccc;
          box-shadow: inset 0px 1px 0px #ffffff, inset 0 -1px 2px #cccccc;
  color: #0036c4;
  border-width: 2px;
  border-color: #0036C4;
  font-size: 24px;
  line-height: 29px;
  font-weight: 400;
  font-family: Arial, Helvetica, sans-serif;
  font-style: normal;
  text-align: center;
  background-repeat: no-repeat;
  display: block;
}

.discovery_button_pos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.discovery_button p {
  top: 25%;
  position: relative;
  padding: 0 8px 0 8px;
  text-align: center;
}

.discovery_video_bottom {
  margin-bottom: 10px;
}

.discovery_video_container {
  margin-bottom: 160px;
}

.discovery_video_bottom img {
  width: 100%;
}

.discovery_footer {
  background: rgb(88, 95, 105);
  width: 100%;
  position: absolute;
}

.discovery_footer_text {
  display: block;
  background: rgba(0, 102, 204, 0);
  border-style: none;
  margin: auto;
  padding-top: 0px;
  border-radius: 0px;
  min-width: 650px;
  width: 650px;
  margin-top: 40px;
}

.discovery_footer_text p {
  color: rgb(255, 255, 255);
  font-size: 12px;
  font-family: Arial, sans-serif;
  margin-bottom: 20px;
  line-height: 16px;
}

@media screen and (max-width: 700px) {
  .discovery_container, .discovery_footer_text {
    width: 300px;
    min-width: 260px;
  }
  .discovery_video_title p {
    line-height: 20px;
    font-size: 20px;
  }
  .discovery_title_container_text p {
    margin-bottom: 0px;
    line-height: 30px;
    font-size: 25px;
  }
  .discovery_logo_name p {
    font-size: 21px;
  }
  .discovery_logo_container {
    height: 40px;
  }
  .discovery_footer_text {
    margin-top: 20px;
  }
  .discovery_logo_img img {
    width: 22px;
    height: 22px;
  }
}
@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: white;
  cursor: pointer;
  -webkit-animation: pulse 1.4s infinite;
          animation: pulse 1.4s infinite;
}
.im-ready strong {
  font-weight: 600;
}

.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);
  }
}

.highlight {
  font-weight: bold;
  color: red;
}
.highlight_yellow {
  background-color: yellow;
}
.highlight_black {
  font-weight: bold;
  color: black;
}
.highlight_royalblue {
  font-weight: bold;
  color: royalblue;
}

