/** Shopify CDN: Minification failed

Line 325:26 Expected ")" to end URL token
Line 770:0 Unexpected "}"
Line 792:2 Unexpected "}"

**/
/** custom colors */
:root {
  --primary-btn-bg-color: rgb(231 186 70);
  --primary-btn-color: rgb(51 51 52);
  --primary-btn-border: 0px solid #000;
  --primary-btn-bg-color-hover: rgb(51 51 52);
  --primary-btn-color-hover: rgb(231 186 70);
  --primary-btn-border-hover: 0px solid #222;
  --primary-btn-disabled-color: #828282;
  --primary-btn-disabled-bg-color: #e9e9e9;
  --primary-btn-disabled-border: 1px solid #e9e9e9;
  --primary-btn-disabled-bg-color-hover: #e9e9e9;
  --primary-btn-disabled-color-hover: #828282;
  --primary-btn-disabled-border-hover: 1px solid #e9e9e9;
  --btn-border-radius: 0px;
  --unselected-btn-border: 0px solid var(--primary-btn-disabled-color);
  --unselected-btn-color: var(--primary-btn-disabled-color);
  --unselected-btn-bg-color: transparent;
  --progress-bar-bg-color: #eeeeee;
  --progress-bar-completed-bg-color: rgb(231 186 70);
  --progress-bar-color: #000;
  --progress-bar-completed-color: #000;
  --pseudo-width: 0;
}
/** end custom colors */

.awtomatic-progress-item.awtomatic-progress-item {
  background-color: var(--progress-bar-bg-color);
}
.awtomatic-progress-item.awtomatic-progress-item--completed {
  background-color: var(--progress-bar-completed-bg-color);
}
.bundle-stepper-item--complete:after {
  border-bottom-color: var(--progress-bar-completed-bg-color);
}
.bundle-stepper-item:after {
  border-bottom-color: var(--progress-bar-bg-color);
}

.bundle-stepper-counter--complete {
  color: var(--progress-bar-completed-color);
  background-color: var(--progress-bar-completed-bg-color);
}

.bundle-stepper-counter--incomplete {
  background-color: var(--progress-bar-bg-color);
  color: var(--progress-bar-color);
}

/* CUSTOM PROGRESS BAR */
@media only screen and (min-width: 750px) {
  .awtomatic-progress-item--completed button.awtomatic-progress-remove-button {
    display: inline-block;
    position: absolute;
    top: -8px;
    right: -8px;
    height: 20px;
    width: 20px;
    min-height: 0;
    border-radius: 50%;
    background-color: #fff;
    padding: 0;
    border-radius: 50%;
    box-shadow: 0px 0px 1px #000000d6;
    background-image: url(https://bundle-public-assets.s3.amazonaws.com/closeIcons/close-svgrepo-com.svg);
    background-size: 16px;
    transition: box-shadow 0.2s;
    background-position: center;
  }
  .awtomatic-progress-item--completed button.awtomatic-progress-remove-button:hover {
    box-shadow: 0px 0px 1px 1px #0000006e;
  }

  .awtomatic-progress-item--completed button.awtomatic-progress-remove-button:after {
    content: none;
  }

  .awtomatic-progress-count-label {
    display: none;
  }

  .bundle-container .awtomatic-progress-container {
    margin-left: auto;
    padding-bottom: 20px;
  }

  .bundleapp-modal__container--complete-screen footer {
    /* BaB Footer */
    height: 80px;
  }

  .bundleapp-modal__container--complete-screen .bundle-container {
    /* BaB content */
    padding-top: 10px;
  }

  .bundle-container .awtomatic-bab-options-container {
    order: 0;
  }
  .bundle-container .bundle-scrollable-section {
    order: 2;
    row-gap: 10px;
  }
  .bundle-container .awtomatic-progress-container {
    order: 1;
  }
  .bundle-container footer {
    order: 3;
  }

  .awtomatic-progress-item--completed .awtomatic-progress-product-count-container .bundle-text--subheading {
    margin-right: 10px;
  }

  .awtomatic-progress-item.awtomatic-progress-item--pending .bundle-text--subheading {
    color: #000;
  }

  .awtomatic-progress-item.awtomatic-progress-item--completed {
    background-color: #fff;
  }

  .awtomatic-progress-item .bundle-text--subheading {
    min-width: 50px;
    display: block;
    color: #fff;
  }

  .awtomatic-progress-container {
    display: block;
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
  }
  div.awtomatic-progress-item {
    width: 45px;
    height: 45px;
    display: inline-block;
    background-image: url();
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #eee;
    margin: 0 5px;
    border-radius: 5px;
    border: 2px solid #ddd;
  }

  /* CUSTOM PROGRESS IMAGES */
  div.awtomatic-progress-item.awtomatic-progress-item--completed {
    background-color: #eee;
    background-image: var(--awt-pb-img);
  }
}
/* END CUSTOM PROGRESS BAR */

/* buttons */
.bundle-button.button--primary {
  background-color: var(--primary-btn-disabled-bg-color);
  color: var(--primary-btn-disabled-color);
  border: var(--primary-btn-disabled-border);
  border-radius: var(--btn-border-radius);
  transition: background-color 0.3s, color 0.3s;
}
.awtomatic-bab-options-container .bundle-button {
  background-color: var(--unselected-btn-bg-color);
  color: var(--unselected-btn-color);
  border: var(--unselected-btn-border);
  border-radius: var(--btn-border-radius);
  transition: background-color 0.3s, color 0.3s;
}
.awtomatic-bab-options-container .bundle-button span {
  background-color: transparent;
  color: var(--primary-btn-disabled-color);
  transition: color 0.3s;
}
.bundle-button.button--primary:hover,
.awtomatic-bab-options-container .bundle-button:hover {
  background-color: var(--primary-btn-disabled-bg-color-hover);
  color: var(--primary-btn-disabled-color-hover);
  border: var(--primary-btn-disabled-border-hover);
}
.awtomatic-bab-options-container .bundle-button:hover span {
  color: var(--primary-btn-disabled-color-hover);
}
.bundle-button.button--primary:enabled,
.awtomatic-bab-options-container .bundle-button.selected {
  background-color: var(--primary-btn-bg-color);
  color: var(--primary-btn-color);
  border: var(--primary-btn-border);
  border-radius: var(--btn-border-radius);
  transition: background-color 0.3s, color 0.3s;
}
.bundle-product-card__quantity-button-container--button svg {
  fill: var(--primary-btn-color) !important;
}
.bundle-product-card__quantity-button-container--button:hover svg {
  fill: var(--primary-btn-color-hover);
}
.awtomatic-bab-options-container .bundle-button.selected span {
  color: var(--primary-btn-color);
}
.bundle-button.button--primary:enabled:hover,
.awtomatic-bab-options-container .bundle-button:hover {
  cursor: pointer;
  background-color: var(--primary-btn-bg-color-hover);
  color: var(--primary-btn-color-hover);
  border: var(--primary-btn-border-hover);
}
.awtomatic-bab-options-container .bundle-button:hover span {
  color: var(--primary-btn-color-hover);
}
/* end buttons*/

/* Customer quantity button */
.bundle-product-card__quantity-button-container--unavailable button.bundle-product-card__quantity-button-container--button {
  padding: 0;
  width: 0;
}

div.bundle-product-card__quantity-button-container {
  /*border-color: #000586;*/
  font-family: Rochester-stamp, sans-serif;
  border: 1px solid #E7BA45 !important;
  border-radius: 0px;
  background-color: var(--primary-btn-bg-color);
  color: var(--primary-btn-color);
  font-weight: bold;
  line-height: 15px;
  padding: 0;
}

.bundle-product-card__quantity-button-container span {
  padding: 14px 10px;
  font-family: shape;
}

.bundle-product-card__quantity-button-container--button {
  padding: 14px 10px;
  border-radius: 0;
  transition: background-color 0.3s;
}

.bundle-product-card__quantity-button-container--button:first-child {
  border-top-left-radius: var(--btn-border-radius);
  border-bottom-left-radius: var(--btn-border-radius);
}
.bundle-product-card__quantity-button-container--button:last-child {
  border-top-right-radius: var(--btn-border-radius);
  border-bottom-right-radius: var(--btn-border-radius);
}

button.bundle-product-card__quantity-button-container--button:hover {
  background-color: var(--primary-btn-bg-color-hover);
}

.bundle-product-card__quantity-button-container--button svg {
  fill: var(--primary-btn-color);
}
/* End Customer quantity button */

/* 2 items per row in BaB */
@media only screen and (max-width: 750px) {
  main.bundle-scrollable-section,
  main .bundle-section {
    grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
    row-gap: 10px;
  }

  .bundleapp-modal__container--complete-screen .bundle-product-card {
    width: 100%;
  }

  .bundle-product-card__quantity-button-container {
    width: 100%;
  }
}
/* end 2 items per row in BaB */

/* 2 items per row in ADD ONS */
.awt-bab-open main.bundle-create-content {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(48%, 1fr)) !important; 
    row-gap: 10px !important;
    column-gap: 10px !important;
    margin-top: 12px !important;
    margin-bottom: 20px !important;
}
/* 2 items per row in ADD ONS */

/* square images */
.bundleapp-modal__container--complete-screen .bundle-product-card {
  width: 300px;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .bundleapp-modal__container--complete-screen .bundle-product-card {
    width: 300px;
  }
}
@media screen and (max-width: 758px) {
  .bundleapp-modal__container--complete-screen .bundle-product-card {
    width: 100%;
  }
}

/* end square images */

body.awt-bab-open .bundleapp-modal__logo {
  background-image: var(--logo-image-url);
}

body.awt-bab-open #dummy-chat-button-iframe {
  display: none !important;
}

body.awt-bab-open .bundleapp-modal__container--complete-screen {
  background-image: url({{"bg.static.svg"|asset_url}});
  background-color: rgb(241 240 235);
}
body.awt-bab-open .bundleapp-modal {
  background: none;
}

body.awt-bab-open .bundleapp-modal__container--complete-screen:focus-visited {
  outline: none;
}

body.awt-bab-open .bundle-product-card.selected {
  position: relative;
}

body.awt-bab-open .bundle-product-card.selected:before {
  content: "SELECTED";
  position: absolute;
  top: 0px;
  right: 0px;
  width: 100%
  font-size: 18px;
  font-weight: 600px; 
  z-index: 9;
  padding: 3px 9px;
  background-color: var(--primary-btn-bg-color);
  color: var(--primary-btn-color);
  border: var(--primary-btn-border);
  border-radius: 0px;
  transition: background-color 0.3s, color 0.3s;
}

body.awt-bab-open .bundleapp-modal {
  background: none;
  z-index: 999;
}

body.awt-bab-open #bundleapp-subscriptions-portal *:focus-visible {
  outline: none;
}

body.awt-bab-open .bundle-product-card.selected {
  position: relative;
}


body.awt-bab-open nav.bundle-section__nav {
  z-index: 10;
}
body.awt-bab-open .bundle-product-card__quantity-button-container--button:hover svg path {
  fill: var(--primary-btn-bg-color);
}
body.awt-bab-open #modal-title,
body.awt-bab-open button.bundle-button,
body.awt-bab-open label,
body.awt-bab-open span.bundle-text--subheading {
  text-transform: uppercase;
}
body.awt-bab-open .bundleapp-modal__container--complete-screen--header-container {
  padding: 0;
}
body.awt-bab-open .bundleapp-modal__container--complete-screen--header-container > div.bundleapp-modal__logo {
  position: static;
  margin: 20px auto 5px;
}
body.awt-bab-open .bundleapp-modal__container--complete-screen--header-container > div:not(.bundleapp-modal__logo) {
  display: none;
}
body.awt-bab-open div.bundle-container > header.bundle-stepper-header {
  padding-bottom: 0;
}
body.awt-bab-open div.bundle-container > header.bundle-stepper-header div.bundle-stepper-wrapper {
  margin-bottom: 0;
  height: 85px;
}
body.awt-bab-open nav.bundle-section__nav {
  background: none;
  position: static;
}
body.awt-bab-open div.bundle-container > footer > div {
  font-family: shape;
  background-color: rgb(255, 255, 255);
}
body.awt-bab-open nav.bundle-section__nav {
  padding: 10px 0;
}
body.awt-bab-open div.bundle-product-card {
  background: rgb(255, 255, 255, 0.7);
  border-radius: 0px;
  border: 1px solid rgb(203, 213, 225);
}
body.awt-bab-open div.awtomatic-bab-options-container > div.awtomatic-plans-container {
  margin-bottom: 0;
}
body.awt-bab-open div.awtomatic-bab-options-container {
  width: 100%;
}
body.awt-bab-open h1,
body.awt-bab-open h2,
body.awt-bab-open h3 {
  font-family: Rochester-stamp, sans-serif;
  line-height: 40px;
}
body.awt-bab-open h4 {
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  body.awt-bab-open .bundle-container > footer {
    height: var(--awt-footer-height-no-controls, 65px);
  }
  body.awt-bab-open section.bundle_section {
    grid-template-columns: repeat(auto-fit, minmax(40%, 1fr));
    gap: 10px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 400px) {
  body.awt-bab-open .bundle-container {
    padding-left: 5px;
    padding-right: 5px;
  }
}

body.awt-bab-open footer > div > div {
  white-space: nowrap;
}

@media screen and (max-width: 321px) {
  body.awt-bab-open footer > div > button.bundle-button.button--secondary {
    display: none;
  }
}

.awt-style-1 .bundleapp-wrapper .bundleapp-plan-selector-group {
  border: none;
  padding: 0;
}
.awt-style-1 .bundleapp-wrapper .bundleapp-plan-selector-group .bundleapp-plan-selector-plan {
  margin: 0;
}
.awt-style-1 .bundleapp-wrapper .bundleapp-plan-selector-group .bundleapp-plan-selector-radio > div {
  display: flex;
  gap: 10px;
  margin-top: 5px;
}
.awt-style-1 .bundleapp-wrapper .bundleapp-plan-selector-group .bundleapp-plan-selector-radio > div .bundleapp-plan-selector-radio__label {
  background: rgb(231, 226, 211);
  display: flex;
}
.awt-style-1 .bundleapp-wrapper .bundleapp-plan-selector-group .bundleapp-plan-selector-radio > div .bundleapp-plan-selector-radio__label--selected {
  background: rgb(51, 51, 52);
  color: rgb(241, 240, 235);
}
.preselections ul {
  flex-wrap: wrap;
  flex-direction: row;
  gap: 2%;
}
.preselections ul li:not(.visible) {
  display: none;
}

.preselections ul li {
  flex: 0 0 32%;
  height: auto;
  overflow: hidden;
  background: white;
  border-radius: 0px;
  border-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.preselections ul li:hover {
  border-color: black;
}

.preselections ul li p {
  padding: 5px;
  font-size: 12px;
  text-align: center;
}

.awt-is-max-size-reached button[data-testid="increment-quantity"] {
  pointer-events: none;
  opacity: 0.4;
  background: 
}

.awt-bab-open .bundle-product-card--unavailable {
  display: none;
}

header.bundleapp-modal__container--complete-screen--header-container > button > svg {
  display: none;
}
header.bundleapp-modal__container--complete-screen--header-container > button {
  border-radius: 0px;
  font-size: 14px;
  top: 15px;
  right: 30px;
  font-weight: 200;
  padding: 0px;
  width: 30px;
  min-width: fit-content;
  height: 20px;
}
header.bundleapp-modal__container--complete-screen--header-container > button::before {
  content: "x";
}

.awt-bab-open .bundleapp-modal__container--complete-screen .bundle-container > header {
  padding-top: 15px;
  height: 80px;
}

.customProgressBar {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: auto;
  align-content: center;
  flex-wrap: wrap;
}
@media only screen and (min-width: 750px) {
  .awt-bab-open .bundleapp-modal__container--complete-screen .bundle-container {
    padding-top: 0;
  }
  .awt-bab-open div.awtomatic-progress-container {
    padding-bottom: 5px;
  }
  .customProgressBar {
    display: flex;
  }
}
@media only screen and (max-width: 749px) {
  .customProgressBar {
    position: fixed;
    height: auto;
    top: 82px;
  }
}
.variant-option-btns > div {
  margin-bottom: 0;
}

.variant-option-btns button {
  display: flex;
  flex-direction: column;
}
.variant-option-btns button span.title {
  font-size: 16px;
}
.variant-option-btns button span:not(.title) {
  font-size: 12px;
}

@media only screen and (max-width: 400px) {
  .awtomatic-progress-container {
    margin-left: -5px;
  }
}

.awt-style-1 {
  margin-top: 0;
}

@media (min-width: 640px) {
  .sm\:hidden {
    display: none !important;
  }
}

.awt-bab-open main.bundle-create-content {
  display: flex;
  flex-direction: column;
}

.preselMsg {
  text-align: center;
  background: rgb(105, 143, 134);
  margin: 0 auto;
  padding: 8px;
  width: 100%;
  color: rgb(231, 226, 211);
  font-family: Shape, sans-serif;
  font-weight: 600;
}

.awt-bab-open main.bundle-create-content .preselMsg {
  text-align: center;
}
@media (max-width: 450px) {
  body.awt-bab-open div.bundle-container > footer > div {
    padding: 0;
    justify-content: space-evenly;
  }
}

body.awt-bab-open .bundle-container {
  padding-left: 0px;
  padding-right: 0px;
}

body.awt-bab-open .bundle-container > main > div > div {
  padding-right: 32px;
  padding-left: 32px;
}
body.awt-bab-open div.bundle-product-card {
    border-radius: 0px;
    border: none;
    padding: 0px;
}
.bundle-product-card__quantity-button-container span {
    padding: 14px 10px;
    font-size: 14px;
}

.bundle-product-card__stars-container {
  display: none;
}
.bundle-product-card__reviews-container {
    display: none;
}
body.awt-bab-open .bundle-product-card.selected:before {
  content: "SELECTED";
  position: absolute;
  top: 0px;
  right: 0px;
  font-family: Shape;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  text-align: center; 
  z-index: 9;
  padding: 5px 10px;
  background-color: var(--primary-btn-bg-color);
  color: var(--primary-btn-color);
  border: var(--primary-btn-border);
  border-radius: 0px;
  transition: background-color 0.3s, color 0.3s;
}
/*
body.awt-bab-open .bundle-product-card.selected:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 8; 
}*/
.bundle-product-card__title {
  font-family: Rochester-stamp, sans-serif;
  padding-top: 0px; 
  margin-top: 10px; 
  padding-bottom: 0px !important;
  margin-bottom: 0px !important;
}
.bundle-product-card__subtitle {
  padding-bottom: 0px;
  margin-top: 0px;
}
.bundle-product-card__quantity-button-container--button {
    background: #E7BA45;
}
div.bundle-product-card__quantity-button-container {
    background-color: #fbfbf9;
    margin-top: 10px;
}
.bundle-img-container {
  border-radius: 0px !important;
}
.bundle-text--heading {
    font-family: Shape;
    font-size: 12px;
    font-weight: 600;
    margin-left: 20px;
    margin-right: 20px;
}
.bundle-text--body {
  font-family: Shape;
  font-size: 14px;
  margin-left: 20px;
  margin-right: 20px;
}
.awtomic-image-carousel {
  padding: 0px;
}
.bundle-text--emphasis bundle-text--body {
  font-family: Shape;
  font-size: 26px;
}
.image-slider-button prev {
  padding-left: 20px !important;
}
.image-slider-button next {
  padding-right: 20px !important;
}
.bundle-step-label {
  font-family: Rochester-stamp, sans-serif;
  font-size: 14px;
  font-weight: 400;
}
.bundle-section__title {
  font-size: 48px;
  margin-top: 20px;
  margin-bottom: 0px;
}
.bundle-container {
    padding-right: 20px;
    padding-left: 20px;
}
body.awt-bab-open section.bundle_section {
    row-gap: 10px;
    padding-top: 25px;
    max-width: 1600px;
}
.bundle-section {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    overflow-y: auto;
}
body.awt-bab-open .bundle-container > main > div > div {
  padding: 0px;
}
@media only screen and (max-width: 750px) {
    .bundle-product-card__quantity-button-container {
        width: 60%;
    }
}
body.awt-bab-open footer > div > div {
    font-size: 12px;
}
@media screen and (min-width: 490px) {
    .izugIQ {
        width: 600px;
    }
}
.custom-rendered-blocks {
        padding-left: 0;
    }
}
.relative self-start product-gallery-container {
  margin-left: 50px !important;
}
@media (min-width: 1024px) {
  #custom-swiper-wrapper {
    padding-left: 8rem;
  }
}
@media screen and (min-width: 768px) {
    #custom-swiper-wrapper {
        width: 50%;
        flex-basis: 50% !important;
    }
    body.awt-bab-open footer > div > div {
      font-size: 14px;
    }
}
  .bundle-lazy-image-container {
    width: 100%;
    border-radius: 0px !important;
}
  }
  .lazy-container {
  border-radius: 0px !important;
  }
.bundle-container {
  padding-top: 2vw;
}
body.awt-bab-open .bundleapp-modal__container--complete-screen--header-container > div.bundleapp-modal__logo {
    margin-top: 10px;
}

body.awt-bab-open div.bundle-container > footer::before {
  content: "FREE SHIPPING ON ORDERS $150+";
  position: absolute;
  bottom: 64px; 
  left: 0;
  font-family: Shape;
  font-size: 14px;
  font-weight: 600;
  width: 100%;
  text-align: center;
  z-index: 9;
  padding: 5px 10px;
  background-color: #6a8f87;
  color: white;
  display: none;
} 

/* FREE SHIPPING BAR ON BOTTOM 
body.awt-bab-open div.bundle-container > footer::before {
  content: "FREE SHIPPING ON ORDERS $150+";
  position: fixed;
  bottom: 0;
  left: 0;
  font-family: Shape;
  font-size: 14px;
  font-weight: 600;
  width: 100%;
  text-align: center;
  z-index: 9;
  padding: 5px 10px;
  background-color: #6a8f87;
  color: white;
}*/
/* body.awt-bab-open div.bundle-container > footer > div {
    min-height: 30px;
} */
body.awt-bab-open #modal-title, body.awt-bab-open button.bundle-button, body.awt-bab-open label, body.awt-bab-open span.bundle-text--subheading {
    text-transform: uppercase;
    font-size: 12px;
}
body.awt-bab-open footer > div > div {
    font-size: 14px;
    gap: 1em;
    justify-content: center;
    align-items: center;
}
.bundle-button.button--primary {
    padding: 5px 14px 5px 14px;
}
.bundleapp-modal__container--complete-screen header {
    padding-top: 1rem !important;
    height: 60px;
    padding-bottom: 0px !important;
}
body.awt-bab-open nav.bundle-section__nav {
    padding-top: 0px;
    padding-bottom: 10px;
}
.css-4iuxlz {
    font-weight: 600;
    font-size: 14px;
    font-family: Shape;
    line-height: 20px;
    text-align: center;
    margin: 0 auto;
    color: black;
/*    background: #6a8f87;
    color: white;
    margin-left: 0px;
    margin-right: 0px;
    max-width: 100%;
    box-sizing: border-box;
    padding: 5px 10px;
    margin-top: 10px;
    margin-left: 10vw;
    margin-right: 10vw;
*/
}
.css-uh1jar {
    font-family: Shape;
    font-weight: 600;
}
.css-18kwzva {
    font-family: Shape;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 8px;
    margin-top: 8px;
}
.jcRPHV {
    font-size: 28px !important;
}
.gJRBQM {
  padding: 0px
}
.text-4xl {
    line-height: 1.5rem !important;
}
.text-base {
    font-size: 1.25rem;
}
.product-gallery .swiper-arrow {
    width: 3em;
}
/* PORTAL STYLING */
.button {
  border-radius: 0px !important;
}
#bundle-app {
    padding-left: 10px;
    padding-right: 10px;
}
/* DYNAMIC FREE SHIPPING BAR STYLING */
.bundle-text--strikethrough {
  display: none;
}

#dynamic_free_shipping {
  position: absolute;
  bottom: 62px;
  left: 0;
  font-family: Shape;
  z-index: 0;
  align-items: center;
  justify-content: center;
  display: flex;
  background: #D9D9D9;
  padding: 5px;
}

#dynamic_free_shipping {
  width: 100%;
}

#dynamic_free_shipping::before { 
  width: var(--pseudo-width);
  height: 100%;
  background: #E7BA45;
  z-index: -1;
  position: absolute;
  left: 0;
  content: '';
  transition: width .825s cubic-bezier(0.075, 0.82, 0.165, 1);
}

span.bundle-text--emphasis {
  font-family: Shape;
  font-size: 20px;
}

.kQlEuR {
  min-height: 65px;
}

@media screen and (max-width: 600px) {
  body.awt-bab-open footer > div > div {
    font-size: 12px;
  }
  span.bundle-text--emphasis {
    font-size: 16px;
  }
}

#free_shipping_label {
  min-height: 20px;
  display: flex;
  align-items: end;
  font-size: 12px;
}

.css-qdde6k {
  padding: 0;
  min-width: 50px;
}
@media only screen and (max-width: 400px) {
    .awtomatic-progress-container {
        margin-left: -5px;
        padding-bottom: 10px;
    }
}
.css-6dldyo {
    height: 25px;
}

[class*="43042588557450"] .body-row__price,
[class*="43042588557450"] .awtomatic-line-edit-button,
[class*="43042588557450"] .body-row__total,
[class*="43042588557450"] .body-row__quantity,

[class*="43042588983434"] .body-row__price,
[class*="43042588983434"] .awtomatic-line-edit-button,
[class*="43042588983434"] .body-row__total,
[class*="43042588983434"] .body-row__quantity,

[class*="45434587545738"] .body-row__price,
[class*="45434587545738"] .awtomatic-line-edit-button,
[class*="45434587545738"] .body-row__total,
[class*="45434587545738"] .body-row__quantity,

[class*="41596932227210"] .body-row__price,
[class*="41596932227210"] .awtomatic-line-edit-button,
[class*="41596932227210"] .body-row__total,
[class*="41596932227210"] .body-row__quantity {
  display: none;
}

[class*="43042588557450"] .body-row__product-detail,
[class*="43042588983434"] .body-row__product-detail,
[class*="45434587545738"] .body-row__product-detail,
[class*="41596932227210"] .body-row__product-detail {
  pointer-events: none;
}

.awt-frequency-container button {
  color: white;
}