.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.d-flex.not-wrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.d-flex.d-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.d-flex.a-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.d-flex.j-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.d-flex.j-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.d-flex.j-bw {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.d-flex.j-ev {
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}
.d-flex.gap40 {
  gap: 4rem;
}
@media screen and (max-width: 1200px) {
  .d-flex.gap40 {
    gap: 2.4rem;
  }
}
.d-flex.gap24 {
  gap: 2.4rem;
}
@media screen and (max-width: 1024px) {
  .d-flex.gap24 {
    gap: 1.2rem;
  }
}
.d-flex.gap20 {
  gap: 2rem;
}
@media screen and (max-width: 1200px) {
  .d-flex.gap20 {
    gap: 1rem;
  }
}
.d-flex.gap16 {
  gap: 1.6rem;
}
@media screen and (max-width: 1200px) {
  .d-flex.gap16 {
    gap: 1rem;
  }
}
.d-flex.gap12 {
  gap: 1.2rem;
}
@media screen and (max-width: 1024px) {
  .d-flex.gap12 {
    gap: 0.6rem;
  }
}
.checker {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #4d4d4d;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  --cl-num: #667085;
}
.checker.tag-box input:checked ~ .txt {
  color: var(--color-pri);
  border-color: var(--color-pri);
}
.checker.tag-box input:checked ~ .txt .num {
  --cl-num: var(--color-pri);
}
.checker.tag-box .txt {
  padding: 0.8rem;
  border-radius: 0.4rem;
  border: 0.1rem solid var(--cl-border);
  color: var(--color-text);
  background: var(--color-white);
}
.checker.tag-text {
  min-width: 9rem;
}
@media screen and (max-width: 1200px) {
  .checker.tag-text {
    min-width: unset;
  }
}
.checker.tag-text input:checked ~ .txt {
  color: #fdb022;
  border-color: #fdb022;
}
.checker.tag-text .txt {
  color: var(--color-white);
  font-weight: 500;
  --f-sz: 1.6rem;
  font-size: var(--f-sz);
  padding: 0.8rem 0.4rem;
  border-bottom: 0.2rem solid transparent;
}
.checker .sqr {
  width: 2rem;
  height: 2rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  display: block;
  margin-top: -0.1rem;
}
.checker .sqr::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../../assets/images/check-empty.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  left: 0;
  top: 0;
}
.checker .circle {
  width: 2rem;
  height: 2rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  display: block;
}
.checker .circle::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../../assets/images/radio-empty.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  left: 0;
  top: 0;
}
.checker .txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--color-text);
  font-size: 1.6rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.2rem;
}
.checker .txt-link {
  font-weight: 600;
  text-decoration: underline;
}
.checker .num {
  margin-left: auto;
  color: var(--cl-num);
}
.checker input {
  display: none;
}
.checker input:checked ~ .sqr::after {
  background-image: url(../../assets/images/check-fill.svg);
}
.checker input:checked ~ .txt {
  color: var(--color-pri);
}
.checker input:checked ~ .circle::after {
  background-image: url(../../assets/images/radio-fill.svg);
}
.login-image .inner img {
  display: block;
  width: 100%;
}
.login-wrap {
  max-width: 120rem;
  margin: 0 auto;
  background: #fff;
  border-radius: 1.6rem;
  -webkit-box-shadow: 0 2rem 10rem rgba(52, 64, 84, 0.14);
  box-shadow: 0 2rem 10rem rgba(52, 64, 84, 0.14);
  overflow: hidden;
}
.form-ip .ip-pos {
  position: relative;
}
.form-ip .ip-pos .icon {
  position: absolute;
  width: 2.4rem;
  height: 2.4rem;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-justify-content: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--color-text);
  right: 1.6rem;
  cursor: pointer;
}
.form-ip .ip-pos input {
  padding-right: 4rem;
}
.login-panel {
  max-width: 50rem;
  margin: 0 auto;
  padding: 4rem 2.4rem;
}
.t-center {
  text-align: center;
}
.t32 {
  --f-sz: clamp(2.2rem, calc(1.6262rem + 0.8197vw), 3.2rem);
  font-size: var(--f-sz);
}
.mb-32 {
  margin-bottom: 3.2rem;
}
.login-row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  --rg: 0rem;
}
@media screen and (max-width: 768px) {
  .login-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 768px) {
  .login-row > .col {
    width: 100%;
  }
}
.login-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.4rem;
}
.login-form .box-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.8rem;
}
.login-form .b-bot {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.4rem;
}
.login-form .b-bot .t-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.4rem;
}
.login-form .b-bot .t-text::before {
  content: "";
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 0.1rem;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#000),
    to(#000)
  );
  background: linear-gradient(90deg, #000 0, #000 100%);
}
.login-form .b-bot .t-text::after {
  content: "";
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 0.1rem;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#000),
    to(#000)
  );
  background: linear-gradient(90deg, #000 0, #000 100%);
}
.login-form .b-gr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.2rem;
}
.login-form .b-gr .icon {
  width: 4rem;
  height: 4rem;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.login-forgot {
  max-width: 60rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .acc-row > .col {
    width: 100%;
  }
}
@media screen and (max-width: 980px) {
  .acc-side {
    padding: 1.2rem;
    border: 0.1rem solid #f1f5f9;
  }
}
.acc-side .b-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
  border-bottom: 0.1rem solid #f1f5f9;
}
.acc-side .b-head .icon-avt {
  width: 6.4rem;
  height: 6.4rem;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-justify-content: center;
  border-radius: 100rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .acc-side .b-head .icon-avt {
    width: 4rem;
    height: 4rem;
  }
}
.acc-side .b-head .icon-avt img {
  border-radius: unset;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}
.acc-side .b-head .b-gr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.4rem;
}
.acc-side .b-head .b-gr .t-text {
  --f-sz: clamp(1.6rem, calc(1.3705rem + 0.3279vw), 2rem);
  font-size: var(--f-sz);
  color: var(--color-pri);
  font-weight: 500;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.acc-side .b-head .b-gr .t-gr {
  color: #667085;
  font-size: 1.4rem;
  cursor: pointer;
}
.acc-side .b-tab {
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
  border-bottom: 0.1rem solid #f1f5f9;
}
.acc-side .b-tab .b-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.acc-side .b-tab .b-list .t-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.8rem;
  padding: 1.6rem;
  --f-sz: 1.6rem;
  font-size: var(--f-sz);
  color: #0b181d;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border-radius: 100rem;
}
@media screen and (max-width: 1024px) {
  .acc-side .b-tab .b-list .t-link {
    padding: 1rem;
  }
}
.acc-side .b-tab .b-list .t-link .icon {
  width: 2rem;
  height: 2rem;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media screen and (min-width: 1025px) {
  .acc-side .b-tab .b-list .t-link:hover {
    background: #f2f4f7;
    color: var(--color-pri);
  }
}
.acc-side .b-tab .b-list .t-link.is-active {
  background: #f2f4f7;
  color: var(--color-pri);
}
.acc-side .b-bot .t-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.8rem;
  padding: 1.6rem;
  --f-sz: 1.6rem;
  font-size: var(--f-sz);
  color: #475467;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border-radius: 100rem;
}
@media screen and (max-width: 600px) {
  .acc-side .b-bot .t-link {
    padding: 1rem;
  }
}
.acc-side .b-bot .t-link .icon {
  width: 2rem;
  height: 2rem;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media screen and (min-width: 1025px) {
  .acc-side .b-bot .t-link:hover {
    background: #f2f4f7;
    color: var(--color-pri);
  }
}
.acc-mana {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 980px) {
  .acc-mana {
    gap: 2.4rem;
  }
}
@media screen and (max-width: 600px) {
  .acc-mana .b-form .form-list > .col {
    width: 100%;
  }
}
.acc-mana .head {
  margin-bottom: 2rem;
}
.acc-mana .head .t-title {
  --f-sz: clamp(1.7rem, calc(1.2984rem + 0.5738vw), 2.4rem);
  font-size: var(--f-sz);
}
.acc-mana .b-adress .i-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}
.acc-mana .b-adress .i-it .inner {
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.6rem;
  border: 0.1rem solid #ececec;
}
@media screen and (max-width: 600px) {
  .acc-mana .b-adress .i-it .inner {
    padding: 1rem;
  }
}
.acc-mana .b-adress .i-it .t-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0.4rem;
}
.acc-mana .b-adress .i-it .t-head .t-gr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4rem;
}
.acc-mana .b-adress .i-it .t-head .t-gr .text {
  color: var(--color-pri);
  --f-sz: clamp(1.5rem, calc(1.3279rem + 0.2459vw), 1.8rem);
  font-size: var(--f-sz);
  font-weight: 500;
}
.acc-mana .b-adress .i-it .t-head .t-gr .t-edit {
  --f-sz: 1.6rem;
  font-size: var(--f-sz);
  color: var(--color-pri);
}
.acc-mana .b-adress .i-it .t-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.4rem;
  color: #667085;
  --f-sz: clamp(1.5rem, calc(1.3279rem + 0.2459vw), 1.8rem);
  font-size: var(--f-sz);
}
.acc-mana .b-adress .i-it .t-bot {
  color: var(--color-pri);
  font-weight: 600;
  --f-sz: 1.6rem;
  font-size: var(--f-sz);
}
.acc-mana .b-pass {
  max-width: 60rem;
}
.acc-mana .b-order {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
}
.acc-mana .b-order .t-head {
  padding: 2rem;
  border: 0.1rem solid rgba(0, 0, 0, 0.08);
  padding-bottom: 0;
}
@media screen and (max-width: 1200px) {
  .acc-mana .b-order .t-head {
    padding: 1rem;
    padding-bottom: 0;
  }
}
.acc-mana .b-order .t-head .i-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0.6rem;
  padding-bottom: 2rem;
  white-space: nowrap;
  overflow-x: auto;
}
.acc-mana .b-order .t-head .i-list::-webkit-scrollbar {
  height: 0.3rem;
}
@media screen and (max-width: 1200px) {
  .acc-mana .b-order .t-head .i-list {
    padding-bottom: 1rem;
  }
}
.acc-mana .b-order .t-head .i-list .t-link {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  color: var(--color-pri);
  --f-sz: 1.6rem;
  font-size: var(--f-sz);
  border-radius: 0.4rem;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1200px) {
  .acc-mana .b-order .t-head .i-list .t-link {
    padding: 0.5rem 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .acc-mana .b-order .t-head .i-list .t-link:hover {
    background: var(--color-sec);
  }
}
.acc-mana .b-order .t-head .i-list .t-link.active {
  background: var(--color-sec);
}
.acc-mana .b-product .b-inner {
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.6rem;
  border: 0.1rem solid rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 1200px) {
  .acc-mana .b-product .b-inner {
    padding: 1rem;
  }
}
.acc-mana .b-product .b-inner .t-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0.8rem;
}
.acc-mana .b-product .b-inner .t-top .t-text {
  --f-sz: 1.6rem;
  font-size: var(--f-sz);
  font-weight: 500;
  color: var(--color-pri);
}
@media screen and (max-width: 500px) {
  .acc-mana .b-product .b-inner .t-top .t-text {
    font-size: 1.4rem;
  }
}
.acc-mana .b-product .b-inner .t-top .t-text.t-complete {
  color: #12b76a;
}
.acc-mana .b-product .b-ctn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.acc-mana .b-product .b-ctn .b-it {
  padding: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.6rem;
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 1200px) {
  .acc-mana .b-product .b-ctn .b-it {
    padding: 0.6rem;
  }
}
.acc-mana .b-product .b-ctn .b-it .col-image {
  width: 8rem;
}
@media screen and (max-width: 768px) {
  .acc-mana .b-product .b-ctn .b-it .col-image {
    width: 6rem;
  }
}
.acc-mana .b-product .b-ctn .b-it .col-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1rem;
}
.acc-mana .b-product .b-ctn .b-it .col-content .t-gr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0.4rem;
}
.acc-mana .b-product .b-ctn .b-it .col-content .t-gr .t-name {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 600;
  --f-sz: 1.6rem;
  font-size: var(--f-sz);
  color: var(--color-pri);
}
.acc-mana .b-product .b-ctn .b-it .col-content .t-gr .t-des {
  color: #1e293b;
  font-size: 1.4rem;
}
.acc-mana .b-product .b-ctn .b-it .col-content .t-gr .t-txt {
  color: #767676;
  font-size: 1.4rem;
}
.acc-mana .b-product .b-bot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.2rem;
}
.acc-mana .b-product .b-bot .btn {
  margin-left: auto;
}
.acc-mana .b-product .b-bot .t-gr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 1.2rem 0;
}
.acc-mana .b-product .b-bot .t-gr .t-txt {
  color: #767676;
  --f-sz: 1.6rem;
  font-size: var(--f-sz);
}
.acc-mana .b-product .b-bot .t-gr .t-igr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4rem;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}
.acc-mana .b-product .b-bot .t-gr .t-igr .txt {
  color: #767676;
}
.acc-mana .b-product .b-bot .t-gr .t-igr .t-total {
  color: var(--color-pri);
  font-weight: 700;
  --f-sz: clamp(1.5rem, calc(1.3279rem + 0.2459vw), 1.8rem);
  font-size: var(--f-sz);
}
.acc-mana .b-product .b-fb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2rem;
  border-top: 0.1rem solid rgba(0, 0, 0, 0.08);
  padding-top: 1.2rem;
  margin-top: 1.2rem;
}
.acc-mana .b-product .b-fb .t-text {
  color: #12b76a;
  --f-sz: 1.6rem;
  font-size: var(--f-sz);
}
.acc-mana .b-product .b-fb .t-gr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0.4rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.acc-mana .b-product .b-fb .t-gr .t-txt {
  color: #767676;
  --f-sz: 1.6rem;
  font-size: var(--f-sz);
}
.acc-mana .b-product .b-orders {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.2rem;
}
.acc-mana .b-product .b-orders .t-gr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  --f-sz: 1.6rem;
  font-size: var(--f-sz);
}
.container.custom {
  max-width: 123rem;
}
.popup-address .popup-main {
  width: 100rem;
}
.mb-24 {
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 1024px) {
  .mb-24 {
    margin-bottom: 1.2rem;
  }
}
.paym-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4rem;
}
.sec-paym {
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .paym-form .col {
    width: 100%;
  }
}
.paym-row {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (min-width: 1300px) {
  .paym-row {
    --cg: 10rem;
  }
}
@media screen and (max-width: 1024px) {
  .paym-row > .col {
    width: 100%;
  }
}
.paym-prds {
  border: 0.1rem solid rgba(102, 112, 133, 0.2);
  border-radius: 0.8rem;
}
.t20 {
  --f-sz: clamp(1.6rem, calc(1.3705rem + 0.3279vw), 2rem);
  font-size: var(--f-sz);
}
.paym-side {
  position: sticky;
  top: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.4rem;
}
.c-complete {
  color: #12b76a;
}
.paym-req a {
  text-decoration: underline;
}
.paym-pro {
  padding: 2.4rem;
  background: #f5f5f5;
}
.paym-pro .t-text {
  --f-sz: clamp(1.6rem, calc(1.3705rem + 0.3279vw), 2rem);
  font-size: var(--f-sz);
}
.paym-pro .t-des {
  color: #667085;
}
.bns {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  margin: 1.5rem;
}
.bns-voucher {
  position: absolute;
  width: 10%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.bns-voucher.voucher-left {
  bottom: 0;
  left: 0;
}
.bns-voucher.voucher-right {
  right: 0;
  top: 0;
}
.bns-voucher .inner {
  width: 100%;
}
.bns-voucher img {
  display: block;
  width: 100%;
}
.bns-img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 17%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .bns-img {
    opacity: 0.8;
  }
}
.bns-img.img-left {
  left: 10%;
}
@media screen and (max-width: 1200px) {
  .bns-img.img-left {
    left: 0;
    top: 50%;
  }
}
.bns-img.img-right {
  right: 10%;
}
@media screen and (max-width: 1200px) {
  .bns-img.img-right {
    right: 0;
    top: 50%;
  }
}
.bns-img .inner {
  aspect-ratio: 1/1;
}
.bns-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.bns-panel {
  min-height: 30rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 2.4rem;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .bns-panel {
    min-height: 20rem;
    gap: 1.2rem;
  }
}
.bns-panel .countdown-it {
  font-size: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.8rem;
}
@media screen and (max-width: 768px) {
  .bns-panel .countdown-it {
    font-size: 2rem;
  }
}
.bns-panel .countdown-it .b-group::before {
  line-height: 1;
}
.bns-panel .countdown {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .bns-panel .countdown {
    --gap: 1.2rem;
    gap: var(--gap);
  }
}
.bns-panel .countdown .b-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4rem;
}
.bns-panel .countdown .t-num {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 4.4rem;
  height: 6.4rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 768px) {
  .bns-panel .countdown .t-num {
    width: 3rem;
    height: 4rem;
  }
}
.bns-panel .countdown .t-text {
  --f-sz: clamp(1.6rem, calc(1.3705rem + 0.3279vw), 2rem);
  font-size: var(--f-sz);
  display: block;
}
.bns .b-head {
  font-size: 6rem;
  position: relative;
  display: inline-block;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 6rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .bns .b-head {
    font-size: 7.6vw;
    padding: 0 2rem;
  }
}
.bns .b-head .t-text {
  letter-spacing: 0.4rem;
  display: inline-block;
  position: relative;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0.2rem transparent;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#fff),
    to(#fff)
  );
  background-image: linear-gradient(to right, #fff, #fff);
}
.bns .b-head .t-text::before {
  content: attr(title);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0.8rem transparent;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#fe434f),
    to(#fe434f)
  );
  background-image: linear-gradient(to right, #fe434f, #fe434f);
}
.bns .b-head .t-text.has-shadow::after {
  content: attr(title);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform: translate(0.6rem, 0.6rem);
  transform: translate(0.6rem, 0.6rem);
  transform-origin: top;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0.8rem transparent;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(0, 0, 0, 0.2)),
    to(rgba(0, 0, 0, 0.2))
  );
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.2)
  );
}
@media screen and (max-width: 768px) {
  .bns .b-head .t-text.has-shadow::after {
    -webkit-transform: translate(1%, 4%);
    transform: translate(1%, 4%);
  }
}
.bns .b-head .dcor {
  position: absolute;
  width: 4rem;
  top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .bns .b-head .dcor {
    width: 2.6rem;
  }
}
.bns .b-head .dcor.dcor-left {
  left: 0;
}
.bns .b-head .dcor.dcor-right {
  right: 0;
}
.bns .b-head .dcor img {
  width: 100%;
  display: block;
}
.bns.bns-fs {
  position: relative;
  margin: 1rem 2rem 2rem;
  border-radius: 1rem;
}
.bns-wrap {
  position: relative;
  z-index: 2;
}
.bns.bns-fs .bns-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.bns.bns-fs .bns-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.bns.bns-fs .bns-panel .countdown .t-num {
  background: rgba(255, 255, 255, 0.2);
  color: var(--countdown-color);
}
.bns.bns-fs .bns-panel .countdown .t-num {
  background: var(--countdown-bg-color) !important;
  color: var(--countdown-color) !important;
}
.bns.bns-fs .bns-panel .countdown .t-text {
  color: var(--countdown-color) !important;
}
.bns.bns-fs .bns-panel .countdown-it .b-group::before {
  color: var(--countdown-color) !important;
}
.prds-ctn .b-tag {
  padding: 0.8rem 1rem;
  font-size: 1.4rem;
  color: #e31b54;
  background: #ffe4e8;
  border-radius: 0.6rem;
}
@media screen and (max-width: 500px) {
  .prds-ctn .b-tag {
    font-size: 1.2rem;
    padding: 0.4rem 0.8rem;
  }
}
.prds-ctn .b-feedback {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.4rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.prds-ctn .b-feedback .text {
  color: #231f20;
}
.prds-ctn .b-feedback .txt {
  color: #667085;
}
.prds-ctn .b-feedback .box-star {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.6rem;
  position: relative;
}
.prds-ctn .b-feedback .box-star::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  background: #d9d9d9;
  position: absolute;
  top: 50%;
  border-radius: 100rem;
  right: -1.2rem;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}
.prds-ctn .b-feedback .box-star .icon {
  width: 1.6rem;
  height: 1.6rem;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.prds-ctn .b-feedback .box-star .t-gr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.6rem;
}
.t-price .t-sale {
  padding: 0.4rem 0.8rem;
  background: var(--color-pri);
  color: var(--color-white);
  border-radius: 100rem;
  font-size: 1.4rem;
}
.prds-box {
  min-height: 7.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.2rem;
  padding: 0.8rem 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  display: none;
}
.prds-box:last-child::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100vw;
  height: 0.6rem;
  background: #f2f4f7;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.prds-box::before {
  content: "";
  position: absolute;
  top: 0;
  height: 0.6rem;
  width: 100vw;
  background: #f2f4f7;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.prds-box .t-gr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.prds-box .text {
  font-size: 1.8rem;
  color: var(--color-pri);
}
.prds-box .txt {
  color: #98a2b3;
  font-size: 1.2rem;
}
.prds-box .t-btn {
  color: #98a2b3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.4rem;
}
.prds-box .t-btn .txt {
  font-size: 1.6rem;
}
.prds-box .t-btn .icon {
  width: 1.6rem;
  height: 1.6rem;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-justify-content: center;
}
@media screen and (max-width: 1024px) {
  .woo-variation-gallery-thumbnail-wrapper {
    display: none;
  }
}
.prds-variations-custom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 110;
  padding: 1.5rem;
  -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
  box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
  border-radius: 1.6rem 1.6rem 0 0;
  opacity: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.prds-variations-custom.open {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.prds-variations-custom .t-btn .btn:not(.btn-second) {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.overlay-variations {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 101;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.overlay-variations.open {
  opacity: 1;
  visibility: visible;
}
.prds-mobile-box .cmini-image {
  width: 4.8rem;
}
.prds-mobile-box .cmini-content .t-head .t-link {
  font-size: 1.4rem;
}
.t-price del {
  color: #98a2b3;
}
.t-price ins {
  text-decoration: unset;
  font-weight: 400 !important;
}
.prds-mini {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 99;
  padding: 1.5rem;
  -webkit-box-shadow: 0 -4px 20px -2px rgba(16, 24, 40, 0.1);
  box-shadow: 0 -4px 20px -2px rgba(16, 24, 40, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.prds-mini .prds-mini-share {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  background: #fff;
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
  border-bottom: 0;
  display: none;
}
.prds-mini .prds-mini-share.open {
  display: block;
}
.prds-mini .prds-mini-share .i-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4rem;
}
.prds-mini .prds-mini-share .i-link {
  width: 3.2rem;
  height: 3.2rem;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.prds-mini .b-gr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.prds-mini .b-gr .btn.full {
  width: auto;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media screen and (max-width: 500px) {
  .prds-mini .b-gr .btn.full {
    font-size: 1.4rem;
  }
}
.prds-mini .b-gr .icon {
  display: none;
}
.prds-mini .b-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.2rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.prds-mini .b-box .icon {
  width: 2rem;
  height: 2rem;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.prds-mini .b-box .txt {
  color: #98a2b3;
  font-size: 1rem;
}
@media screen and (max-width: 1400px) {
  .sale-prd-row > .col {
    width: 50%;
  }
}
@media screen and (max-width: 940px) {
  .sale-prd-row > .col {
    width: 100%;
  }
}
.t-price.mona-product-price > .price {
  width: 100%;
}
.t-center {
  text-align: center;
}
.read-content {
  overflow: hidden;
  position: relative;
}
.read-content.hidden::before {
  opacity: 0;
}
.read-content::before {
  content: " ";
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  height: 50%;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(255, 255, 255, 0)),
    to(#fff)
  );
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0, #fff 100%);
  pointer-events: none;
}
.woo-variation-product-gallery {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .sec-pdv {
    padding-top: 0;
  }
}
.sec-prds {
  padding: 1.5rem 0;
}
@media screen and (max-width: 1024px) {
  .sec-prds {
    padding-top: 0;
  }
}
.sec-read {
  padding-top: 0;
}
.prds-box-sale {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  padding: 1.2rem 2.4rem;
}
@media screen and (min-width: 1025px) {
  .prds-box-sale {
    width: 60rem;
    max-width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .prds-box-sale {
    margin: 0 -1.5rem;
    border-radius: 0;
    padding: 0.4rem 1.5rem;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    width: 100vw;
  }
}
.prds-box-sale::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#fb2e57),
    color-stop(72%, #fe3a44),
    to(#fe5828)
  );
  background: linear-gradient(90deg, #fb2e57 0, #fe3a44 72%, #fe5828 100%);
  z-index: -1;
}
.prds-box-sale .ic-dcor {
  position: absolute;
  top: 50%;
  height: 116%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0.5;
}
.prds-box-sale .ic-dcor img {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
.prds-box-sale .col-mid {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.prds-box-sale .t-price {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.prds-box-sale .t-price .t-new {
  width: 100%;
  color: var(--color-white);
  line-height: 1.4;
}
@media screen and (max-width: 1024px) {
  .prds-box-sale .t-price .t-new {
    font-size: 1.8rem;
  }
}
.prds-box-sale .t-price .t-old {
  color: var(--color-white);
  opacity: 0.5;
}
@media screen and (max-width: 1024px) {
  .prds-box-sale .t-price .t-old {
    font-size: 1.4rem;
  }
}
.prds-box-sale .t-price .t-sale {
  background: rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 1024px) {
  .prds-box-sale .t-price .t-sale {
    font-size: 1rem;
    padding: 0.2rem 0.4rem;
  }
}
.prds-box-sale .t-info {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  text-align: right;
}
.prds-box-sale .t-info .thead {
  --f-sz: clamp(1.5rem, calc(1.3279rem + 0.2459vw), 1.8rem);
  font-size: var(--f-sz);
  color: var(--color-white);
}
@media screen and (max-width: 1024px) {
  .prds-box-sale .t-info .thead {
    font-size: 1.3rem;
  }
}
.prds-box-sale .t-info .t-gr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.prds-box-sale .t-info .t-gr .txt {
  font-size: 1.4rem;
  color: var(--color-white);
}
@media screen and (max-width: 1024px) {
  .prds-box-sale .t-info .t-gr .txt {
    font-size: 1.2rem;
  }
}
.prds-box-sale .countdown {
  --f-sz: clamp(1.7rem, calc(1.2984rem + 0.5738vw), 2.4rem);
  font-size: var(--f-sz);
  font-weight: 700;
  color: var(--color-white);
  --gap: 1rem;
  gap: 1rem;
}
@media screen and (max-width: 1024px) {
  .prds-box-sale .countdown {
    font-size: 1.4rem;
  }
}
.acc-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 1024px) {
  .acc-search {
    gap: 1rem;
  }
}
.acc-search .box-search {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.acc-search .box-search .search-form {
  padding: 1.2rem;
  height: 100%;
  background: #f2f4f7;
}
@media screen and (max-width: 1024px) {
  .acc-search .box-search .search-form {
    padding: 1rem;
  }
}
.acc-search .box-search .search-form .b-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem;
}
.acc-search .box-search .search-form .icon {
  width: 2.4rem;
  height: 2.4rem;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.acc-search .box-search .search-form input {
  background: 0 0;
  width: 100%;
  border: none;
  outline: unset;
}
.acc-search .box-select {
  width: 14rem;
}
.cmini-delete {
  width: 2rem;
  height: 2rem;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-justify-content: center;
  cursor: pointer;
}
.comment-wrap .btn {
  margin: 0 auto;
}
