@charset "utf-8";

/* Checkout V6 offer page.
   Ported from HTML/css/style.css — only the rules the V6 markup actually uses.
   Every selector is namespaced `new-checkout-v6-*` (same convention as
   new-checkoutV5.css) so the loose class names from the static template
   (.header, .container, .logo, .card, .active) can't leak into the rest of
   the app when this file is loaded globally. */

/*=========Fonts=======*/
@font-face {
  font-family: "Roboto";
  src: url("../fonts-nco/Roboto-Bold.woff2") format("woff2"),
    url("../fonts-nco/Roboto-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts-nco/Roboto-ExtraBold.woff2") format("woff2"),
    url("../fonts-nco/Roboto-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts-nco/Roboto-Regular.woff2") format("woff2"),
    url("../fonts-nco/Roboto-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts-nco/Roboto-SemiBold.woff2") format("woff2"),
    url("../fonts-nco/Roboto-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts-nco/Roboto-Medium.woff2") format("woff2"),
    url("../fonts-nco/Roboto-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Condensed";
  src: url("../fonts-nco/RobotoCondensed-Bold.woff2") format("woff2"),
    url("../fonts-nco/RobotoCondensed-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/*-----------------------
MAIN CSS START
------------------------*/
/* The static page put these resets on bare element selectors. Scoped to the
   page root here so they only apply inside V6. */
.new-checkout-v6 {
  background: #fff;
  text-align: center;
  font-family: "Roboto";
  font-weight: 400;
}
/* Wrapped in :where() so the scoping class adds NO specificity — these must
   stay at 0,0,0,0 and lose to every single-class rule below, exactly as the
   template's bare element selectors did. Writing them as `.new-checkout-v6 div`
   would score 0,0,1,1 and silently beat `.new-checkout-v6-container`,
   `-seals`, `-card`, `-summer-sale` etc., killing their margins and padding. */
:where(.new-checkout-v6) *,
:where(.new-checkout-v6) *::before,
:where(.new-checkout-v6) *::after {
  box-sizing: border-box;
}
:where(.new-checkout-v6) :where(div, ul, li, p, img, input) {
  margin: 0;
  padding: 0;
}
:where(.new-checkout-v6) :where(li) {
  list-style: none;
}
:where(.new-checkout-v6) :where(img) {
  border: none;
  height: auto;
  max-width: 100%;
}
:where(.new-checkout-v6) :where(a, a:hover) {
  outline: none;
  color: #333;
  text-decoration: none;
}
/* Deliberately 0,0,1,0 — the class stays OUTSIDE :where() here, unlike the
   resets above. webflow.css:330 styles bare `label` (display/margin-bottom/
   font-weight) at 0,0,0,1 and loads before this file, so a 0,0,0,0 reset loses
   to it and its `font-weight: bold` leaks into -prod-det--total,
   -prd-shipping_charges and -protecbx_text. At 0,0,1,0 this beats webflow
   regardless of link order, while only TYING this file's own class rules —
   and it sits above all of them, so they still win on source order. */
.new-checkout-v6 :where(label) {
  font-weight: normal;
  margin-bottom: 0;
}

.new-checkout-v6-container {
  width: 480px;
  margin: 0 auto;
  padding: 0;
  position: relative;
}

/*-----------------------
CSS FOR TOP STRIP
------------------------*/
.new-checkout-v6-top_strip {
  float: left;
  width: 100%;
  padding: 8px 0;
  position: relative;
  background: url(../images/top-strip-bg.svg) no-repeat #c4ceeb;
  background-size: cover;
  background-position: 50% 0, 20% 50%;
}

.new-checkout-v6-top_strip_inner {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  width: 550px;
  margin: 0 auto;
  column-gap: 60px;
  justify-content: center;
}
.new-checkout-v6-summer-sale {
  display: block;
  margin: 0 auto 0 -240px;
  width: 324px;
  max-width: none;
}
.new-checkout-v6-off-cloud {
  width: 201px;
}

#new-checkout-v6-clockdiv {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  padding: 4px 12px 5px;
  border-radius: 6px;
  background: #002980;
}
#new-checkout-v6-clockdiv > div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#new-checkout-v6-clockdiv div > span {
  text-align: center;
  color: #fff;
  font-size: 18px;
  line-height: 19px;
  font-family: "Roboto Condensed";
  font-weight: 800;
}
.new-checkout-v6-smalltext2 {
  font-size: 10px;
  line-height: 10px;
  color: #fff;
  text-align: center;
  letter-spacing: 0.3px;
  font-weight: 500;
  text-transform: uppercase;
}
#new-checkout-v6-clockdiv span.new-checkout-v6-col {
  width: 20px;
  font-size: 15px;
  line-height: 16px;
  color: #fff;
  font-weight: 800;
}
.new-checkout-v6 a.new-checkout-v6-call_text {
  float: right;
  font-size: 12px;
  line-height: 12px;
  color: #0f2446;
  font-weight: 500;
  text-decoration: underline;
  margin-top: 7px;
}
.new-checkout-v6 a.new-checkout-v6-call_text img {
  display: inline-block;
  vertical-align: middle;
  width: 15px;
  margin: -3px 7px 0 0;
}

/*-----------------------
CSS FOR HEADER
------------------------*/
.new-checkout-v6-header {
  background: #fff;
  float: left;
  width: 100%;
  padding: 15px 0;
  position: relative;
  -webkit-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.1);
}
.new-checkout-v6-logo {
  float: left;
  width: 87px;
}

/*-----------------------
	Checkout Section
------------------------*/
.new-checkout-v6-checkout_section {
  background: #fff;
  float: left;
  width: 100%;
  padding: 45px 0 45px;
}

.new-checkout-v6-select_box_wrap {
  float: left;
  width: 100%;
}
.new-checkout-v6-shipping_box {
  float: left;
  width: 100%;
  margin-bottom: 35px;
  padding: 0 15px 18px;
  border: 1px solid #d8d8d8;
  border-radius: 10px;
}
.new-checkout-v6-seals {
  display: block;
  margin: -15px auto 0;
  width: 118px;
  padding: 0 15px;
  background: #fff;
}
.new-checkout-v6-shipping_text1 {
  font-size: 18px;
  line-height: 22px;
  color: #000;
  margin-top: 15px;
}
.new-checkout-v6-shipping_text1 span {
  border-bottom: 1px solid #d8d8d8;
}
.new-checkout-v6-shipping_text1:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin: -3px 8px 0 4px;
  background: #06cd55;
  animation: new-checkout-v6-shadow-pulse 3s infinite;
}
@keyframes new-checkout-v6-shadow-pulse {
  0% {
    box-shadow: 0 0 0 0 #06cd55;
  }
  50% {
    box-shadow: 0 0 0 0 #06cd55;
  }
  100% {
    box-shadow: 0 0 0 8px transparent;
  }
}
.new-checkout-v6-shipping_text2 {
  font-size: 19px;
  line-height: 22px;
  color: #000;
  font-weight: 500;
  margin-top: 8px;
}
.new-checkout-v6-shipping_text2 span {
  color: #f00000;
  font-weight: bold;
}

.new-checkout-v6-select_wrap--header {
  float: left;
  width: 100%;
  text-align: left;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  position: relative;
  column-gap: 8px;
}
.new-checkout-v6-step_count {
  width: 40px;
  height: 40px;
  background: #0e1b3e;
  border-radius: 50%;
  font-size: 18px;
  line-height: 40px;
  color: #fff;
  font-weight: 800;
  text-align: center;
}
.new-checkout-v6-elect_wrap--content {
  column-gap: 8px;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}
.new-checkout-v6-step_heading {
  font-size: 24px;
  line-height: 24px;
  color: #101111;
  font-weight: bold;
}
.new-checkout-v6 ul.new-checkout-v6-size_list {
  float: left;
  width: 100%;
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 10px;
}
.new-checkout-v6 ul.new-checkout-v6-size_list li {
  height: auto;
  background: #ffffff;
  padding: 10px 7px;
  border-radius: 5px;
  font-size: 16px;
  line-height: 20px;
  color: #000;
  font-weight: 500;
  text-align: center;
  border: 2px solid #ababab;
  cursor: pointer;
  row-gap: 3px;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.new-checkout-v6 ul.new-checkout-v6-size_list li span {
  font-size: 12px;
  line-height: 17px;
  color: #343434;
}
.new-checkout-v6 ul.new-checkout-v6-size_list li.new-checkout-v6-active {
  color: #fff;
  border: 2px solid #102345;
  background: #102345;
}
.new-checkout-v6 ul.new-checkout-v6-size_list li.new-checkout-v6-active span {
  color: #fff;
}

.new-checkout-v6-selectBox {
  float: left;
  width: 100%;
  margin-bottom: 35px;
}
.new-checkout-v6-prd-opt {
  float: left;
  width: 100%;
  border: 1px solid #aeaeae;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  margin: 20px auto 0;
  overflow: hidden;
}
.new-checkout-v6-prd_opt_header {
  float: left;
  width: 100%;
  padding: 10px;
  position: relative;
  background: url(../images/prod-opt-bg.svg) no-repeat #c4ceeb;
  background-size: cover;
  background-position: 46% 0%, 0% 0%;
}
.new-checkout-v6-prd_opt_header p {
  font-size: 20px;
  line-height: 20px;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.new-checkout-v6-pkg_inner {
  width: 100%;
  padding: 15px 20px 20px;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.new-checkout-v6-prd-opt.new-checkout-v6-active {
  -webkit-box-shadow: 0px 0px 25px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 25px 1px rgba(0, 0, 0, 0.1);
  outline: 1px solid #000d33;
  border: 1px solid #000d33;
}
.new-checkout-v6-prd-opt.new-checkout-v6-active .new-checkout-v6-pkg_inner {
  background: #f4f7ff;
}
.new-checkout-v6-check_box {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}
.new-checkout-v6-rad-opt {
  width: 24px;
  margin-right: 10px;
}
.new-checkout-v6-rad-opt input[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  left: 0;
  top: 0;
}
.new-checkout-v6-rad-opt input[type="radio"] + span {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  border: 1px solid #9c9494;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  background: #fff;
}
.new-checkout-v6-rad-opt span img {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 55%;
  transform: translate(-50%, -50%);
}
.new-checkout-v6-rad-opt input[type="radio"]:checked + span img {
  display: block;
}
.new-checkout-v6-rad-opt input[type="radio"]:checked + span {
  border: 1px solid #000d33;
}
.new-checkout-v6-prd-qty {
  width: calc(100% - 34px);
  font-size: 26px;
  line-height: 26px;
  font-weight: 500;
  color: #000d33;
  margin-top: 1px;
}

.new-checkout-v6-pkg_discount--list {
  float: left;
  width: 100%;
  padding-left: 34px;
  margin-top: 10px;
}
.new-checkout-v6-pkg_discount--list li {
  font-size: 16px;
  line-height: 16px;
  color: #000;
  font-weight: 500;
  padding-left: 28px;
  text-align: left;
  margin-top: 12px;
  background: url(../images/green-tick.webp) no-repeat;
  background-position: top 3px left;
  background-size: 16px;
}

.new-checkout-v6-pakge_row_right {
  flex-shrink: 0;
}
.new-checkout-v6-prod-det_price_text {
  font-size: 44px;
  line-height: 44px;
  color: #1a9c00;
  font-weight: bold;
}
.new-checkout-v6-prod-det_price_text span {
  font-size: 24px;
  line-height: 100%;
  font-weight: 400;
}
.new-checkout-v6-prd-shipping_charges {
  font-size: 15px;
  line-height: 16px;
  color: #2d2c2c;
  margin-top: 10px;
}
.new-checkout-v6-prod-det--total {
  font-size: 16px;
  line-height: 16px;
  color: #2d2c2c;
  margin-top: 10px;
  position: relative;
}
.new-checkout-v6-prod-det--total span {
  position: relative;
}
.new-checkout-v6-prod-det--total span:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -2px;
  right: -2px;
  height: 1px;
  background: #2d2c2c;
}

.new-checkout-v6-buy_more {
  display: inline-block;
  vertical-align: top;
  border-radius: 6px;
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  cursor: pointer;
  margin: 25px 0 0;
  position: relative;
  padding: 0 0 5px;
}
.new-checkout-v6-buy_more:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid #000;
}
/* The "+" is drawn rather than typeset. As a text glyph it could never sit dead
   centre: Roboto's plus has uneven side bearings, so centring the advance box
   still left the ink ~0.4px left of the circle — visible as lopsided
   antialiasing at 20px. Flex centring does not help either (it centres the line
   box, which pushed the glyph 0.5px low). Two absolutely-positioned bars are
   centred by construction, at every breakpoint and independent of which font
   actually loads. The span keeps its "+" text for the DOM/a11y tree; font-size:0
   hides the glyph itself. */
.new-checkout-v6-buy_more span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #000;
  font-size: 0;
  line-height: 0;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  margin: 0 4.5px 0 10px;
}
.new-checkout-v6-buy_more span::before,
.new-checkout-v6-buy_more span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}
.new-checkout-v6-buy_more span::before {
  width: 8px;
  height: 2px;
}
.new-checkout-v6-buy_more span::after {
  width: 2px;
  height: 8px;
}

.new-checkout-v6-protection_box {
  float: left;
  width: 100%;
  background: #fff;
  border: 1px solid #d7d7d7;
  border-radius: 8px;
  padding: 15px 15px 12px;
  text-align: left;
  margin-top: 35px;
}
.new-checkout-v6-fieldToggle {
  float: left;
  width: 100%;
  cursor: pointer;
  position: relative;
}
.new-checkout-v6-fieldToggle input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}
.new-checkout-v6-fieldToggle input[type="checkbox"] + span {
  display: inline-block;
  vertical-align: top;
  width: 20px;
  height: 20px;
  border: 1px solid #000;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 48%;
  transform: translateY(-50%);
}
.new-checkout-v6-fieldToggle input[type="checkbox"]:checked + span:after {
  position: absolute;
  content: "";
  width: 17px;
  height: 17px;
  border: 1px solid #18cb57;
  background: url(../images/tik-white.svg) #18cb57 no-repeat center center;
  background-size: 77%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.new-checkout-v6-protecbx_heading {
  font-size: 15px;
  line-height: 21px;
  color: #000;
  letter-spacing: 0.3px;
  font-weight: 500;
  padding-left: 30px;
}
.new-checkout-v6-protecbx_text {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  font-size: 14px;
  line-height: 19px;
  color: #4d4d4d;
  margin-top: 8px;
  padding-left: 30px;
}
.new-checkout-v6-button_ships {
  font-size: 14px;
  line-height: 19px;
  color: #000;
  margin-top: 20px;
}
.new-checkout-v6-button_ships img {
  display: inline-block;
  vertical-align: middle;
  width: 16px;
  margin: -3px 8px 0 0;
}
.new-checkout-v6-button_transist_text {
  font-size: 14px;
  line-height: 19px;
  color: #000;
  margin-top: 20px;
}
.new-checkout-v6-button_transist_text img {
  display: inline-block;
  vertical-align: middle;
  width: 10px;
  margin: -3px 5px 0 0;
}
.new-checkout-v6-card {
  display: block;
  margin: 20px auto 10px;
  width: 285px;
}
.new-checkout-v6-lock {
  display: inline-block;
  vertical-align: middle;
  width: 12px;
  margin: -6px 7px 0 0;
}

.new-checkout-v6-size-wrapper {
  position: relative;
}
.new-checkout-v6-help-icn {
  display: inline-block;
  vertical-align: middle;
  width: 18px;
}
.new-checkout-v6-size-tooltip {
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%);
  background: #102345;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.4;
  white-space: nowrap;
  display: none;
  z-index: 999;
}
.new-checkout-v6-size-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #102345 transparent transparent transparent;
}
/* Gated on real hover capability rather than viewport width. Touch screens
   apply :hover on tap and keep it stuck there, so a width-based
   `:hover { display: none }` override (0,0,3,0) would outrank the --open
   class (0,0,2,0) and hide the tooltip the moment JS opened it. With the
   hover rule confined to hover-capable pointers, --open is the only thing
   driving visibility on touch and nothing competes with it. */
@media (hover: hover) and (pointer: fine) {
  .new-checkout-v6-size-wrapper:hover .new-checkout-v6-size-tooltip {
    display: block;
  }
}
/* Toggled from JS on touch devices (see isTouchDevice in checkoutV6.jsx). */
.new-checkout-v6-size-tooltip.new-checkout-v6-size-tooltip--open {
  display: block;
}

.new-checkout-v6-button_box {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  margin-top: 25px;
}
.new-checkout-v6 a.new-checkout-v6-common_button {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  height: 62px;
  line-height: 62px;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  border-radius: 5px;
  text-align: center;
  background: #00c646;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  box-shadow: 0 3px 5px 2px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 3px 5px 2px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}
.new-checkout-v6 a.new-checkout-v6-common_button img {
  display: inline-block;
  vertical-align: middle;
  width: 21px;
  margin: -2px 0 0 10px;
}

/*=======Media Query========*/
.new-checkout-v6-show-tab {
  display: none;
}
.new-checkout-v6-green_color {
  color: #0ab634;
}

@media only screen and (max-width: 1021px) {
  .new-checkout-v6-show-desk {
    display: none;
  }
  .new-checkout-v6-show-tab {
    display: block;
  }

  .new-checkout-v6-top_strip {
    background-size: cover;
    background-position: 89% 0;
  }
  .new-checkout-v6-top_strip_inner {
    width: auto;
    column-gap: 0;
    justify-content: space-between;
  }
  .new-checkout-v6-summer-sale {
    width: 125px;
    margin: 0;
  }
  .new-checkout-v6-off-cloud {
    width: 188px;
  }
}

@media only screen and (max-width: 767px) {
  .new-checkout-v6-container {
    width: 100%;
    padding: 0 15px;
    max-width: 480px;
    box-sizing: border-box;
  }

  .new-checkout-v6-top_strip {
    height: 47px;
    padding: 8px 0;
    background: url(../images/top-strip-bg-mob.svg) no-repeat #c4ceeb;
    background-size: cover;
    background-position: 0;
  }
  .new-checkout-v6-off-cloud {
    width: 125px;
  }
  .new-checkout-v6-summer-sale {
    width: 86px;
  }
  #new-checkout-v6-clockdiv {
    padding: 4px 10px 6px;
  }
  #new-checkout-v6-clockdiv div > span {
    font-size: 14px;
    line-height: 15px;
  }
  .new-checkout-v6-smalltext2 {
    font-size: 7px;
    line-height: 7px;
  }
  #new-checkout-v6-clockdiv span.new-checkout-v6-col {
    width: 12px;
    line-height: 14px;
    font-size: 12px;
  }
  .new-checkout-v6-header {
    padding: 12px 0;
  }
  .new-checkout-v6-checkout_section {
    padding: 35px 0 30px;
  }

  .new-checkout-v6-selectBox {
    margin: 5px 0 30px;
  }
  .new-checkout-v6-shipping_box {
    margin-bottom: 25px;
    padding: 0 15px 16px;
  }
  .new-checkout-v6-seals {
    margin: -13px auto 0;
    width: 99px;
    padding: 0 12px;
  }
  .new-checkout-v6-shipping_text1 {
    font-size: 15px;
    line-height: 18px;
  }
  .new-checkout-v6-shipping_text2 {
    font-size: 16px;
    line-height: 16px;
    margin-top: 11px;
  }
  .new-checkout-v6-help-icn {
    width: 17px;
  }

  .new-checkout-v6-step_heading {
    font-size: 20px;
    line-height: 20px;
  }
  .new-checkout-v6-step_count {
    width: 32px;
    height: 32px;
    font-size: 15px;
    line-height: 31px;
  }

  .new-checkout-v6-prd-opt {
    margin: 13px auto 0;
  }
  .new-checkout-v6-prd_opt_header {
    background: url(../images/prod-opt-bg-mob.svg) no-repeat #c4ceeb;
    background-size: cover;
    background-position: 50% 0%, 0% 0%;
  }
  .new-checkout-v6-prd_opt_header p {
    font-size: 20px;
    line-height: 20px;
  }
  .new-checkout-v6-rad-opt {
    width: 20px;
  }
  .new-checkout-v6-rad-opt input[type="radio"] + span {
    width: 20px;
    height: 20px;
  }
  .new-checkout-v6-pkg_inner {
    padding: 15px 12px 20px;
    column-gap: 7px;
  }
  .new-checkout-v6-prd-qty {
    width: calc(100% - 30px);
    font-size: 22px;
    line-height: 22px;
  }
  .new-checkout-v6-pkg_discount--list {
    padding-left: 30px;
    margin-top: 5px;
  }
  .new-checkout-v6-pkg_discount--list li {
    font-size: 12px;
    line-height: 16px;
    padding-left: 18px;
    margin-top: 7px;
    background-position: top 5px left;
    background-size: 11px;
  }
  .new-checkout-v6-prod-det_price_text {
    font-size: 39px;
    line-height: 40px;
  }
  .new-checkout-v6-prod-det_price_text span {
    font-size: 20px;
  }
  .new-checkout-v6-prd-shipping_charges {
    font-size: 13px;
    line-height: 14px;
  }
  .new-checkout-v6-prod-det--total {
    font-size: 15px;
    line-height: 15px;
  }
  .new-checkout-v6-fieldToggle input[type="checkbox"] + span {
    width: 18px;
    height: 18px;
  }
  .new-checkout-v6-buy_more {
    font-size: 18px;
    line-height: 24px;
    margin: 20px 0 5px;
  }
  .new-checkout-v6-protecbx_heading {
    font-size: 14px;
    line-height: 16px;
  }
  .new-checkout-v6-protecbx_text {
    font-size: 12px;
    line-height: 17px;
    margin-top: 5px;
  }

  .new-checkout-v6-protection_box {
    margin-top: 25px;
  }
  /* The template's `:hover { display: none }` override lived here to stop the
     tooltip sticking open on phones. It is gone on purpose: the hover rule is
     now gated on (hover: hover), so there is nothing to switch off, and this
     override would have outranked the --open class. */

  .new-checkout-v6 ul.new-checkout-v6-size_list {
    margin-top: 17px;
    grid-gap: 8px;
    padding: 8px 7px;
  }
  .new-checkout-v6 ul.new-checkout-v6-size_list li {
    font-size: 14px;
    line-height: 15px;
  }
  .new-checkout-v6 ul.new-checkout-v6-size_list li span {
    font-size: 11px;
  }
  .new-checkout-v6-button_box {
    margin-top: 20px;
  }

  .new-checkout-v6 a.new-checkout-v6-common_button {
    height: 56px;
    line-height: 56px;
    font-size: 20px;
  }
  .new-checkout-v6-button_ships {
    font-size: 12px;
    line-height: 17px;
    margin-top: 15px;
  }
  .new-checkout-v6-button_ships img {
    width: 12px;
    margin: -2px 6px 0 0;
  }
  .new-checkout-v6-button_transist_text {
    font-size: 12px;
    line-height: 17px;
    margin-top: 15px;
  }
  .new-checkout-v6-button_transist_text img {
    width: 8px;
    margin: -3px 4px 0 0;
  }
  .new-checkout-v6-card {
    margin: 15px auto 10px;
    width: 220px;
  }
}
