/* Global Styles
--------------------------------------------- */
.woocommerce .entry,
.woocommerce-page .entry {
  max-width: none !important;
}

/* Buttons
--------------------------------------------- */
.woocommerce a.button,
.woocommerce a.button.alt,
.woocommerce button.button,
.woocommerce button.button.alt,
.woocommerce input.button,
.woocommerce input.button.alt,
.woocommerce input.button[type=submit],
.woocommerce #respond input#submit,
.woocommerce #respond input#submit.alt {
  background-color: #3abb75;
  border: 0;
  border-radius: 6px;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1;
  padding: 1.16em 1.5em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: color var(--time) linear, background-color var(--time) linear;
  white-space: normal;
  width: auto;
}
.woocommerce a.button:focus, .woocommerce a.button:hover,
.woocommerce a.button.alt:focus,
.woocommerce a.button.alt:hover,
.woocommerce button.button:focus,
.woocommerce button.button:hover,
.woocommerce button.button.alt:focus,
.woocommerce button.button.alt:hover,
.woocommerce input.button:focus,
.woocommerce input.button:hover,
.woocommerce input.button.alt:focus,
.woocommerce input.button.alt:hover,
.woocommerce input.button[type=submit]:focus,
.woocommerce input.button[type=submit]:hover,
.woocommerce #respond input#submit:focus,
.woocommerce #respond input#submit:hover,
.woocommerce #respond input#submit.alt:focus,
.woocommerce #respond input#submit.alt:hover {
  background-color: #2e945d;
  color: #ffffff;
}

/* Disabled Buttons */
.woocommerce a.button.disabled,
.woocommerce a.button:disabled,
.woocommerce a.button:disabled[disabled],
.woocommerce button.button.disabled,
.woocommerce button.button:disabled,
.woocommerce button.button:disabled[disabled],
.woocommerce input.button.disabled,
.woocommerce input.button:disabled,
.woocommerce input.button:disabled[disabled],
.woocommerce #respond input#submit.disabled,
.woocommerce #respond input#submit:disabled,
.woocommerce #respond input#submit:disabled[disabled] {
  background-color: #fff;
  border: 1px solid #e1e1e1;
  color: #383838;
  padding: 13px 30px;
}

.woocommerce a.button.alt.disabled,
.woocommerce a.button.alt.disabled:hover,
.woocommerce a.button.alt:disabled,
.woocommerce a.button.alt:disabled:hover,
.woocommerce a.button.alt[disabled]:disabled,
.woocommerce a.button.alt[disabled]:disabled:hover,
.woocommerce button.button.alt.disabled,
.woocommerce button.button.alt.disabled:hover,
.woocommerce button.button.alt:disabled,
.woocommerce button.button.alt:disabled:hover,
.woocommerce button.button.alt[disabled]:disabled,
.woocommerce button.button.alt[disabled]:disabled:hover,
.woocommerce input.button.alt.disabled,
.woocommerce input.button.alt.disabled:hover,
.woocommerce input.button.alt:disabled,
.woocommerce input.button.alt:disabled:hover,
.woocommerce input.button.alt[disabled]:disabled,
.woocommerce input.button.alt[disabled]:disabled:hover,
.woocommerce #respond input#submit.alt.disabled,
.woocommerce #respond input#submit.alt.disabled:hover,
.woocommerce #respond input#submit.alt:disabled,
.woocommerce #respond input#submit.alt:disabled:hover,
.woocommerce #respond input#submit.alt[disabled]:disabled,
.woocommerce #respond input#submit.alt[disabled]:disabled:hover {
  background-color: #fff;
  border: 1px solid #e1e1e1;
  color: #383838;
}

/* Quantity
--------------------------------------------- */
.woocommerce form div.quantity .label {
  display: block;
  margin-bottom: 5px;
}
.woocommerce form div.quantity .qty {
  font-size: 22px;
  font-weight: 800;
  width: 64px;
}
.woocommerce form div.quantity .qty::-webkit-outer-spin-button,
.woocommerce form div.quantity .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: textfield;
}

/* Buy Options
--------------------------------------------- */
.buy-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 5px;
  /* Variant: Collapsible */
  /* Variant: Autoship */
}
@media all and (min-width: 1024px) {
  .buy-options {
    grid-gap: 10px;
  }
}
.buy-options__headline {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
}
.buy-options__item {
  background-color: #f0f0f0;
  flex-direction: column;
  gap: 3px;
  padding: 11px 0;
  transition: background-color var(--time) linear, border-color var(--time) linear, box-shadow var(--time) linear;
}
.buy-options__item:hover {
  background-color: #f0f0f0;
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px #43454b, 0 0 transparent;
}
.buy-options__item[aria-pressed=true] {
  background-color: #43454b;
}
.buy-options__item[aria-pressed=true] .buy-options__title {
  color: #38bb76;
}
.buy-options__item[aria-pressed=true] .buy-options__text {
  color: rgba(255, 255, 255, 0.8);
}
.buy-options__text {
  color: #66676c;
  display: block;
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
}
.buy-options__title {
  color: #43454b;
  display: block;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}
@media all and (min-width: 1280px) {
  .buy-options__title {
    font-size: 22px;
  }
}
.buy-options__title small {
  text-transform: lowercase;
}
.buy-options[aria-expanded=false] {
  display: none;
}
.buy-options[aria-expanded=true] {
  display: grid;
}
.buy-options--autoship-frequency {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.buy-options--autoship-schedule {
  margin-top: 10px;
}

/* Shipment Options
--------------------------------------------- */
.shipment-options {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-gap: 30px;
}
@media all and (min-width: 1024px) {
  .shipment-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.shipment-option {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.shipment-option__header {
  background-color: #ff9026;
  color: #ffffff;
  padding: 35px;
  text-align: center;
}
.shipment-option__header h3 {
  color: #ffffff;
  text-transform: uppercase;
}
.shipment-option__icon {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 128px;
  margin-top: 15px;
}
.shipment-option__content {
  padding: 30px;
}
.shipment-option__content:nth-child(even) .shipment-option__headline h4 span {
  color: #ff9026;
}
.shipment-option__content:nth-child(odd) {
  background-color: #f8f8f8;
  height: 100%;
}
.shipment-option__headline {
  border-bottom: 2px solid #383838;
  margin-bottom: 24px;
  padding-bottom: 14px;
  text-align: center;
}
.shipment-option__headline h4 {
  font-size: 1.25rem;
}
.shipment-option__headline h4 span {
  text-transform: uppercase;
}
.shipment-option ul {
  padding-left: 15px;
}
.shipment-option ul li {
  list-style: disc;
}
.shipment-option ol {
  padding-left: 15px;
}
.shipment-option ol li {
  list-style: decimal;
}

/* Product Total
--------------------------------------------- */
.product-total {
  margin-bottom: 20px;
}
.product-total__headline {
  font-weight: 800;
}
.product-total__price {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1;
}
.product-total__savings {
  color: #ff9026;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1;
  margin-top: 10px;
  text-transform: uppercase;
}

/* Store Hub
--------------------------------------------- */
.woocommerce-shop .content-sidebar-wrap {
  margin-inline: auto;
  max-width: 1536px;
  position: relative;
}
.woocommerce-shop .shop-hero {
  border-radius: 10px;
  overflow: hidden;
  padding-block: 40px;
  text-align: center;
}
@media all and (min-width: 768px) {
  .woocommerce-shop .shop-hero {
    padding: 70px 30px;
    text-align: left;
  }
}
.woocommerce-shop .shop-hero .hero__content {
  max-width: 540px;
}
.woocommerce-shop .shop-hero .hero__title {
  font-size: 1.75rem;
  text-shadow: 0 2px 54px #000000, 0 2px 54px #000000, 0 2px 24px #000000;
}
@media all and (min-width: 768px) {
  .woocommerce-shop .shop-hero .hero__title {
    font-size: 2.5rem;
  }
}
.woocommerce-shop .shop-hero p {
  font-size: 1rem;
  text-shadow: 0 2px 54px #000000, 0 2px 54px #000000, 0 2px 24px #000000;
}
.woocommerce-shop .shop-region {
  --flow-space: 50px;
}

/* Shop Archive
--------------------------------------------- */
.woocommerce-page.archive .site-inner {
  background-color: #f8f8f8;
  max-width: none;
  padding-inline: 0;
  position: relative;
}
.woocommerce-page.archive .content-sidebar-wrap {
  margin-inline: auto;
  max-width: 1536px;
  position: relative;
}
@media all and (min-width: 1280px) {
  .woocommerce-page.archive .content-sidebar-wrap {
    display: flex;
  }
}
.woocommerce-page.archive .store-sidebar {
  background-color: #034679;
  display: none;
  position: relative;
}
@media all and (min-width: 1280px) {
  .woocommerce-page.archive .store-sidebar {
    display: block;
    flex: 0 0 280px;
  }
}
.woocommerce-page.archive .store-sidebar__bg {
  align-self: flex-end;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 0;
}
.woocommerce-page.archive .store-sidebar__store-hub-link {
  background-color: #034679;
  border-bottom: 2px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.125rem;
  font-weight: 800;
  padding: 15px 30px;
  text-transform: uppercase;
}
.woocommerce-page.archive .store-sidebar__store-hub-link:hover {
  background-color: #a5cbef;
  color: #034679;
}
.woocommerce-page.archive .nav-store {
  position: relative;
  z-index: 1;
}
@media all and (min-width: 1280px) {
  .woocommerce-page.archive .nav-store {
    position: relative;
  }
  .woocommerce-page.archive .nav-store .genesis-nav-menu .menu-item {
    background: #fff;
    display: block;
  }
  .woocommerce-page.archive .nav-store .genesis-nav-menu .menu-item a {
    background-color: #034679;
    color: #ffffff;
    font-size: 16px;
    line-height: 26px;
    padding: 15px 30px;
  }
  .woocommerce-page.archive .nav-store .genesis-nav-menu .menu-item a:hover {
    background-color: #a5cbef;
    color: #034679;
  }
  .woocommerce-page.archive .nav-store .genesis-nav-menu .menu-item .sub-menu {
    padding: 8px 0;
  }
  .woocommerce-page.archive .nav-store .genesis-nav-menu .menu-item .sub-menu .menu-item {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .woocommerce-page.archive .nav-store .genesis-nav-menu .menu-item .sub-menu .menu-item a {
    background-color: #ffffff;
    color: #383838;
    font-size: 16px;
    line-height: 18px;
    padding-top: 2px;
    padding-bottom: 2px;
  }
  .woocommerce-page.archive .nav-store .genesis-nav-menu .menu-item .sub-menu .menu-item a:hover {
    color: #034679;
  }
  .woocommerce-page.archive .nav-store .genesis-nav-menu .menu-item .sub-menu .sub-menu {
    padding: 0;
  }
  .woocommerce-page.archive .nav-store .genesis-nav-menu .menu-item .sub-menu .sub-menu .menu-item {
    padding: 0;
  }
  .woocommerce-page.archive .nav-store .genesis-nav-menu .menu-item .sub-menu .sub-menu .menu-item a {
    background-color: #ffffff;
    color: rgba(56, 56, 56, 0.6);
    font-size: 14px;
    line-height: 25px;
    padding-top: 0;
    padding-bottom: 0;
  }
  .woocommerce-page.archive .nav-store .genesis-nav-menu .menu-item .sub-menu .sub-menu .menu-item a:hover {
    color: rgba(56, 56, 56, 0.8);
  }
  .woocommerce-page.archive .nav-store .genesis-nav-menu > .menu-item:hover > a,
.woocommerce-page.archive .nav-store .genesis-nav-menu > .current-menu-item > a,
.woocommerce-page.archive .nav-store .genesis-nav-menu > .current-menu-parent > a {
    background-color: #a5cbef;
    color: #034679;
  }
  .woocommerce-page.archive .nav-store .genesis-nav-menu > .menu-item:hover .sub-menu,
.woocommerce-page.archive .nav-store .genesis-nav-menu > .current-menu-item .sub-menu,
.woocommerce-page.archive .nav-store .genesis-nav-menu > .current-menu-parent .sub-menu {
    display: block;
  }
}
.woocommerce-page.archive .content {
  max-width: none;
  padding: 15px;
}
@media all and (min-width: 1280px) {
  .woocommerce-page.archive .content {
    padding: 30px;
  }
}
.woocommerce-page.archive .archive-description {
  background-image: url(../images/bg-store-header.jpg);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #ffffff;
  border-radius: 10px;
  margin-bottom: 45px;
  padding: 40px 15px;
}
@media all and (min-width: 768px) {
  .woocommerce-page.archive .archive-description {
    padding: 70px 45px;
  }
}
.woocommerce-page.archive .archive-description .archive-title {
  color: #fff;
  font-size: 1.75rem;
  text-transform: uppercase;
}
@media all and (min-width: 768px) {
  .woocommerce-page.archive .archive-description .archive-title {
    font-size: 2.5rem;
  }
}
.woocommerce-page.archive .archive-description > * {
  max-width: 540px;
}
.woocommerce-page.archive .archive-description p {
  font-size: 1rem;
  margin-top: 1em;
  max-height: 80px;
  overflow: hidden;
}
.woocommerce-page.archive .archive-description p:last-child {
  margin-bottom: 0;
}
.woocommerce-page.archive .shop-results-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.woocommerce-page.archive .shop-results-wrap .woocommerce-result-count {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.125;
  text-transform: uppercase;
}
@media all and (min-width: 768px) {
  .woocommerce-page.archive .shop-results-wrap .woocommerce-result-count {
    font-size: 1.75rem;
  }
}
.woocommerce-page.archive .shop-results-wrap .woocommerce-ordering {
  text-align: right;
}
.woocommerce-page.archive .shop-results-wrap .woocommerce-ordering select {
  background-color: #f8f8f8;
  border-color: #383838;
  border-radius: 5px;
  color: #383838;
}
.woocommerce-page.archive .woocommerce-pagination {
  font-size: 0.75rem;
  padding-top: 40px;
  text-align: center;
}
.woocommerce-page.archive .woocommerce-pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.woocommerce-page.archive .woocommerce-pagination ul li:not(:last-child) {
  margin-right: 5px;
}
@media all and (min-width: 1024px) {
  .woocommerce-page.archive .woocommerce-pagination ul li:not(:last-child) {
    margin-right: 10px;
  }
}
.woocommerce-page.archive .woocommerce-pagination ul .page-numbers {
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  color: #383838;
  display: inline-block;
  font-size: 0.875rem;
  min-width: 28px;
  padding: 3px 5px;
}
@media all and (min-width: 1024px) {
  .woocommerce-page.archive .woocommerce-pagination ul .page-numbers {
    min-width: 36px;
    padding: 6px 10px;
  }
}
.woocommerce-page.archive .woocommerce-pagination ul .page-numbers.current, .woocommerce-page.archive .woocommerce-pagination ul .page-numbers:hover, .woocommerce-page.archive .woocommerce-pagination ul .page-numbers:focus {
  background-color: #034679;
  border-color: #034679;
  color: #fff;
}

/* Single Product
--------------------------------------------- */
.single-product .breadcrumb {
  text-align: left;
}
.single-product div.product .product-summary-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.single-product div.product div.images {
  width: 100%;
}
@media all and (min-width: 1024px) {
  .single-product div.product div.images {
    width: 48%;
  }
}
.single-product div.product div.images .flex-control-thumbs img {
  max-width: 80px;
}
.single-product div.product div.summary {
  width: 100%;
}
@media all and (min-width: 1024px) {
  .single-product div.product div.summary {
    width: 48%;
  }
}
@media all and (min-width: 1280px) {
  .single-product div.product div.summary {
    padding-left: 20px;
  }
}
.single-product div.product .woocommerce-product-rating {
  color: #ff9226;
  margin-bottom: 5px;
}
.single-product div.product .woocommerce-product-rating a {
  color: #ff9226;
  text-decoration: underline;
}
.single-product div.product .product_title {
  font-size: 30px;
  text-transform: uppercase;
}
@media all and (min-width: 1024px) {
  .single-product div.product .product_title {
    font-size: 40px;
  }
}
.single-product div.product p.price {
  display: none;
}
.single-product div.product .woocommerce-product-details__short-description {
  margin-bottom: 20px;
}
.single-product div.product form.cart div.quantity {
  float: none;
  margin-bottom: 20px;
}
.single-product div.product form.cart .single_add_to_cart_button {
  font-size: 1.125rem;
  padding: 21px;
  width: 100%;
}
.single-product div.product .wc-tabs-wrapper {
  padding-block: 40px;
}
@media all and (min-width: 1024px) {
  .single-product div.product .wc-tabs-wrapper {
    padding-block: 70px;
  }
}
.single-product div.product .wc-tabs-wrapper ul.wc-tabs {
  margin: 0;
  padding: 0;
}
.single-product div.product .wc-tabs-wrapper ul.wc-tabs::before {
  border-bottom: 3px solid #034679;
}
.single-product div.product .wc-tabs-wrapper ul.wc-tabs li {
  background-color: #fff;
  border: 0;
  margin: 0;
}
.single-product div.product .wc-tabs-wrapper ul.wc-tabs li::before, .single-product div.product .wc-tabs-wrapper ul.wc-tabs li::after {
  display: none;
}
.single-product div.product .wc-tabs-wrapper ul.wc-tabs li:focus, .single-product div.product .wc-tabs-wrapper ul.wc-tabs li:hover, .single-product div.product .wc-tabs-wrapper ul.wc-tabs li.active {
  background-color: #034679;
  color: #fff;
}
.single-product div.product .wc-tabs-wrapper ul.wc-tabs li:focus a, .single-product div.product .wc-tabs-wrapper ul.wc-tabs li:hover a, .single-product div.product .wc-tabs-wrapper ul.wc-tabs li.active a {
  color: #ffffff;
}
.single-product div.product .wc-tabs-wrapper ul.wc-tabs li a {
  font-size: 0.875rem;
  font-weight: 800;
}
@media all and (min-width: 1024px) {
  .single-product div.product .wc-tabs-wrapper ul.wc-tabs li a {
    font-size: 1rem;
  }
}
.single-product div.product .wc-tabs-wrapper .woocommerce-Tabs-panel {
  margin-top: 30px;
  margin-bottom: 0;
  /* Variant: Product Reviews */
}
@media all and (min-width: 1024px) {
  .single-product div.product .wc-tabs-wrapper .woocommerce-Tabs-panel--reviews .woocommerce-Reviews {
    display: flex;
    gap: 30px;
  }
}
@media all and (min-width: 1024px) {
  .single-product div.product .wc-tabs-wrapper .woocommerce-Tabs-panel--reviews #comments {
    flex: 0 0 60%;
    width: 60%;
  }
}
.single-product div.product .wc-tabs-wrapper .woocommerce-Tabs-panel--reviews #comments .comment-text {
  margin-left: 0 !important;
}
.single-product div.product .wc-tabs-wrapper .woocommerce-Tabs-panel--reviews #comments .star-rating {
  color: #ff9226;
}
.single-product div.product .wc-tabs-wrapper .woocommerce-Tabs-panel--reviews #review_form_wrapper {
  padding-top: 25px;
}
@media all and (min-width: 1024px) {
  .single-product div.product .wc-tabs-wrapper .woocommerce-Tabs-panel--reviews #review_form_wrapper {
    flex: 0 0 40%;
    width: 40%;
    padding-top: 50px;
  }
}
@media all and (min-width: 1024px) {
  .single-product div.product .wc-tabs-wrapper .woocommerce-Tabs-panel--reviews #review_form_wrapper #review_form {
    position: sticky;
    top: 30px;
  }
}
.single-product div.product .wc-tabs-wrapper .woocommerce-Tabs-panel--reviews #review_form_wrapper .comment-reply-title {
  font-weight: 800;
}
.single-product div.product .wc-tabs-wrapper .woocommerce-Tabs-panel--reviews #review_form_wrapper .stars a {
  color: #ff9226;
}
.single-product .related {
  background: url("../images/bg-related-products.jpg") no-repeat center/cover #f8f8f8;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
  overflow: hidden;
  padding-block: 40px;
}
@media all and (min-width: 1024px) {
  .single-product .related {
    padding-block: 70px;
  }
}
.single-product .related > h2 {
  margin-bottom: 25px;
  text-align: center;
  text-transform: uppercase;
}
.single-product .related ul.products {
  max-width: var(--wrapper-base);
  margin-inline: auto;
  padding-inline: 15px;
}
.single-product .related .affirm-as-low-as {
  display: none;
}

/* Variations
--------------------------------------------- */
.variations-buy-options-wrapper {
  margin-bottom: 20px;
}

table.variations {
  display: none;
}

.woocommerce-variation-price {
  display: none;
}

.wc-points-rewards-product-message {
  display: none;
}

/* Product Data
--------------------------------------------- */
.product-subtitle {
  font-size: 20px;
  line-height: 28px;
  text-transform: uppercase;
}
@media all and (min-width: 1024px) {
  .product-subtitle {
    font-size: 28px;
    line-height: 34px;
  }
}

.product-tagline {
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
@media all and (min-width: 1024px) {
  .product-tagline {
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 10px;
  }
}

/* Shipping Info
--------------------------------------------- */
.product-shipping-info {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
}
@media all and (min-width: 1024px) {
  .product-shipping-info {
    gap: 30px;
  }
}
.product-shipping-info li {
  display: flex;
  align-items: center;
  gap: 4px;
}
.product-shipping-info li:first-child {
  max-width: 140px;
}
.product-shipping-info li img {
  width: 30px;
}
.product-shipping-info li span {
  color: #3abb75;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

/* Product Popups
--------------------------------------------- */
.product-popups {
  display: flex;
  margin-bottom: 15px;
}
.product-popups li:not(:last-child) {
  margin-right: 10px;
}
.product-popups a {
  border: 2px solid #034679;
  border-radius: 5px;
  display: block;
  font-size: 16px;
  font-weight: 800;
  line-height: 19px;
  padding: 0 8px;
  text-align: center;
  text-transform: uppercase;
}
.product-popups li:first-child a {
  border-color: #3abb75;
  color: #3abb75;
}

.shipping-guide {
  display: none;
}
.shipping-guide__table {
  border-radius: 20px;
  box-shadow: 0 12px 54px rgba(0, 0, 0, 0.06);
  margin-bottom: 0;
  table-layout: fixed;
}
.shipping-guide__table thead tr {
  border: 0;
}
.shipping-guide__table thead th {
  background-color: #034679;
  border-right: 1px solid #ffffff;
  color: #ffffff;
  font-size: 26px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}
.shipping-guide__table thead th:first-child {
  border-top-left-radius: 20px;
}
.shipping-guide__table thead th:last-child {
  background-color: #3abb75;
  border-top-right-radius: 20px;
  border-right: 0;
}
.shipping-guide__table tbody td {
  border: 2px solid #f0f0f0;
  padding: 20px;
  text-align: center;
  vertical-align: middle;
}
.shipping-guide__table tbody td .title {
  display: block;
  font-size: 13px;
  line-height: 18px;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.shipping-guide__table tbody td .desc {
  display: block;
  font-size: 16px;
  font-weight: 800;
  line-height: 18px;
}
.shipping-guide__table tbody td .desc.price {
  color: #3abb75;
}

.sizing-guide {
  border-radius: 20px;
  box-shadow: 0 42px 60px rgba(0, 0, 0, 0.1), 0 14px 44px rgba(0, 0, 0, 0.12);
  display: none;
  text-align: center;
}
.sizing-guide__header {
  background-color: #034679;
  border-radius: 20px 20px 0 0;
  color: #ffffff;
  font-size: 38px;
  font-weight: 800;
  line-height: 50px;
  padding: 40px 0;
  text-transform: uppercase;
}
.sizing-guide__table {
  margin-bottom: 0;
  table-layout: fixed;
  text-align: center;
}
.sizing-guide__table thead th {
  background-color: #034679;
  border: 4px solid #ffffff;
  color: #ffffff;
  font-size: 26px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}
.sizing-guide__table thead th:first-child {
  border-left: 0;
}
.sizing-guide__table thead th:last-child {
  border-right: 0;
}
.sizing-guide__table tbody tr {
  border: 0;
}
.sizing-guide__table tbody tr:nth-child(even) {
  background-color: #f8f8f8;
}
.sizing-guide__table tbody tr td {
  text-align: center;
  vertical-align: middle;
}
.sizing-guide__table tbody tr td .title {
  display: block;
  font-size: 26px;
  font-weight: 800;
  line-height: 32px;
  text-transform: uppercase;
}
.sizing-guide__table tbody tr td .title.recommendation {
  color: #ff9026;
}
.sizing-guide__table tbody tr td .desc {
  color: rgba(56, 56, 56, 0.8);
  display: block;
  font-size: 16px;
  line-height: 26px;
  text-transform: uppercase;
}

/* WooCommerce Cart
--------------------------------------------- */
@media all and (min-width: 1024px) {
  .woocommerce-cart .cart-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
  }
}
@media all and (min-width: 1024px) {
  .woocommerce-cart .woocommerce-cart-form {
    padding-top: 10px;
    width: calc(58.333333% - 20px);
  }
}
.woocommerce-cart table.shop_table {
  border: none !important;
  border-collapse: collapse !important;
  font-size: 1rem;
  font-weight: 400 !important;
}
.woocommerce-cart table.shop_table thead {
  border-bottom: 1px solid #e1e1e1;
  display: table-header-group !important;
}
.woocommerce-cart table.shop_table thead tr {
  border: 0 !important;
  display: table-row !important;
}
.woocommerce-cart table.shop_table thead th {
  font-size: 1rem;
  padding: 12px 0 !important;
}
.woocommerce-cart table.shop_table tbody tr {
  display: table-row !important;
}
.woocommerce-cart table.shop_table tbody th {
  display: table-cell !important;
  font-weight: 400;
  padding: 10px 0;
}
.woocommerce-cart table.shop_table tbody td {
  display: table-cell !important;
  padding: 10px 0;
  text-align: left !important;
  vertical-align: top;
}
.woocommerce-cart table.shop_table tbody td > *:last-child {
  margin-bottom: 0;
}
.woocommerce-cart table.shop_table tbody td::before {
  display: none;
}
.woocommerce-cart table.shop_table .product-thumbnail {
  display: table-cell !important;
  width: 55px;
}
@media all and (min-width: 768px) {
  .woocommerce-cart table.shop_table .product-thumbnail {
    width: 80px;
  }
}
.woocommerce-cart table.shop_table .product-thumbnail img {
  width: 100%;
}
.woocommerce-cart table.shop_table .product-name {
  padding-left: 10px !important;
  word-break: normal;
}
.woocommerce-cart table.shop_table .product-name > a {
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 700;
}
.woocommerce-cart table.shop_table .product-name .variation {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  font-size: 0.875rem;
  line-height: 1.25;
}
.woocommerce-cart table.shop_table .product-name .variation dt {
  display: none;
}
.woocommerce-cart table.shop_table .product-name .variation dd:not(:first-of-type) {
  border-left: 1px solid #eaeaea;
  padding-left: 5px;
}
.woocommerce-cart table.shop_table .product-name .variation dd > *:last-child {
  margin-bottom: 0;
}
.woocommerce-cart table.shop_table thead .product-name {
  position: relative;
  left: -70px;
}
@media all and (min-width: 768px) {
  .woocommerce-cart table.shop_table thead .product-name {
    left: -95px;
  }
}
.woocommerce-cart table.shop_table .product-price,
.woocommerce-cart table.shop_table .product-subtotal {
  display: none !important;
}
@media all and (min-width: 768px) {
  .woocommerce-cart table.shop_table .product-price,
.woocommerce-cart table.shop_table .product-subtotal {
    display: table-cell !important;
  }
}
.woocommerce-cart table.shop_table .product-quantity {
  text-align: right !important;
}
@media all and (min-width: 768px) {
  .woocommerce-cart table.shop_table .product-quantity {
    text-align: left !important;
  }
}
.woocommerce-cart table.shop_table .product-quantity .qty {
  font-size: 1rem;
  width: 54px;
}
.woocommerce-cart table.shop_table td.actions {
  background-color: #fff !important;
  padding-top: 15px;
}
.woocommerce-cart table.shop_table td.actions input[type=text] {
  border: 1px solid #d1d5db !important;
  padding: 9px !important;
}
@media all and (min-width: 768px) {
  .woocommerce-cart table.shop_table td.actions input[type=text] {
    width: 225px !important;
  }
}
.woocommerce-cart table.shop_table td.actions .button {
  font-size: 1rem;
  padding: 10px 20px !important;
}
.woocommerce-cart table.shop_table td.actions .button[name=update_cart] {
  float: right;
}
.woocommerce-cart .cart-collaterals {
  background-color: #f9f9f9;
  border-radius: 5px;
  padding: 30px;
}
@media all and (min-width: 1024px) {
  .woocommerce-cart .cart-collaterals {
    width: calc(41.666667% - 20px);
  }
}
.woocommerce-cart .cart-collaterals .cart_totals {
  width: 100%;
}
.woocommerce-cart .cart-collaterals .cart_totals h2 {
  font-size: 1.25rem;
  padding-bottom: 12px;
  text-transform: capitalize;
}
.woocommerce-cart .cart-collaterals .cart_totals .shop_table tbody {
  border: 0;
}
.woocommerce-cart .cart-collaterals .cart_totals .shop_table tbody th,
.woocommerce-cart .cart-collaterals .cart_totals .shop_table tbody td {
  border: 0;
}
.woocommerce-cart .cart-collaterals .cart_totals .shop_table tbody tr {
  border-top: 0;
  border-bottom: 1px solid #d1d5db;
}
.woocommerce-cart .cart-collaterals .cart_totals .shop_table .shipping-calculator-button::after {
  display: none;
}
.woocommerce-cart .cart-collaterals .cart_totals .shop_table .order-total {
  border-bottom: none;
  font-size: 1.125rem;
  font-weight: 700;
}
.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout {
  padding-bottom: 0;
}
.woocommerce-cart .cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button {
  width: 100%;
}
.woocommerce-cart .cart-collaterals .cart_totals .wcppec-checkout-buttons {
  margin: 0;
}

/* WooCommerce Account
--------------------------------------------- */
.woocommerce-account .button,
.woocommerce-account .btn {
  font-size: 1rem;
}
.woocommerce-account .site-inner {
  background-color: #f8f8f8;
  max-width: none;
  padding-inline: 0;
  position: relative;
}
.woocommerce-account .entry {
  padding-block: 0 !important;
}
.woocommerce-account .woocommerce {
  margin-inline: auto;
  max-width: 1536px;
  position: relative;
  padding: 30px 15px;
}
@media all and (min-width: 1024px) {
  .woocommerce-account .woocommerce {
    display: flex;
    justify-content: center;
    padding: 0;
  }
}
.woocommerce-account:not(.logged-in) .woocommerce {
  padding: 30px 15px;
}
@media all and (min-width: 1280px) {
  .woocommerce-account:not(.logged-in) .woocommerce {
    flex-direction: column;
    padding: 30px;
  }
}

.woocommerce-account .woocommerce-message:not(.woocommerce-message--info) {
  background-color: #f0fdf4;
  border: 0;
  border-radius: 16px;
  color: #166534;
  font-weight: 700;
  margin: 0 auto;
  max-width: 640px;
  width: 100%;
}
.woocommerce-account .woocommerce-message:not(.woocommerce-message--info)::before {
  color: #166534;
}
.woocommerce-account .nav-myaccount-toggle {
  background-color: #fff;
  color: #383838;
  display: flex;
  justify-content: space-between;
  margin-inline: auto;
  width: 100%;
}
.woocommerce-account .nav-myaccount-toggle:hover, .woocommerce-account .nav-myaccount-toggle:focus {
  background-color: #fff;
  color: #383838;
}
.woocommerce-account .nav-myaccount-toggle svg {
  font-size: 24px;
}
@media all and (min-width: 1024px) {
  .woocommerce-account .nav-myaccount-toggle {
    display: none;
  }
}
.woocommerce-account .woocommerce-MyAccount-navigation {
  background: #034679;
  display: none;
  float: none;
  width: 100%;
}
@media all and (min-width: 1024px) {
  .woocommerce-account .woocommerce-MyAccount-navigation {
    display: block;
    flex: 0 0 220px;
  }
}
@media all and (min-width: 1280px) {
  .woocommerce-account .woocommerce-MyAccount-navigation {
    background: url(../images/bg-store-nav.png) no-repeat bottom center/contain #034679;
    flex: 0 0 280px;
  }
}
.woocommerce-account .woocommerce-MyAccount-navigation-link a {
  background-color: #034679;
  color: #ffffff;
  display: block;
  font-size: 16px;
  font-weight: 800;
  line-height: 26px;
  padding: 15px 30px;
  text-transform: uppercase;
}
.woocommerce-account .woocommerce-MyAccount-navigation-link a:hover {
  background-color: #a5cbef;
  color: #034679;
}
.woocommerce-account .woocommerce-MyAccount-navigation-link--dashboard a {
  background-color: #0765ad;
  font-size: 20px;
  padding: 21px 30px;
}
.woocommerce-account .woocommerce-MyAccount-navigation-link--customer-logout a {
  color: #a5cbef;
}
.woocommerce-account .woocommerce-MyAccount-navigation-link.is-active a {
  background-color: #a5cbef;
  color: #034679;
}
.woocommerce-account .woocommerce-MyAccount-content {
  float: none;
  margin-top: 30px;
  width: auto;
}
@media all and (min-width: 1024px) {
  .woocommerce-account .woocommerce-MyAccount-content {
    flex: 1;
    margin-top: 0;
    padding: 30px;
  }
}
@media all and (min-width: 1280px) {
  .woocommerce-account .woocommerce-MyAccount-content {
    min-height: 1100px;
  }
}

/* WooCommerce Account - Login
--------------------------------------------- */
.woocommerce-account .customer-login {
  margin: 0 auto;
  max-width: 640px;
  width: 100%;
}
.woocommerce-account .customer-login h2 {
  text-align: center;
}
.woocommerce-account .customer-login form {
  background-color: #fff;
  border: 0;
  border-radius: 16px;
  padding: 25px;
}
.woocommerce-account .customer-login form.woocommerce-ResetPassword .woocommerce-form-row {
  float: none;
  width: 100%;
}

.woocommerce-account:not(.logged-in) .woocommerce .woocommerce-message + .customer-login {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
}

/* WooCommerce Account - Dashboard
--------------------------------------------- */
.woocommerce-account .dashboard-headline {
  margin-bottom: 30px;
}
.woocommerce-account .dashboard-podpoints {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 30px;
}
@media all and (min-width: 1280px) {
  .woocommerce-account .dashboard-podpoints {
    grid-template-columns: 1fr 2fr;
    align-items: start;
  }
}
.woocommerce-account .dashboard-podpoints__program {
  background-color: #fff;
  border-radius: 16px;
  padding: 25px;
}
.woocommerce-account .dashboard-podpoints__program h4 {
  text-align: center;
}
.woocommerce-account .dashboard-podpoints__program h4 span {
  color: #ff9200;
}

/* WooCommerce Account - Orders
--------------------------------------------- */
.woocommerce-account .orders-headline {
  margin-bottom: 30px;
}
.woocommerce-account .orders .woocommerce-orders-table {
  background-color: #ffffff;
}
.woocommerce-account .orders .woocommerce-orders-table thead {
  background-color: #f0f0f0;
}
.woocommerce-account .orders .woocommerce-orders-table thead th {
  font-weight: 700;
  padding: 13px 25px;
  text-transform: uppercase;
}
.woocommerce-account .orders .woocommerce-orders-table tbody td {
  font-weight: 700;
  padding: 10px 25px;
}
.woocommerce-account .orders .woocommerce-orders-table tbody .button {
  font-size: 14px;
  padding: 0.8em 1.5em;
}
.woocommerce-account .orders .woocommerce-orders-table tbody .order-origin-icon {
  padding: 0;
}

/* WooCommerce Account - PodPoints
--------------------------------------------- */
.woocommerce-account .podpoints > h2,
.woocommerce-account .podpoints > h2 + p {
  display: none;
}
.woocommerce-account .podpoints-info {
  background-color: #fff;
  border-radius: 16px;
  margin-bottom: 60px;
  padding: 25px 50px;
}
.woocommerce-account .podpoints-info header {
  border-bottom: 2px dotted;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
}
.woocommerce-account .podpoints-info header h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  flex: 0 0 50%;
}
.woocommerce-account .podpoints-info header div {
  color: #ff9200;
  font-size: 2.5rem;
  font-weight: 800;
  flex: 0 0 50%;
  text-align: right;
}
.woocommerce-account .podpoints table.my_account_points_rewards {
  border: 0;
  word-break: normal;
}
.woocommerce-account .podpoints table.my_account_points_rewards tbody tr:nth-child(odd) {
  background: #fff;
}
.woocommerce-account .podpoints table.my_account_points_rewards tbody td {
  font-weight: 700;
  padding: 15px 0;
}

/* WooCommerce Account - Addresses
--------------------------------------------- */
.woocommerce-account .woocommerce-Addresses {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 30px;
}
@media all and (min-width: 1024px) {
  .woocommerce-account .woocommerce-Addresses {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}
.woocommerce-account .woocommerce-Addresses::before, .woocommerce-account .woocommerce-Addresses::after {
  display: none;
}
.woocommerce-account .woocommerce-Address {
  background-color: #fff;
  border-radius: 16px;
  padding: 25px;
  width: auto !important;
}
.woocommerce-account .woocommerce-Address address {
  font-style: normal;
}
.woocommerce-account .woocommerce-address-fields {
  background-color: #fff;
  border-radius: 16px;
  padding: 25px;
}
.woocommerce-account .woocommerce-address-fields__field-wrapper {
  margin-bottom: 40px;
}

/* WooCommerce Account - Settings
--------------------------------------------- */
.woocommerce-account .woocommerce-PaymentMethod--actions .button {
  background-color: #fee2e2;
  color: #991b1b;
  font-size: 14px;
  padding: 0.8em 1.5em;
}
.woocommerce-account .woocommerce-PaymentMethod--actions .button:hover {
  background-color: #991b1b;
  color: #fee2e2;
}

/* WooCommerce Account - Settings
--------------------------------------------- */
.woocommerce-account .woocommerce-EditAccountForm {
  background-color: #fff;
  border-radius: 16px;
  padding: 25px;
  width: auto !important;
}
.woocommerce-account .woocommerce-EditAccountForm fieldset {
  border: 2px dashed #e0e0e0;
  margin-bottom: 40px;
}
.woocommerce-account .woocommerce-EditAccountForm legend {
  font-weight: 800;
}
