@charset "UTF-8";
/* --------------------- */
/* ----- variables ----- */
/* -------------------- */
:root {
  --yc-reviews-stars-size: 20px;
  --yc-reviews-stars-color: #d4d4d4;
  --yc-reviews-stars-background: #fc0;
}

/* ------------------------- */
/* ----- global styles ----- */
/* ------------------------- */
html {
  min-height: 100vh;
}

body {
  direction: var(--yc-theme-direction);
  color: var(--yc-neutral-color);
  position: relative;
}

.main-content {
  display: inline-block;
  width: 100%;
}

.yc-btn span,
.yc-btn,
html,
body {
  font-family: var(--yc-font-family);
}

.container {
  max-width: 1124px !important;
  margin: 0 auto;
  padding: 0 20px;
}

input,
textarea,
button,
select,
a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a.disabled {
  pointer-events: none;
}

input, textarea, select {
  font-weight: 300 !important;
  border: var(--yc-main-border);
}
input.error, textarea.error, select.error {
  border-color: var(--yc-error-color) !important;
  outline: 1px solid var(--yc-error-color) !important;
}
input + .validation-error, textarea + .validation-error, select + .validation-error {
  color: var(--yc-error-color) !important;
  font-size: 12px;
  font-weight: 600;
}

a {
  text-decoration: none;
  color: inherit;
}

label {
  font-size: 14px;
  margin: 12px 0 6px 0;
  display: block;
}

.lead,
.content p {
  font-size: 1.2em !important;
  line-height: 1.6em !important;
}

.border,
.border-b,
.border-t,
.border-l,
.border-r {
  border-color: rgba(0, 0, 0, 0.1) !important;
}

.product-holder:hover .product-title {
  text-decoration: underline;
}

.yc-section-title {
  font-size: 26px;
  margin: 30px auto;
  font-weight: 600;
  opacity: 0.9;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .yc-section-title {
    font-size: 24px;
    font-weight: 400;
    margin: 20px auto;
  }
}

button {
  background: transparent;
  border: none;
  cursor: pointer;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
}
button:focus {
  outline: none;
}

.yc-btn {
  background: var(--yc-primary-color) !important;
  color: white !important;
  padding: 10px 12px;
  transition: all 0.15s ease-in-out 0s;
  letter-spacing: 1px;
  cursor: pointer;
  pointer-events: auto;
  border: 0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.yc-btn > * {
  color: white !important;
}

.yc-btn-secondary {
  border: 1px solid var(--yc-primary-color);
  color: var(--yc-primary-color);
  padding: 2px 20px;
  min-width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
}
.yc-btn-secondary .spinner {
  width: 18px;
  height: 18px;
  margin-top: 6px;
}

.yc-btn-secondary--large {
  border: 1px solid var(--yc-primary-color);
  color: var(--yc-primary-color);
  padding: 14px;
  border-radius: 4px;
  display: flex;
  font-weight: 700;
  font-size: 18px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.yc-btn-secondary--large:hover {
  background: var(--yc-primary-color);
  color: white;
  transition: all 0.2s ease-in;
}

[dir=rtl] .yc-btn {
  flex-direction: row-reverse;
}
[dir=rtl] .yc-btn .yc-btn-responsive-icon {
  transform: rotate(180deg);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
div,
span {
  font-weight: 300;
}

.yc-cart .summary-box,
.yc-pagination {
  box-shadow: var(--yc-primary-shadow) !important;
  border: 1px solid #f2f2f2 !important;
}

input:not([type=radio]), select {
  transition: box-shadow 100ms ease;
  padding-left: 13px !important;
  padding-right: 13px !important;
  font-size: 14px !important;
  height: 38px !important;
  line-height: 38px !important;
  outline: none;
}

textarea {
  font-family: var(--yc-font-family);
  min-height: 38px;
  outline: none;
}

* {
  box-sizing: border-box;
}

.yc-dropdown {
  border: 1px solid var(--yc-neutral-light-color);
  padding: 10px;
}

.yc-options-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.yc-options-item {
  padding: 15px;
  font-size: 14px;
  line-height: 120%;
  font-weight: 400;
  border: 1px solid #BDBDBD;
  border-radius: 8px;
  cursor: pointer;
}
.yc-options-item.active {
  font-weight: 700;
}

.yc-image-options-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.yc-image-options-list .yc-image-options-item {
  aspect-ratio: 1;
  width: 62px;
  height: 52px;
  padding: 3px;
  border: 1px solid var(--yc-neutral-light-color);
  border-radius: 4px;
  cursor: pointer;
}
.yc-image-options-list .yc-image-options-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yc-upload {
  border: 1px dashed var(--yc-neutral-light-color);
  color: var(--yc-neutral-color);
  width: 100%;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  gap: 12px;
  font-weight: 300;
  font-size: 12px;
  line-height: 120%;
  cursor: pointer;
}
.yc-upload input {
  display: none;
}
.yc-upload .upload-icon {
  width: 22px;
  height: 22px;
  color: #A7A7A7;
}

.yc-number {
  padding: 10px 25px;
  border: 1px solid var(--yc-neutral-light-color);
}

/* --------------------------- */
/* ----- custom radio button ----- */
/* --------------------------- */
.yc-radio {
  display: grid;
  gap: 16px;
}
.yc-radio .yc-radio-buttons {
  position: relative;
  display: inline-flex;
  flex-grow: 0;
  flex-shrink: 0;
  gap: 12px;
  margin: 0;
  align-items: center;
  cursor: pointer;
}
.yc-radio .yc-radio-buttons input[type=radio] {
  display: none;
}
.yc-radio .yc-radio-buttons .checkmark {
  position: relative;
  display: inline-block;
  height: 26px;
  width: 26px;
  background-color: white;
  border-radius: 50%;
  border: 1px solid var(--yc-neutral-light-color);
}
.yc-radio .yc-radio-buttons .checkmark:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background-color: white;
  border-radius: 50%;
}
.yc-radio .yc-radio-buttons input[type=radio]:checked + .checkmark {
  background: var(--yc-primary-color);
}
.yc-radio .yc-radio-buttons:hover .checkmark {
  background-color: #f5f5f5;
}
.yc-radio .yc-radio-buttons .label-text {
  color: var(--yc-neutral);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
}

/* -------------------------------- */
/* ----- custom colors button ----- */
/* -------------------------------- */
.yc-colors-select {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  gap: 10px;
}
.yc-colors-select .color-item {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #E7E7E7;
  cursor: pointer;
}
.yc-colors-select .color-item:focus {
  outline: none;
}
.yc-colors-select .color-item .preview {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.yc-colors-select .color-item .value {
  opacity: 0;
}
.yc-colors-select .color-item.active {
  padding: 4px;
}

/* ---------------------------------- */
/* ----- custom dropdwown input ----- */
/* ---------------------------------- */
.dropdown-input {
  position: relative;
  border: 1px solid #E7E7E7;
  border-radius: 4px;
  width: 100%;
  min-width: 335px;
  max-width: max-content;
  cursor: pointer;
  /* Style the dropdown content */
}
.dropdown-input .dropbtn {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  gap: 6px;
  text-align: start;
  font-size: 14px;
  font-weight: 400;
}
.dropdown-input .dropbtn :first-child {
  margin-inline-end: 20px;
}
.dropdown-input .dropbtn .dropdown-icon {
  position: absolute;
  left: 10px;
}
[dir=ltr] .dropdown-input .dropbtn .dropdown-icon {
  left: unset;
  right: 10px;
}
.dropdown-input .dropdown-content {
  display: none;
  margin-top: 5px;
  position: absolute;
  top: 40px;
  left: 0;
  z-index: 1;
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #ECECEC;
  box-shadow: 0px 10px 55px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.dropdown-input .dropdown-content li {
  color: black;
  padding: 10px;
  margin: 3px auto;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  display: block;
  cursor: pointer;
}
.dropdown-input .dropdown-content li:hover {
  background-color: #f1f1f1;
}
.dropdown-input .dropdown-content li.selected {
  font-weight: bold;
}
.dropdown-input .show {
  display: block;
}

/* --------------------------- */
/* ----- spinner loading ----- */
/* --------------------------- */
.spinner {
  width: 23px;
  height: 23px;
  display: inline-block;
  border: 2px solid rgba(128, 128, 128, 0.3);
  border-radius: 50%;
  border-right: 1px solid currentColor;
  animation-name: spin;
  animation-duration: 900ms;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(1, 0, 0.15, 0.99);
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
/* ----------------- */
/* ----- alert ----- */
/* ----------------- */
.yc-alert {
  transition: all 0.5s ease;
  position: fixed;
  margin: 1rem;
  height: var(--yc-notification-toast-height);
  padding: 0 1.3rem;
  background-color: transparent;
  color: var(--yc-notification-toast-text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--yc-primary-shadow);
  opacity: 0;
  z-index: 9999;
  transform: translateY(25%);
  font-weight: var(--yc-notification-toast-font-weight);
  font-size: var(--yc-notification-toast-font-size);
  border-radius: var(--yc-notification-toast-border-radius);
  border: var(--yc-notification-toast-border-width) solid var(--yc-notification-toast-border-color);
  top: var(--yc-notification-toast-top);
  left: var(--yc-notification-toast-left);
  bottom: var(--yc-notification-toast-bottom);
  right: var(--yc-notification-toast-right);
  visibility: hidden;
}
.yc-alert.success {
  background-color: var(--yc-success-color);
}
.yc-alert.error {
  background-color: var(--yc-error-color);
}
.yc-alert.show {
  opacity: 1;
  z-index: 9999;
  transform: none;
  visibility: visible;
}

/* ------------------------ */
/* ----- progress bar ----- */
/* ------------------------ */
.progress-bar {
  height: 10px;
  background-color: #ddd;
  margin-top: 15px;
  border-radius: 50rem;
}
.progress-bar .progress {
  height: 100%;
  background-color: var(--yc-primary-color);
  width: 0;
  transition: width 0.2s;
  border-radius: 50rem;
}

/* ---------------------- */
/* ----- sticky CTA ----- */
/* ---------------------- */
.sticky-elements-container {
  border-top: 1px solid #e3e3e3;
  background: white;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  padding: 0 20px;
  gap: 20px;
  z-index: 999;
}
@media (min-width: 1400px) {
  .sticky-elements-container {
    padding: 0 196px;
  }
}
.sticky-elements-container > * {
  flex: 1 1 50%;
}
.sticky-elements-container .is_sticky {
  width: 100%;
}

.splide {
  direction: ltr;
}

.yc-reviews-stars {
  --percent: calc(var(--rating) / 5 * 100%);
  display: inline-block;
  font-size: var(--yc-reviews-stars-size);
  line-height: 1;
}
.yc-reviews-stars::before {
  content: "★★★★★";
  letter-spacing: 3px;
  background: linear-gradient(90deg, var(--yc-reviews-stars-background) var(--percent), var(--yc-reviews-stars-color) var(--percent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ------------------- */
/* ----- spacers ----- */
/* ------------------- */
.spacer {
  flex-grow: 1;
}

/* ---------------------- */
/* ----- tag banner ----- */
/* ---------------------- */
.tag {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 1;
  padding: 4px 13px;
  border-radius: 4px;
}
.tag.top_right {
  top: 8px;
  right: 8px;
}
.tag.bottom_right {
  bottom: 8px;
  right: 8px;
}
.tag.top_left {
  top: 8px;
  left: 8px;
}
.tag.bottom_left {
  bottom: 8px;
  left: 8px;
}

.breadcrumbs-container .breadcrumbs-listings {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 40px auto;
}
.breadcrumbs-container .breadcrumbs-listings .first-listing {
  color: #A8A8A8;
  font-weight: 400;
  font-size: 14px;
  text-decoration: none;
}
.breadcrumbs-container .breadcrumbs-listings .second-listing {
  font-weight: 700;
  color: #000000;
  font-size: 14px;
  text-decoration: none;
}
.breadcrumbs-container .breadcrumbs-listings .third-listing {
  font-weight: 800;
}
[dir=ltr] .breadcrumbs-container .breadcrumbs-listings .listings__item img {
  rotate: 180deg;
}
.breadcrumbs-container .breadcrumbs-name {
  font-weight: 700;
  font-size: 26px;
}
