/*
 * WooCommerce integration styles.
 * The checkout design (checkout.css) styles one <form> per step. WooCommerce
 * needs a single checkout form, so the step containers (.sy_form) receive
 * the rules of ".checkout_main form" and the real form is neutralised.
 */

/* ---------- Checkout: single form ---------- */
.checkout_main form.sytech_checkout {
  display: block;
  margin: 0;
  gap: 0;
}

.checkout_main .sy_form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.4rem 0;
  margin-top: 3.8rem;
}

.checkout_main .step1 .sy_form {
  margin-top: 4.6rem;
}

.checkout_main .step3 .sy_form,
.checkout_main .step4 .sy_form {
  margin-top: 3.2rem;
}

.checkout_main .sy_form .sy_form {
  width: 100%;
  margin-top: 0;
}

.checkout_main .step4 .options .card_detail .sytech_gateway_fields,
.checkout_main .step4 .options .card_detail .sytech_gateway_fields * {
  max-width: 100%;
}

.checkout_main .options .sytech_notice,
.checkout_main .sytech_notice {
  font-size: 1.5rem;
  color: #7c7c7c;
}

.checkout_main .sytech_express {
  display: block;
}

.checkout_main form input[name="payment_method"] {
  display: inline-block !important;
}

.checkout_main form .create-account {
  width: 100%;
}

.checkout_main .order_card button.btn {
  display: block;
  font-family: inherit;
}

.checkout_main .order_card .price-lis .tip a {
  text-decoration: underline;
}

.checkout_main .order_card .price-lis .sytech_remove_coupon {
  font-size: .8em;
  color: var(--primary);
  margin-left: .4rem;
}

.checkout_main .order_card .promo_form form.processing {
  opacity: .6;
  pointer-events: none;
}

.checkout_main .order_card .promo_form .coupon-error-notice {
  grid-column: -1 / 1;
  font-size: 1.4rem;
  color: #b42318;
}

/* ---------- Order received ---------- */
.checkout_main .sytech_done .options label {
  cursor: default;
  align-items: center;
}

.checkout_main .sytech_done .options .info p {
  line-height: 1.5;
}

.checkout_main .sytech_payment_instructions {
  width: 100%;
  font-size: 1.5rem;
  color: #444;
}

.checkout_main .sytech_payment_instructions:empty {
  display: none;
}

.checkout_main .sytech_payment_instructions h2 {
  font-size: 2rem;
  font-weight: 500;
  margin: 1rem 0;
}

.checkout_main .sytech_payment_instructions ul {
  display: grid;
  gap: .6rem;
  margin-bottom: 1.4rem;
}

.checkout_main form span.sytech_done_btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}

/* ---------- Cart (built from the checkout components) ---------- */
.checkout_main .sytech_notices:not(:empty) {
  margin-top: 4rem;
}

.cart_main {
  transition: opacity .3s;
}

.cart_main .cart_items {
  width: 100%;
  border-top: 1px solid rgb(226 226 226 / 0.47);
}

.cart_main .cart_items li {
  display: grid;
  grid-template-columns: 8.8rem 1fr auto 9rem 2rem;
  align-items: center;
  border-bottom: 1px solid rgb(226 226 226 / 0.47);
  gap: 2.4rem;
  padding: 2rem 0;
}

.cart_main .cart_items .img {
  display: block;
  border: 1px solid #e2e2e2;
  --h: 100%;
}

.cart_main .cart_items .img.img_aba img {
  width: 71.875%;
  height: 71.875%;
  left: 14.0625%;
  top: 14.0625%;
}

.cart_main .cart_items .info .title {
  display: inline-block;
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--title);
  transition: all .3s;
}

.cart_main .cart_items .info a.title:hover {
  color: var(--primary);
}

.cart_main .cart_items .info .metas,
.cart_main .cart_items .info .unit {
  font-size: 1.4rem;
  font-weight: 500;
  color: #6e665a;
  margin-top: .4rem;
}

.cart_main .cart_items .price {
  font-size: 1.7rem;
  font-weight: 500;
  text-align: right;
}

.checkout_main.cart_main form .qty-box {
  width: 14.4rem;
  display: grid;
  grid-template-columns: 30.4% 1fr 30.4%;
  border: 1px solid #e5e7eb;
  transition: border-color .2s;
}

.checkout_main.cart_main form .qty-box:focus-within {
  border-color: var(--primary);
}

.checkout_main.cart_main form .qty-box button {
  position: relative;
  display: block;
  transition: all .3s;
}

.checkout_main.cart_main form .qty-box button::after {
  display: block;
  padding-bottom: 92.72727273%;
  content: '';
  background: url("../img/icon-plus.svg") no-repeat center/24%;
  transition: all .3s;
}

.checkout_main.cart_main form .qty-box button.reduce::after {
  background-image: url("../img/icon-reduce.svg");
}

.checkout_main.cart_main form .qty-box button:hover {
  background-color: var(--primary);
}

.checkout_main.cart_main form .qty-box button:hover::after {
  filter: contrast(0) brightness(2);
}

.checkout_main.cart_main form .qty-box input {
  height: auto;
  text-align: center;
  font-size: 1.6rem;
  border: none;
  border-left: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
  padding: 0 .5rem;
}

.cart_main .sytech_remove_item {
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  background: url("../img/close.svg") no-repeat center/contain;
  opacity: .6;
  transition: opacity .3s;
}

.cart_main .sytech_remove_item:hover {
  opacity: 1;
}

.checkout_main.cart_main form span.sytech_cart_actions {
  width: auto;
}

@media screen and (max-width: 768px) {
  .cart_main .cart_items li {
    grid-template-columns: 64px 1fr auto;
    gap: 12px 16px;
    padding: 16px 0;
  }

  .cart_main .cart_items .img {
    grid-row: span 2;
  }

  .cart_main .cart_items .qty-box {
    grid-column: 2;
  }

  .cart_main .cart_items .price {
    grid-column: 3;
    grid-row: 2;
  }

  .cart_main .sytech_remove_item {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }
}

/* ---------- Account ---------- */
.account_main .checkout_main {
  background-color: transparent;
  padding: 0;
}

.account_main .checkout_main form {
  margin-top: 2.4rem;
}

.account_main .checkout_main form span.sytech_form_title {
  font-size: 1.8rem;
  font-weight: 500;
  border-top: 1px solid #eaeaea;
  padding-top: 2.4rem;
  margin-top: .8rem;
}

.account_main > .content > .woocommerce-notices-wrapper:not(:empty) {
  margin: 3rem 0 0;
}

.account_main .detail_card .info li span:last-child {
  line-height: 1.5;
} 

.checkout_main.sytech_login .order_card form {
  margin-top: 2.4rem;
}

.checkout_main.sytech_login .order_card .caption + .detail {
  margin-top: 2rem;
}

.checkout_main.sytech_login .step1 .flex1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .6rem 2rem;
}

.checkout_main.sytech_login .step1 .flex1 > span {
  width: auto;
}

.checkout_main form label > span > a {
  color: var(--primary);
  text-decoration: underline;
}

@media print {
  header, footer, .account_sidebar, .account_main .head .btns, .account_main .card_title a, .footer_contact {
    display: none !important;
  }
}

/* ---------- Notices and validation ---------- */
.woocommerce-NoticeGroup,
.woocommerce-notices-wrapper:not(:empty) {
  width: 100%;
  margin-bottom: 3rem;
}

.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
  list-style: none;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--title);
  background-color: #fff;
  border: 1px solid #eae7e5;
  border-left: 3px solid var(--primary);
  padding: 1.6rem 2rem;
  margin: 0 0 1.6rem;
}

.woocommerce-error {
  border-left-color: #b42318;
}

.woocommerce-error li + li,
.woocommerce-message li + li,
.woocommerce-info li + li {
  margin-top: .6rem;
}

.woocommerce-error a,
.woocommerce-message a,
.woocommerce-info a {
  color: var(--primary);
  text-decoration: underline;
}

.woocommerce-message .button,
.woocommerce-info .button {
  float: right;
  font-weight: 500;
  color: var(--primary);
  margin-left: 2rem;
}

.checkout_main form .woocommerce-invalid input:not([type=checkbox]):not([type=radio]),
.checkout_main form .woocommerce-invalid select {
  border-color: #b42318;
}

.checkout_main form .woocommerce-invalid input[type=checkbox] {
  border-color: #b42318;
}

.checkout_main .checkout-inline-error-message {
  font-size: 1.3rem;
  color: #b42318;
  margin-top: .6rem;
}

.blockUI.blockOverlay {
  cursor: default !important;
}

/* ---------- Product page ---------- */
.product_show .btn.loading,
[data-sytech-add-to-cart].loading {
  opacity: .6;
  pointer-events: none;
}

.product_show .btn.disabled {
  opacity: .5;
}

.product_recommendations .btn_cart.added,
.product_recommendations .btn_cart.loading {
  opacity: .6;
}

.product_categories .nav_item[data-href] {
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .checkout_main .forms .step_box .sy_form {
    gap: 16px 0;
    margin-top: 20px;
  }

  .checkout_main .forms .step_box .sy_form .sy_form {
    margin-top: 0;
  }

  .woocommerce-error,
  .woocommerce-message,
  .woocommerce-info {
    font-size: 14px;
    padding: 12px 16px;
  }
}

.account_main .cus-table .td.action[data-href] {
  cursor: pointer;
}

.checkout_main.sytech_login .step1 .flex1 input[type=checkbox] ~ span {
  width: auto;
}

/* ---------- Popups: cart drawer and login / register ---------- */
.sytech_pop {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s linear .3s;
}

.sytech_pop.active {
  pointer-events: auto;
  visibility: visible;
  transition: none;
}

.sytech_pop > .close {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity .3s;
  background-color: rgba(0, 0, 0, 0.75);
}

.sytech_pop.active > .close {
  opacity: 1;
}

.sytech_pop .con {
  position: relative;
  background-color: #fff;
  transition: opacity .3s ease, transform .3s ease;
}

.sytech_pop .pop_close {
  display: block;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all .3s;
  border-radius: 8px;
  background: url("../img/close.svg") no-repeat center/12px;
}

.sytech_pop .pop_close:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.sytech_quick_view_pop {
  align-items: center;
  justify-content: center;
  padding: 2.4rem 1.6rem;
}

.sytech_quick_view_pop .con {
  display: flex;
  flex-direction: column;
  width: min(118rem, calc(100vw - 3.2rem));
  max-height: 92vh;
  overflow: hidden;
  opacity: 0;
  transform: translate3d(0, 2.4rem, 0);
  padding: 0 0 1.2rem;
  backface-visibility: hidden;
}

.sytech_quick_view_pop.active .con {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.sytech_quick_view_pop:not(.active) .quick_view_body {
  pointer-events: none;
}

.sytech_quick_view_pop .pop_close {
  position: sticky;
  top: 0.8rem;
  margin: 0.8rem 1.6rem 0 auto;
  z-index: 5;
  background-color: #fff;
}

.sytech_quick_view_pop .quick_view_body {
  overflow: auto;
  flex: 1;
  min-height: 24rem;
  padding: 0 2.4rem 2.4rem;
}

.sytech_quick_view_pop .quick_view_loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 28rem;
  gap: 1.2rem;
  color: #6f6a63;
  font-size: 1.5rem;
}

.sytech_quick_view_pop .quick_view_loader i {
  width: 3.6rem;
  height: 3.6rem;
  border: 3px solid #e7e1d5;
  border-top-color: var(--primary, #c8a750);
  border-radius: 50%;
  animation: sytech-qv-spin 0.7s linear infinite;
}

@keyframes sytech-qv-spin {
  to {
    transform: rotate(360deg);
  }
}

.sytech_quick_view_pop .product_show {
  padding: 0;
}

.sytech_quick_view_pop .product_show .content {
  max-width: none;
  padding: 0;
}

.sytech_quick_view_pop .product_show.is_quick_view .main {
  margin-top: 0;
}

.sytech_quick_view_pop .product_show.is_quick_view .lt,
.sytech_quick_view_pop .product_show.is_quick_view .flex1 {
  position: static;
  top: auto;
  overflow: visible;
  max-width: none;
}

.sytech_quick_view_pop .product_show.is_quick_view .lt {
  width: min(48%, 52rem);
}

.sytech_quick_view_pop .product_show.is_quick_view .flex1 {
  width: auto;
  flex: 1;
  min-width: 0;
}

.sytech_quick_view_pop .product_show.is_quick_view .product_show_gallery_swiper .img {
  padding-bottom: min(92%, 46rem);
}

.sytech_quick_view_pop .product_show.is_quick_view .features,
.sytech_quick_view_pop .product_show.is_quick_view .purchase {
  max-width: 100%;
  overflow-x: auto;
}

.sytech_quick_view_pop .quick_view_body.loading {
  min-height: 28rem;
}

@media screen and (max-width: 768px) {
  .sytech_quick_view_pop .product_show.is_quick_view .lt,
  .sytech_quick_view_pop .product_show.is_quick_view .flex1 {
    width: 100%;
  }
}

@media screen and (max-width: 576px) {
  .sytech_quick_view_pop {
    padding: 12px;
  }
  .sytech_quick_view_pop .con {
    max-height: 96vh;
    width: 100%;
  }
  .sytech_quick_view_pop .quick_view_body {
    padding: 0 12px 16px;
  }
}

/* Cart drawer */
.sytech_cart_pop {
  justify-content: flex-end;
}

.sytech_cart_pop .con {
  width: min(46rem, 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
}

.sytech_cart_pop.active .con {
  transform: translateX(0);
}

.sytech_cart_pop .pop_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid #eae7e5;
  padding: 1.6rem 1.6rem 1.6rem 3rem;
}

.sytech_cart_pop .pop_head strong {
  font-size: 2.2rem;
  font-weight: 500;
}

.sytech_mini_cart {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  transition: opacity .3s;
}

.sytech_mini_cart.processing {
  opacity: .6;
  pointer-events: none;
}

.sytech_mini_cart .pop_body {
  flex: 1;
  overflow: auto;
  padding: 0 3rem;
}

.sytech_mini_cart .orders li {
  display: grid;
  grid-template-columns: 7.2rem 1fr auto;
  align-items: start;
  border-bottom: 1px solid rgb(226 226 226 / 0.47);
  gap: 1.8rem;
  padding: 2rem 0;
}

.sytech_mini_cart .orders .img {
  display: block;
  border: 1px solid #e2e2e2;
  --h: 100%;
}

.sytech_mini_cart .orders .img.img_aba img {
  width: 71.875%;
  height: 71.875%;
  left: 14.0625%;
  top: 14.0625%;
}

.sytech_mini_cart .orders .title {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.3;
  transition: all .3s;
}

.sytech_mini_cart .orders a.title:hover {
  color: var(--primary);
}

.sytech_mini_cart .orders .metas {
  font-size: 1.4rem;
  font-weight: 500;
  color: #6e665a;
  margin-top: .4rem;
}

.sytech_mini_cart .orders .side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  align-self: stretch;
  gap: 1rem;
}

.sytech_mini_cart .orders .price {
  font-size: 1.6rem;
  font-weight: 500;
  white-space: nowrap;
}

.sytech_mini_cart .orders .remove {
  width: 1.4rem;
  height: 1.4rem;
  opacity: .6;
  cursor: pointer;
  transition: opacity .3s;
  background: url("../img/close.svg") no-repeat center/contain;
}

.sytech_mini_cart .orders .remove:hover {
  opacity: 1;
}

.sytech_mini_cart .qty-box {
  width: 11.4rem;
  display: grid;
  grid-template-columns: 3.4rem 1fr 3.4rem;
  border: 1px solid #e5e7eb;
  transition: border-color .2s;
  margin-top: 1.2rem;
}

.sytech_mini_cart .qty-box:focus-within {
  border-color: var(--primary);
}

.sytech_mini_cart .qty-box button {
  height: 3.4rem;
  cursor: pointer;
  transition: all .3s;
  background: url("../img/icon-plus.svg") no-repeat center/1rem;
}

.sytech_mini_cart .qty-box button.reduce {
  background-image: url("../img/icon-reduce.svg");
}

.sytech_mini_cart .qty-box button:hover {
  background-color: var(--primary);
}

.sytech_mini_cart .qty-box input {
  width: 100%;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  border-left: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
}

.sytech_mini_cart .pop_foot {
  border-top: 1px solid #eae7e5;
  box-shadow: 0 -1rem 1.5rem rgb(219 214 209 / 0.2);
  padding: 2rem 3rem 3rem;
}

.sytech_mini_cart .promo_form {
  border-bottom: 1px solid #e2e2e2;
  padding: 0 0 1.9rem;
  margin-bottom: 1.8rem;
}

.sytech_mini_cart .promo_form form {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.2rem;
}

.sytech_mini_cart .promo_form form.processing {
  opacity: .6;
  pointer-events: none;
}

.sytech_mini_cart .promo_form form input {
  display: block;
  width: 100%;
  font-size: 1.5rem;
  font-weight: 500;
  color: #7c7c7c;
  border: 1px solid #e2e2e2;
  transition: border-color .2s;
  padding: 0 1.4rem;
  height: 4.6rem;
}

.sytech_mini_cart .promo_form form input:focus {
  border-color: var(--primary);
}

.sytech_mini_cart .promo_form form input::placeholder {
  color: #7c7c7c;
}

.sytech_mini_cart .promo_form form input:not([type=submit]) {
  font-family: "DM Sans", sans-serif;
}

.sytech_mini_cart .promo_form form input[type=submit] {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
  transition: all .3s;
  font-size: 1.6rem;
  padding: 0 2rem;
}

.sytech_mini_cart .promo_form form input[type=submit]:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

.sytech_mini_cart .promo_form .coupon-error-notice {
  grid-column: 1 / -1;
  font-size: 1.4rem;
  color: #b42318;
}

.sytech_mini_cart .sytech_remove_coupon {
  font-size: 1.3rem;
  color: var(--primary);
  margin-left: .4rem;
}

.sytech_mini_cart .price-lis li {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  font-size: 1.7rem;
  color: var(--text);
  gap: 1rem;
}

.sytech_mini_cart .price-lis li + li {
  margin-top: .8rem;
}

.sytech_mini_cart .price-lis .amount {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--title);
}

.sytech_mini_cart .price-lis .tip {
  font-size: 1.4rem;
  line-height: 2.2rem;
  color: #6e665a;
  margin-top: 1rem;
}

.sytech_mini_cart .pop_foot .btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2rem;
}

.sytech_mini_cart .pop_foot .btn,
.sytech_mini_cart .pop_foot .btn_line {
  min-width: unset;
  padding: 0 1rem;
}

.sytech_mini_cart .pop_empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.2rem;
  padding: 4rem 3rem;
}

.sytech_mini_cart .pop_empty .icon {
  width: 6.4rem;
  height: 6.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgb(118 110 99 / 0.08);
}

.sytech_mini_cart .pop_empty .icon img {
  width: 2.4rem;
}

.sytech_mini_cart .pop_empty strong {
  font-size: 2rem;
  font-weight: 500;
}

.sytech_mini_cart .pop_empty p {
  font-size: 1.5rem;
  color: #7c7c7c;
  margin-bottom: 1rem;
}

/* Login / register modal */
.sytech_auth_pop {
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.sytech_auth_pop .con {
  width: min(52rem, 100%);
  max-height: 100%;
  overflow: auto;
  border: 1px solid #eae7e5;
  box-shadow: 0 1rem 1.5rem rgb(219 214 209 / 0.35);
  padding: 4rem 4.2rem 4.4rem;
  opacity: 0;
  transform: translateY(2rem);
}

.sytech_auth_pop.active .con {
  opacity: 1;
  transform: translateY(0);
}

.sytech_auth_pop .pop_close {
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
}

.sytech_auth_pop .pop_tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #eae7e5;
  margin: 1.6rem 0 3rem;
}

.sytech_auth_pop .pop_tabs button {
  cursor: pointer;
  font-size: 1.7rem;
  font-weight: 500;
  color: #6e665a;
  border-bottom: 2px solid transparent;
  transition: all .3s;
  padding: 0 0 1.4rem;
  margin-bottom: -1px;
}

.sytech_auth_pop .pop_tabs button.active {
  color: var(--title);
  border-bottom-color: var(--primary);
}

.sytech_auth_pop .pop_panel {
  display: none;
}

.sytech_auth_pop .pop_panel.active {
  display: block;
}

.sytech_auth_pop .pop_caption strong {
  display: block;
  font-size: 2.6rem;
  font-weight: 500;
}

.sytech_auth_pop .pop_caption p {
  font-size: 1.5rem;
  color: #7c7c7c;
  margin-top: .6rem;
}

.sytech_pop_form {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 0;
  margin-top: 2.8rem;
}

.sytech_pop_form > span {
  width: 100%;
}

.sytech_pop_form .label {
  display: block;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: .01em;
}

.sytech_pop_form input:not([type=checkbox]):not([type=submit]) {
  display: block;
  width: 100%;
  font-family: "DM Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--title);
  border: 1px solid #ddd;
  transition: border-color .2s;
  height: 5.1rem;
  padding: 0 1.8rem .3rem;
}

.sytech_pop_form input::placeholder {
  color: #7c7c7c;
}

.sytech_pop_form input:focus {
  border-color: var(--primary);
}

.sytech_pop_form .pop_row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .8rem 2rem;
}

.sytech_pop_form .pop_check {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  font-size: 1.5rem;
  color: #444;
}

.sytech_pop_form input[type=checkbox] {
  position: relative;
  flex-shrink: 0;
  width: 1.8rem;
  height: 1.8rem;
  border: 1px solid #ddd;
  transition: all .3s;
}

.sytech_pop_form input[type=checkbox]::after {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: '';
  background: url("../img/gou.svg") no-repeat center/63%;
  filter: contrast(0) brightness(2);
  opacity: 0;
  transition: all .3s;
}

.sytech_pop_form input[type=checkbox]:checked {
  border-color: var(--primary);
  background-color: var(--primary);
}

.sytech_pop_form input[type=checkbox]:checked::after {
  opacity: 1;
}

.sytech_pop_form .pop_link,
.sytech_pop_form .pop_note a {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary);
  text-decoration: underline;
}

.sytech_pop_form .pop_note {
  font-size: 1.4rem;
  line-height: 2.2rem;
  color: #6e665a;
}

.sytech_pop_form .pop_message {
  font-size: 1.4rem;
  font-weight: 500;
  color: #b42318;
}

.sytech_pop_form .pop_message:empty {
  display: none;
}

.sytech_pop_form .pop_message.success {
  color: #3f7d52;
}

.sytech_pop_form input[type=submit] {
  width: 100%;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  border: 1px solid var(--secondary);
  background-color: var(--secondary);
  transition: all .3s;
  height: 5rem;
}

.sytech_pop_form input[type=submit]:hover {
  border-color: var(--primary);
  background-color: var(--primary);
}

.sytech_pop_form.processing {
  opacity: .6;
  pointer-events: none;
}

.sytech_pop_form textarea {
  display: block;
  width: 100%;
  min-height: 12rem;
  font-family: "DM Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--title);
  border: 1px solid #ddd;
  transition: border-color .2s;
  padding: 1.4rem 1.8rem;
  line-height: 1.6;
}
.sytech_pop_form textarea:focus {
  border-color: var(--primary);
}
.sytech_pop_form textarea::placeholder {
  color: #7c7c7c;
}
.sytech_pop_form .label i {
  color: #b42318;
  font-style: normal;
}

.sytech_review_pop {
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.sytech_review_pop .con {
  width: min(58rem, 100%);
  max-height: 100%;
  overflow: auto;
  border: 1px solid #eae7e5;
  box-shadow: 0 1rem 1.5rem rgb(219 214 209 / 0.35);
  padding: 4rem 4.2rem 4.4rem;
  opacity: 0;
  transform: translateY(2rem);
}
.sytech_review_pop.active .con {
  opacity: 1;
  transform: translateY(0);
}
.sytech_review_pop .pop_close {
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
}
.sytech_review_pop .pop_caption strong {
  display: block;
  font-size: 2.6rem;
  font-weight: 500;
}
.sytech_review_pop .pop_caption p {
  font-size: 1.5rem;
  color: #7c7c7c;
  margin-top: .6rem;
}
.sy_review_gate {
  margin-top: 2.4rem;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #45413b;
}
.sy_star_pick {
  --w: 16.5rem;
  --value: 0%;
  position: relative;
  display: block;
  width: var(--w);
}
.sy_star_pick::before,
.sy_star_pick::after {
  content: '';
  display: block;
  background: url("../img/star-b2.svg") center center / contain no-repeat;
}
.sy_star_pick::before {
  padding-bottom: 14.28571429%;
  opacity: .22;
}
.sy_star_pick::after {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: var(--value);
  background-position: left center;
  background-size: var(--w) 100%;
}
.sy_star_pick[data-value="1"] { --value: 20%; }
.sy_star_pick[data-value="2"] { --value: 40%; }
.sy_star_pick[data-value="3"] { --value: 60%; }
.sy_star_pick[data-value="4"] { --value: 80%; }
.sy_star_pick[data-value="5"] { --value: 100%; }
.sy_star_pick button {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 20%;
  min-width: 0;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  background: none;
}
.sy_star_pick button:nth-child(1) { left: 0; }
.sy_star_pick button:nth-child(2) { left: 20%; }
.sy_star_pick button:nth-child(3) { left: 40%; }
.sy_star_pick button:nth-child(4) { left: 60%; }
.sy_star_pick button:nth-child(5) { left: 80%; }
.sy_review_upload {
  display: block;
  border: 1px dashed #e7e1d5;
  background-color: #f7f4ed;
  cursor: pointer;
  padding: 2.2rem 2rem;
  text-align: center;
}
.sy_review_upload strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
}
.sy_review_upload p {
  font-size: 1.3rem;
  color: #6f6a63;
  margin-top: .6rem;
}
.sy_review_upload input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.sy_review_previews {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.2rem;
}
.sy_review_previews:empty {
  display: none;
}
.sy_review_previews li {
  position: relative;
  width: 7.2rem;
}
.sy_review_previews img {
  display: block;
  width: 7.2rem;
  height: 7.2rem;
  object-fit: cover;
  border: 1px solid #e6e1d8;
}
.sy_review_remove {
  position: absolute;
  top: -0.6rem;
  right: -0.6rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: url("../img/close.svg") no-repeat center / 0.9rem #fff;
  box-shadow: 0 0 0 1px #e6e1d8;
}
.sy_review_remove:hover {
  background-color: var(--primary);
  box-shadow: none;
}

@media screen and (max-width: 768px) {
  .sytech_cart_pop .pop_head {
    padding: 12px 12px 12px 20px;
  }

  .sytech_cart_pop .pop_head strong {
    font-size: 18px;
  }

  .sytech_mini_cart .pop_body {
    padding: 0 20px;
  }

  .sytech_mini_cart .orders li {
    grid-template-columns: 64px 1fr auto;
    gap: 12px;
    padding: 16px 0;
  }

  .sytech_mini_cart .orders .title,
  .sytech_mini_cart .orders .price {
    font-size: 14px;
  }

  .sytech_mini_cart .orders .metas {
    font-size: 13px;
  }

  .sytech_mini_cart .qty-box {
    width: 100px;
    grid-template-columns: 30px 1fr 30px;
  }

  .sytech_mini_cart .qty-box button {
    height: 30px;
  }

  .sytech_mini_cart .qty-box input {
    font-size: 14px;
  }

  .sytech_mini_cart .pop_foot {
    padding: 16px 20px 20px;
  }

  .sytech_mini_cart .promo_form {
    padding-bottom: 16px;
    margin-bottom: 16px;
  }

  .sytech_mini_cart .promo_form form {
    gap: 8px;
  }

  .sytech_mini_cart .promo_form form input {
    height: 42px;
    font-size: 14px;
    padding: 0 12px;
  }

  .sytech_mini_cart .promo_form form input[type=submit] {
    font-size: 14px;
    padding: 0 14px;
  }

  .sytech_mini_cart .price-lis li {
    font-size: 14px;
  }

  .sytech_mini_cart .price-lis .amount {
    font-size: 16px;
  }

  .sytech_mini_cart .price-lis .tip {
    font-size: 13px;
    line-height: 1.5;
  }

  .sytech_mini_cart .pop_foot .btn,
  .sytech_mini_cart .pop_foot .btn_line {
    font-size: 14px;
  }

  .sytech_auth_pop {
    padding: 12px;
  }

  .sytech_auth_pop .con {
    padding: 30px 20px;
  }

  .sytech_auth_pop .pop_tabs button {
    font-size: 15px;
    padding-bottom: 12px;
  }

  .sytech_auth_pop .pop_caption strong {
    font-size: 22px;
  }

  .sytech_auth_pop .pop_caption p,
  .sytech_pop_form .pop_check,
  .sytech_pop_form .pop_link {
    font-size: 14px;
  }

  .sytech_pop_form {
    gap: 16px 0;
    margin-top: 20px;
  }

  .sytech_pop_form .label {
    font-size: 14px;
  }

  .sytech_pop_form input:not([type=checkbox]):not([type=submit]) {
    font-size: 14px;
    height: 46px;
    padding: 0 16px;
  }

  .sy_star_pick {
    --w: 148px;
  }

  .sytech_pop_form input[type=checkbox] {
    width: 16px;
    height: 16px;
  }

  .sytech_pop_form input[type=submit] {
    font-size: 15px;
    height: 46px;
  }

  .sytech_review_pop .con {
    padding: 32px 20px 28px;
  }
  .sytech_review_pop .pop_caption strong {
    font-size: 22px;
  }
  .sytech_pop_form textarea {
    font-size: 14px;
    min-height: 110px;
    padding: 12px 16px;
  }
}
