/**
 * Created: 		03/21/2025
 * Updated:			03/28/2025
 * Description:		Styles
 * ✅		 		Functions that are working
 * ❌				Functions that are not working
 */

/* *************************
 * ❌ Classes Used
************************* */
body.rsgdx-active .rsgdx-click-disabled {
  pointer-events: none !important;
}
body.rsgdx-active .rsgdx-browse {
  font-size: 18px;
}

/* *************************
 * ❌ Store Checkboxes
************************* */
body.rsgdx-store input[type="checkbox"] {
  appearance: none;
  width: 15px;
  height: 15px;
  background-color: var(--site_shade_5);
  border: 2px solid var(--site_shade_5);
  border-radius: 2px;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  outline: none;
  box-shadow: none;
  margin: 0 10px 0 0;
}
body.rsgdx-store input[type="checkbox"]:checked {
  background-color: var(--site_primary_color);
  border-color: var(--site_primary_color);
}
body.rsgdx-store input[type="checkbox"]::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  color: var(--site_shade_5);
  display: none;
  text-align: center;
  line-height: 12px;
}
body.rsgdx-store input[type="checkbox"]:checked::before {
  display: block;
}

/* *************************
 * ❌ Store Brands Grid
************************* */
body.rsgdx-active section.rsgdx-brands-display {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
body.rsgdx-active section.rsgdx-brands-display a {
  display: block;
}
body.rsgdx-active section.rsgdx-brands-display a:last-child {
  margin-right: 0;
}
body.rsgdx-active section.rsgdx-brands-display img {
  object-fit: cover;
  width: 250px;
  height: 180px;
  border-radius: 20px;
  transition: ease 0.3s;
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
}
body.rsgdx-active section.rsgdx-brands-display p {
  margin: 0;
  font-size: 15px;
  transition: ease 0.3s;
  z-index: 2;
  position: relative;
}
body.rsgdx-active section.rsgdx-brands-display a:hover img {
  transform: scale(1.1);
  transition: ease 0.3s;
}
body.rsgdx-active section.rsgdx-brands-display a:hover p {
  color: var(--site_primary_color);
}
@media only screen and (max-width: 767px) {
  body.rsgdx-active section.rsgdx-brands-display img {
    width: 170px;
    height: 120px;
  }
}
@media only screen and (max-width: 450px) {
  .rsgdx-store section.rsgdx-brands-display img {
    width: 120px;
    height: 100px;
  }
  .rsgdx-store section.rsgdx-brands-display {
    flex-wrap: wrap;
  }
  .rsgdx-store section.rsgdx-brands-display a {
    margin: 10px 0;
    max-width: 50%;
    padding: 5px;
    min-height: 205px;
  }
}

/* *************************
 * ❌ Store Products Grid + Filter
************************* */
body.rsgdx-active section.rsgdx-products {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding-bottom: 60px;
  padding-top: 60px;
  gap: 20px;
}

/* *************************
 * ❌ Store Product Side Filters
************************* */
body.rsgdx-active .rsgdx-products-filter {
  width: 20%;
}
body.rsgdx-active .rsgdx-products-filter.rsgdx-active {
  display: block;
}
body.rsgdx-active .rsgdx-products-filter-box {
  background-color: var(--site_shade_2);
  font-size: 13px;
  padding: 15px 10px;
  border-radius: 5px;
  margin-bottom: 20px;
}
body.rsgdx-active .rsgdx-products-filter-box:last-child {
  margin-bottom: 0;
}
body.rsgdx-active .rsgdx-products-filter-box input[type="number"] {
  border-radius: 5px;
  margin: 10px 0;
}
body.rsgdx-active .rsgdx-products-filter-title {
  background-color: var(--site_shade_2);
  font-size: 18px;
  padding: 15px 10px;
  border-radius: 5px;
}
body.rsgdx-active .rsgdx-products-filter-subtitle {
  font-size: 15px;
  font-weight: 500;
}
body.rsgdx-active .rsgdx-side-filter-brands {
}
body.rsgdx-active .rsgdx-side-filter-brand {
  margin-bottom: 20px;
}
body.rsgdx-active .rsgdx-side-filter-parent {
  background: var(--site_shade_3);
  font-weight: 700;
  border-radius: 5px;
  padding: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
body.rsgdx-active .rsgdx-side-filter-parent i {
  cursor: pointer;
}
body.rsgdx-active .rsgdx-side-filter-parent-toggle {
  position: relative;
}
body.rsgdx-active .rsgdx-side-filter-parent-toggle input[type="checkbox"] {
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 3px;
}
body.rsgdx-active .rsgdx-side-filter-parent-toggle span {
  transition: ease 0.3s;
  cursor: pointer;
  padding-left: 25px;
}
body.rsgdx-active .rsgdx-side-filter-parent-toggle.rsgdx-active span,
body.rsgdx-active .rsgdx-side-filter-parent-toggle span:hover {
  color: var(--site_primary_color);
  transition: ease 0.3s;
}
body.rsgdx-active .rsgdx-side-filter-child {
  padding: 3px 20px 3px;
  cursor: pointer;
  transition: ease 0.3s;
  display: none;
  position: relative;
}
body.rsgdx-active .rsgdx-side-filter-child input[type="checkbox"] {
  pointer-events: none;
  position: absolute;
  top: 6px;
}
body.rsgdx-active .rsgdx-side-filter-child span {
  padding-left: 25px;
}
body.rsgdx-active
  .rsgdx-side-filter-brand.rsgdx-active
  .rsgdx-side-filter-child {
  display: block;
}
body.rsgdx-active .rsgdx-side-filter-child.rsgdx-active,
body.rsgdx-active .rsgdx-side-filter-child:hover {
  color: var(--site_primary_color);
  transition: ease 0.3s;
}
body.rsgdx-active .rsgdx-side-filter-buttons {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
body.rsgdx-active .rsgdx-side-filter-buttons span {
  height: 30px;
  background: var(--site_shade_4);
  width: 1px;
  pointer-events: none;
}
body.rsgdx-active .rsgdx-side-filter-buttons a {
  color: var(--site_shade_8);
  outline: none !important;
}
body.rsgdx-active .rsgdx-side-filter-buttons a.rsgdx-filter-array-submit {
  color: var(--site_shade_5);
}
body.rsgdx-active .rsgdx-side-filter-buttons a:hover {
  color: var(--site_primary_color);
}
body.rsgdx-active
  .rsgdx-side-filter-more
  .rsgdx-side-filter-parent-toggle
  span {
  padding-left: 0;
}
body.rsgdx-active .rsgdx-side-filter-brands-select.rsgdx-select-change-arrow {
  margin-bottom: 20px !important;
  border: 1px solid var(--site_shade_4);
  font-size: 14px;
  line-height: 1.2;
  border-radius: 5px;
}

/* *************************
 * ❌ Store Product Top Filters
************************* */
body.rsgdx-active .rsgdx-top-filter-industry {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin: 40px 0;
}
body.rsgdx-active .rsgdx-top-filter-industry-title {
  font-size: 13px;
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid var(--site_shade_4);
  min-width: 100px;
}
body.rsgdx-active .rsgdx-top-filter-industry-checkboxes > div {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
body.rsgdx-active .rsgdx-top-filter-industry-checkboxes .rsgdx-filter-array {
  background: var(--site_shade_3);
  border-radius: 20px;
  border: 1px solid var(--site_shade_3);
  padding: 4px 20px;
  font-size: 13px;
  color: var(--site_shade_8);
  cursor: pointer;
  transition: ease 0.3s;
  position: relative;
}
body.rsgdx-active
  .rsgdx-top-filter-industry-checkboxes
  .rsgdx-filter-array.rsgdx-active,
body.rsgdx-active
  .rsgdx-top-filter-industry-checkboxes
  .rsgdx-filter-array:hover {
  background: var(--site_secondary_color);
  color: var(--site_primary_color);
  border-color: var(--site_primary_color);
}
body.rsgdx-active
  .rsgdx-top-filter-industry-checkboxes
  .rsgdx-filter-array
  input[type="checkbox"] {
  pointer-events: none;
  position: absolute;
  top: 7px;
}
body.rsgdx-active
  .rsgdx-top-filter-industry-checkboxes
  .rsgdx-filter-array
  span {
  padding-left: 25px;
}
body.rsgdx-active .rsgdx-top-filter-search-section button {
  height: 40px;
}
@media only screen and (max-width: 991px) {
  body.rsgdx-active .rsgdx-top-filter-industry-checkboxes > div {
    /*		flex-direction: column;*/
  }
}

/* *************************
 * ❌ Store Product Top Filters: Category Page
************************* */
body.rsgdx-active .rsgdx-tax .rsgdx-top-filter-industry {
  background: var(--site_shade_3);
  padding: 20px;
  border-radius: 30px;
}
body.rsgdx-active .rsgdx-tax .rsgdx-top-filter-industry-checkboxes > div {
  margin-bottom: 0;
}
body.rsgdx-active
  .rsgdx-tax
  .rsgdx-top-filter-industry-checkboxes
  .rsgdx-filter-array {
  background: var(--site_primary_color);
  color: var(--site_shade_5);
}
body.rsgdx-active
  .rsgdx-tax
  .rsgdx-top-filter-industry-checkboxes
  .rsgdx-filter-array.rsgdx-active,
body.rsgdx-active
  .rsgdx-tax
  .rsgdx-top-filter-industry-checkboxes
  .rsgdx-filter-array:hover {
  background: var(--site_secondary_color);
  color: var(--site_primary_color);
  border-color: var(--site_primary_color);
}
body.rsgdx-active
  .rsgdx-tax
  .rsgdx-top-filter-industry-checkboxes
  .rsgdx-filter-array
  span {
  padding-left: 0;
}
body.rsgdx-active
  .rsgdx-tax
  .rsgdx-filter-array-custom-subcategory-description-hidden {
  display: none;
}

/* *************************
 * ❌ Store Sort Dropdowns
************************* */
body.rsgdx-active .rsgdx-products-sort {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 20px;
}
body.rsgdx-active .rsgdx-products-grid-sort-selects {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
body.rsgdx-active .rsgdx-products-grid-sort-selects select {
  min-width: 150px;
  font-size: 14px;
  background-color: var(--site_shade_2);
  border: 1px solid var(--site_shade_2);
  border-radius: 10px;
  color: var(--site_shade_5);
}
@media only screen and (max-width: 767px) {
  body.rsgdx-active .rsgdx-products-sort {
    flex-direction: column;
  }
  body.rsgdx-active .rsgdx-products-sort > div {
    width: 100%;
  }
}
@media only screen and (max-width: 500px) {
  body.rsgdx-active .rsgdx-products-grid-sort-selects {
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;
  }
  body.rsgdx-active .rsgdx-products-grid-sort-selects > div,
  body.rsgdx-active .rsgdx-products-grid-sort-selects select {
    min-width: 100%;
  }
}

/* *************************
 * ❌ Store Scrollers
************************* */
body.rsgdx-active .rsgdx-store .rsgdx-products-grid-scroll {
  cursor: pointer;
  text-align: right;
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 160px;
}

/* *************************
 * ❌ Store Grid Loader
************************* */
body.rsgdx-active .rsgdxec-product-grid-loader {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
body.rsgdx-active .rsgdxec-product-grid-loader .rsgdx-loader {
  top: 10%;
  left: 45%;
  position: absolute;
}

/* *************************
 * ❌ Store Grid
************************* */
body.rsgdx-active .rsgdx-products-grid {
  width: 80%;
  position: relative;
}
body.rsgdx-active .rsgdx-products-grid-query {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
body.rsgdx-active .rsgdx-products-grid-query .rsgdx-product {
  width: 32%;
  background-color: var(--site_shade_2);
  padding: 20px 20px 50px 20px;
  border-radius: 20px;
  height: 420px;
  position: relative;
}
body.rsgdx-active .rsgdx-products-grid-query .rsgdx-product-title img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
  transition: ease 0.3s;
  margin-bottom: 15px;
  background-color: var(--site_shade_5);
}
body.rsgdx-active .rsgdx-products-grid-query .rsgdx-product-title:hover img {
  transform: scale(0.9);
  transition: ease 0.3s;
}
body.rsgdx-active .rsgdx-products-grid-query .rsgdx-product-title h2 {
  font-size: 16px;
  color: var(--site_shade_5);
  transition: ease 0.3s;
}
body.rsgdx-active .rsgdx-products-grid-query .rsgdx-product-title:hover h2 {
  color: var(--site_primary_color);
  transition: ease 0.3s;
}
body.rsgdx-active .rsgdx-products-grid-query .rsgdx-product-price {
  font-size: 14px;
}
body.rsgdx-active .rsgdx-products-grid-query .rsgdx-product-cart-btn {
  padding: 10px 30px;
  position: absolute;
  bottom: 20px;
}
body.rsgdx-active .rsgdx-products-grid-toggle-filters {
  display: none;
  cursor: pointer;
  background: var(--site_shade_2);
  padding: 8px 10px;
  border-radius: 10px;
}
body.rsgdx-active .rsgdx-products-filter .rsgdx-mobile-filter-close {
  display: none;
  position: absolute;
  right: 10px;
  top: 10px;
  background: var(--site_primary_color);
  border-radius: 100%;
  width: 30px;
  height: 30px;
  text-align: center;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1328px) {
  body.rsgdx-active .rsgdx-products-grid-query .rsgdx-product {
    width: 30%;
  }
}
@media only screen and (max-width: 1160px) {
  body.rsgdx-active .rsgdx-products-grid-query .rsgdx-product {
    /*		width: 47%;*/
  }
}
@media only screen and (max-width: 1300px) {
  body.rsgdx-active .rsgdx-products-filter {
    display: none;
    width: 320px;
    position: fixed;
    z-index: 999;
    background: var(--site_secondary_color);
    left: 0;
    top: 160px;
    max-height: 80vh;
    overflow: auto;
    border-radius: 0 20px 20px 0;
    padding: 20px;
  }
  body.rsgdx-active .rsgdx-products-filter .rsgdx-mobile-filter-close {
    display: flex;
  }
  body.rsgdx-active .rsgdx-products-grid {
    width: 100%;
  }
  body.rsgdx-active .rsgdx-products-grid-query .rsgdx-product {
    width: 32%;
  }
  body.rsgdx-active .rsgdx-products-grid-toggle-filters {
    display: block;
  }
}
@media only screen and (max-width: 1059) {
  body.rsgdx-active .rsgdx-products-grid-query .rsgdx-product {
    width: 31%;
  }
}

@media only screen and (max-width: 830px) {
  body.rsgdx-active .rsgdx-products-grid-query .rsgdx-product {
    width: 48%;
    max-width: 400px;
  }
  body.rsgdx-active section.rsgdx-brands-display a {
    min-height: 25vh;
  }
}
@media only screen and (max-width: 600px) {
  body.rsgdx-active .rsgdx-products-grid-query .rsgdx-product {
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 20px 30px;
  }
  body.rsgdx-active .rsgdx-products-grid-query .rsgdx-product-title img {
    width: auto;
    height: auto;
    margin-bottom: 30px;
  }
  body.rsgdx-active .rsgdx-products-grid-query .rsgdx-product-cart-btn {
    position: relative;
    margin-top: 10px;
  }
}

/* *************************
 * ❌ Store Pagination
************************* */
body.rsgdx-active .rsgdx-products-grid-pagination {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  body.rsgdx-active .rsgdx-products-grid-pagination {
    flex-direction: column-reverse;
    justify-content: space-between;
    margin-top: 20px;
  }
  .rsgdx-products-grid-pagination-container {
    margin-top: 20px;
  }
}

/* *************************
 * ❌ Category Page: After Grid Content
************************* */
body.rsgdx-active section.rsgdx-store-texts {
  margin-top: 60px;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 40px 20px;
}
body.rsgdx-active section.rsgdx-store-texts > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}
body.rsgdx-active section.rsgdx-store-texts > div.rsgdx-store-texts-2 {
  flex-direction: row-reverse;
}
body.rsgdx-active
  section.rsgdx-store-texts
  > div.rsgdx-store-texts-2
  div:first-child {
  text-align: right;
}
body.rsgdx-active section.rsgdx-store-texts > div > div {
  width: 50%;
}
body.rsgdx-active section.rsgdx-store-texts > div img {
  border-radius: 30px;
  width: 500px;
  height: 500px;
  object-fit: cover;
}
@media only screen and (max-width: 991px) {
  body.rsgdx-active section.rsgdx-store-texts > div,
  body.rsgdx-active section.rsgdx-store-texts > div.rsgdx-store-texts-2 {
    flex-direction: column;
  }
  body.rsgdx-active
    section.rsgdx-store-texts
    > div.rsgdx-store-texts-2
    div:first-child {
    text-align: left;
  }
  body.rsgdx-active section.rsgdx-store-texts > div > div {
    width: 100%;
  }
}

/* *************************
 * ❌ Account Page
************************* */
body.woocommerce-account
  form.woocommerce-EditAccountForm.edit-account
  > p.woocommerce-form-row {
  display: none;
}
body.woocommerce-account
  form.woocommerce-EditAccountForm.edit-account
  .password-input
  > button {
  display: none;
}
body.woocommerce-account .content-area.primary {
  background: var(--site_shade_1);
  margin: 0 auto !important;
  padding: 0;
  min-height: 90vh;
}
body.woocommerce-account .site-main {
  max-width: 1600px;
  margin: 0 auto;
  padding: 50px 20px;
}
body.woocommerce-account .site-main .entry-title {
  font-size: 60px;
  font-weight: 600;
  margin: 0;
  padding: 0 0 20px;
  border-bottom: 1px solid var(--site_shade_4);
}
body.woocommerce-account nav.woocommerce-MyAccount-navigation ul {
  padding-left: 0;
  border-radius: 20px;
  border: 1px solid var(--site_shade_3);
  overflow: hidden;
}
body.woocommerce-account
  nav.woocommerce-MyAccount-navigation
  ul
  li.woocommerce-MyAccount-navigation-link {
  border: none;
  padding: 10px 20px;
  border-bottom: 1px solid var(--site_shade_3);
  background-color: var(--site_shade_2);
}
body.woocommerce-account nav.woocommerce-MyAccount-navigation ul li a {
  padding: 5px;
  outline: none !important;
}
body.woocommerce-account div.woocommerce-MyAccount-content {
  border-radius: 20px;
  background-color: var(--site_shade_2);
  padding: 20px;
  min-height: 290px;
  border: 1px solid var(--site_shade_3);
}
body.woocommerce-account h2.woocommerce-column__title {
  background: none !important;
  border: none !important;
}
body.woocommerce-account ul.rsgdx-account-reorder-lists li {
  padding: 5px 0;
}
body.woocommerce-account ul.rsgdx-account-reorder-lists li a {
  padding: 2px 20px;
  background: var(--site_primary_color);
  color: var(--site_shade_5);
  border-radius: 20px;
  border: 1px solid var(--site_primary_color);
}
body.woocommerce-account ul.rsgdx-account-reorder-lists li a:hover {
  color: var(--site_primary_color);
  background-color: var(--site_secondary_color);
}
body.woocommerce-account .woocommerce-form-login {
  width: 50%;
  margin: 0 auto !important;
}
.woocommerce form .show-password-input,
.woocommerce-page form .show-password-input {
  top: 0;
}

/* *************************
 * ❌ Cart Page
************************* */
body.woocommerce-cart tr.cart_item td.product-name {
  display: flex;
  width: 100%;
  flex-direction: column;
}
body.woocommerce-cart tr.cart_item td.product-name .variation-Bundledproducts {
  display: block;
  width: 100%;
}
body.woocommerce-cart tr.cart_item td.product-name dt.variation-HeightOption,
body.woocommerce-cart tr.cart_item td.product-name dt.variation-PrintOption {
  width: 15%;
  float: unset;
}
body.woocommerce-cart tr.cart_item td.product-name dd.variation-HeightOption,
body.woocommerce-cart tr.cart_item td.product-name dd.variation-PrintOption {
  width: 80%;
}

@media only screen and (max-width: 921px) {
  body.woocommerce-page table.cart tr.cart_item .product-thumbnail,
  body.woocommerce-page #content table.cart tr.cart_item .product-thumbnail,
  body.woocommerce-page table.cart tr.cart_item .product-thumbnail,
  body.woocommerce-cart tr.cart_item td.product-remove,
  body.woocommerce-cart tr.cart_item td.product-thumbnail,
  body.woocommerce-cart tr.cart_item td.product-name {
    text-align: left !important;
  }
}

@media only screen and (max-width: 784px) {
  body.woocommerce-cart tr td.actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  body.woocommerce-cart tr td.actions .button {
    text-align: center;
  }
  body.woocommerce-account .woocommerce-form-login {
    width: 100%;
    margin: 0 auto !important;
  }
  body.woocommerce-account div.woocommerce-MyAccount-content {
    margin-top: 20px;
  }
}

/* *************************
 * ❌ Checkout Page
************************* */
body.woocommerce-order-received
  .woocommerce
  h2.woocommerce-order-details__title {
  background-color: var(--site_shade_3) !important;
}
body.woocommerce-checkout #payment .wc_payment_methods.payment_methods.methods {
  display: block;
  width: 100%;
}
body.woocommerce-checkout h3#ship-to-different-address {
  margin-top: 30px;
}
body.woocommerce-checkout h3#ship-to-different-address > label {
  display: flex;
  gap: 15px;
  align-items: center;
}
body.woocommerce-checkout h3#ship-to-different-address > label > span {
  font-size: 25px;
}
body.woocommerce-checkout
  ul.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details {
  margin: 20px 0 30px;
  float: unset;
}
body.woocommerce-checkout h2.woocommerce-column__title {
  background-color: var(--site_shade_3) !important;
}
body.woocommerce-checkout.woocommerce-order-received
  .woocommerce-bacs-bank-details
  h3.wc-bacs-bank-details-account-name {
  padding-left: 20px;
}
body.woocommerce-checkout.woocommerce-order-received
  .woocommerce-bacs-bank-details
  ul.wc-bacs-bank-details.order_details.bacs_details {
  float: unset;
  padding-left: 20px;
  font-style: normal;
}
body.woocommerce-checkout form.checkout div[role="alert"] ul.woocommerce-error {
  display: block !important;
  float: unset;
  font-family: var(--site_family_1);
}
body.woocommerce-checkout
  form.checkout
  div[role="alert"]
  ul.woocommerce-error::before {
  position: relative;
  top: 0;
  left: 0;
  content: "⚠️ Please see submission issues:";
  font-style: normal;
  font-weight: 800;
  font-family: var(--site_family_1);
  color: var(--site_primary_color);
}
body.woocommerce-checkout
  form.checkout
  div[role="alert"]
  ul.woocommerce-error
  li {
  list-style: disc !important;
  margin-left: 30px !important;
  color: var(--site_shade_1);
}
body.woocommerce-checkout
  form.checkout
  div[role="alert"]
  ul.woocommerce-error
  li
  a {
  color: var(--site_shade_1);
}

body.woocommerce-checkout .woocommerce .woocommerce-notices-wrapper,
body.woocommerce-checkout .woocommerce .woocommerce-notices-wrapper .woocommerce-error.cpsw-errors {
  display: block!important;
}
body.woocommerce-checkout .cpsw_stripe_payment_element_field.StripeElement .p-FieldLabel.Label.Label--empty {
  color: var(--site_shade_5);
}
body.woocommerce-checkout .__PrivateStripeElement iframe[name="cardNumberButton99718"],
body.woocommerce-checkout .cpsw-stipe-pay-data .cpsw-stripe-elements-form .__PrivateStripeElement > div,
body.woocommerce-checkout .cpsw-stipe-pay-data .__PrivateStripeElement iframe[name^="cardNumberButton"]
/*body.woocommerce-checkout .cpsw-stipe-pay-data .woocommerce-SavedPaymentMethods.wc-saved-payment-methods .woocommerce-SavedPaymentMethods-new*/
/*body.woocommerce-checkout.woocommerce-order-pay li.wc_payment_method.payment_method_bacs */
{
  display: none!important;
}
body.woocommerce-checkout .payment_box.payment_method_cpsw_stripe .cpsw-stripe-elements-form {
  display: block!important;
}
body.woocommerce-checkout .payment_box.payment_method_cpsw_stripe .cpsw-stripe-elements-form > strong{
  display: block;
  width: 100%;
}
body.woocommerce-checkout .payment_box.payment_method_cpsw_stripe ul.woocommerce-SavedPaymentMethods.wc-saved-payment-methods {
    width: 100%;
}
body.woocommerce-checkout.woocommerce-order-pay #payment {
  padding: 0 20px;
}
body.woocommerce-checkout .woocommerce .woocommerce-notices-wrapper ul.woocommerce-error {
  display: block !important;
  float: none;
}
body.woocommerce-checkout .woocommerce .woocommerce-notices-wrapper ul.woocommerce-error li {
  padding-left: 30px!important;
  color: #000;
}

/* *************************
 * ❌ Single Pages - addons - popup
************************* */
.rsgdx-product-addons-popup {
  position: fixed;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.rsgdx-product-addons-popup.rsgdx-active {
  display: flex;
}
.rsgdx-product-addons-popup-bg {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  inset: 0;
  z-index: 2;
}
.rsgdx-product-addons-popup-content {
  position: relative;
  z-index: 3;
  background: var(--site_shade_1);
  width: 90%;
  overflow: auto;
  padding: 30px;
  border-radius: 30px;
  display: flex;
  flex-direction: row;
  align-content: space-between;
  justify-content: flex-start;
  align-items: stretch;
  gap: 30px;
}
.rsgdx-product-addons-popup-content .slick-arrow {
  position: absolute;
  top: 45%;
  left: 5px;
  right: auto;
  z-index: 25;
  font-size: 20px;
  cursor: pointer;
}
.rsgdx-product-addons-popup-content .slick-arrow.fa-circle-chevron-right {
  position: absolute;
  top: 45%;
  right: 5px;
  left: auto;
  z-index: 25;
  font-size: 20px;
  cursor: pointer;
}
.rsgdx-product-addons-popup-item {
  /*	width: 300px; padding: 0 20px;*/
  min-width: 350px;
  padding: 0;
}
.rsgdx-product-addons-popup-item .product-title {
  font-size: 18px;
}
.rsgdx-product-addons-popup-item .woocommerce-price-suffix {
  display: inline-block;
  width: auto;
  margin-left: 10px;
}
.rsgdx-product-addons-popup-item span.error {
  display: none;
  font-size: 12px;
  margin: 0 0 20px;
  color: var(--site_primary_color);
}
.rsgdx-product-addons-popup-item span.error.rsgdx-active {
  display: block;
}
.rsgdx-product-addons-popup-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
}
.rsgdx-product-addons-popup-item button {
  margin-top: 20px;
  width: 100px;
}
.rsgdx-product-addons-popup-item > div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.rsgdx-product-addons-popup-item > div span {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.rsgdx-product-addons-popup-item > div span input {
  width: 50px;
  padding: 10px 5px;
  margin-left: 5px;
  border-radius: 10px;
}


/* *************************
 * ❌ Single Pages - Descriptions
************************* */
body.woocommerce.single .woocommerce-tabs .rsgdx-print-options {
  margin: 50px 0 10px;
}
body.woocommerce.single .woocommerce-tabs .rsgdx-lumi-lightbox {
  margin: 50px 0 10px;
}


/* *************************
 * Stickers
************************* */
img.rsgdx_custom_image_sticker {
  position: absolute;
  z-index: 2;
  width: 50px;
  height: 50px;
}