/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks
*/

:root {
  --img-border-xs: calc(var(--img-bor-base) * 2);
  --img-border-s: calc(var(--img-bor-base) * 3);
  --img-border-sm: calc(var(--img-bor-base) * 4);
  --img-border-m: calc(var(--img-bor-base) * 5);
  --img-border-ml: calc(var(--img-bor-base) * 6);
  --img-border-l: calc(var(--img-bor-base) * 7);
  --img-border-xl: calc(var(--img-bor-base) * 8);
  --elem-border-xs: calc(var(--img-bor-base) * 2);
  --elem-border-s: calc(var(--img-bor-base) * 3);
  --elem-border-sm: calc(var(--img-bor-base) * 4);
  --elem-border-m: calc(var(--img-bor-base) * 5);
  --elem-border-ml: calc(var(--img-bor-base) * 6);
  --elem-border-l: calc(var(--img-bor-base) * 7);
  --elem-border-xl: calc(var(--img-bor-base) * 8);
  --elem-border-xxl: calc(var(--img-bor-base) * 20);
}

html {
  scrollbar-gutter: stable;
}

header {
  display: flex;
  flex-direction: column;
}

.button {
  font-family: var(--btn-ff);
  font-size: var(--btn-fs);
  font-weight: var(--btn-fw);
  padding: var(--btn-pad-top) var(--btn-pad-right) var(--btn-pad-bottom) var(--btn-pad-left);
  border-radius: var(--btn-rad);
  text-decoration: none;
  transition: var(--trans-spee);
  height: fit-content;
}

button:hover {
  transition: var(--trans-spee);
}

.add_to_cart_button {
  background-color: var(--pri-btn-bg);
  color: var(--pri-btn-col);
  border-width: var(--pri-btn-bw);
  border-style: var(--pri-btn-bs);
  border-color: var(--pri-btn-bg);
}

.add_to_cart_button:hover {
  background-color: var(--pri-btn-hov-bg);
  color: var(--pri-btn-hov-col);
  border-color: var(--pri-btn-hov-bor-col transparent);
}

.section-button {
  background-color: var(--sec-btn-bg);
  color: var(--sec-btn-col);
  border-width: var(--sec-btn-bw);
  border-style: var(--sec-btn-bs);
  border-color: var(--sec-btn-bor-col);
}

.section-button:hover {
  background-color: var(--sec-btn-hov-bg);
  color: var(--sec-btn-hov-col);
  border-color: var(--sec-btn-hov-bor-col transparent);
}

.item-button {
  background-color: var(--tert-btn-bg);
  color: var(--tert-btn-col);
  border-width: var(--tert-btn-bw);
  border-style: var(--tert-btn-bs);
  border-color: var(--tert-btn-bor-col);
}

.item-button:hover {
  background-color: var(--tert-btn-hov-bg);
  color: var(--tert-btn-hov-col);
  border-color: var(--tert-btn-hov-bor-col, transparent);
}

.sprite-defs,
.svg-sprites {
  display: none;
}

figure {
  margin: 0;
}

.site-logo img,
.site-logo svg,
.footer-option-image img,
.footer-option-image svg {
  width: 100%;
  height: auto;
}

.rx-head__main {
  order: 3;
  font-size: var(--bt-text-s);
  border-style: solid;
}

#rx-head__icons svg {
  font-size: 2.6rem;
}

.css-icon-user,
.search-wrapper {
  position: relative;
  width: 2.6rem;
  height: 2.6rem;
}

.css-icon-user {
  display: inline-block;
  box-sizing: border-box;
  overflow: hidden;
  border: 0.2rem solid currentColor;
  border-radius: 50%;
}

.css-icon-user::before,
.css-icon-user::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
  border: 0.2rem solid currentColor;
  border-radius: 50%;
}

.css-icon-user::before {
  top: 15%;
  width: 45%;
  height: 45%;
}

.css-icon-user::after {
  bottom: -50%;
  width: 100%;
  height: 80%;
}

.search-wrapper {
  margin: 0 auto;
  cursor: pointer;
  transform: translateY(-.2rem);
}

.search-circle {
  width: 2rem;
  height: 2rem;
  background: #fff;
  border: .2rem solid currentColor;
  border-radius: 10rem;
}

.search-rectangle {
  position: absolute;
  right: 0;
  bottom: 0.6rem;
  z-index: -1;
  width: 1.3rem;
  background: currentColor;
  border: 0.1rem solid currentColor;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
  transform: rotate(45deg);
}

.notification-bar {
  order: 1;
  width: 100%;
}

.notification-bar-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

#site-nav a {
  background-image: linear-gradient(to right, var(--nav-hove) 0, var(--nav-hove) 100%);
  background-size: 0 .15rem;
  background-position: right bottom;
  background-repeat: no-repeat;
  transition: background-size .3s cubic-bezier(.2, .75, .5, 1);
}

#site-nav a:hover {
  background-size: 100% .15rem;
  background-position: left bottom;
}

.button-container {
  display: flex;
  flex-direction: column;
}

blockquote {
  padding: 0 !important;
}

.splide__arrow {
  background-color: var(--pri-act-bg);
  fill: var(--pri-act-txt);
  transition: var(--trans-spee);
  padding: .3rem;
  border-radius: var(--elem-border-xxl);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.splide__arrow:hover {
  background-color: var(--pri-act-bg-hov);
  fill: var(--pri-act-txt-hov);
}

.splide__arrow svg {
  height: 1.2rem;
}

.splide__arrow.splide__arrow--prev {
  transform: translateY(0%) scaleX(-1);
}

.splide__track {
  margin: auto;
}

.splide:not(.is-overflow) .splide__arrows {
  display: none;
}

.section-kicker,
.item-kicker {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.trust-slider {
  display: flex;
  width: 100%;
  overflow: hidden;
  order: 2;
}

.trust-slider::-webkit-scrollbar {
  display: none;
}

.trust-track {
  display: flex;
  width: max-content;
  margin: auto;
}

.trust-slider .trust-item {
  flex: 0 0 calc(100vw / var(--trust-colu, 4));
  min-width: 0;
  box-sizing: border-box;
}

.trust-item {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.1;
  gap: .5rem;
  padding: 0 1.5rem;
}

.trust-item img,
.trust-item svg {
  height: 100%;
  width: 100%;
  max-height: 2.5rem;
}

.trust-item-title {
  font-size: 1.3rem;
}

.feedback-container .feedback-item {
  justify-content: flex-start;
  align-items: flex-start;
  background: var(--card-bg-col);
}

.feedbacks.grid__list {
  list-style: none;
  margin: auto;
  padding: 0;
  display: grid;
}

.feedback-item {
  background: #fff;
  border-radius: 1.5rem;
  border: .1rem solid var(--bor-col);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.feedback-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: auto;
  margin-bottom: auto;
}

.feedback-image {
  min-width: var(--authr-img-w);
  min-height: var(--authr-img-h);
  max-width: var(--authr-img-w);
  max-height: var(--authr-img-h);
  object-fit: cover;
}

.feedback-content {
  display: flex;
  flex-direction: column;
  margin: auto;
}

.feedback-big-text {
  font-size: 2.6rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.feedback-rating {
  display: flex;
  justify-content: center;
  width: fit-content;
}

.feedback-rating .star {
  max-width: var(--star-size);
  max-height: var(--star-size);
}

.feedback-figure blockquote {
  border: none;
}

.feedback-text {
  margin-top: 0;
  border: none;
  font-family: var(--txt-main);
  order: 3;
}

.feedback-author-details {
  display: flex;
  flex-direction: column;
  order: 4;
}

.feedback-name {
  font-weight: 700;
  line-height: 1.2;
}

.feedback-extra {
  font-style: italic;
}

.feedback-link {
  line-height: 1.2;
  color: var(--link-col);
  transition: color var(--trans-spee) ease;
}

.feedback-link:hover {
  color: var(--link-hov-col);
}

.cta-button {
  border-radius: var(--elem-border-s);
}

.footer-trust-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: auto;
}

.footer-trust-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: var(--foot-logo-img-h);
  max-width: var(--foot-logo-img-w);
}

.footer-trust-logo img,
.footer-trust-logo svg {
  display: flex;
  height: var(--foot-logo-img-h);
  max-width: var(--foot-logo-img-w);
  width: fit-content;
  object-fit: contain;
}

.footer-main-text p {
  margin: 0;
}

.faq-items {
  display: flex;
  flex-direction: column;
  flex: 1;
  list-style: none;
  padding-left: 0;
}

.faq-section .faqs {
  display: flex;
  flex-direction: column;
}

.faq-container {
  display: grid;
  grid-template-rows: auto auto auto auto 1fr;
}

#faq-items {
  list-style: none;
}

.faq-item {
  background: var(--surface-color);
  overflow: hidden;
  transition: all var(--trans-spee) ease;
  border-style: solid;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.is-open .faq-question {
  border-bottom: .1rem solid var(--bor-col);
  padding-bottom: 1rem;
}

.faq-question p {
  margin: 0;
  color: var(--h3-col, #222222);
  font-family: var(--txt-head);
  font-weight: var(--h3-fw, 700);
}

.plus-icon {
  width: 1rem;
  height: 1rem;
  position: relative;
  transition: transform var(--trans-spee) ease;
}

.plus-icon::before,
.plus-icon::after {
  content: "";
  position: absolute;
  background-color: currentColor;
}

.plus-icon::before {
  width: 100%;
  height: .1rem;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.plus-icon::after {
  width: .1rem;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.is-open .plus-icon {
  transform: rotate(45deg);
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

.faq-heading,
.faq-subheading,
.faq-description,
.faq-section .faqs {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

.faq-container {
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "kicker-area faqs-area"
    "heading-area faqs-area"
    "subheading-area faqs-area"
    "text-area faqs-area"
    "button-area faqs-area";
}

.faq-kicker {
  grid-area: kicker-area;
}

.faq-heading {
  grid-area: heading-area;
}

.faq-subheading {
  grid-area: subheading-area;
}

.faq-description {
  grid-area: text-area;
}

.faq-container .button-container,
.faq-button {
  grid-area: button-area;
}

.faq-section .faqs {
  grid-area: faqs-area;
}

.cta-section,
.cta-container {
  overflow: hidden;
  display: flex;
}

.cta-section {
  position: relative;
}

.cta-section span {
  display: block;
  margin-bottom: 1.5rem;
}

.button-cta {
  text-align: center;
}

.cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-section.bg-image,
.cta-container.bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.rx-off-qty .quantity {
  width: fit-content;
  padding: 1rem 0.5rem;
  background-color: var(--mc-qty);
  border-radius: var(--elem-border-xs);
  display: flex;
}

.rx-off-qty .quantity>input {
  line-height: 1;
  border-color: transparent;
  color: var(--mc-qty-txt);
  min-width: 3rem;
  border-left: none !important;
  border-right: none !important;
  width: 2rem;
  background-color: transparent;
  flex: 1;
  order: 1;
  padding: 0;
  text-align: center;
  font-weight: 500;
}

/* Chrome, Safari, Edge, Opera */
.rx-off-qty .quantity>input::-webkit-outer-spin-button,
.rx-off-qty .quantity>input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.rx-off-qty .quantity>input {
  appearance: textfield;
  -moz-appearance: textfield;
}

.rx-off-qty .quantity>span {
  line-height: 1;
  border-color: transparent;
  opacity: 1;
  width: 2rem;
  user-select: none;
  align-items: center;
  cursor: pointer;
  display: flex;
  justify-content: center;
}

.rx-off-qty .quantity>span>svg {
  height: 1rem;
  width: 1rem;
  stroke: var(--mc-qty-txt);
}

.rx-off-qty .quantity>span.minus {
  order: 0;
}

.rx-off-qty .quantity>span.plus {
  order: 2;
}

.primary-act-btn {
  font-family: var(--btn-ff, inherit);
  font-weight: var(--btn-fw, 600);
  font-size: var(--btn-fs, 1.6rem);
  letter-spacing: var(--btn-ls, 0);
  text-transform: var(--btn-tt, none);
  padding: var(--btn-pad, 1.2rem 2.8rem);
  border-radius: var(--btn-rad, 0.5rem);
  background-color: var(--pri-act-bg);
  color: var(--pri-act-txt);
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.primary-act-btn:hover {
  background-color: var(--pri-act-bg-hov);
  color: var(--pri-act-txt-hov);
}

.secondary-act-btn {
  font-family: var(--btn-ff, inherit);
  font-weight: var(--btn-fw, 600);
  font-size: var(--btn-fs, 1.6rem);
  letter-spacing: var(--btn-ls, 0);
  text-transform: var(--btn-tt, none);
  padding: var(--btn-pad, 1.2rem 2.8rem);
  border-radius: var(--btn-rad, 0.5rem);
  background-color: var(--sec-act-bg);
  color: var(--sec-act-txt);
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.secondary-act-btn:hover {
  background-color: var(--sec-act-bg-hov);
  color: var(--sec-act-txt-hov);
}


.text-muted {
  color: var(--txt-mut, #666666);
}

h1,
.h1 {
  color: var(--h1-col, #000000);
  font-size: var(--h1-sz, 4rem);
  font-weight: var(--h1-fw, 700);
  line-height: var(--h1-lh, 1.2);
}

h2,
.h2 {
  color: var(--h2-col, #111111);
  font-size: var(--h2-sz, 3rem);
  font-weight: var(--h2-fw, 700);
  line-height: var(--h2-lh, 1.3);
}

h3,
.h3 {
  color: var(--h3-col, #222222);
  font-size: var(--h3-sz, 2rem);
  font-weight: var(--h3-fw, 700);
  line-height: var(--h3-lh, 1.4);
}

h4,
.h4 {
  color: var(--h4-col, #333333);
  font-size: var(--h4-sz, 1.8rem);
  font-weight: var(--h4-fw, 600);
  line-height: var(--h4-lh, 1.5);
}

h5,
.h5 {
  color: var(--h5-col, #444444);
  font-size: var(--h5-sz, 1.6rem);
  font-weight: var(--h5-fw, 600);
  line-height: var(--h5-lh, 1.6);
}

h6,
.h6 {
  color: var(--h6-col, #555555);
  font-size: var(--h6-sz, 1.4rem);
  font-weight: var(--h6-fw, 600);
  line-height: var(--h6-lh, 1.7);
}