/* @import 'all.css';
@import 'fontawesome.css';
@import 'hint.min.css';
@import 'global-styles.css';
@import 'global-fonts.css'; */

*,
*::after,
*::before {
  margin: 0 ;
  padding: 0 ;
  box-sizing: border-box;
  background-repeat: no-repeat;
  font-family: inherit;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  background-color: #f2f2f2;
  /* @supports ( (--a: 0)) {
    font-family: var(--font-yekan-bakh-regular);
  }
  @supports ( not (--a: 0)) {
    font-family: "Yekan BakhRegular", sans-serif;
	
  } */
}
body.preload * {
  transition: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}
body.scroll_hidden--mobile {
  overflow-y: visible;
}
body.bg-white {
  background-color: #fff;
}
@media (max-width: 997px) {
  body.scroll_hidden--mobile {
    overflow-y: hidden;
  }
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  -webkit-user-drag: none;
  -moz-user-drag: none;
  -ms-user-drag: none;
  -o-user-drag: none;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

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

.d-none{
  display:none;
}

button,
input[type=submit],
input[type=reset],
input[type=button] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  line-height: 1rem;
  text-align: center;
  font-family: inherit;
  background: transparent;
}
button:hover,
input[type=submit]:hover,
input[type=reset]:hover,
input[type=button]:hover {
  cursor: pointer;
}
button i,
input[type=submit] i,
input[type=reset] i,
input[type=button] i {
  font-size: 18px;
}

a.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 350ms ease-in;
}

.btn {
  transition: all 350ms ease-in;
}
.btn:disabled {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  cursor: not-allowed;
}
/* .btn:active {
  background-color: var(--red-1);
} */
.btn.full {
  width: var(--width-100);
}
.btn.xsmall {
  padding: 0.5rem 1rem;
  height: 32px;
}
.btn.small {
  padding: 0.75rem 1rem;
  height: 40px;
}
.btn.medium {
  padding: 1.25rem 1rem;
  height: 50px;
}
.btn.h-48 {
  padding: 1.25rem 1rem;
  height: 48px;
}
.btn.large {
  padding: 1.5rem 1rem;
  height: 60px;
}
.btn.loading {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: default;
}
.btn.loading.outline .loading_item, .btn.loading.link .loading_item, .btn.loading.underline .loading_item {
  background-color: var(--main-color);
}
.btn.loading .loading_item {
  display: block;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  animation: loading 1s ease-in infinite alternate;
}
.btn.loading .loading_item:nth-child(2) {
  animation-delay: 0.25s;
}
.btn.loading .loading_item:nth-child(3) {
  animation-delay: 0.5s;
}
.btn.solid {
  background-color: var(--main-color);
  color: #fff;
  border-radius: 0.75rem;
}
.btn.solid:hover {
  background-color: var(--red-5);
}
a.btn.solid:hover{
  color: #fff;
}
.btn.solid:disabled {
  background-color: var(--gray-211) !important;
}
.btn.solid:active {
  background-color: var(--red-1);
}
.btn.outline {
  background-color: transparent;
  color: var(--main-color);
  border-radius: 0.75rem;
  border: 1px solid var(--main-color);
}
.btn.outline:disabled {
  background-color: transparent !important;
  color: var(--gray-211);
  border-color: var(--gray-211) !important;
}
.btn.outline:hover {
  border-color: var(--red-5);
  color: var(--red-5);
}
.btn.outline:active {
  border-color: var(--red-1);
  color: var(--red-1);
}
.btn.underline {
  position: relative;
  background-color: transparent;
  color: var(--gray-201);
}
.btn.underline::after {
  content: " ";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  width: var(--width-100);
  height: 1px;
  background-color: var(--main-color);
  transition: all 250ms;
}
.btn.underline:hover::after {
  transform: translateY(5px);
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%), var(--red-1);
  box-shadow: 0px 4px 4px 0px rgba(230, 18, 61, 0.4);
}
.btn.underline:active::after {
  background: var(--red-1);
}
.btn.underline:disabled {
  color: var(--gray-211);
  border-bottom-color: var(--gray-211);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: not-allowed;
}
.btn.underline:disabled::after {
  background: var(--gray-211);
}
.btn.underline.loading {
  border-bottom: none;
}
.btn.link {
  background-color: transparent;
  color: var(--link-color);
}
.btn.link:hover {
  color: var(--red-5);
}
.btn.link:active {
  color: var(--red-1);
}
.btn.link:disabled {
  color: var(--gray-211);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: not-allowed;
}
.btn.gradient {
  position: relative;
  z-index: 0;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
}
.btn.gradient > * {
  position: relative;
  z-index: 3;
}
.btn.gradient::after {
  content: " ";
  position: absolute;
  z-index: 1;
  width: var(--width-100);
  height: 100%;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="142" height="32" viewBox="0 0 142 32" fill="none"><g clip-path="url(%23clip0_1788_70826)"><ellipse cx="97.5" cy="16" rx="97.5" ry="16" transform="matrix(1 0 0 -1 -27 47)" fill="%23CF1037"/></g><defs><clipPath id="clip0_1788_70826"><rect width="142" height="32" rx="8" transform="matrix(1 0 0 -1 0 32)" fill="white"/></clipPath></defs></svg>');
  background-size: cover;
  background-position: top center;
}
.btn.gradient:hover::after {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="142" height="32" viewBox="0 0 142 32" fill="none"><g clip-path="url(%23clip0_1788_70846)"><ellipse cx="97.5" cy="16" rx="97.5" ry="16" transform="matrix(1 0 0 -1 -27 48)" fill="%23CF1037"/><ellipse cx="97.5" cy="16" rx="97.5" ry="16" transform="matrix(1 0 0 -1 -27 48)" fill="%23EB4164"/></g><defs><clipPath id="clip0_1788_70846"><rect width="142" height="32" rx="8" transform="matrix(1 0 0 -1 0 32)" fill="white"/></clipPath></defs></svg>');
}
.btn.gradient:disabled {
  background-color: var(--gray-211) !important;
}
.btn.gradient:disabled::after {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="142" height="32" viewBox="0 0 142 32" fill="none"><g clip-path="url(%23clip0_1788_70846)"><ellipse cx="97.5" cy="16" rx="97.5" ry="16" transform="matrix(1 0 0 -1 -27 48)" fill="%23CF1037"/><ellipse cx="97.5" cy="16" rx="97.5" ry="16" transform="matrix(1 0 0 -1 -27 48)" fill="%23999999"/></g><defs><clipPath id="clip0_1788_70846"><rect width="142" height="32" rx="8" transform="matrix(1 0 0 -1 0 32)" fill="white"/></clipPath></defs></svg>');
}
.btn.gradient:active {
  background-color: var(--red-1);
}
.btn.gradient:active::after {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="142" height="32" viewBox="0 0 142 32" fill="none"><g clip-path="url(%23clip0_1788_70846)"><ellipse cx="97.5" cy="16" rx="97.5" ry="16" transform="matrix(1 0 0 -1 -27 48)" fill="%23CF1037"/><ellipse cx="97.5" cy="16" rx="97.5" ry="16" transform="matrix(1 0 0 -1 -27 48)" fill="%23e6123d"/></g><defs><clipPath id="clip0_1788_70846"><rect width="142" height="32" rx="8" transform="matrix(1 0 0 -1 0 32)" fill="white"/></clipPath></defs></svg>');
}
.btn.solid_animate {
  background-color: var(--main-color);
  color: #fff;
  border-radius: 0.75rem;
  overflow: hidden;
  gap: 0;
}
.btn.solid_animate.loading {
  gap: 0.5rem;
}
.btn.solid_animate .icon {
  width: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: opacity 250ms, transform 250ms, visibility 0ms 250ms, width 250ms;
}
.btn.solid_animate:hover {
  background-color: var(--red-5);
  gap: 0.5rem;
}
.btn.solid_animate:hover .icon {
  width: auto;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 250ms, transform 250ms, width 250ms;
}
.btn.solid_animate:disabled {
  background-color: var(--gray-211) !important;
}
.btn.solid_animate:active {
  background-color: var(--red-1);
}
.btn.rounded {
  border-radius: 0.5rem;
}
.btn.rounded-full {
  border-radius: 999px;
}

.btn_gray.small {
  padding: 0.75rem 1rem;
  height: 40px;
}
.btn_gray.medium {
  padding: 1.25rem 1rem;
  height: 50px;
}
.btn_gray.large {
  padding: 1.5rem 1rem;
  height: 60px;
}
.btn_gray.outline {
  background-color: transparent;
  color: var(--gray-200);
  border-radius: 0.75rem;
  border: 1px solid var(--gray-200);
  transition: all 350ms ease-in;
}
.btn_gray.outline:hover {
  background-color: var(--gray-200);
  color: #fff;
}
.btn_gray.link {
  color: var(--gray-200);
}

.link_primary {
  color: var(--link-color);
}
.link_primary:hover {
  text-transform: underline;
}
.link_primary.bold {
  font-weight: 600;
}

.link_blue {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--blue-3);
}
.link_blue:hover {
  text-transform: underline;
}
.link_blue i {
  font-size: 20px;
}
.link_blue.bold {
  font-weight: 600;
}

.link_white {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
}
.link_white:hover {
  text-transform: underline;
}
.link_white i {
  font-size: 20px;
}
.link_white.bold {
  font-weight: 600;
}

.link_gray {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: transparent;
  color: var(--gray-201);
}
.link_gray.small svg {
  width: 18px;
  height: 18px;
}
.link_gray.small i {
  font-size: 18px;
}
.link_gray.small p {
  width: calc(var(--width-100) - 18px - 0.5rem);
  font-size: 0.85rem;
}
.link_gray svg {
  width: 22px;
  height: 22px;
}
.link_gray i {
  font-size: 22px;
}
.link_gray p {
  width: calc(var(--width-100) - 22px - 0.5rem);
}
.link_gray.underline {
  text-decoration: underline;
}

.counter_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
  border: 1px solid var(--gray-207);
}
.counter_container .counter_button {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background-color: var(--black-10);
  color: var(--gray-211);
}
.counter_container .counter_text {
  width: 35px;
  color: var(--black-0);
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
}
.counter_container .counter_input {
  background-color: #fff;
  outline-color: transparent;
  padding: 0.3rem 0.5rem;
  width: 35px;
  color: var(--black-0);
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  transition: outline-color 250ms ease-in;
}
.counter_container .counter_input:focus {
  outline-color: var(--blue-1);
  transition: outline-color 250ms ease-in;
}

.btn_close__circle--white {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: var(--gray-200);
  border-radius: 50%;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.1);
}
.btn_close__circle--white svg {
  width: 30px;
  height: 30px;
}
.btn_close__circle--white i {
  font-size: 25px;
}

.btn_close__circle--primary {
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--red-1);
  color: #fff;
  border-radius: 50%;
}
.btn_close__circle--primary svg {
  width: 25px;
  height: 25px;
}
.btn_close__circle--primary i {
  font-size: 22px;
}

.btn_login__google {
  flex-direction: column;
  border-radius: 8px;
  padding: 0.75rem 1.2rem;
  border: 1px solid var(--gray-211);
}
@media (min-width: 420px) {
  .btn_login__google {
    flex-direction: row;
  }
}

.btn_like__product {
  color: var(--black-201);
}
.btn_like__product.liked {
  color: var(--red-4);
  animation: likeEffect ease-in 500ms forwards;
}

.btn_copy__code {
  position: relative;
  z-index: 2;
  cursor: pointer;
}
.btn_copy__code .box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
  background-color: var(--gray-204);
  color: var(--gray-200);
}
.btn_copy__code .box svg {
  width: 22px;
  height: 22px;
  transition: color 250ms;
}
.btn_copy__code .box i {
  font-size: 20px;
  transition: color 250ms;
}
.btn_copy__code .box p {
  width: calc(var(--width-100) - 22px - 0.5rem);
  flex: 0 0 calc(100% - 22px - 0.5rem);
  font-size: 0.9rem;
}
.btn_copy__code .status {
  position: absolute;
  z-index: -3;
  right: 0;
  width: 80px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gray-204);
  color: var(--main-color);
  border-radius: 0.5rem;
  text-align: center;
  transition: right 250ms;
}
.btn_copy__code.active .box i {
  color: var(--main-color);
}
.btn_copy__code.active .status {
  right: -75px;
}
.btn_copy__code:hover .box i {
  color: var(--main-color);
}
.btn_copy__code:hover .status {
  right: -75px;
}

.btn_tag__sub.opened .accordion_button p {
  color: var(--red-1);
}
.btn_tag__sub.opened .accordion_button .fa-plus-square {
  display: none;
}
.btn_tag__sub.opened .accordion_button .fa-minus-square {
  display: block;
}
.btn_tag__sub.opened .accordion_content .btn_tag__content {
  padding: 0.5rem 0;
  max-height: -moz-fit-content;
  max-height: fit-content;
}
.btn_tag__sub .accordion_button {
  width: var(--width-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.btn_tag__sub .accordion_button i {
  font-size: 20px;
}
.btn_tag__sub .accordion_button .fa-plus-square {
  display: block;
}
.btn_tag__sub .accordion_button .fa-minus-square {
  display: none;
}
.btn_tag__sub .btn_tag__content {
  padding: 0;
  margin-top: 0.5rem;
  background-color: var(--gray-204);
  border-radius: 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 250ms, padding 250ms;
}
.btn_tag__sub .btn_tag__content .btn_tag__items {
  width: var(--width-100);
  font-size: 0.9rem;
  color: var(--black-200);
  padding: 0.75rem 1.2rem;
  cursor: pointer;
}

.float_product__buttons {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  position: fixed;
  left: 1rem;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
}
.float_product__buttons .float_button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.05);
}
.float_product__buttons .float_button .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.float_product__buttons .float_button .icon i {
  font-size: 20px;
  color: var(--black-0);
}
.float_product__buttons .float_button .icon .badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: var(--blue-8);
  color: #fff;
  padding: 0 3px;
  font-size: 0.75rem;
}
@media (min-width: 881px) {
  .float_product__buttons {
    display: flex;
  }
}

.goup_button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  overflow: hidden;
  --after-width: 0%;
  --before-width: 0%;
  --after-height: 0%;
  --before-height: 0%;
  --before-visible: "hidden";
  --after-visible: "hidden";
}
.goup_button::after {
  position: absolute;
  content: "";
  width: var(--after-width);
  height: var(--after-height);
  visibility: var(--after-visible);
  z-index: 4;
}
.goup_button::before {
  position: absolute;
  content: "";
  width: var(--before-width);
  height: var(--before-height);
  visibility: var(--before-visible);
  z-index: 4;
}
.goup_button::after {
  bottom: 0;
  right: 0;
  border-left: 3px solid var(--blue-8);
  border-bottom: 3px solid var(--blue-8);
  transition: width 0.1s ease 0.1s, height 0.1s ease, visibility 0s 0.2s;
}
.goup_button::before {
  top: 0;
  left: 0;
  border-top: 3px solid var(--blue-8);
  border-right: 3px solid var(--blue-8);
  transition: width 0.1s ease 0.3s, height 0.1s ease 0.2s, visibility 0s 0.4s;
}
.goup_button .goup_button__container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
}

@keyframes loading {
  0% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(5px);
  }
}
@keyframes likeEffect {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}
.white_card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-radius: 1rem;
  padding: 1.5rem;
  background-color: white;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.05);
}
.white_card.no_gap {
  gap: 0;
}

.white_card--border_row {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  padding: 0 1.5rem;
  background-color: #fff;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.05);
}
.white_card--border_row .item {
  border-bottom: 1px solid var(--black-10);
  padding: 1rem 0;
}
.white_card--border_row .item:last-child {
  border-bottom-width: 0;
}

.outline_card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--black-10);
}
.outline_card.sharp_top {
  border-radius: 0 0 0.5rem 0.5rem;
}

.outline_card__space_between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--black-10);
}
.outline_card__space_between.sharp_top {
  border-radius: 0 0 0.5rem 0.5rem;
}

.outline_card--border_2 {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  border-radius: 0.5rem;
  border: 1px solid var(--black-10);
}
.outline_card--border_2.rounded-t-none {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.outline_card--border_2 .item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  border-bottom: 1px solid var(--black-10);
}
.outline_card--border_2 .item:last-child {
  border-bottom-width: 0;
}
@media (min-width: 556px) {
  .outline_card--border_2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .outline_card--border_2 .item {
    border-left: 1px solid var(--black-10);
  }
  .outline_card--border_2 .item:nth-child(2n) {
    border-left-width: 0;
  }
  .outline_card--border_2 .item:nth-last-child(-n+2) {
    border-bottom-width: 0;
  }
  .outline_card--border_2 .item:last-child {
    border-left-width: 0;
    border-bottom-width: 0;
  }
}

.outline_card--border_row {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--black-10);
}
.outline_card--border_row .item {
  border-bottom: 1px solid var(--black-10);
  padding: 0.75rem 0;
}
.outline_card--border_row .item:first-child {
  padding: 0 0 0.75rem;
}
.outline_card--border_row .item:last-child {
  border-bottom-width: 0;
  padding: 0.75rem 0 0;
}

.dash_card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px dashed var(--black-10);
}

.gray_card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  background-color: var(--default-bg-color);
}
.gray_card.sharp_top {
  border-radius: 0 0 0.5rem 0.5rem;
}

.post_card--1 {
  display: block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-radius: 1rem;
  height: 300px;
}
.post_card--1 img {
  width: var(--width-100);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post_card--1 .post_card__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 95.83%);
}
.post_card--1 .post_card__body .post_card__title {
  font-size: 1.3rem;
  text-align: center;
}
.post_card--1 .post_card__body .post_card__details {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.post_card--1 .post_card__body .post_card__details .post_card__detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.post_card--1 .post_card__body .post_card__details .post_card__detail svg {
  width: 17px;
  height: 17px;
}
.post_card--1 .post_card__body .post_card__details .post_card__detail i {
  font-size: 18px;
}
.post_card--1.zoomin_effect img {
  transition: transform 350ms;
  transform: scale(1);
}
.post_card--1.zoomin_effect:hover img {
  transform: scale(1.15);
}
.post_card--1.zoomout_effect img {
  transition: transform 350ms;
  transform: scale(1.15);
}
.post_card--1.zoomout_effect:hover img {
  transform: scale(1);
}
.post_card--1.align_right .post_card__body .post_card__title {
  text-align: right;
}
.post_card--1.align_center .post_card__body .post_card__title {
  text-align: center;
}
.post_card--1.align_left .post_card__body .post_card__title {
  text-align: left;
}

.post_card--2 {
  display: block;
  position: relative;
}
.post_card--2 .post_card__cover {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  overflow: hidden;
  height: 250px;
}
.post_card--2 .post_card__cover img {
  width: var(--width-100);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post_card--2 .post_card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 92%;
  margin: -5rem auto 0;
}
.post_card--2 .post_card__body .post_card__tag {
  margin: 0 auto;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  background-color: var(--black-200);
  color: #fff;
  text-align: center;
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem;
}
.post_card--2 .post_card__body .post_card__card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: var(--width-100);
  padding: 1rem;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.1);
}
.post_card--2 .post_card__body .post_card__card .post_card__details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--gray-204);
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  color: var(--gray-201);
  font-size: 0.8rem;
}
.post_card--2 .post_card__body .post_card__card .post_card__details .post_card__detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.post_card--2 .post_card__body .post_card__card .post_card__details .post_card__detail svg {
  width: 17px;
  height: 17px;
}
.post_card--2 .post_card__body .post_card__card .post_card__details .post_card__detail i {
  font-size: 18px;
}
.post_card--2 .post_card__body .post_card__card .post_card__details .line_vertical {
  width: 1px;
  height: 20px;
  background-color: var(--gray-201);
}
.post_card--2 .post_card__body .post_card__card .post_card__title {
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}
.post_card--2 .post_card__body .post_card__card .post_card__description {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 0.8rem;
  line-height: 1.5rem;
  text-align: center;
  color: var(--gray-211);
}
.post_card--2 .post_card__body .post_card__card .link_container {
  display: flex;
  justify-content: center;
}
.post_card--2 .post_card__body .post_card__card .link_container .post_card__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--gray-204);
  border-radius: 0.5rem;
  padding: 0.5rem;
}
.post_card--2 .post_card__body .post_card__card .link_container .post_card__link p {
  color: var(--black-0);
  font-weight: 500;
  font-size: 0.8rem;
}
.post_card--2 .post_card__body .post_card__card .link_container .post_card__link svg {
  width: 20px;
  height: 20px;
  color: var(--red-1);
}
.post_card--2 .post_card__body .post_card__card .link_container .post_card__link i {
  font-size: 20px;
  color: var(--red-1);
}
.post_card--2.zoomin_effect .post_card__cover img {
  transition: transform 350ms ease-in;
  transform: scale(1);
}
.post_card--2.zoomin_effect:hover img {
  transform: scale(1.15);
}
.post_card--2.zoomout_effect .post_card__cover {
  transition: transform 350ms ease-in;
}
.post_card--2.zoomout_effect .post_card__cover img {
  transform: scale(1.15);
}
.post_card--2.zoomout_effect:hover img {
  transform: scale(1);
}
.post_card--2.bgblack_button__effect .post_card__cover {
  cursor: pointer;
}
.post_card--2.bgblack_button__effect .post_card__cover .post_cover__button {
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease-in;
}
.post_card--2.bgblack_button__effect:hover .post_card__cover .post_cover__button {
  opacity: 1;
  visibility: visible;
}
.post_card--2.bgblur_button__effect .post_card__cover {
  cursor: pointer;
}
.post_card--2.bgblur_button__effect .post_card__cover .post_cover__button {
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease-in;
}
.post_card--2.bgblur_button__effect .post_card__cover img {
  filter: blur(0);
  -webkit-filter: blur(0);
  transition: all 300ms ease-in;
}
.post_card--2.bgblur_button__effect:hover .post_card__cover .post_cover__button {
  opacity: 1;
  visibility: visible;
  transition: all 300ms ease-in;
}
.post_card--2.bgblur_button__effect:hover .post_card__cover img {
  filter: blur(7.5px);
  -webkit-filter: blur(7.5px);
  transition: all 300ms ease-in;
}
.post_card--2.bgwhite_button__effect .post_card__cover {
  cursor: pointer;
  transform: all 350ms ease-in;
}
.post_card--2.bgwhite_button__effect .post_card__cover .post_cover__button {
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease-in;
}
.post_card--2.bgwhite_button__effect:hover .post_card__cover .post_cover__button {
  opacity: 1;
  visibility: visible;
}
.post_card--2.border_dark__effect .post_card__cover {
  position: relative;
  cursor: pointer;
}
.post_card--2.border_dark__effect .post_card__cover::after {
  content: " ";
  position: absolute;
  inset: 0;
  background: transparent;
  border: 0 solid rgba(0, 0, 0, 0.4);
  border-radius: 1rem;
  transition: border 350ms ease-in;
}
.post_card--2.border_dark__effect:hover .post_card__cover::after {
  border-width: 10px;
}
.post_card--2.border_white__effect .post_card__cover {
  position: relative;
  cursor: pointer;
}
.post_card--2.border_white__effect .post_card__cover::after {
  content: " ";
  position: absolute;
  inset: 0;
  background: transparent;
  border: 0 solid rgba(255, 255, 255, 0.4);
  border-radius: 1rem;
  transition: border 350ms ease-in;
}
.post_card--2.border_white__effect:hover .post_card__cover::after {
  border-width: 10px;
}
.post_card--2.align_center .post_card__body .post_card__title, .post_card--2.align_center .post_card__body .post_card__description {
  text-align: center;
}
.post_card--2.align_center .post_card__body .link_container {
  justify-content: center;
}
.post_card--2.align_left .post_card__body .post_card__title, .post_card--2.align_left .post_card__body .post_card__description {
  text-align: left;
}
.post_card--2.align_left .post_card__body .link_container {
  justify-content: left;
}
.post_card--2.align_right .post_card__body .post_card__title, .post_card--2.align_right .post_card__body .post_card__description {
  text-align: right;
}
.post_card--2.align_right .post_card__body .link_container {
  justify-content: right;
}

.post_card--3 {
  display: block;
  padding: 1rem;
  border-radius: 1rem;
  overflow: hidden;
  background-color: #fff;
}
.post_card--3 .post_card__cover {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  height: 250px;
}
.post_card--3 .post_card__cover img {
  width: var(--width-100);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post_card--3 .post_card__cover .post_card__tag {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  background-color: var(--black-200);
  color: #fff;
  text-align: center;
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem;
}
.post_card--3 .post_card__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1rem;
}
.post_card--3 .post_card__body .post_card__details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--gray-204);
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  color: var(--gray-201);
  font-size: 0.8rem;
}
.post_card--3 .post_card__body .post_card__details .post_card__detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.post_card--3 .post_card__body .post_card__details .post_card__detail svg {
  width: 17px;
  height: 17px;
}
.post_card--3 .post_card__body .post_card__details .post_card__detail i {
  font-size: 18px;
}
.post_card--3 .post_card__body .post_card__details .line_vertical {
  width: 1px;
  height: 20px;
  background-color: var(--gray-201);
}
.post_card--3 .post_card__body .post_card__title {
  font-size: 0.9rem;
  text-align: center;
  color: var(--black-200);
}
.post_card--3 .post_card__body .post_card__description {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 0.8rem;
  line-height: 1.5rem;
  text-align: center;
  color: var(--gray-211);
}
.post_card--3 .post_card__body .link_container {
  display: flex;
  justify-content: center;
}
.post_card--3 .post_card__body .link_container .post_card__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--gray-204);
  border-radius: 0.5rem;
  padding: 0.5rem;
}
.post_card--3 .post_card__body .link_container .post_card__link p {
  color: var(--black-0);
  font-weight: 500;
  font-size: 0.8rem;
}
.post_card--3 .post_card__body .link_container .post_card__link svg {
  width: 20px;
  height: 20px;
  color: var(--red-1);
}
.post_card--3 .post_card__body .link_container .post_card__link i {
  font-size: 18px;
  color: var(--red-1);
}
.post_card--3.zoomin_effect .post_card__cover img {
  transition: transform 350ms ease-in;
  transform: scale(1);
}
.post_card--3.zoomin_effect:hover img {
  transform: scale(1.15);
}
.post_card--3.zoomout_effect .post_card__cover img {
  transition: transform 350ms ease-in;
  transform: scale(1.15);
}
.post_card--3.zoomout_effect:hover img {
  transform: scale(1);
}
.post_card--3.bgblack_button__effect .post_card__cover {
  cursor: pointer;
}
.post_card--3.bgblack_button__effect .post_card__cover .post_cover__button {
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease-in;
}
.post_card--3.bgblack_button__effect:hover .post_card__cover .post_cover__button {
  opacity: 1;
  visibility: visible;
}
.post_card--3.bgblur_button__effect .post_card__cover {
  cursor: pointer;
}
.post_card--3.bgblur_button__effect .post_card__cover .post_cover__button {
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease-in;
}
.post_card--3.bgblur_button__effect .post_card__cover img {
  filter: blur(0);
  -webkit-filter: blur(0);
}
.post_card--3.bgblur_button__effect:hover .post_card__cover .post_cover__button {
  opacity: 1;
  visibility: visible;
}
.post_card--3.bgblur_button__effect:hover .post_card__cover img {
  filter: blur(7.5px);
  -webkit-filter: blur(7.5px);
}
.post_card--3.bgwhite_button__effect .post_card__cover {
  cursor: pointer;
  transform: all 350ms ease-in;
}
.post_card--3.bgwhite_button__effect .post_card__cover .post_cover__button {
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease-in;
}
.post_card--3.bgwhite_button__effect:hover .post_card__cover .post_cover__button {
  opacity: 1;
  visibility: visible;
}
.post_card--3.border_dark__effect .post_card__cover {
  position: relative;
  cursor: pointer;
}
.post_card--3.border_dark__effect .post_card__cover::after {
  content: " ";
  position: absolute;
  inset: 0;
  background: transparent;
  border: 0 solid rgba(0, 0, 0, 0.4);
  border-radius: 1rem;
  transition: border 350ms ease-in;
}
.post_card--3.border_dark__effect:hover .post_card__cover::after {
  border-width: 10px;
}
.post_card--3.border_white__effect .post_card__cover {
  position: relative;
  cursor: pointer;
}
.post_card--3.border_white__effect .post_card__cover::after {
  content: " ";
  position: absolute;
  inset: 0;
  background: transparent;
  border: 0 solid rgba(255, 255, 255, 0.4);
  border-radius: 1rem;
  transition: border 350ms ease-in;
}
.post_card--3.border_white__effect:hover .post_card__cover::after {
  border-width: 10px;
}
.post_card--3.align_center .post_card__title, .post_card--3.align_center .post_card__description {
  text-align: center;
}
.post_card--3.align_center .link_container {
  justify-content: center;
}
.post_card--3.align_left .post_card__title, .post_card--3.align_left .post_card__description {
  text-align: left;
}
.post_card--3.align_left .link_container {
  justify-content: left;
}
.post_card--3.align_right .post_card__title, .post_card--3.align_right .post_card__description {
  text-align: right;
}
.post_card--3.align_right .link_container {
  justify-content: right;
}
.post_card--3.last_title .post_card__details {
  order: -1;
}

.post_card--4 {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 1rem;
  background-color: #fff;
  box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.1);
}
.post_card--4 .post_card__cover {
  width: var(--width-100);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
}
.post_card--4 .post_card__cover img {
  width: var(--width-100);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post_card--4 .post_card__body {
  width: var(--width-100);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.post_card--4 .post_card__body .post_card__title {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--black-202);
}
.post_card--4 .post_card__body .post_card__desc {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-203);
  text-align: justify;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.post_card--4 .post_card__body .post_card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.post_card--4 .post_card__body .post_card__bottom .post_card__detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--gray-204);
  border-radius: 0.5rem;
  padding: 0.5rem;
  color: var(--gray-201);
  font-size: 0.8rem;
}
.post_card--4 .post_card__body .post_card__bottom .post_card__detail svg {
  width: 17px;
  height: 17px;
}
.post_card--4 .post_card__body .post_card__bottom .post_card__detail i {
  font-size: 18px;
}
.post_card--4 .post_card__body .post_card__bottom .post_card__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--gray-204);
  border-radius: 0.5rem;
  padding: 0.5rem;
}
.post_card--4 .post_card__body .post_card__bottom .post_card__link p {
  color: var(--black-0);
  font-weight: 500;
  font-size: 0.8rem;
}
.post_card--4 .post_card__body .post_card__bottom .post_card__link svg {
  width: 20px;
  height: 20px;
  color: var(--red-1);
}
.post_card--4 .post_card__body .post_card__bottom .post_card__link i {
  font-size: 20px;
  color: var(--red-1);
}
@media (min-width: 556px) {
  .post_card--4 {
    flex-direction: row;
  }
  .post_card--4 .post_card__cover {
    width: 35%;
  }
  .post_card--4 .post_card__body {
    width: 65%;
  }
}

.post_card--5 {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid var(--black-10);
}
.post_card--5 .post_cover {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
  overflow: hidden;
  border-radius: 0.5rem;
}
.post_card--5 .post_cover img {
  width: var(--width-100);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post_card--5 .post_title {
  color: var(--black-201);
  text-align: center;
  font-size: 12px;
  font-weight: 500;
}
.post_card--5 .post_buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.post_card--6 {
  display: block;
  padding: 1rem;
  border-radius: 1rem;
  overflow: hidden;
  background-color: #fff;
}
.post_card--6 .post_card__cover {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  height: 250px;
}
.post_card--6 .post_card__cover img {
  width: var(--width-100);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post_card--6 .post_card__cover .post_card__details {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  border-radius: 0.5rem;
  padding: 1.2rem;
  color: #fff;
  font-size: 0.8rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
}
.post_card--6 .post_card__cover .post_card__details .post_card__detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.post_card--6 .post_card__cover .post_card__details .post_card__detail svg {
  width: 17px;
  height: 17px;
}
.post_card--6 .post_card__cover .post_card__details .post_card__detail i {
  font-size: 17px;
}
.post_card--6 .post_card__cover .post_cover__button {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: all 350ms ease-in;
}
.post_card--6 .post_card__cover .post_cover__button a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  vertical-align: middle;
  border-radius: 50%;
  width: 72px;
  height: 72px;
  font-size: 1.1rem;
  color: #fff;
  background-color: var(--red-1);
  transition: background 300ms ease-in;
  cursor: pointer;
}
.post_card--6 .post_card__cover .post_cover__button a:hover {
  background-color: var(--red-6);
}
.post_card--6 .post_card__cover .post_cover__button a i {
  font-size: 25px;
}
.post_card--6 .post_card__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
}
.post_card--6 .post_card__body .post_card__tag {
  border-radius: 0.5rem;
  background-color: var(--black-200);
  color: #fff;
  text-align: center;
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem;
}
.post_card--6 .post_card__body .post_card__title {
  font-size: 0.9rem;
  text-align: center;
  color: var(--black-200);
}
.post_card--6 .post_card__body .post_card__description {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 0.8rem;
  line-height: 1.5rem;
  text-align: center;
  color: var(--gray-211);
}
.post_card--6 .post_card__body .link_container {
  display: flex;
  justify-content: center;
}
.post_card--6 .post_card__body .link_container .post_card__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--gray-204);
  border-radius: 0.5rem;
  padding: 0.5rem;
}
.post_card--6 .post_card__body .link_container .post_card__link p {
  color: var(--black-0);
  font-weight: 500;
  font-size: 0.8rem;
}
.post_card--6 .post_card__body .link_container .post_card__link svg {
  width: 20px;
  height: 20px;
  color: var(--red-1);
}
.post_card--6 .post_card__body .link_container .post_card__link i {
  font-size: 20px;
  color: var(--red-1);
}
.post_card--6.zoomin_effect .post_card__cover img {
  transition: transform 350ms ease-in;
  transform: scale(1);
}
.post_card--6.zoomin_effect:hover img {
  transform: scale(1.15);
}
.post_card--6.zoomout_effect .post_card__cover img {
  transition: transform 350ms ease-in;
  transform: scale(1.15);
}
.post_card--6.zoomout_effect:hover img {
  transform: scale(1);
}
.post_card--6.bgblack_button__effect .post_card__cover {
  cursor: pointer;
}
.post_card--6.bgblack_button__effect .post_card__cover .post_cover__button {
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease-in;
}
.post_card--6.bgblack_button__effect:hover .post_card__cover .post_cover__button {
  opacity: 1;
  visibility: visible;
}
.post_card--6.bgblur_button__effect .post_card__cover {
  cursor: pointer;
}
.post_card--6.bgblur_button__effect .post_card__cover .post_cover__button {
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease-in;
}
.post_card--6.bgblur_button__effect .post_card__cover img {
  filter: blur(0);
  -webkit-filter: blur(0);
}
.post_card--6.bgblur_button__effect:hover .post_card__cover .post_cover__button {
  opacity: 1;
  visibility: visible;
}
.post_card--6.bgblur_button__effect:hover .post_card__cover img {
  filter: blur(7.5px);
  -webkit-filter: blur(7.5px);
}
.post_card--6.bgwhite_button__effect .post_card__cover {
  cursor: pointer;
  transform: all 350ms ease-in;
}
.post_card--6.bgwhite_button__effect .post_card__cover .post_cover__button {
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease-in;
}
.post_card--6.bgwhite_button__effect:hover .post_card__cover .post_cover__button {
  opacity: 1;
  visibility: visible;
}
.post_card--6.border_dark__effect .post_card__cover {
  position: relative;
  cursor: pointer;
}
.post_card--6.border_dark__effect .post_card__cover::after {
  content: " ";
  position: absolute;
  inset: 0;
  background: transparent;
  border: 0 solid rgba(0, 0, 0, 0.4);
  border-radius: 1rem;
  transition: border 350ms ease-in;
}
.post_card--6.border_dark__effect:hover .post_card__cover::after {
  border-width: 10px;
}
.post_card--6.border_white__effect .post_card__cover {
  position: relative;
  cursor: pointer;
}
.post_card--6.border_white__effect .post_card__cover::after {
  content: " ";
  position: absolute;
  inset: 0;
  background: transparent;
  border: 0 solid rgba(255, 255, 255, 0.4);
  border-radius: 1rem;
  transition: border 350ms ease-in;
}
.post_card--6.border_white__effect:hover .post_card__cover::after {
  border-width: 10px;
}
.post_card--6.inline_card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.05);
}
.post_card--6.inline_card .post_card__cover {
  width: var(--width-100);
  height: 250px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.post_card--6.inline_card .post_card__cover img {
  width: var(--width-100);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post_card--6.inline_card .post_card__cover .post_card__details {
  display: none;
}
.post_card--6.inline_card .post_card__body {
  width: var(--width-100);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0;
}
.post_card--6.inline_card .post_card__body .post_card__title {
  text-align: right;
  padding: 0;
}
.post_card--6.inline_card .post_card__body .post_card__description {
  text-align: right;
  font-size: 0.9rem;
}
.post_card--6.inline_card .post_card__body .post_card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--width-100);
}
.post_card--6.inline_card .post_card__body .post_card__bottom .post_card__date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--gray-204);
  border-radius: 0.5rem;
  padding: 0.5rem;
  color: var(--gray-201);
  font-size: 0.8rem;
}
.post_card--6.inline_card .post_card__body .post_card__bottom .post_card__date svg {
  width: 17px;
  height: 17px;
}
.post_card--6.inline_card .post_card__body .post_card__bottom .post_card__date i {
  font-size: 18px;
}
.post_card--6.inline_card .post_card__body .post_card__bottom .post_card__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--gray-204);
  border-radius: 0.5rem;
  padding: 0.5rem;
}
.post_card--6.inline_card .post_card__body .post_card__bottom .post_card__link p {
  color: var(--black-0);
  font-weight: 500;
  font-size: 0.8rem;
}
.post_card--6.inline_card .post_card__body .post_card__bottom .post_card__link svg {
  width: 20px;
  height: 20px;
  color: var(--red-1);
}
.post_card--6.inline_card .post_card__body .post_card__bottom .post_card__link i {
  font-size: 20px;
  color: var(--red-1);
}
.post_card--6.inline_card.align_right .post_card__body .post_card__title, .post_card--6.inline_card.align_right .post_card__body .post_card__description {
  text-align: right;
}
.post_card--6.inline_card.align_center .post_card__body .post_card__title, .post_card--6.inline_card.align_center .post_card__body .post_card__description {
  text-align: center;
}
.post_card--6.inline_card.align_left .post_card__body .post_card__title, .post_card--6.inline_card.align_left .post_card__body .post_card__description {
  text-align: left;
}
@media (min-width: 675px) {
  .post_card--6.inline_card {
    flex-direction: row;
  }
  .post_card--6.inline_card .post_card__cover {
    width: 140px;
    height: 100%;
  }
  .post_card--6.inline_card .post_card__body {
    width: calc(var(--width-100) - 140px - 1rem);
  }
}
.post_card--6.align_center .post_card__body {
  align-items: center;
}
.post_card--6.align_center .post_card__body .post_card__title, .post_card--6.align_center .post_card__body .post_card__description {
  text-align: center;
}
.post_card--6.align_center .post_card__body .link_container {
  justify-content: center;
}
.post_card--6.align_right .post_card__body {
  align-items: flex-start;
}
.post_card--6.align_right .post_card__body .post_card__title, .post_card--6.align_right .post_card__body .post_card__description {
  text-align: right;
}
.post_card--6.align_right .post_card__body .link_container {
  justify-content: right;
}
.post_card--6.align_left .post_card__body {
  align-items: flex-end;
}
.post_card--6.align_left .post_card__body .post_card__title, .post_card--6.align_left .post_card__body .post_card__description {
  text-align: left;
}
.post_card--6.align_left .post_card__body .link_container {
  justify-content: left;
}

.post_card--7 {
  display: block;
  padding: 1rem;
  border-radius: 1rem;
  overflow: hidden;
  background-color: #fff;
}
.post_card--7 .post_card__cover {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  height: 250px;
}
.post_card--7 .post_card__cover img {
  width: var(--width-100);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post_card--7 .post_card__cover .post_card__tag {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  background-color: var(--black-200);
  color: #fff;
  text-align: center;
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem;
}
.post_card--7 .post_card__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1rem;
}
.post_card--7 .post_card__body .post_body__container {
  display: flex;
  gap: 0.75rem;
}
.post_card--7 .post_card__body .post_body__container .post_date {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 50px;
  padding: 2rem 0.5rem;
  background-color: var(--gray-204);
  border-radius: 0.5rem;
  color: var(--red-1);
  font-size: 0.9rem;
  font-weight: 500;
}
.post_card--7 .post_card__body .post_body__container .post_body__text {
  width: calc(var(--width-100) - 0.75rem - 50px);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.post_card--7 .post_card__body .post_body__container .post_body__text .post_card__title {
  font-size: 0.9rem;
  text-align: right;
  color: var(--black-200);
}
.post_card--7 .post_card__body .post_body__container .post_body__text .post_card__description {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 0.8rem;
  line-height: 1.5rem;
  text-align: right;
  color: var(--gray-211);
}
.post_card--7 .post_card__body .link_container {
  display: flex;
  justify-content: center;
}
.post_card--7 .post_card__body .link_container .post_card__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--gray-204);
  border-radius: 0.5rem;
  padding: 0.5rem;
}
.post_card--7 .post_card__body .link_container .post_card__link p {
  color: var(--black-0);
  font-weight: 500;
  font-size: 0.8rem;
}
.post_card--7 .post_card__body .link_container .post_card__link svg {
  width: 20px;
  height: 20px;
  color: var(--red-1);
}
.post_card--7 .post_card__body .link_container .post_card__link i {
  font-size: 20px;
  color: var(--red-1);
}

.article_item--1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.article_item--1 .article_item--1__cover {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--width-100);
  overflow: hidden;
  position: relative;
  border-radius: 0.5rem;
}
.article_item--1 .article_item--1__cover img {
  width: var(--width-100);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.article_item--1 .article_item--1__body {
  width: var(--width-100);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--black-201);
  word-wrap: wrap;
}
@media (min-width: 360px) {
  .article_item--1 {
    flex-direction: row;
  }
  .article_item--1 .article_item--1__cover {
    width: 25%;
  }
  .article_item--1 .article_item--1__body {
    width: var(--width-75);
  }
}

.article_item--2 {
  display: block;
  padding: 16px 12px;
  border-radius: 0.5rem;
  border: 1px solid var(--black-10);
  color: var(--gray-200);
  text-align: justify;
  font-size: 13px;
  line-height: 1.7rem;
}

.article_item--3 {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.article_item--3 .article_cover {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0.5rem;
  height: 300px;
}
.article_item--3 .article_cover img {
  width: var(--width-100);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.article_item--3 .article_text {
  color: var(--gray-211);
  text-align: justify;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.7rem;
}

.product_card {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: 1.2rem;
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.1);
  width: 100%;
}
.product_card .product_cover {
  position: relative;
  height: 230px;
  border-radius: 1rem;
}
.product_card .product_cover .product_cover__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  height: 100%;
  overflow: hidden;
}
.product_card .product_cover .product_cover__image .product_offer__box {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--red-4);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
}
.product_card .product_cover .product_cover__image .product_offer__box.circle {
  border-radius: 50%;
}
.product_card .product_cover .product_cover__image .product_offer__box.rect {
  border-radius: 0;
  width: 60px;
  height: 40px;
}
.product_card .product_cover .product_cover__image .product_offer__box.rounded-rect {
  border-radius: 4px;
  width: 60px;
  height: 40px;
}
.product_card .product_cover .product_cover__image .product_offer__box.rounded-tl-br-rect {
  border-radius: 20px 0px;
  width: 60px;
  height: 40px;
}
.product_card .product_cover .product_cover__image .product_offer__box.rounded-tr-bl-rect {
  border-radius: 0px 20px;
  width: 60px;
  height: 40px;
}
.product_card .product_cover .product_cover__image .product_offer__box.rounded-out-l {
  border-radius: 0 4px 4px 0;
  width: 60px;
  height: 40px;
  left: 0;
}
.product_card .product_cover .product_cover__image .product_offer__box.rounded-out-l::before {
  content: " ";
  position: absolute;
  width: 6px;
  height: 6px;
  top: -6px;
  left: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6' viewBox='0 0 6 6' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 0V6H6C2.68629 6 0 3.31371 0 0Z' fill='%23CE0000'/%3E%3C/svg%3E");
}
.product_card .product_cover .product_cover__image .product_offer__box.rounded-out-l::after {
  content: " ";
  position: absolute;
  width: 6px;
  height: 6px;
  bottom: -6px;
  left: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6' viewBox='0 0 6 6' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 6V0H6C2.68629 0 0 2.68629 0 6Z' fill='%23CE0000'/%3E%3C/svg%3E");
}
.product_card .product_cover .product_cover__image .product_offer__box.rounded-out-r {
  border-radius: 4px 0 0 4px;
  width: 60px;
  height: 40px;
  right: 0;
}
.product_card .product_cover .product_cover__image .product_offer__box.rounded-out-r::before {
  content: " ";
  position: absolute;
  width: 6px;
  height: 6px;
  top: -6px;
  right: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6' viewBox='0 0 6 6' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6 0V6H0C3.31371 6 6 3.31371 6 0Z' fill='%23CE0000'/%3E%3C/svg%3E");
}
.product_card .product_cover .product_cover__image .product_offer__box.rounded-out-r::after {
  content: " ";
  position: absolute;
  width: 6px;
  height: 6px;
  bottom: -6px;
  right: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6' viewBox='0 0 6 6' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6 6V0H0C3.31371 0 6 2.68629 6 6Z' fill='%23CE0000'/%3E%3C/svg%3E");
}
.product_card .product_cover .product_cover__image .product_offer__box.rounded-out-lb {
  border-radius: 0 4px 4px 0;
  width: 60px;
  height: 40px;
  left: 0;
}
.product_card .product_cover .product_cover__image .product_offer__box.rounded-out-lb::after {
  content: " ";
  position: absolute;
  width: 6px;
  height: 6px;
  bottom: -6px;
  left: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6' viewBox='0 0 6 6' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0 6V0H6C2.68629 0 0 2.68629 0 6Z' fill='%23CE0000'/%3E%3C/svg%3E");
}
.product_card .product_cover .product_cover__image .product_offer__box.rounded-out-rb {
  border-radius: 4px 0 0 4px;
  width: 60px;
  height: 40px;
  right: 0;
}
.product_card .product_cover .product_cover__image .product_offer__box.rounded-out-rb::after {
  content: " ";
  position: absolute;
  width: 6px;
  height: 6px;
  bottom: -6px;
  right: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6' viewBox='0 0 6 6' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6 6V0H0C3.31371 0 6 2.68629 6 6Z' fill='%23CE0000'/%3E%3C/svg%3E");
}
.product_card .product_cover .product_cover__image .product_colors {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
}
.product_card .product_cover .product_cover__image .product_colors .product_color {
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-radius: 50%;
}
.product_card .product_cover .product_cover__image .product_colors .product_color:nth-child(2) {
  transform: translateY(-6px);
}
.product_card .product_cover .product_cover__image .product_colors .product_color:nth-child(3) {
  transform: translateY(-12px);
}
.product_card .product_cover .product_cover__image .product_colors .product_color:nth-child(4) {
  transform: translateY(-18px);
}
.product_card .product_cover .product_cover__image .product_colors .product_color.green {
  background-color: green;
}
.product_card .product_cover .product_cover__image .product_colors .product_color.blue {
  background-color: blue;
}
.product_card .product_cover .product_cover__image .product_colors .product_color.yellow {
  background-color: yellow;
}
.product_card .product_cover .product_cover__image .product_colors .product_color.red {
  background-color: var(--red-12);
}
.product_card .product_cover .product_cover__image .product_colors .product_color.white {
  background-color: #fff;
  border-color: var(--black-0);
}
.product_card .product_cover .product_cover__image .product_colors .product_color.black {
  background-color: var(--black-0);
}
.product_card .product_cover .product_cover__image .product_colors .product_color.pink {
  background-color: pink;
  border-color: var(--black-0);
}
.product_card .product_cover .product_cover__image .product_colors .product_color.brown {
  background-color: brown;
}
.product_card .product_cover .product_cover__image .product_colors .product_color.purple {
  background-color: blueviolet;
}
.product_card .product_cover .product_cover__image img {
  width: var(--width-100);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product_card .product_cover .product_tag {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 4px 4px 0px 0px;
  background: var(--black-200);
  color: #fff;
  font-size: 0.8rem;
  padding: 0.3rem 0.5rem;
}
.product_card .product_body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.product_card .product_body .product_tag {
  background: var(--black-200);
  color: #fff;
  font-size: 0.8rem;
  padding: 0.3rem 0.5rem;
  border-radius: 0.5rem;
}
.product_card .product_body .product_title {
  text-align: center;
  color: var(--black-203);
  font-size: 0.9rem;
  font-weight: 500;
}
.product_card .product_body .product_rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}
.product_card .product_body .product_rating p {
  color: var(--gray-200);
  font-size: 0.8rem;
}
.product_card .product_body .product_rating .circle {
  width: 10px;
  height: 10px;
  background-color: var(--black-10);
  border-radius: 50%;
  margin: 0 0.5rem;
}
.product_card .product_body .unavailable_text {
  width: var(--width-100);
  padding: 0.5rem 0;
}
.product_card .product_body .product_middle {
  width: var(--width-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.product_card .product_body .product_middle .product_menu i {
  font-size: 16px;
}
.product_card .product_body .product_middle .product_price {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.product_card .product_body .product_middle .product_price .product_offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product_card .product_body .product_middle .product_price .product_offer .offer_price {
  font-size: 0.8rem;
  text-decoration: line-through;
  color: var(--gray-211);
}
.product_card .product_body .product_middle .product_price .product_price__text {
  font-weight: 500;
  color: var(--green-6);
  font-size: 0.9rem;
}
.product_card .product_body .product_timing {
  width: var(--width-100);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 1rem;
  background-color: var(--gray-204);
}
.product_card .product_body .product_timing .product_timer {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
}
.product_card .product_body .product_timing .product_timer .product_timer__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  color: var(--gray-200);
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  background-color: #fff;
}
.product_card .product_body .product_timing .product_timer .product_timer__item p {
  margin: 0;
}
.product_card .product_body .product_timing .product_timer .product_timer__item .time {
  font-weight: 500;
  font-size: 0.85rem;
}
.product_card .product_body .product_timing .product_timer .product_timer__item .desc {
  font-size: 0.8rem;
}
.product_card .product_body .product_timing .product_timer .product_timer__item:first-child {
  color: var(--red-1);
}
.product_card .product_body .product_timing .product_stock {
  background-color: #fff;
  padding: 0.75rem 1rem;
}
.product_card .product_body .product_timing .product_stock .product_stock__texts {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.8rem;
}
.product_card .product_body .product_timing .product_stock .product_stock__texts span {
  font-weight: 500;
  color: var(--black-200);
  font-size: 0.85rem;
}
.product_card .product_body .product_timing .product_stock .product_stock__progress {
  width: var(--width-100);
  background-color: var(--gray-204);
  height: 3px;
  border-radius: 50px;
  overflow: hidden;
}
.product_card .product_body .product_timing .product_stock .product_stock__progress .progress_outer {
  height: 100%;
  max-width: var(--width-100);
  background-color: var(--red-1);
}
.product_card.side_button .product_body .product_menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transform: translateX(1rem);
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  background-color: var(--gray-204);
  border-bottom-left-radius: 1rem;
  border-top-left-radius: 1rem;
  position: relative;
  cursor: pointer;
}
.product_card.side_button .product_body .product_menu .mainButton {
  z-index: 1;
}
.product_card.side_button .product_body .product_menu .product_menu__items {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
  background-color: var(--gray-204);
  padding: 0 1rem;
  border-bottom-left-radius: 1rem;
  border-top-left-radius: 1rem;
  transform: translateX(40%);
  opacity: 0;
  transition: opacity 350ms, transform 350ms ease-in, overflow 0s 350ms;
}
.product_card.side_button .product_body .product_menu .product_menu__items i {
  font-size: 20px;
}
.product_card.side_button .product_body .product_menu .product_menu__items .product_counter__container {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: var(--gray-204);
}
.product_card.side_button .product_body .product_menu .product_menu__items .product_counter__container.hide {
  display: none;
}
.product_card.side_button .product_body .product_menu .product_menu__items .product_menu__options, .product_card.side_button .product_body .product_menu .product_menu__items .product_counter__container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  height: 100%;
  padding: 0 1.5rem 0 0.5rem;
}
.product_card.side_button .product_body .product_menu .product_menu__items .product_menu__options i, .product_card.side_button .product_body .product_menu .product_menu__items .product_counter__container i {
  font-size: 18px;
}
.product_card.side_button .product_body .product_menu .product_menu__items .product_menu__options .display_counter, .product_card.side_button .product_body .product_menu .product_menu__items .product_counter__container .display_counter {
  min-width: 35px;
  background-color: #fff;
  text-align: center;
  padding: 0.5rem;
  color: var(--black-201);
}
.product_card.side_button:hover .product_body .product_menu .product_menu__items {
  transform: translateX(-30%);
  opacity: 1;
  overflow: visible;
  transition: opacity 350ms, transform 350ms ease-in, overflow 0s 350ms;
}
.product_card.full_button .product_cover {
  cursor: pointer;
}
.product_card.full_button .product_cover .product_menu__items {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translate(-50%, 200px);
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  opacity: 0;
  transition: opacity 350ms ease-in, transform 350ms ease-in;
}
.product_card.full_button .product_cover .product_menu__items i {
  font-size: 20px;
}
.product_card.full_button .product_body .product_middle {
  position: relative;
  z-index: 1;
  width: var(--width-100);
  align-items: stretch;
  flex-direction: column;
}
.product_card.full_button .product_body .product_middle .product_upbutton {
  width: var(--width-100);
  border-radius: 0.5rem 0.5rem 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background-color: var(--gray-204);
  padding: 0.5rem;
}
.product_card.full_button .product_body .product_middle .product_upbutton .product_offer {
  display: flex;
  align-items: center;
}
.product_card.full_button .product_body .product_middle .product_upbutton .offer_price {
  font-size: 0.8rem;
  text-decoration: line-through;
  color: var(--gray-211);
}
.product_card.full_button .product_body .product_middle .product_upbutton .product_price__text {
  font-weight: 500;
  color: var(--green-6);
  font-size: 0.9rem;
}
.product_card.full_button .product_body .product_middle .product_upbutton .unavailable_text {
  padding: 0;
  text-align: center;
  font-size: 0.9rem;
}
.product_card.full_button .product_body .product_middle .product_upbutton::after {
  content: "";
  position: absolute;
  z-index: -2;
  background-color: var(--gray-204);
  width: var(--width-100);
  height: 10px;
  bottom: -10px;
  left: 0;
}
.product_card.full_button .product_body .product_middle > * {
  position: relative;
  z-index: 10;
}
.product_card.full_button .product_body .product_middle .btn_shop {
  width: var(--width-100);
}
.product_card.full_button .product_body .product_counter__container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.product_card.full_button .product_body .product_counter__container .display_counter {
  min-width: 35px;
  background-color: #fff;
  text-align: center;
  padding: 0.5rem;
  color: var(--black-201);
  border: 1px solid var(--black-10);
}
.product_card.full_button.align_center .product_body .product_middle {
  align-items: center;
}
.product_card.full_button.align_left .product_body .product_middle {
  align-items: flex-end;
}
.product_card.full_button.align_right .product_body .product_middle {
  align-items: flex-start;
}
.product_card.full_button:hover .product_cover .product_menu__items {
  opacity: 1;
  transform: translate(-50%, 0);
  transition: opacity 350ms ease-in, transform 350ms ease-in;
}
.product_card.small_button .product_body .product_middle {
  position: relative;
}
.product_card.small_button .product_body .product_middle .product_menu {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background: #fff;
  display: none;
  align-items: center;
  gap: 0.5rem;
  cursor: default;
}
.product_card.small_button .product_body .product_middle .product_menu .product_menu__items {
  cursor: default;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0 1rem;
}
.product_card.small_button .product_body .product_middle .product_menu .product_counter__container {
  cursor: default;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.2rem 1rem;
  z-index: 5;
}
.product_card.small_button .product_body .product_middle .product_menu .product_counter__container .display_counter {
  min-width: 35px;
  background-color: #fff;
  text-align: center;
  padding: 0.5rem;
  color: var(--black-201);
  border: 1px solid var(--black-10);
}
.product_card.small_button .product_body .product_middle .product_price {
  width: var(--width-100);
  padding: 0.5rem 0;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.product_card.small_button:hover .product_body .product_middle .product_menu {
  display: flex;
}
.product_card.small_button.align_center .product_body .product_price {
  justify-content: center;
}
.product_card.small_button.align_center .product_body .unavailable_text {
  text-align: center;
}
.product_card.small_button.align_left .product_body .product_price {
  justify-content: flex-end;
}
.product_card.small_button.align_left .product_body .unavailable_text {
  text-align: left;
}
.product_card.small_button.align_right .product_body .product_price {
  justify-content: flex-start;
}
.product_card.small_button.align_right .product_body .unavailable_text {
  text-align: right;
}
.product_card.small_button.unavailable .product_body .product_price, .product_card.small_button.unavailable .product_body .product_menu {
  display: none;
}
.product_card.hide_button .product_body .unavailable_text {
  text-align: left;
}
.product_card.hide_button .product_body .product_menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  transform: translateX(-1rem);
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  background-color: #fff;
  position: relative;
  cursor: pointer;
}
.product_card.hide_button .product_body .product_menu .mainButton {
  z-index: 1;
}
.product_card.hide_button .product_body .product_menu .product_menu__items {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
  background-color: #fff;
  padding: 0 1rem;
  border-bottom-left-radius: 1rem;
  border-top-left-radius: 1rem;
  transform: translateX(-60%);
  opacity: 0;
  transition: opacity 350ms, transform 350ms ease-in, overflow 0s 350ms;
}
.product_card.hide_button .product_body .product_menu .product_menu__items i {
  font-size: 20px;
}
.product_card.hide_button .product_body .product_menu .product_menu__items .product_counter__container {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #fff;
}
.product_card.hide_button .product_body .product_menu .product_menu__items .product_counter__container.hide {
  display: none;
}
.product_card.hide_button .product_body .product_menu .product_menu__items .product_menu__options, .product_card.hide_button .product_body .product_menu .product_menu__items .product_counter__container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  height: 100%;
  padding: 0 1.5rem 0 0.75rem;
}
.product_card.hide_button .product_body .product_menu .product_menu__items .product_menu__options i, .product_card.hide_button .product_body .product_menu .product_menu__items .product_counter__container i {
  font-size: 18px;
}
.product_card.hide_button .product_body .product_menu .product_menu__items .product_menu__options .display_counter, .product_card.hide_button .product_body .product_menu .product_menu__items .product_counter__container .display_counter {
  min-width: 35px;
  background-color: #fff;
  text-align: center;
  padding: 0.5rem;
  color: var(--black-201);
}
.product_card.hide_button.unavailable .product_body .product_menu {
  display: none;
}
.product_card.hide_button:hover .product_body .product_menu .product_menu__items {
  transform: translateX(100%);
  opacity: 1;
  overflow: visible;
  transition: opacity 350ms, transform 350ms ease-in, overflow 0s 350ms;
}
.product_card.colorize_price .product_cover {
  cursor: pointer;
}
.product_card.colorize_price .product_cover .product_menu__items {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translate(-50%, 200px);
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  opacity: 0;
  transition: opacity 350ms ease-in, transform 350ms ease-in;
}
.product_card.colorize_price .product_cover .product_menu__items i {
  font-size: 20px;
}
.product_card.colorize_price .product_tag {
  background-color: transparent;
  color: var(--black-201);
  padding: 0;
}
.product_card.colorize_price .product_middle {
  display: flex;
  justify-content: space-between;
  align-items: center !important;
  gap: 0.75rem;
}
.product_card.colorize_price .product_middle button {
  height: 100%;
}
.product_card.colorize_price .product_middle .product_price {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 5px;
}
.product_card.colorize_price .product_middle .product_price .product_offer__price {
  font-size: 0.8rem;
  color: var(--gray-201);
  text-decoration: line-through;
}
.product_card.colorize_price .product_middle .product_price .product_price__box {
  overflow: hidden;
  display: flex;
  border-radius: 0.75rem;
  font-size: 0.9rem;
  color: #fff;
}
.product_card.colorize_price .product_middle .product_price .product_price__box .price_text {
  padding: 0.2rem 0.5rem;
  background-color: var(--black-201);
}
.product_card.colorize_price .product_middle .product_price .product_price__box .offer_percent {
  padding: 0.2rem 0.5rem;
  background-color: var(--red-1);
}
.product_card.colorize_price .product_middle .product_counter__container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.product_card.colorize_price .product_middle .product_counter__container .display_counter {
  min-width: 35px;
  background-color: #fff;
  text-align: center;
  padding: 0.5rem;
  color: var(--black-201);
  border: 1px solid var(--black-10);
}
.product_card.colorize_price .product_middle .unavailable_text {
  padding: 0.75rem 0;
  text-align: left;
}
.product_card.colorize_price.align_center .product_body .product_middle {
  align-items: center;
}
.product_card.colorize_price.align_left .product_body .product_middle {
  align-items: flex-end;
}
.product_card.colorize_price.align_right .product_body .product_middle {
  align-items: flex-start;
}
.product_card.colorize_price:hover .product_cover .product_menu__items {
  opacity: 1;
  transform: translate(-50%, 0);
  transition: opacity 350ms ease-in, transform 350ms ease-in;
}
.product_card.capsule_price .product_cover {
  cursor: pointer;
}
.product_card.capsule_price .product_cover .product_menu__items {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translate(-50%, 200px);
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  opacity: 0;
  transition: opacity 350ms ease-in, transform 350ms ease-in;
}
.product_card.capsule_price .product_cover .product_menu__items i {
  font-size: 20px;
}
.product_card.capsule_price .product_tag {
  background-color: transparent;
  color: var(--black-201);
  padding: 0;
}
.product_card.capsule_price .product_middle {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.75rem;
}
.product_card.capsule_price .product_middle .product_price {
  width: var(--width-100);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 100px;
  border: 1px solid var(--main-color);
  background-color: var(--red-1);
}
.product_card.capsule_price .product_middle .product_price .price_text {
  flex-grow: 1;
  padding: 0.2rem 0.75rem;
  border-radius: 100px;
  background-color: #fff;
  color: var(--green-4);
  font-weight: 600;
  text-align: center;
}
.product_card.capsule_price .product_middle .product_price .offer_percent {
  padding: 0.2rem 0.75rem;
  color: #fff;
  text-decoration: line-through;
  text-align: center;
}
.product_card.capsule_price .product_middle .product_menu {
  width: var(--width-100);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product_card.capsule_price .product_middle .product_menu .buy_button {
  background-color: var(--green-4);
}
.product_card.capsule_price .product_middle .product_menu .product_menu__items {
  display: flex;
  gap: 1rem;
  padding: 0.75rem 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 250ms, visibility 0s 250ms;
}
.product_card.capsule_price .product_middle .product_menu .product_menu__items i {
  color: var(--gray-201);
  font-size: 22px;
}
.product_card.capsule_price .product_middle .product_counter__container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.product_card.capsule_price .product_middle .product_counter__container .display_counter {
  min-width: 35px;
  background-color: #fff;
  text-align: center;
  padding: 0.5rem;
  color: var(--black-201);
  border: 1px solid var(--black-10);
}
.product_card.capsule_price .product_middle .unavailable_text {
  width: var(--width-100);
  border: 1px solid var(--main-color);
  border-radius: 100px;
  padding: 0.2rem 0.75rem;
  text-align: center;
}
.product_card.capsule_price.align_center .product_body .product_middle {
  align-items: center;
}
.product_card.capsule_price.align_left .product_body .product_middle {
  align-items: flex-end;
}
.product_card.capsule_price.align_right .product_body .product_middle {
  align-items: flex-start;
}
.product_card.capsule_price:hover .product_middle .product_menu .product_menu__items {
  opacity: 1;
  visibility: visible;
  transition: opacity 250ms;
}
.product_card.reverse_card {
  flex-direction: column-reverse;
  padding: 0;
  gap: 0;
}
.product_card.reverse_card .product_body {
  padding: 1rem 1rem 0.75rem;
}
.product_card.reverse_card .product_body .unavailable_text {
  text-align: left;
}
.product_card.reverse_card .product_body .product_menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  transform: translateX(-1rem);
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  background-color: #fff;
  position: relative;
  cursor: pointer;
}
.product_card.reverse_card .product_body .product_menu .mainButton {
  z-index: 1;
}
.product_card.reverse_card .product_body .product_menu .product_menu__items {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
  background-color: #fff;
  padding: 0 1rem;
  border-bottom-left-radius: 1rem;
  border-top-left-radius: 1rem;
  transform: translateX(-60%);
  opacity: 0;
  transition: opacity 350ms, transform 350ms ease-in, overflow 0s 350ms;
}
.product_card.reverse_card .product_body .product_menu .product_menu__items i {
  font-size: 20px;
}
.product_card.reverse_card .product_body .product_menu .product_menu__items .product_counter__container {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #fff;
}
.product_card.reverse_card .product_body .product_menu .product_menu__items .product_counter__container.hide {
  display: none;
}
.product_card.reverse_card .product_body .product_menu .product_menu__items .product_menu__options, .product_card.reverse_card .product_body .product_menu .product_menu__items .product_counter__container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  height: 100%;
  padding: 0 1.5rem 0 0.75rem;
}
.product_card.reverse_card .product_body .product_menu .product_menu__items .product_menu__options i, .product_card.reverse_card .product_body .product_menu .product_menu__items .product_counter__container i {
  font-size: 18px;
}
.product_card.reverse_card .product_body .product_menu .product_menu__items .product_menu__options .display_counter, .product_card.reverse_card .product_body .product_menu .product_menu__items .product_counter__container .display_counter {
  min-width: 35px;
  background-color: #fff;
  text-align: center;
  padding: 0.5rem;
  color: var(--black-201);
}
.product_card.reverse_card:hover .product_body .product_menu .product_menu__items {
  transform: translateX(100%);
  opacity: 1;
  overflow: visible;
  transition: opacity 350ms, transform 350ms ease-in, overflow 0s 350ms;
}
.product_card.inline_box {
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}
.product_card.inline_box .product_cover {
  width: 90px;
  height: 90px;
}
.product_card.inline_box .product_body {
  width: calc(var(--width-100) - 90px - 0.75rem);
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.product_card.inline_box .product_body .product_text {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}
.product_card.inline_box .product_body .product_price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}
.product_card.inline_box .product_body .product_price .product_offer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.product_card.inline_box .product_body .product_price .product_offer .offer_price {
  font-size: 0.8rem;
  text-decoration: line-through;
  color: var(--gray-211);
}
.product_card.inline_box .product_body .product_price .product_price__text {
  font-weight: 500;
  color: var(--green-6);
  font-size: 0.9rem;
}
.product_card.inline_box.align_center .product_body {
  align-items: center;
}
.product_card.inline_box.align_center .product_body .product_price {
  align-items: center;
}
.product_card.inline_box.align_center .product_body .product_title, .product_card.inline_box.align_center .product_body .unavailable_text {
  text-align: center;
}
.product_card.inline_box.align_left .product_body {
  align-items: center;
}
.product_card.inline_box.align_left .product_body .product_price {
  align-items: flex-end;
}
.product_card.inline_box.align_left .product_body .product_title, .product_card.inline_box.align_left .product_body .unavailable_text {
  text-align: left;
}
.product_card.inline_box.align_right .product_body {
  align-items: center;
}
.product_card.inline_box.align_right .product_body .product_price {
  align-items: flex-start;
}
.product_card.inline_box.align_right .product_body .product_title, .product_card.inline_box.align_right .product_body .unavailable_text {
  text-align: right;
}
.product_card.inline_box.unavailable .product_body .product_price {
  display: none;
}
.product_card.transparent {
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0.5rem 0;
}
.product_card.big_preview {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  height: 250px;
  background-color: transparent;
  padding: 0;
  cursor: pointer;
}
.product_card.big_preview img {
  width: var(--width-100);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product_card.big_preview .product_text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 350ms ease-in;
}
.product_card.big_preview .product_text .product_title {
  color: #fff;
}
.product_card.big_preview .product_text .product_price {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.45rem;
}
.product_card.big_preview .product_text .product_price .product_offer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.product_card.big_preview .product_text .product_price .product_offer .offer_price {
  font-size: 0.8rem;
  text-decoration: line-through;
  color: #fff;
}
.product_card.big_preview .product_text .product_price .product_price__text {
  font-weight: 500;
  color: var(--green-6);
  font-size: 0.9rem;
}
.product_card.big_preview:hover .product_text {
  visibility: visible;
  opacity: 1;
}
.product_card.big_preview.align_center .product_text {
  align-items: center;
}
.product_card.big_preview.align_center .product_text .product_title {
  text-align: center;
}
.product_card.big_preview.align_left .product_text {
  align-items: flex-end;
}
.product_card.big_preview.align_left .product_text .product_title {
  text-align: left;
}
.product_card.big_preview.align_right .product_text {
  align-items: flex-start;
}
.product_card.big_preview.align_right .product_text .product_title {
  text-align: right;
}
.product_card.small_preview {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: transparent;
  overflow: visible;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}
.product_card.small_preview .product_cover {
  width: var(--width-100);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0.5rem;
  position: relative;
}
.product_card.small_preview .product_cover img {
  width: var(--width-100);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product_card.small_preview .product_offer {
  background-color: var(--red-1);
  color: #fff;
  text-align: center;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}
.product_card.tag_image .product_cover .product_tag {
  bottom: 0;
  border-radius: 0.5rem 0.5rem 0 0;
}
.product_card.tag_image__between .product_cover .product_tag {
  bottom: -0.75rem;
  border-radius: 0.5rem;
}
.product_card.no_tag .product_cover .product_tag, .product_card.no_tag .product_body .product_tag {
  display: none;
}
.product_card.unavailable .product_cover .product_offer__box {
  display: none;
}
.product_card.unavailable .product_body .product_middle .product_menu {
  cursor: default;
}
.product_card.unavailable .product_body .product_middle .product_menu .buy_button p {
  color: #fff;
  padding: 0;
}
.product_card.unavailable .product_body .product_middle .product_menu .mainButton {
  display: none;
}
.product_card.unavailable .product_body .product_middle .product_menu p {
  font-size: 1rem;
  color: var(--black-200);
  padding: 0.75rem 0 0.75rem 0.5rem;
}
.product_card.unavailable .product_body .product_middle .product_menu .product_menu__items {
  display: none;
}
.product_card.unavailable .product_body .product_middle .product_price {
  display: none;
}
.product_card.without_offer .product_cover .product_offer__box {
  display: none;
}
.product_card.without_offer .product_body .product_price .product_offer {
  display: none;
}
.product_card.without_timer .product_body .product_timing {
  display: none;
}
.product_card.without_rating .product_body .product_rating {
  display: none;
}
.product_card.align_center .product_body {
  align-items: center;
}
.product_card.align_center .product_body .product_title {
  text-align: center;
}
.product_card.align_left .product_body {
  align-items: flex-end;
}
.product_card.align_left .product_body .product_title {
  text-align: left;
}
.product_card.align_right .product_body {
  align-items: flex-start;
}
.product_card.align_right .product_body .product_title {
  text-align: right;
}

.product_condition__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.product_condition__card .card_cover {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--width-100);
  height: 170px;
  border-radius: 0.5rem;
  overflow: hidden;
}
.product_condition__card .card_cover img {
  width: var(--width-100);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product_condition__card .card_cover .btn_remove {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: var(--gray-200);
  border-radius: 50%;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.1);
}
.product_condition__card .card_cover .btn_remove svg {
  width: 20px;
  height: 20px;
}
.product_condition__card .card_cover .btn_remove i {
  font-size: 20px;
}
.product_condition__card .price_offer {
  font-size: 0.8rem;
  text-decoration: line-through;
  color: var(--gray-211);
}
.product_condition__card .price {
  font-weight: 500;
  color: var(--green-6);
  font-size: 0.85rem;
}

.product_condition--select_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  align-self: flex-start;
  gap: 2rem;
  padding: 3rem 1rem;
  max-width: 200px;
  width: var(--width-100);
  margin: 0 auto;
  border-radius: 0.5rem;
  background: var(--gray-204);
  color: var(--gray-200);
}

.product_card__horizontal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  position: relative;
  padding: 0.75rem;
}
.product_card__horizontal .card_cover {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: var(--width-100);
  height: 170px;
  border-radius: 0.5rem;
}
.product_card__horizontal .card_cover img {
  width: var(--width-100);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product_card__horizontal .card_body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}
.product_card__horizontal .card_body .card_title {
  font-size: 1rem;
}
.product_card__horizontal .card_body .price_offer {
  font-size: 0.8rem;
  text-decoration: line-through;
  color: var(--gray-211);
}
.product_card__horizontal .card_body .price {
  font-weight: 500;
  color: var(--green-6);
  font-size: 0.85rem;
}
.product_card__horizontal .selected_box {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  transition: opacity 250ms, visibility 0s 250ms;
}
.product_card__horizontal .selected_box .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background-color: var(--main-color);
  border-radius: 50%;
  cursor: pointer;
}
.product_card__horizontal .selected_box .icon i {
  font-size: 22px;
}
.product_card__horizontal:hover .selected_box {
  opacity: 1;
  visibility: visible;
  transition: opacity 250ms;
}
@media (min-width: 756px) {
  .product_card__horizontal {
    flex-direction: row;
  }
  .product_card__horizontal .card_cover {
    width: 88px;
    height: 88px;
  }
  .product_card__horizontal .card_body {
    align-items: flex-start;
  }
}

.category_product__card--1 {
  height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.75rem;
  padding: 1.5rem 0.75rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.05);
}
.category_product__card--1 .card_cover {
  width: 109px;
  height: 109px;
}
.category_product__card--1 .card_cover img {
  height: 100%;
}
.category_product__card--1 .card_body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.category_product__card--1 .card_body .card_title {
  color: var(--black-200);
  font-size: 16px;
  font-weight: 400;
}
.category_product__card--1 .card_body .card_title--sub {
  display: flex;
  justify-content: center;
  position: relative;
  color: var(--gray-201);
  font-size: 14px;
  font-weight: 400;
}
.category_product__card--1 .card_body .card_title--sub .hoverd {
  position: absolute;
  min-width: 140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 250ms, visibility 0s 250ms;
}
.category_product__card--1:hover {
  border: 2px solid var(--main-color);
}
.category_product__card--1:hover .card_body .card_title--sub .hoverd {
  opacity: 1;
  visibility: visible;
  transition: opacity 250ms;
}

.category_product__card--2 {
  display: flex;
  align-items: center;
  text-align: right;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.05);
}
.category_product__card--2 .card_cover {
  width: 109px;
  height: 109px;
}
.category_product__card--2 .card_cover img {
  height: 100%;
}
.category_product__card--2 .card_body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
.category_product__card--2 .card_body .card_title {
  color: var(--black-200);
  font-size: 16px;
  font-weight: 400;
}
.category_product__card--2 .card_body .card_title--sub {
  display: flex;
  justify-content: center;
  position: relative;
  color: var(--gray-201);
  font-size: 14px;
  font-weight: 400;
}
.category_product__card--2 .card_body .card_title--sub .hoverd {
  position: absolute;
  right: 0;
  min-width: 140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 250ms, visibility 0s 250ms;
}
.category_product__card--2:hover {
  border: 2px solid var(--main-color);
}
.category_product__card--2:hover .card_body .card_title--sub .hoverd {
  opacity: 1;
  visibility: visible;
  transition: opacity 250ms;
}

.category_product__card--3 {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  text-align: left;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.05);
}
.category_product__card--3 .card_cover {
  width: 109px;
  height: 109px;
}
.category_product__card--3 .card_cover img {
  height: 100%;
}
.category_product__card--3 .card_body {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}
.category_product__card--3 .card_body .card_title {
  color: var(--black-200);
  font-size: 16px;
  font-weight: 400;
}
.category_product__card--3 .card_body .card_title--sub {
  display: flex;
  justify-content: center;
  position: relative;
  color: var(--gray-201);
  font-size: 14px;
  font-weight: 400;
}
.category_product__card--3 .card_body .card_title--sub .hoverd {
  position: absolute;
  left: 0;
  min-width: 140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 250ms, visibility 0s 250ms;
}
.category_product__card--3:hover {
  border: 2px solid var(--main-color);
}
.category_product__card--3:hover .card_body .card_title--sub .hoverd {
  opacity: 1;
  visibility: visible;
  transition: opacity 250ms;
}

.product_card--1 {
  display: block;
  padding: 1rem;
  border-radius: 1rem;
  overflow: hidden;
  background-color: #fff;
}
.product_card--1 .product_card__cover {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  height: 150px;
}
.product_card--1 .product_card__cover .product_card__image {
  width: var(--width-100);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product_card--1 .product_card__cover .product_card__tag {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  background-color: var(--black-200);
  color: #fff;
  text-align: center;
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem;
}
.product_card--1 .product_card__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 0.75rem;
}
.product_card--1 .product_card__body .product_card__title {
  text-align: center;
  color: var(--black-203);
  font-size: 13px;
  font-weight: 500;
}
.product_card--1 .product_card__body .product_card__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
}
.product_card--1 .product_card__body .product_card__bottom {
  width: var(--width-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
}
.product_card--1 .product_card__body .product_card__bottom.button_right {
  flex-direction: row-reverse;
}
.product_card--1 .product_card__body .product_card__bottom .product_card__price .offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product_card--1 .product_card__body .product_card__bottom .product_card__price .offer p {
  color: var(--gray-211);
  text-decoration-line: line-through;
  font-size: 0.8rem;
}
.product_card--1 .product_card__body .product_card__bottom .product_card__price .price {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--green-6);
}

.product_card--2 {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid var(--black-10);
  background: #fff;
}
.product_card--2 .card_cover {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  overflow: hidden;
  border-radius: 0.5rem;
}
.product_card--2 .card_cover img {
  width: var(--width-100);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product_card--2 .product_title {
  text-align: center;
  color: var(--black-201);
  font-size: 12px;
  font-weight: 500;
}
.product_card--2 .product_offer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.product_card--2 .product_offer p {
  color: var(--gray-211);
  font-size: 13px;
  font-weight: 400;
  text-decoration: line-through;
}
.product_card--2 .product_price {
  color: var(--green-6);
  text-align: center;
  font-size: 13px;
  font-weight: 500;
}
.product_card--2 .product_buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product_cover__card {
  width: var(--width-100);
  height: 100px;
  border-radius: 0.5rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.product_cover__card img {
  width: var(--width-100);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 350ms ease-in;
}
.product_cover__card:hover img {
  transform: scale(1.1);
}

.tag_container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.tag_container .tag_item {
  display: flex;
  background-color: var(--gray-204);
  color: var(--gray-201);
  border-radius: 4px;
  padding: 1px 8px;
  font-size: 0.9rem;
}

.active_filter {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 5px 10px;
  border-radius: 16px;
  border: 1px solid var(--blue-3);
  background: var(--blue-2);
  color: var(--blue-3);
}
.active_filter .active_filter__text {
  font-size: 13px;
  font-weight: 400;
}
.active_filter .active_filter__close {
  color: var(--blue-3);
}
.active_filter .active_filter__close svg {
  width: 18px;
  height: 18px;
}
.active_filter .active_filter__close i {
  font-size: 18px;
}

.small_badge {
  font-weight: 500;
  border-radius: 5px;
  padding: 0 0.4rem;
  font-size: 0.8rem;
}
.small_badge.green {
  background: var(--gray-212);
  color: var(--green-6);
}
.small_badge.blue {
  background: var(--blue-2);
  color: var(--blue-3);
}
.small_badge.red {
  background: var(--red-7);
  color: var(--red-1);
}

.badge_green {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  background: var(--gray-212);
  color: var(--green-6);
}

.badge_green--border {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  border: 1px solid var(--green-6);
  color: var(--green-6);
  background: var(--gray-214);
}
.badge_green--border .bold {
  font-weight: 500;
}

.badge_green--oneline_border {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  border: 1px solid var(--green-6);
  color: var(--green-6);
  background: var(--gray-214);
}
.badge_green--oneline_border svg {
  width: 25px;
  height: 25px;
}
.badge_green--oneline_border i {
  font-size: 22px;
}
.badge_green--oneline_border p {
  width: calc(var(--width-100) - 25px - 0.5rem);
}
.badge_green--oneline_border .bold {
  font-weight: 500;
}

.badge_gray {
  padding: 1rem;
  border-radius: 0.5rem;
  background: var(--gray-204);
  color: var(--gray-200);
}

.badge_gray--oneline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: var(--gray-204);
  color: var(--gray-200);
}
.badge_gray--oneline svg {
  width: 22px;
  height: 22px;
}
.badge_gray--oneline i {
  font-size: 22px;
}
.badge_gray--oneline p {
  width: calc(var(--width-100) - 22px - 0.5rem);
  flex: 0 0 calc(100% - 22px - 0.5rem);
}

.badge_danger--border {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  border: 1px solid var(--red-4);
  color: var(--red-4);
  background: var(--red-3);
}
.badge_danger--border .bold {
  font-weight: 500;
}

.badge_danger--small {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-radius: 1rem;
  padding: 0.5rem;
  color: var(--red-4);
  background: var(--red-3);
  font-size: 0.8rem;
}
.badge_danger--small .bold {
  font-weight: 500;
}

.badge_danger {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  color: var(--red-4);
  background: var(--red-3);
}
.badge_danger .bold {
  font-weight: 500;
}

.badge_blue {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  color: var(--blue-3);
  background: var(--blue-4);
}

.badge_blue--oneline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  color: var(--blue-3);
  background: var(--blue-4);
}

.badge_blue--small {
  border-radius: 0.5rem;
  padding: 0 0.5rem;
  font-size: 0.8rem;
  color: var(--blue-3);
  background: var(--blue-4);
}

.badge_blue--border {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  border: 1px solid var(--blue-3);
  color: var(--blue-3);
  background: var(--blue-4);
}

.box_with__loadmore__container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.box_with__loadmore__container .box_item, .box_with__loadmore__container .btn_loadmore {
  width: calc(50% - 0.75rem);
  flex: 0 0 calc(50% - 0.75rem);
  cursor: pointer;
}
.box_with__loadmore__container .loadmore_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 1rem 0.75rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.05);
}
.box_with__loadmore__container .loadmore_box .number {
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--red-1);
}
.box_with__loadmore__container .box_item {
  display: none;
}
.box_with__loadmore__container .box_item:nth-child(-n+1) {
  display: block;
}
.box_with__loadmore__container .btn_loadmore {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.box_with__loadmore__container.show .box_item {
  display: block;
}
.box_with__loadmore__container.show .btn_loadmore {
  display: none;
}
@media (min-width: 456px) and (max-width: 556px) {
  .box_with__loadmore__container.orders .box_item, .box_with__loadmore__container.orders .btn_loadmore {
    width: calc(25% - 0.75rem);
    flex: 0 0 calc(25% - 0.75rem);
  }
  .box_with__loadmore__container.orders .box_item:nth-child(-n+3) {
    display: block;
  }
}
@media (min-width: 1100px) {
  .box_with__loadmore__container.orders .box_item, .box_with__loadmore__container.orders .btn_loadmore {
    width: calc(12.5% - 0.75rem);
    flex: 0 0 calc(12.5% - 0.75rem);
  }
  .box_with__loadmore__container.orders .box_item:nth-child(-n+7) {
    display: block;
  }
}
@media (min-width: 420px) {
  .box_with__loadmore__container .box_item, .box_with__loadmore__container .btn_loadmore {
    width: calc(33.3333333333% - 0.75rem);
    flex: 0 0 calc(33.3333333333% - 0.75rem);
  }
  .box_with__loadmore__container .box_item:nth-child(-n+2) {
    display: block;
  }
}
@media (min-width: 556px) {
  .box_with__loadmore__container .box_item, .box_with__loadmore__container .btn_loadmore {
    width: calc(25% - 0.75rem);
    flex: 0 0 calc(25% - 0.75rem);
  }
  .box_with__loadmore__container .box_item:nth-child(-n+3) {
    display: block;
  }
}
@media (min-width: 756px) {
  .box_with__loadmore__container .box_item, .box_with__loadmore__container .btn_loadmore {
    width: calc(20% - 0.75rem);
    flex: 0 0 calc(20% - 0.75rem);
  }
  .box_with__loadmore__container .box_item:nth-child(-n+4) {
    display: block;
  }
}
@media (min-width: 881px) {
  .box_with__loadmore__container .box_item, .box_with__loadmore__container .btn_loadmore {
    width: calc(16.6666666667% - 0.75rem);
    flex: 0 0 calc(16.6666666667% - 0.75rem);
  }
  .box_with__loadmore__container .box_item:nth-child(-n+5) {
    display: block;
  }
}
@media (min-width: 980px) {
  .box_with__loadmore__container .box_item, .box_with__loadmore__container .btn_loadmore {
    width: calc(14.2857142857% - 0.75rem);
    flex: 0 0 calc(14.2857142857% - 0.75rem);
  }
  .box_with__loadmore__container .box_item:nth-child(-n+6) {
    display: block;
  }
}

.quick_show__container {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
}
.quick_show__container .quick_show__right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.quick_show__container .quick_show__right .quick_show__cover {
  width: var(--width-100);
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
}
.quick_show__container .quick_show__right .quick_show__cover img {
  width: var(--width-100);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.quick_show__container .quick_show__left {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.quick_show__container .quick_show__left .quick_show__tag {
  align-self: flex-start;
  padding: 5px 8px;
  border-radius: 2px;
  background: var(--gray-204);
  color: var(--gray-211);
}
.quick_show__container .quick_show__left .quick_show__tag span {
  color: var(--black-201);
  font-weight: 500;
}
.quick_show__container .quick_show__left .quick_show__title {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--black-0);
}
.quick_show__container .quick_show__left .quick_show__model {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.quick_show__container .quick_show__left .quick_show__model p {
  font-size: 0.85rem;
  color: var(--gray-200);
}
.quick_show__container .quick_show__left .quick_show__model hr {
  flex-grow: 1;
}
@media (min-width: 881px) {
  .quick_show__container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.seller_info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}
.seller_info .seller_info__number {
  color: var(--green-4);
  font-size: 1rem;
  font-weight: 500;
}
.seller_info .seller_info__desc {
  color: var(--black-201);
}

.seller_info__charts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  width: var(--width-100);
  max-width: 657px;
  margin: 0 auto;
}
@media (min-width: 756px) {
  .seller_info__charts {
    gap: 1rem;
  }
  .seller_info__charts .progress_container {
    width: 70%;
    margin: 0 auto;
  }
}

.progress_container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}
.progress_container p {
  color: var(--black-201);
  font-size: 0.8rem;
}
.progress_container svg {
  color: var(--green-6);
}
.progress_container svg.blue {
  color: var(--blue-1);
}
.progress_container svg .arc_progress__path {
  stroke-linecap: round;
  stroke-width: 6;
}
.progress_container svg .arc_progress__path.green {
  stroke-dasharray: 198;
}

.info_container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.info_container .product_title {
  font-size: 1.2rem;
  font-weight: 500;
}
.info_container .product_title__sub {
  font-size: 1rem;
  font-weight: 500;
}
.info_container .product_properties {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.info_container .product_properties li {
  display: flex;
  font-size: 0.8rem;
  color: var(--gray-200);
  position: relative;
  padding-right: 20px;
}
.info_container .product_properties li::before {
  content: " ";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--gray-208);
  border-radius: 50%;
}

.positive_box__item {
  display: flex;
  padding: 0.5rem 1rem;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.5rem;
  background: rgba(204, 234, 211, 0.5);
}
.positive_box__item p {
  font-size: 0.9rem;
  color: var(--green-4);
}
.positive_box__item button {
  color: var(--green-4);
}

.negative_box__item {
  display: flex;
  padding: 0.5rem 1rem;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.5rem;
  background: rgba(247, 209, 210, 0.5);
}
.negative_box__item p {
  font-size: 0.9rem;
  color: var(--red-12);
}
.negative_box__item button {
  color: var(--red-12);
}

input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
}

body:not(.elementor-editor-active) input[type=radio] {
  cursor: pointer;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: relative;
  background-color: #fff;
  border: 1px solid var(--gray-202);
  transition: all 0.2s ease-in-out;
}
body:not(.elementor-editor-active) input[type=radio]::after {
  content: " ";
  position: absolute;
  top: 6px;
  left: 6px;
  transform: scale(0);
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 50%;
}
body:not(.elementor-editor-active) input[type=radio]:hover {
  border: 1px solid var(--gray-203);
}
body:not(.elementor-editor-active) input[type=radio]:disabled {
  border: 1px solid var(--gray-202);
  background-color: var(--black-10);
}
body:not(.elementor-editor-active) input[type=radio]:disabled:checked {
  border: 1px solid var(--gray-202);
  background-color: var(--black-10);
}
body:not(.elementor-editor-active) input[type=radio]:checked {
  background-color: var(--blue-3);
  border: 1px solid var(--blue-3);
}
body:not(.elementor-editor-active) input[type=radio]:checked::after {
  transform: scale(1);
}
body:not(.elementor-editor-active) input[type=radio]:checked:hover {
  background-color: var(--blue-8);
}

body:not(.elementor-editor-active) input[type=checkbox] {
  cursor: pointer;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  position: relative;
  background-color: #fff;
  border: 1px solid var(--gray-202);
  transition: all 0.2s ease-in-out;
}
body:not(.elementor-editor-active) input[type=checkbox]::after {
  content: " ";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 12px;
  height: 12px;
  background: url('data:image/svg+xml;charset=utf-8,%3Csvg width="14" height="10" viewBox="0 0 14 10" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M1.6875 4.99989L5.22505 8.53737L12.3127 1.4624" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/svg%3E');
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 250ms;
}
body:not(.elementor-editor-active) input[type=checkbox]:hover {
  border: 1px solid var(--gray-203);
}
body:not(.elementor-editor-active) input[type=checkbox]:disabled {
  border: 1px solid var(--gray-202);
  background-color: var(--black-10);
}
body:not(.elementor-editor-active) input[type=checkbox]:disabled:checked {
  border: 1px solid var(--gray-202);
  background-color: var(--black-10);
}
body:not(.elementor-editor-active) input[type=checkbox]:disabled:checked::after {
  opacity: 1;
}
body:not(.elementor-editor-active) input[type=checkbox]:checked {
  background-color: var(--blue-3);
  border: 1px solid var(--blue-3);
}
body:not(.elementor-editor-active) input[type=checkbox]:checked::after {
  opacity: 1;
}
body:not(.elementor-editor-active) input[type=checkbox]:checked:hover {
  background-color: var(--main-color);
}
body:not(.elementor-editor-active) input[type=checkbox].switch {
  width: 40px;
  height: 24px;
  background-color: var(--black-10);
  border-color: var(--black-10);
  border-radius: 20px;
}
body:not(.elementor-editor-active) input[type=checkbox].switch::after {
  content: " ";
  position: absolute;
  left: 1px;
  top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 100px;
  background-color: #fff;
  box-shadow: 0 0 4px 0 rgba(51, 51, 51, 0.15);
  opacity: 1;
}
body:not(.elementor-editor-active) input[type=checkbox].switch:hover::after {
  box-shadow: 0 0 4px 0 rgba(51, 51, 51, 0.25);
}
body:not(.elementor-editor-active) input[type=checkbox].switch:checked {
  background-color: var(--blue-3);
  border-color: var(--blue-3);
}
body:not(.elementor-editor-active) input[type=checkbox].switch:checked::after {
  left: 18px;
  transition: left 250ms 100ms;
  animation: checkedSwitch 250ms 0s forwards;
}
body:not(.elementor-editor-active) input[type=checkbox].switch:disabled {
  background-color: var(--gray-204);
  border-color: var(--gray-204);
}
body:not(.elementor-editor-active) input[type=checkbox].switch:disabled::after {
  background-color: var(--default-bg-color);
}
body:not(.elementor-editor-active) input[type=checkbox].switch:disabled:checked {
  background-color: var(--black-10);
  border-color: var(--black-10);
}

@keyframes checkedSwitch {
  0%, 100% {
    width: 20px;
  }
  50%, 70% {
    width: 32px;
  }
}
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236B7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");
  background-position: left 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  cursor: pointer;
  -webkit-print-color-adjust: exact;
  display: block;
  width: var(--width-100);
  padding: 1rem 1.2rem 1rem 2.5rem;
  outline: none;
  border-radius: 1rem;
  color: var(--black-201);
  border-radius: 0.5rem;
  border: 1px solid var(--gray-202);
  font-family: inherit;
  transition: all 250ms ease-in;
}
select:focus {
  border: 1px solid var(--blue-3);
  box-shadow: 0 0 3px 1px rgba(18, 128, 230, 0.2);
}

.select_box {
  position: relative;
  cursor: pointer;
  transition: background 250ms;
}
.select_box .select_box__content {
  display: flex;
  flex-direction: column;
  padding: 1rem 3rem 1rem 1rem;
  gap: 1rem;
  border-radius: 4px;
  border: 1px solid var(--black-10);
  transform: all 250ms ease-in;
}
.select_box .select_box__content .select_box__desc {
  position: relative;
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: var(--gray-204);
  font-size: 0.85rem;
  color: var(--gray-211);
  text-align: justify;
}
.select_box .select_box__content .select_box__desc::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 8px;
  width: 21px;
  height: 10px;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='10' viewBox='0 0 19 10' fill='none'%3E%3Cpath d='M8.81034 0.656815L0.810345 8.27586C0.156658 8.89842 0.59729 10 1.5 10H17.5C18.4027 10 18.8433 8.89842 18.1897 8.27586L10.1897 0.656815C9.80345 0.288998 9.19655 0.288998 8.81034 0.656815Z' fill='%23F2F2F2'/%3E%3C/svg%3E");
}
.select_box input {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
.select_box input:checked + .select_box__content {
  border: 1px solid var(--blue-3);
  box-shadow: 0 0 3px 1px rgba(18, 128, 230, 0.2);
  background: var(--blue-4);
}
.select_box input:checked + .select_box__content .select_box__desc {
  background: var(--blue-9) !important;
  color: var(--blue-1);
}
.select_box input:checked + .select_box__content .select_box__desc::before {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='10' viewBox='0 0 19 10' fill='none'%3E%3Cpath d='M8.81034 0.656815L0.810345 8.27586C0.156658 8.89842 0.59729 10 1.5 10H17.5C18.4027 10 18.8433 8.89842 18.1897 8.27586L10.1897 0.656815C9.80345 0.288998 9.19655 0.288998 8.81034 0.656815Z' fill='%23B8D9F7'/%3E%3C/svg%3E");
}

.animate_input {
  position: relative;
}
.animate_input input {
  height: 50px;
}
.animate_input input,
.animate_input textarea {
  width: var(--width-100);
  padding: 1rem 1.2rem;
  border-radius: 0.5rem;
  border: 1px solid var(--gray-202);
  outline: none;
  font-family: inherit;
  transition: all 250ms ease-in;
}
.animate_input input.withClose,
.animate_input textarea.withClose {
  padding: 1rem 1.2rem 1rem 2.5rem;
}
.animate_input input.withIcon,
.animate_input textarea.withIcon {
  padding: 1rem 2.5rem 1rem 1.2rem;
}
.animate_input input.withClose.withIcon,
.animate_input textarea.withClose.withIcon {
  padding: 1rem 2.5rem;
}
.animate_input input + label,
.animate_input textarea + label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: absolute;
  top: 50%;
  right: 13px;
  transform: translateY(-50%);
  background-color: #fff;
  font-size: 0.9rem;
  padding: 0 0.5rem;
  color: var(--gray-200);
  transition: top 250ms ease-in, transform 250ms, font-size 200ms ease-in;
}
.animate_input input:focus,
.animate_input textarea:focus {
  border: 1px solid var(--blue-3);
  box-shadow: 0 0 3px 1px rgba(18, 128, 230, 0.2);
}
.animate_input input:focus + label,
.animate_input textarea:focus + label {
  top: 0;
  font-size: 0.8rem;
}
.animate_input textarea + label {
  top: 25px;
  right: 13px;
}
.animate_input .btn_clear, .animate_input .btn_input {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  cursor: pointer;
  background-color: transparent;
  padding: 0 0.6rem;
  color: var(--gray-203);
}
.animate_input .btn_clear i, .animate_input .btn_input i {
  font-size: 20px;
}
.animate_input.withIcon input:focus ~ .input_icon,
.animate_input.withIcon textarea:focus ~ .input_icon {
  color: var(--blue-3);
}
.animate_input.withIcon input + label {
  top: 50%;
  transform: translate(-20px, -50%);
}
.animate_input.withIcon input:focus + label {
  top: 0;
  transform: translate(0, -50%);
}
.animate_input.withIcon textarea + label {
  top: 13px;
  right: 13px;
  transform: translateX(-20px);
}
.animate_input.withIcon textarea:focus + label {
  top: -10px;
  transform: translateX(0);
}
.animate_input.withIcon .input_icon {
  position: absolute;
  top: 16px;
  right: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  padding: 0 0.6rem;
  color: var(--gray-203);
}
.animate_input.fill {
  width: var(--width-100);
}
.animate_input.has_error input,
.animate_input.has_error textarea {
  border: 1px solid var(--red-4);
  box-shadow: 0 0 3px 1px rgba(234, 47, 47, 0.2);
}
.animate_input.has_error input + label,
.animate_input.has_error textarea + label {
  top: 0;
  font-size: 0.8rem;
}
.animate_input.has_error .text_error, .animate_input.has_error + .text_error {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--red-4);
  padding-top: 0.5rem;
}
.animate_input.has_error .text_error i, .animate_input.has_error + .text_error i {
  width: 18px;
  font-size: 18px;
  padding-top: 3px;
}
.animate_input.has_error .text_error p, .animate_input.has_error + .text_error p {
  width: calc(100% - 0.5rem - 18px);
  font-size: 0.8rem;
}
.animate_input.has_error.withIcon input + label {
  top: 0;
  transform: translate(0, -50%);
}
.animate_input.has_error.withIcon textarea + label {
  top: -10px;
  transform: translateX(0);
}
.animate_input.has_error.withIcon .input_icon {
  color: var(--red-4);
}

.solid_input {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.solid_input input,
.solid_input textarea {
  width: var(--width-100);
  padding: 1rem 1.2rem;
  border-radius: 0.5rem;
  border: 1px solid var(--gray-202);
  outline: none;
  font-family: inherit;
  transition: all 250ms ease-in;
}
.solid_input input.withClose,
.solid_input textarea.withClose {
  padding: 1rem 1.2rem 1rem 2.5rem;
}
.solid_input input.small,
.solid_input textarea.small {
  height: 42px;
}
.solid_input input.input_48,
.solid_input textarea.input_48 {
  height: 48px;
}
.solid_input input.medium,
.solid_input textarea.medium {
  height: 50px;
}
.solid_input input.h-48,
.solid_input textarea.h-48 {
  height: 50px;
}
.solid_input input + label,
.solid_input textarea + label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--gray-202);
}
.solid_input input:focus,
.solid_input textarea:focus {
  border: 1px solid var(--blue-3);
  box-shadow: 0 0 3px 1px rgba(18, 128, 230, 0.2);
}
.solid_input label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.solid_input.oneline {
  width: var(--width-100);
}
.solid_input.oneline label {
  width: var(--width-100);
  flex: 0 0 100%;
}
.solid_input.oneline input, .solid_input.oneline textarea {
  width: var(--width-100);
  flex: 0 0 100%;
}
@media (min-width: 756px) {
  .solid_input.oneline {
    flex-direction: row;
    align-items: center;
  }
  .solid_input.oneline label {
    width: 200px;
    flex: 0 0 200px;
  }
  .solid_input.oneline input, .solid_input.oneline textarea {
    width: calc(100% - 200px - 0.5rem);
    flex: 0 0 calc(100% - 200px - 0.5rem);
  }
}
.solid_input .input_container {
  position: relative;
}
.solid_input .btn_clear{
  display: flex;
  align-items: center;
}
.solid_input .btn_clear, .solid_input .btn_input {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  cursor: pointer;
  background-color: transparent;
  padding: 0 0.6rem;
  color: var(--gray-203);
}
.solid_input .btn_clear i, .solid_input .btn_input i {
  font-size: 20px;
}
.solid_input.has_error input,
.solid_input.has_error textarea {
  border: 1px solid var(--red-4);
  box-shadow: 0 0 3px 1px rgba(234, 47, 47, 0.2);
}
.solid_input.has_error .text_error {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--red-4);
}
.solid_input.has_error .text_error i {
  width: 18px;
  font-size: 18px;
}
.solid_input.has_error .text_error p {
  width: calc(100% - 0.5rem - 18px);
  font-size: 14px;
  font-weight: 500;
}

.form_inline {
  width: var(--width-100);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}
@media (min-width: 360px) {
  .form_inline {
    flex-direction: row;
  }
  .form_inline .solid_input, .form_inline .animate_input {
    flex-grow: 1;
  }
}

.form_inline__offer {
  width: var(--width-100);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}
.form_inline__offer button {
  width: var(--width-100);
}
@media (min-width: 675px) {
  .form_inline__offer {
    flex-direction: row;
  }
  .form_inline__offer button {
    width: 180px;
  }
  .form_inline__offer .solid_input, .form_inline__offer .animate_input {
    flex-grow: 1;
  }
}

.agree_checkbox__container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.agree_checkbox__container .agree_checkbox__label {
  width: calc(100% - 0.5rem - 24px);
  padding: 1rem 0 0.75rem;
  font-size: 0.9rem;
  color: var(--gray-200);
}


.otp_input__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.otp_input__grid input {
  text-align: center;
}

.tabbar_container--1 .tabbar_container__buttons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.tabbar_container--1 .tabbar_container__buttons .tabbar_container__button {
  width: 50%;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background-color: var(--black-10);
  color: var(--gray-200);
  border-radius: 1rem 1rem 0 0;
  cursor: pointer;
  font-weight: 500;
}
.tabbar_container--1 .tabbar_container__buttons .tabbar_container__button.show {
  color: var(--red-1);
  box-shadow: 0 -20px 20px 10px rgba(229, 229, 229, 0.3);
}
.tabbar_container--1 .tabbar_container__buttons .tabbar_container__button.show .shop_badge {
  background: var(--red-1);
}
.tabbar_container--1 .tabbar_container__buttons .tabbar_container__button.show:after {
  bottom: 0;
}
.tabbar_container--1 .tabbar_container__buttons .tabbar_container__button:after {
  content: "";
  width: var(--width-100);
  height: 100%;
  position: absolute;
  bottom: -100%;
  left: 0;
  background-color: #fff;
  transition: bottom 250ms;
}
.tabbar_container--1 .tabbar_container__buttons .tabbar_container__button .shop_badge {
  display: none;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  color: #fff;
  background: var(--gray-200);
  line-height: 0;
  font-size: 13px;
  font-weight: 600;
}
@media (min-width: 380px) {
  .tabbar_container--1 .tabbar_container__buttons .tabbar_container__button .shop_badge {
    display: flex;
  }
}
.tabbar_container--1 .tabbar_container__buttons .tabbar_container__button > * {
  position: relative;
  z-index: 3;
}
.tabbar_container--1 .tabbar_container__buttons .tabbar_container__button p {
  font-size: 0.85rem;
}
@media (min-width: 756px) {
  .tabbar_container--1 .tabbar_container__buttons .tabbar_container__button p {
    font-size: 1rem;
  }
}
.tabbar_container--1 .tabbar_container__contents .tabbar_container__content {
  display: none;
  padding: 1rem;
  background-color: #fff;
  width: var(--width-100);
  border-radius: 0 0 1rem 1rem;
}
.tabbar_container--1 .tabbar_container__contents .tabbar_container__content.show {
  display: block;
}

.tabbar_container--2 {
  overflow-x: hidden;
}
.tabbar_container--2 .tabbar_container__buttons {
  display: flex;
  overflow-x: auto;
  padding: 0 1rem;
}
.tabbar_container--2 .tabbar_container__buttons .tabbar_container__button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  min-width: 100px;
  text-align: center;
  padding: 1rem 1.2rem;
  font-weight: 500;
  cursor: pointer;
}
.tabbar_container--2 .tabbar_container__buttons .tabbar_container__button.col {
  flex-direction: column;
  gap: 0.5rem;
}
.tabbar_container--2 .tabbar_container__buttons .tabbar_container__button p.desc {
  color: var(--gray-211);
  font-size: 0.8rem;
}
.tabbar_container--2 .tabbar_container__buttons .tabbar_container__button::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: var(--width-100);
  height: 4px;
  border-radius: 2px 2px 0px 0px;
  background: transparent;
}
.tabbar_container--2 .tabbar_container__buttons .tabbar_container__button .badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  background-color: var(--black-10);
  color: var(--gray-200);
}
.tabbar_container--2 .tabbar_container__buttons .tabbar_container__button.show {
  color: var(--blue-3);
}
.tabbar_container--2 .tabbar_container__buttons .tabbar_container__button.show p.desc {
  color: inherit;
}
.tabbar_container--2 .tabbar_container__buttons .tabbar_container__button.show .badge {
  background-color: var(--blue-3);
  color: #fff;
}
.tabbar_container--2 .tabbar_container__buttons .tabbar_container__button.show::after {
  background: var(--blue-3);
}
.tabbar_container--2 .tabbar_container__contents .tabbar_container__content {
  display: none;
  padding: 1rem;
  width: var(--width-100);
}
.tabbar_container--2 .tabbar_container__contents .tabbar_container__content.show {
  display: block;
}

.tabbar_container--3 .tabbar_container__buttons {
  display: none;
  align-items: center;
  gap: 1.5rem;
}
.tabbar_container--3 .tabbar_container__buttons .tabbar_container__button {
  width: 25%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background-color: var(--black-10);
  color: var(--gray-200);
  border-radius: 1rem 1rem 0 0;
  cursor: pointer;
  font-weight: 500;
}
.tabbar_container--3 .tabbar_container__buttons .tabbar_container__button.show {
  background-color: #fff;
  color: var(--red-1);
}
.tabbar_container--3 .tabbar_container__buttons .tabbar_container__button.show .shop_badge {
  background: var(--red-1);
}
.tabbar_container--3 .tabbar_container__buttons .tabbar_container__button .shop_badge {
  display: none;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  color: #fff;
  background: var(--gray-200);
  line-height: 0;
  font-size: 13px;
  font-weight: 600;
}
@media (min-width: 756px) {
  .tabbar_container--3 .tabbar_container__buttons .tabbar_container__button .shop_badge {
    display: flex;
  }
}
.tabbar_container--3 .tabbar_container__contents {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.tabbar_container--3 .tabbar_container__contents .tabbar_container__content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  background-color: #fff;
  width: var(--width-100);
  border-radius: 0 0 1rem 1rem;
}
.tabbar_container--3 .tabbar_container__contents .tabbar_container__content .display_desktop, .tabbar_container--3 .tabbar_container__contents .tabbar_container__content .display_desktop__block {
  display: none !important;
}
.tabbar_container--3 .tabbar_container__contents .tabbar_container__content.description_product__section {
  max-height: 700px;
  overflow: hidden;
}
.tabbar_container--3 .tabbar_container__contents .tabbar_container__content.open {
  max-height: -moz-max-content;
  max-height: max-content;
}
.tabbar_container--3 .tabbar_container__contents .tabbar_container__content.open .loadmore_descproduct__button {
  position: relative;
}
.tabbar_container--3 .tabbar_container__contents .tabbar_container__content .tabbar_header {
  width: var(--width-100);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background-color: var(--gray-204);
  color: var(--red-1);
  border-radius: 1rem 1rem 0 0;
  cursor: pointer;
  font-weight: 500;
  margin-bottom: 1rem;
}
.tabbar_container--3 .tabbar_container__contents .tabbar_container__content .loadmore_descproduct__button {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), #fff, #fff);
}
@media (min-width: 881px) {
  .tabbar_container--3 .tabbar_container__contents .tabbar_container__content .loadmore_descproduct__button {
    display: flex;
  }
}
.tabbar_container--3 .tabbar_container__contents .tabbar_container__content .loadmore_descproduct__button--mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), #fff, #fff);
}
@media (min-width: 881px) {
  .tabbar_container--3 .tabbar_container__contents .tabbar_container__content .loadmore_descproduct__button--mobile {
    display: none;
  }
}
.tabbar_container--3 .tabbar_container__contents .tabbar_container__content .loadmore_button {
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tabbar_container--3 .tabbar_container__contents .tabbar_container__content .loadmore_button.hide_mobile {
  display: none;
}
@media (min-width: 881px) {
  .tabbar_container--3 .tabbar_container__contents .tabbar_container__content .display_mobile {
    display: none !important;
  }
  .tabbar_container--3 .tabbar_container__contents .tabbar_container__content .display_desktop {
    display: flex !important;
  }
  .tabbar_container--3 .tabbar_container__contents .tabbar_container__content .display_desktop__block {
    display: block !important;
  }
}
@media (min-width: 881px) {
  .tabbar_container--3 .tabbar_container__buttons {
    display: flex;
  }
  .tabbar_container--3 .tabbar_container__contents .tabbar_container__content {
    display: none;
  }
  .tabbar_container--3 .tabbar_container__contents .tabbar_container__content.show {
    display: flex;
  }
  .tabbar_container--3 .tabbar_container__contents .tabbar_container__content .tabbar_header {
    display: none;
  }
}

hr {
  border-color: rgba(229, 229, 229, 0.3);
}

.offer_box {
  display: flex;
  padding: 2px 4px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 0.5rem;
  color: #fff;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  background-color: var(--red-1);
}

.text_xlarge {
  font-size: 1.2rem;
}

.text_large {
  font-size: 1rem;
}

.text_sm {
  font-size: 0.9rem;
}

.text_xs {
  font-size: 0.8rem;
}

.text_right {
  text-align: right;
}

.text_center {
  text-align: center;
}

.text_left {
  text-align: left;
}

.text_gray {
  color: var(--gray-211);
}

.text_darkgray {
  color: var(--black-201);
}

.text_black {
  font-weight: 600;
  color: var(--black-0);
}

.text_blue {
  color: var(--blue-3);
}

.text_danger {
  color: var(--red-1);
}

.text_dark {
  color: var(--black-0);
}

.text_white {
  color: #fff;
}

.text_yellow {
  color: var(--yellow-5);
}

.text_green {
  color: var(--green-6);
}
.text_green.bold {
  font-weight: 600;
}

.text_red {
  color: var(--red-14);
}
.text_red.bold {
  font-weight: 600;
}

.font_semibold {
  font-weight: 500;
}

.font_bold {
  font-weight: 600;
}

.icon-16 {
  width: 16px;
  height: 16px;
  font-size: 16px;
}

.icon-18 {
  width: 18px;
  height: 18px;
  font-size: 18px;
}

.icon-20 {
  width: 20px;
  height: 20px;
  font-size: 20px;
}

.icon-22 {
  width: 22px;
  height: 22px;
  font-size: 22px;
}

.icon-25 {
  width: 25px;
  height: 25px;
  font-size: 25px;
}

.icon-40 {
  width: 40px;
  height: 40px;
  font-size: 40px;
}

.w-16 {
  width: 16px;
}

.w-20 {
  width: 20px;
}
.outline_card .shop_payment-btn{
  display: flex;
  justify-content: center;
  align-items: center;
}
.arrowgif_image {
  width:20px;
  height: 40px;
  line-height: 40px;
  -o-object-fit: cover;
   object-fit: cover;
  transform: rotate(90deg);
}

.circle_icon__gray {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--black-10);
}

.doran-font {
  @supports ( (--a: 0)) {
    font-family: var(--font-doran-regular);
  }
  @supports ( not (--a: 0)) {
    font-family: "Doran", sans-serif;
  }
}

.yekanbakh-font {
  @supports ( (--a: 0)) {
    font-family: var(--font-yekan-bakh-regular);
  }
  @supports ( not (--a: 0)) {
    font-family: "Yekan BakhRegular", sans-serif;
  }
}

.cursor_pointer {
  cursor: pointer;
}

.separator_or {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-200);
}
.separator_or hr {
  flex-grow: 1;
}

.blue_circle {
  background-color: blue;
  width: 24px;
  height: 24px;
  border: 1px solid #fff;
  border-radius: 50%;
}

.green_square {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid var(--black-10);
  background: var(--green-6);
}

.relative {
  position: relative;
}

.positive_list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.positive_list li {
  font-size: 0.9rem;
  padding-right: 1.5rem;
  color: var(--black-201);
}
.positive_list li::before {
  content: "\f058"; /* FontAwesome Unicode */
  font-family: "Font Awesome 6 Pro";
  margin-right: -1.5rem;
  width: 1.5rem;
  color: var(--green-3);
}

.negative_list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.negative_list li {
  font-size: 0.9rem;
  padding-right: 1.5rem;
  color: var(--black-201);
}
.negative_list li::before {
  content: "\f057"; /* FontAwesome Unicode */
  font-family: "Font Awesome 6 Pro";
  margin-right: -1.5rem;
  width: 1.5rem;
  color: var(--red-14);
}

.list_with__dot {
  list-style: disc;
  padding-right: 1rem;
}
.list_with__dot li {
  list-style: disc;
}

.list_properties {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.list_properties li {
  display: flex;
  font-size: 0.8rem;
  color: var(--gray-200);
  position: relative;
  padding-right: 20px;
}
.list_properties li::before {
  content: " ";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--gray-208);
  border-radius: 50%;
}

table {
  min-width: var(--width-100);
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  table-layout: fixed;
  border: 1px solid var(--black-10);
}
table thead {
  background-color: var(--gray-204);
  color: var(--black-0);
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
table thead td, table thead th {
  min-width: 170px;
  padding: 0.75rem 1.2rem;
  color: var(--black-0);
  font-weight: 500;
}
table tbody {
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
table tbody tr {
  border-bottom: 1px solid var(--black-10);
}
table tbody tr:last-child {
  border-bottom-width: 0;
}
table tbody td {
  padding: 0.75rem 1rem;
}

.table_container {
  overflow-x: hidden;
}
.table_container .table_container__sub {
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 0.5rem;
  border: 1px solid var(--gray-204);
}

.contact_container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 20;
}
.contact_container .contact_overlay {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -10;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 350ms ease-in;
}
.contact_container .contact_list {
  height: 0;
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0);
  transition: all 350ms ease-in;
}
.contact_container .contact_list .contact_item {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  margin-bottom: -50px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 100px;
  cursor: pointer;
  transition: all 350ms ease-in;
}
.contact_container .contact_list .contact_item .contact_item__icon {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  background-color: green;
  border-radius: 50%;
}
.contact_container .contact_list .contact_item .contact_item__text {
  white-space: nowrap;
  padding: 0 0.5rem;
  color: var(--black-0);
  font-size: 0.8rem;
  font-weight: 600;
}
.contact_container .contact_list .contact_item:hover {
  width: var(--width-100);
}
.contact_container.show .contact_overlay {
  opacity: 1;
  visibility: visible;
}
.contact_container.show .contact_list {
  height: 100%;
  opacity: 1;
  visibility: visible;
  transform: translateY(-10px);
}
.contact_container.show .contact_list .contact_item {
  margin-bottom: 0.75rem;
}
.contact_container .contact_button {
  position: relative;
  z-index: 30;
  flex-direction: column;
  gap: 0.3rem;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--blue-3);
  color: #fff;
  font-size: 0.8rem;
}
.section_container {
  width: var(--width-97);
  max-width: var(--width-max-width);
  margin: 0 auto;
  padding: 1rem 0.5rem;
}
@media (min-width: 881px) {
  .section_container {
    width: var(--width-90);
  }
}

.section_container--withside {
  width: var(--width-97);
  max-width: var(--width-max-width);
  margin: 0 auto;
  padding: 1rem 0.5rem;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 2rem;
}
.section_container--withside .section_aside {
  width: var(--width-100);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.section_container--withside .section_main {
  width: var(--width-100);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 881px) {
  .section_container--withside {
    width: var(--width-90);
  }
}
@media (min-width: 1024px) {
  .section_container--withside {
    flex-direction: row;
  }
  .section_container--withside .section_aside {
    width: var(--width-30);
  }
  .section_container--withside .section_main {
    width: var(--width-70);
  }
}

.section_withside {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  gap: 2rem;
}
.section_withside .section_aside, .section_withside .section_main {
  width: var(--width-100);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 980px) {
  .section_withside {
    flex-direction: row;
  }
  .section_withside .section_aside {
    width: var(--width-30);
  }
  .section_withside .section_main {
    width: var(--width-70);
  }
}

.sticky_side {
  position: sticky;
  top: 1rem;
  align-self: flex-start;
}

.container_fixed {
  width: var(--width-90);
  max-width: var(--width-max-width);
  margin: 0 auto;
}

.blog_header {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-template-rows: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
}
.blog_header .post_card--1:nth-child(1) {
  grid-row: span 1/span 1;
  height: auto;
}
@media (min-width: 881px) {
  .blog_header {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }
  .blog_header .post_card--1:nth-child(1) {
    grid-row: span 2/span 2;
    height: 100%;
  }
}

.section_head {
  width: var(--width-100);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--black-201);
}
.section_head i {
  font-size: 20px;
}
.section_head svg {
  width: 25px;
  height: 25px;
}
.section_head hr {
  flex-grow: 1;
}

.items_container--2 {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 881px) {
  .items_container--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.items_container--2__nowrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.items_container--3 {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 980px) {
  .items_container--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.items_container--4 {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 756px) {
  .items_container--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 980px) {
  .items_container--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.items_container--withside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.items_container--withside .section_side {
  width: var(--width-100);
}
.items_container--withside .section_main {
  width: var(--width-100);
}
@media (min-width: 881px) {
  .items_container--withside {
    flex-direction: row;
  }
  .items_container--withside .section_side {
    width: var(--width-25);
  }
  .items_container--withside .section_main {
    width: var(--width-75);
  }
}

.items_container--5 {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0.75rem;
}
@media (min-width: 420px) {
  .items_container--5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 657px) {
  .items_container--5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 881px) {
  .items_container--5 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .items_container--5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.list_separate__vertical {
  display: flex;
  flex-direction: column;
}
.list_separate__vertical.line .item {
  border-bottom: 1px solid var(--black-10);
}
.list_separate__vertical.line .item:last-child {
  border-bottom-width: 0;
}
.list_separate__vertical .item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0;
}
.list_separate__vertical .item svg {
  width: 20px;
  height: 20px;
  color: var(--gray-211);
}
.list_separate__vertical .item p {
  width: calc(100% - 20px - 0.5rem);
  color: var(--gray-201);
}
.list_separate__vertical .item p .dark {
  color: var(--black-202);
  font-weight: 500;
}

.item_container--5__separate {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.item_container--5__separate .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 0.5rem;
  border-left: 1px solid var(--black-10);
  border-bottom: 1px solid var(--black-10);
}
.item_container--5__separate .item:nth-child(2n) {
  border-left-width: 0;
}
.item_container--5__separate .item:last-child {
  border-left-width: 0;
  border-bottom-width: 0;
  grid-column: span 2/span 2;
}
@media (min-width: 756px) {
  .item_container--5__separate .item {
    border-bottom-width: 0;
  }
  .item_container--5__separate .item:last-child {
    grid-column: span 1/span 1;
  }
}
@media (min-width: 980px) {
  .item_container--5__separate {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .item_container--5__separate .item {
    border-left: 1px solid var(--black-10);
  }
  .item_container--5__separate .item:nth-child(2n) {
    border-left-width: 1px;
  }
  .item_container--5__separate .item:last-child {
    border-left-width: 0;
  }
}

.text_with__icon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.text_with__icon svg {
  width: 18px;
  height: 18px;
}
.text_with__icon i {
  width: 18px;
  font-size: 18px;
}
.text_with__icon p {
  width: calc(var(--width-100) - 18px - 0.5rem);
}

.gap-y {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}

.gap-y-2 {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}

.gap-y-3 {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}

.gap-y-4 {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}

.gap-y-5 {
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
}

.gap-y-6 {
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
}

.gap-x {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}

.gap-x-2 {
  display: flex;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.gap-x-3 {
  display: flex;
  align-items: center;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}

.gap-x-4 {
  display: flex;
  align-items: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}

.gap-x-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}

.gap-x-2-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}

.gap-x-3-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}

.gap-x-4-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}

.gap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gap-2 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.gap-3 {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.gap-4 {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.gap-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.gap-2-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.gap-3-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.gap-4-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.all_center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.all_center__column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.space_between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.space_between--wrap_gap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.75rem;
}
@media (min-width: 980px) {
  .space_between--wrap_gap {
    flex-direction: row;
  }
}

.justify_start {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.justify_center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.justify_end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.w-full {
  width: var(--width-100);
}

.items_start {
  display: flex;
  align-items: start;
}

.items_center {
  display: flex;
  align-items: center;
}

.items_end {
  display: flex;
  align-items: end;
}

.lg_block {
  display: none;
}
@media (min-width: 998px) {
  .lg_block {
    display: block;
  }
}

.lg_flex {
  display: none;
}
@media (min-width: 998px) {
  .lg_flex {
    display: flex;
  }
}

.lg_hidden {
  display: block;
}
@media (min-width: 998px) {
  .lg_hidden {
    display: none;
  }
}

.p {
  padding: 0.5rem;
}

.p-2 {
  padding: 1rem;
}

.p-3 {
  padding: 1.5rem;
}

.p-4 {
  padding: 2rem;
}

.pt {
  padding-top: 0.5rem;
}

.pt-2 {
  padding-top: 1rem;
}

.pt-3 {
  padding-top: 1.5rem;
}

.pt-4 {
  padding-top: 2rem;
}

.pb {
  padding-bottom: 0.5rem;
}

.pb-2 {
  padding-bottom: 1rem;
}

.pb-3 {
  padding-bottom: 1.5rem;
}

.pb-4 {
  padding-bottom: 2rem;
}

.py {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-2 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-3 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.px {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-2 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-3 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-4 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.text_side__button {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
}
.text_side__button > p {
  flex: calc(100% - 300px - 0.75rem);
}
.text_side__button > button {
  flex: 250px;
}
@media (max-width: 556px) {
  .text_side__button {
    flex-direction: column;
  }
  .text_side__button > p, .text_side__button > button {
    flex: 100%;
  }
}

.nocontent_section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2.5rem 1rem;
}
.nocontent_section .nocontent_section__image {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--black-10);
  border-radius: 50%;
  margin-bottom: 1rem;
}
.nocontent_section .nocontent_section__image img {
  width: 130px;
}
.nocontent_section .nocontent_section__title {
  color: var(--black-201);
  font-weight: 500;
  font-size: 1rem;
}
.nocontent_section .nocontent_section__desc {
  color: var(--gray-211);
  font-size: 0.9rem;
}

.shoppingcard_item {
  display: flex;
  gap: 1rem;
}
.shoppingcard_item .shoppingcard_item__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  max-height: 100px;
  border-radius: 0.5rem;
}
.shoppingcard_item .shoppingcard_item__image img {
  width: var(--width-100);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.shoppingcard_item .shoppingcard_item__desc {
  width: calc(var(--width-100) - 1rem - 100px);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 0;
}

.shoppingcard_offer__green {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem;
  gap: 1rem;
  border-radius: 0.5rem;
  background: var(--gray-212);
  color: var(--green-6);
  font-weight: 500;
}

.shoppingcard_next__container {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 360px) {
  .shoppingcard_next__container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 556px) {
  .shoppingcard_next__container {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 765px) {
  .shoppingcard_next__container {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 881px) {
  .shoppingcard_next__container {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
@media (min-width: 998px) {
  .shoppingcard_next__container {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
.notfound_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1rem 3rem;
  margin: 1rem 0;
  gap: 2rem;
}
.notfound_container img {
  width: var(--width-100);
  max-width: 738px;
}
.notfound_container p {
  font-size: 1.5rem;
  color: var(--black-201);
}
.login_background {
  position: relative;
}
.login_background::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  z-index: -1;
  width: var(--width-100);
  height: 100vh;
  background-image: url("../../../public/images/login-background.png");
  background-size: 100% 50%;
  background-position: top center;
}

.login_container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: var(--width-95);
  max-width: 450px;
  padding: 1rem;
}
@media (min-width: 556px) {
  .login_container {
    padding: 6rem 1rem;
  }
}

.product_container {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
}
@media (min-width: 556px) {
  .product_container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 980px) {
  .product_container {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .product_container {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .product_container.unfill {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.seller_info__container {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  padding: 1.5rem;
  background-color: #fff;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.05);
}
.seller_info__container .seller_info__item {
  border-bottom: 1px solid var(--black-10);
  border-left: none;
  width: var(--width-100);
}
.seller_info__container .seller_info__item:nth-child(1) {
  padding: 0 0 1rem;
}
.seller_info__container .seller_info__item:last-child {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-left-width: 0;
  border-bottom-width: 0;
}
.seller_info__container .seller_info__item:last-child .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  border-left: 1px solid var(--black-10);
  border-bottom: 1px solid var(--black-10);
}
.seller_info__container .seller_info__item:last-child .item:first-child {
  padding: 1rem 0;
}
.seller_info__container .seller_info__item:last-child .item:nth-child(2) {
  padding: 1rem 0;
  border-left-width: 0;
}
.seller_info__container .seller_info__item:last-child .item:last-child {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding-top: 1rem;
  grid-column: span 2/span 2;
  border-left-width: 0;
  border-bottom-width: 0;
  cursor: pointer;
}
.seller_info__container .seller_info__item:last-child .item:last-child i {
  font-size: 20px;
  color: var(--red-1);
}
@media (min-width: 881px) {
  .seller_info__container .seller_info__item:last-child {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .seller_info__container .seller_info__item:last-child:nth-child(1) {
    padding: 0;
  }
  .seller_info__container .seller_info__item:last-child .item {
    border-bottom-width: 0 !important;
    padding: 0.5rem !important;
  }
  .seller_info__container .seller_info__item:last-child .item:nth-child(2) {
    border-left-width: 1px;
  }
  .seller_info__container .seller_info__item:last-child .item:last-child {
    padding: 0;
    flex-direction: column;
    grid-column: span 1/span 1;
  }
}
@media (min-width: 881px) {
  .seller_info__container {
    padding: 0.75rem 1.5rem 0.75rem 0;
    flex-direction: row;
  }
  .seller_info__container .seller_info__item {
    border-bottom: none;
    border-left: 1px solid var(--black-10);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 0.5rem;
  }
  .seller_info__container .seller_info__item:first-child {
    width: 25%;
    padding: 0.5rem;
  }
  .seller_info__container .seller_info__item:nth-child(2) {
    width: 40%;
    padding: 0.5rem 1.3rem;
  }
  .seller_info__container .seller_info__item:last-child {
    width: 35%;
  }
}

.btn_showmore {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 42px;
  overflow: hidden;
  padding: 0 1rem;
  gap: 1.5rem;
  transition: color 250ms;
}
.btn_showmore > * {
  position: relative;
  z-index: 3;
}
.btn_showmore::after {
  content: " ";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 42px;
  border-radius: 50px;
  background-color: var(--main-color);
  transition: width 250ms;
}
.btn_showmore .icon {
  color: #fff;
}
.btn_showmore:hover {
  color: #fff;
}
.btn_showmore:hover::after {
  width: var(--width-100);
}
.shop_slider__side {
  position: relative;
}
.shop_slider__side.mode--1 .body {
  border-radius: 0 0 1rem 1rem;
}
.shop_slider__side.mode--2 .body {
  border-radius: 1rem;
}
.shop_slider__side .head {
  position: relative;
  z-index: 1;
  border-radius: 1rem 1rem 0 0;
  background-color: var(--main-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem;
}
.shop_slider__side .head_right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.shop_slider__side .head::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: var(--width-100);
  height: 30px;
  bottom: -30px;
  left: 0;
  right: 0;
  background-color: var(--main-color);
}
.shop_slider__side .body {
  position: relative;
  z-index: 3;
  background-color: #fff;
  border-radius: 0 0 1rem 1rem;
  padding: 0 0.75rem;
  max-height: 400px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.shop_slider__side .body::-webkit-scrollbar {
  display: none; /* Hide scrollbars */
}
.shop_slider__side .body .active {
  border-radius: 1rem;
  border-top: 3px solid var(--main-color);
  border-bottom: 3px solid var(--main-color);
}
.shop_slider__side .body .item {
  background-color: #fff;
  margin-bottom: 0.75rem;
}
.shop_slider__side .body .item:last-child {
  margin-bottom: 3rem;
}
.shop_slider__side .body_bottom {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  bottom: 0;
  height: 62px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 76.58%);
  cursor: pointer;
}
.shop_slider__side .body_bottom .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--width-100);
  padding: 0.75rem;
  color: var(--black-0);
  transition: color 250ms;
}
.shop_slider__side .body_bottom .icon i {
  font-size: 22px;
}
.shop_slider__side .body_bottom:hover .icon {
  color: var(--main-color);
}

.category_slider__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.category_slider__head .text_head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gray-200);
  font-size: 1.1rem;
}
.category_slider__head .text_head i {
  font-size: 20px;
}
.category_slider__head .text_head .bold {
  color: var(--red-1);
  font-weight: 600;
}

.justify_between--mob {
  width: var(--width-100);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 556px) {
  .justify_between--mob {
    flex-direction: row;
  }
}

.openproduct_container {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
  border-radius: 1rem;
  padding: 1rem;
  background-color: #fff;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.05);
}
.openproduct_container .openproduct_main {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.openproduct_container .openproduct_main .openproduct_main__awesome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  background-color: var(--main-color);
  border-radius: 0.5rem;
  padding: 0.5rem 0 0.5rem 1rem;
}
.openproduct_container .openproduct_main .openproduct_main__awesome .right {
  display: flex;
  align-items: center;
  color: #fff;
  @supports ( (--a: 0)) {
    font-family: var(--font-doran-regular);
  }
  @supports ( not (--a: 0)) {
    font-family: "Doran", sans-serif;
  }
}
.openproduct_container .openproduct_main .openproduct_main__awesome .right .right_image {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.openproduct_container .openproduct_main .openproduct_main__awesome .right .right_image img {
  width: var(--width-100);
  height: 100%;
}
.openproduct_container .openproduct_main .openproduct_main__awesome .right .title {
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 5px;
}
.openproduct_container .openproduct_main .openproduct_main__awesome .right .desc {
  font-size: 0.7rem;
}
.openproduct_container .openproduct_main .openproduct_main__awesome .timer {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.openproduct_container .openproduct_main .openproduct_main__awesome .timer span {
  font-size: 1.3rem;
  color: #fff;
}
.openproduct_container .openproduct_main .openproduct_main__awesome .timer .box {
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 4px 8px;
  font-size: 1.05rem;
  color: var(--gray-200);
}
.openproduct_container .openproduct_main .openproduct_main__awesome .timer .box.second {
  color: var(--main-color);
}
.openproduct_container .openproduct_main .openproduct_main__container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.openproduct_container .openproduct_main .openproduct_main__container .openproduct_main__slidercontrols {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
}
.openproduct_container .openproduct_main .openproduct_main__container .openproduct_main__slidercontrols .openproduct_main__controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border: 1px solid var(--black-10);
  border-radius: 0.5rem;
}
.openproduct_container .openproduct_main .openproduct_main__container .openproduct_main__slidercontrols .openproduct_main__controls button {
  padding: 0.75rem;
  color: var(--gray-200);
}
.openproduct_container .openproduct_main .openproduct_main__container .openproduct_main__slidercontrols .openproduct_main__controls button i {
  font-size: 18px;
}
.openproduct_container .openproduct_main .openproduct_main__container .openproduct_main__slidercontrols .openproduct_main__controls .line {
  width: 20px;
  height: 1px;
  background-color: var(--black-10);
}
.openproduct_container .openproduct_main .openproduct_main__container .openproduct_main__slidercontrols .openproduct_main__slider {
  position: relative;
  height: 330px;
  grid-column: 5 span/5 span;
}
.openproduct_container .openproduct_main .openproduct_main__container .openproduct_main__slidercontrols .openproduct_main__slider .openproduct_main__image {
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--black-10);
  border-radius: 0.5rem;
}
.openproduct_container .openproduct_main .openproduct_main__container .openproduct_main__slidercontrols .openproduct_main__slider .openproduct_main__image img {
  width: var(--width-100);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.openproduct_container .openproduct_main .openproduct_main__container .openproduct_main__slidercontrols .openproduct_main__slider .openproduct_main__imagezoom img {
  position: absolute;
  top: 0;
  left: 0;
  height: 400px;
}
.openproduct_container .openproduct_main .openproduct_main__container .openproduct_main__thumb {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}
.openproduct_container .openproduct_main .openproduct_main__container .openproduct_main__thumb .thumb_item {
  position: relative;
  height: 72px;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--black-10);
  cursor: pointer;
}
.openproduct_container .openproduct_main .openproduct_main__container .openproduct_main__thumb .thumb_item img {
  width: var(--width-100);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.openproduct_container .openproduct_main .openproduct_main__container .openproduct_main__thumb .thumb_item .badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 0.5rem;
  color: #fff;
  background-color: rgba(26, 26, 26, 0.6);
}
.openproduct_container .openproduct_main .openproduct_main__container .product_stock .product_stock__texts {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--gray-200);
}
.openproduct_container .openproduct_main .openproduct_main__container .product_stock .product_stock__texts span {
  font-weight: 600;
  color: var(--main-color);
  font-size: 1.1rem;
}
.openproduct_container .openproduct_main .openproduct_main__container .product_stock .product_stock__progress {
  width: var(--width-100);
  background-color: var(--black-10);
  height: 4px;
  border-radius: 50px;
  overflow: hidden;
}
.openproduct_container .openproduct_main .openproduct_main__container .product_stock .product_stock__progress .progress_outer {
  height: 100%;
  max-width: var(--width-100);
  background-color: var(--red-1);
}
.openproduct_container .openproduct_details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.openproduct_container .openproduct_details .desktop_details, .openproduct_container .openproduct_details .desktop_details__block {
  display: none !important;
}
.openproduct_container .openproduct_details .product_tag {
  align-self: flex-start;
  padding: 5px 8px;
  border-radius: 2px;
  background: var(--gray-204);
  color: var(--gray-211);
}
.openproduct_container .openproduct_details .product_tag span {
  color: var(--black-201);
  font-weight: 500;
}
.openproduct_container .openproduct_details .product_title {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--black-0);
}
.openproduct_container .openproduct_details .product_model {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.openproduct_container .openproduct_details .product_model p {
  font-size: 0.85rem;
  color: var(--gray-200);
}
.openproduct_container .openproduct_details .product_model hr {
  flex-grow: 1;
}
@media (min-width: 881px) {
  .openproduct_container .openproduct_details .desktop_details {
    display: flex !important;
  }
  .openproduct_container .openproduct_details .desktop_details__block {
    display: block !important;
  }
}
.openproduct_container .openproduct_buy {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 2rem;
}
.openproduct_container .openproduct_buy .openproduct_buy__box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  background-color: var(--default-bg-color);
  border: 1px solid var(--black-10);
}
.openproduct_container .openproduct_buy .openproduct_buy__box .seller_title {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.openproduct_container .openproduct_buy .openproduct_buy__box .seller_title .seller_name {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.openproduct_container .openproduct_buy .openproduct_buy__box .seller_title .seller_name .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.openproduct_container .openproduct_buy .openproduct_buy__box .seller_title .seller_name .icon > i {
  width: 22px;
  font-size: 22px;
}
.openproduct_container .openproduct_buy .openproduct_buy__box .seller_title .seller_name .icon .icon_badge {
  display: none;
  position: absolute;
  bottom: -5px;
  left: -6px;
  background-color: #fff;
  border-radius: 50%;
  font-size: 13px;
  color: var(--green-6);
}
.openproduct_container .openproduct_buy .openproduct_buy__box .seller_title .seller_name .text_badge {
  display: none;
  background-color: rgba(204, 234, 211, 0.5);
  border-radius: 100px;
  padding: 0.3rem 1rem;
  color: var(--green-4);
  font-size: 0.85rem;
}
.openproduct_container .openproduct_buy .openproduct_buy__box .seller_title .seller_status {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.openproduct_container .openproduct_buy .openproduct_buy__box .seller_title .seller_status .line_vertical {
  width: 2px;
  height: 15px;
  background-color: var(--black-10);
}
.openproduct_container .openproduct_buy .openproduct_buy__box .seller_title .seller_status p {
  font-size: 0.9rem;
}
.openproduct_container .openproduct_buy .openproduct_buy__box .seller_title.excellent .seller_name .icon_badge, .openproduct_container .openproduct_buy .openproduct_buy__box .seller_title.excellent .seller_name .text_badge {
  display: flex;
}
.openproduct_container .openproduct_buy .openproduct_buy__box .seller_title.excellent .status_text {
  color: var(--green-4);
}
.openproduct_container .openproduct_buy .openproduct_buy__box .seller_title.good .status_text {
  color: var(--green-1);
}
.openproduct_container .openproduct_buy .openproduct_buy__box .seller_title.medium .status_text {
  color: var(--yellow-1);
}
.openproduct_container .openproduct_buy .openproduct_buy__box .seller_title.bad .status_text {
  color: var(--red-8);
}
.openproduct_container .openproduct_buy .openproduct_buy__box .price_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.openproduct_container .openproduct_buy .openproduct_buy__box .price_container .prices {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.5rem;
}
.openproduct_container .openproduct_buy .openproduct_buy__box .price_container .prices .price_offer {
  font-size: 0.8rem;
  text-decoration: line-through;
  color: var(--gray-211);
}
.openproduct_container .openproduct_buy .openproduct_buy__box .price_container .price_last {
  font-weight: 500;
  color: var(--green-6);
  font-size: 1rem;
  text-align: left;
}
@media (min-width: 998px) {
  .openproduct_container {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .openproduct_container .openproduct_buy {
    display: flex;
  }
}

.openproduct_condition__container {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #fff;
}
.openproduct_condition__container .openproduct_condition {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  width: var(--width-97);
  max-width: var(--width-max-width);
  margin: 0 auto;
  padding: 1rem 0.5rem;
}
.openproduct_condition__container .openproduct_condition .right {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  cursor: pointer;
}
.openproduct_condition__container .openproduct_condition .center {
  width: var(--width-100);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  cursor: pointer;
}
.openproduct_condition__container .openproduct_condition .center .product {
  height: 72px;
  border: 1px solid var(--black-10);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.openproduct_condition__container .openproduct_condition .center .product img {
  width: var(--width-100);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.openproduct_condition__container .openproduct_condition .center .product .icon {
  font-size: 25px;
  color: var(--gray-200);
}
.openproduct_condition__container .openproduct_condition .left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
@media (min-width: 881px) {
  .openproduct_condition__container .openproduct_condition {
    width: var(--width-90);
  }
}
@media (min-width: 881px) {
  .openproduct_condition__container.show {
    display: block;
  }
}

.sellers_openproduct__table {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  border-radius: 1rem;
  padding: 1.5rem;
  background-color: #fff;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.05);
}
@media (min-width: 881px) {
  .sellers_openproduct__table {
    display: flex;
  }
}

.sellers_openproduct__table--mobile {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 2rem;
  padding: 1rem;
  border-radius: 0.5rem;
  background-color: #fff;
}
.sellers_openproduct__table--mobile .seller_title {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.sellers_openproduct__table--mobile .seller_title .seller_name {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.sellers_openproduct__table--mobile .seller_title .seller_name .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sellers_openproduct__table--mobile .seller_title .seller_name .icon > i {
  width: 22px;
  font-size: 22px;
}
.sellers_openproduct__table--mobile .seller_title .seller_name .icon .icon_badge {
  display: none;
  position: absolute;
  bottom: -5px;
  left: -6px;
  background-color: #fff;
  border-radius: 50%;
  font-size: 13px;
  color: var(--green-6);
}
.sellers_openproduct__table--mobile .seller_title .seller_name .text_badge {
  display: none;
  background-color: rgba(204, 234, 211, 0.5);
  border-radius: 100px;
  padding: 0.3rem 1rem;
  color: var(--green-4);
  font-size: 0.85rem;
}
.sellers_openproduct__table--mobile .seller_title .seller_status {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.sellers_openproduct__table--mobile .seller_title .seller_status .line_vertical {
  width: 2px;
  height: 15px;
  background-color: var(--black-10);
}
.sellers_openproduct__table--mobile .seller_title .seller_status p {
  font-size: 0.9rem;
}
.sellers_openproduct__table--mobile .seller_title.excellent .seller_name .icon_badge, .sellers_openproduct__table--mobile .seller_title.excellent .seller_name .text_badge {
  display: flex;
}
.sellers_openproduct__table--mobile .seller_title.excellent .status_text {
  color: var(--green-4);
}
.sellers_openproduct__table--mobile .seller_title.good .status_text {
  color: var(--green-1);
}
.sellers_openproduct__table--mobile .seller_title.medium .status_text {
  color: var(--yellow-1);
}
.sellers_openproduct__table--mobile .seller_title.bad .status_text {
  color: var(--red-8);
}
.sellers_openproduct__table--mobile .price_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.sellers_openproduct__table--mobile .price_container .prices {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.5rem;
}
.sellers_openproduct__table--mobile .price_container .prices .price_offer {
  font-size: 0.8rem;
  text-decoration: line-through;
  color: var(--gray-211);
}
.sellers_openproduct__table--mobile .price_container .price_last {
  font-weight: 500;
  color: var(--green-6);
  font-size: 1rem;
  text-align: left;
}
@media (min-width: 881px) {
  .sellers_openproduct__table--mobile {
    display: none;
  }
}

.product_info__mobile__container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 2rem;
  padding: 1rem;
  border-radius: 0.5rem;
  background-color: #fff;
}
@media (min-width: 881px) {
  .product_info__mobile__container {
    display: none;
  }
}

.buy_product__mobile__container {
  display: block;
  position: fixed;
  z-index: 10;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 2px 18px 60px 5px var(--gray-209);
}
.buy_product__mobile__container .buy_product__mobile {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  width: var(--width-97);
  max-width: var(--width-max-width);
  margin: 0 auto;
  padding: 1.2rem 0.5rem;
}
.buy_product__mobile__container .buy_product__mobile .prices {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.buy_product__mobile__container .buy_product__mobile .prices .price_offer {
  font-size: 0.8rem;
  text-decoration: line-through;
  color: var(--gray-211);
}
.buy_product__mobile__container .buy_product__mobile .prices .price_last {
  font-weight: 600;
  color: var(--green-6);
  font-size: 1rem;
}
.buy_product__mobile__container .buy_product__mobile button {
  align-self: center;
}
@media (min-width: 881px) {
  .buy_product__mobile__container {
    display: none;
  }
}

.dashboard_sidebar__container .btn_toggle__sidebar {
  position: absolute;
  left: -50px;
  top: 150px;
  width: 50px;
  height: 90px;
  z-index: 10;
  padding-left: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-200);
  background-image: url("../img/ellipse-dashboard.png");
  background-position: center right;
  background-size: 100% 100%;
  cursor: pointer;
  fill: #fff;
  filter: drop-shadow(0px 4px 40px rgba(0, 0, 0, 0.05));
}

.blob{
  position:relative;
  height: 32px;
  width: 32px;
  background: transparent;
  z-index:0;
}
.blob:after {
  position: absolute;
  margin:auto;
  content:'';
  background: transparent;
  top: 50%;
  left: 9px;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 66px;
  border-radius: 100% / 57%;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
  animation: pulse 3s infinite;
  z-index:-1;
}
@-webkit-keyframes pulse {
  0% {
    z-index:0;
    -webkit-box-shadow: -2px 0 5px 0 rgba(102,102,102, 0.7);
  }
  20% {
    z-index:0;
    -webkit-box-shadow: -7px 0 6px 0 rgba(255,255,255, 0.2);
  }
  40% {
    z-index:0;
    -webkit-box-shadow: -12px 0 8px 0 rgba(255,255,255, 0.2);
  }
  100% {
    z-index:0;
    -webkit-box-shadow: -18px 0 12px 0 rgba(77,77,77, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: -2px 0 5px 0 rgba(102,102,102, 0.7);
    box-shadow: -2px 0 5px 0 rgba(102,102,102, 0.7);
  }
  20% {
    -moz-box-shadow: -7px 0 6px 0 rgba(255,255,255, 0.2);
    box-shadow: -7px 0 6px 0 rgba(255,255,255, 0.2);
  }
  40% {
    -moz-box-shadow: -12px 0 8px 0 rgba(255,255,255, 0.2);
    box-shadow: -12px 0 8px 0 rgba(255,255,255, 0.2);
  }
  100% {
    -moz-box-shadow: -18px 0 12px 0 rgba(77,77,77, 0);
    box-shadow: -18px 0 12px 0 rgba(77,77,77, 0);
  }
}

.fa-ellipsis-vertical-advanced{
  background: url('../img/more.svg');
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  width: 20px;
  height: 20px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.dashboard_sidebar__container .btn_toggle__sidebar i {
  color: var(--black-201);
  font-size: 25px;
}
.dashboard_sidebar__container::after {
  content: " ";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -10;
  opacity: 0;
  translate: opacity 350ms;
}
.dashboard_sidebar__container.opened::after {
  opacity: 1;
  z-index: 10;
}
.dashboard_sidebar__container.opened .sidebar_container {
  transform: translateX(0);
  z-index: 999;
}
.dashboard_sidebar__container .sidebar_container {
  --sidebar-width: 300px;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 1rem 2rem 1rem;
  width: var(--sidebar-width);
  transform: translateX(var(--sidebar-width));
  transition: all 300ms ease-in;
}
@media (min-width: 420px) {
  .dashboard_sidebar__container .sidebar_container {
    --sidebar-width: 370px;
  }
}
.dashboard_sidebar__container .dashboard_side__main {
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.dashboard_sidebar__container .dashboard_side__main::-webkit-scrollbar {
  display: none; /* Hide scrollbars */
}
.swiper_homepage {
  height: 350px;
  border-radius: 1rem;
}
.swiper_homepage .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.swiper_homepage .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.swiper_homepage.bottom .swiper_control {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.swiper_homepage.bottom .swiper_control .swiper-button-prev, .swiper_homepage.bottom .swiper_control .swiper-button-next, .swiper_homepage.bottom .swiper_control .swiper-pagination {
  position: relative;
}
.swiper_homepage.bottom .swiper_control .swiper-pagination {
  left: 0;
  transform: translateX(0);
}
.swiper_homepage.bottom .swiper_control .swiper_control__navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.swiper_homepage.arrow_rectangle .swiper-button-prev, .swiper_homepage.arrow_rectangle .swiper-button-next {
  width: 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
}
.swiper_homepage .swiper-button-prev, .swiper_homepage .swiper-button-next {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fff;
  color: var(--black-201);
}
.swiper_homepage .swiper-button-prev::after, .swiper_homepage .swiper-button-next::after {
  font-size: 0.85rem;
  color: var(--black-201);
}
.swiper_homepage .swiper-pagination {
  display: flex;
  width: auto !important;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  padding: 0.75rem;
  border-radius: 50px;
}
.swiper_homepage .swiper-pagination .swiper-pagination-bullet {
  padding: 5px !important;
}
.swiper_homepage .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--red-1) !important;
  width: 25px !important;
  border-radius: 50px !important;
}
.dashboard_sidebar__container .dashboard_side__main .dashboard_side__user {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border: 1px solid var(--black-10);
  border-radius: 0.5rem;
  padding: 3rem 1rem 1rem 1rem;
}
.dashboard_sidebar__container .dashboard_side__main .dashboard_side__user::before {
  content: " ";
  position: absolute;
  z-index: 40;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='130' height='40' viewBox='0 0 130 40' fill='none'%3E%3Cpath d='M130 0C110.507 2.39837e-06 108.357 40 65 40C21.643 40 19.4928 0 0 0C0 0 37.3858 5.15588e-06 65 5.15588e-06C92.6142 5.15588e-06 130 0 130 0Z' fill='white'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  width: 130px;
  height: 40px;
}
.dashboard_sidebar__container .dashboard_side__main .dashboard_side__user::after {
  content: " ";
  position: absolute;
  z-index: 30;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='130' height='40' viewBox='0 0 130 40' fill='none'%3E%3Cpath d='M130 0C110.507 2.39837e-06 108.357 40 65 40C21.643 40 19.4928 0 0 0C0 0 37.3858 5.15588e-06 65 5.15588e-06C92.6142 5.15588e-06 130 0 130 0Z' fill='white' stroke='%23e5e5e5'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  width: 130px;
  height: 40px;
}
.dashboard_sidebar__container .dashboard_side__main .dashboard_avatar {
  margin: 0 auto;
  position: relative;
  z-index: 45;
  transform: translateY(40px);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1px solid var(--black-10);
}
.dashboard_sidebar__container .dashboard_side__main .dashboard_avatar img {
  width: var(--width-100);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.dashboard_sidebar__container .dashboard_side__main .dashboard_menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.dashboard_sidebar__container .dashboard_side__main .dashboard_menu .dashboard_menu__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  cursor: pointer;
  padding: 0.5rem 1.2rem 0.5rem 0;
  color: var(--gray-200);
}
.dashboard_sidebar__container .dashboard_side__main .dashboard_menu .dashboard_menu__item .arrow_button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 4px;
  border-radius: 0.5rem;
  visibility: hidden;
  background-color: var(--blue-3);
  color: #fff;
}
.dashboard_sidebar__container .dashboard_side__main .dashboard_menu .dashboard_menu__item .arrow_button svg {
  width: 18px;
  height: 18px;
}
.dashboard_sidebar__container .dashboard_side__main .dashboard_menu .dashboard_menu__item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0;
  border-radius: 2px;
  background-color: var(--blue-3);
  transition: width 350ms ease-in;
}
.dashboard_sidebar__container .dashboard_side__main .dashboard_menu .dashboard_menu__item.is-active {
  color: var(--blue-3);
}
.dashboard_sidebar__container .dashboard_side__main .dashboard_menu .dashboard_menu__item.is-active .arrow_button {
  visibility: visible;
}
.dashboard_sidebar__container .dashboard_side__main .dashboard_menu .dashboard_menu__item.is-active::before {
  width: 3px;
}
.dashboard_sidebar__container .dashboard_side__main .dashboard_menu .dashboard_menu__item .icon {
  position: relative;
}
.dashboard_sidebar__container .dashboard_side__main .dashboard_menu .dashboard_menu__item .icon.new::after {
  content: " ";
  position: absolute;
  top: 0;
  right: -1px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--red-1);
}
@media (min-width: 881px) {
  .dashboard_sidebar__container {
    display: none;
  }
}

.dashboard_container {
  width: var(--width-100);
  max-width: var(--width-width3);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 3rem 0.5rem 1rem;
}
.dashboard_container .dashboard_user__status {
  display: flex;
}
.dashboard_container .dashboard_main {
  width: var(--width-100);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.dashboard_container .dashboard_side {
  width: var(--width-100);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  background-color: #fff;
  border-radius: 1rem;
  padding: 3rem 1rem 1rem;
  margin-top: 3.75rem;
}
.dashboard_container .dashboard_side::before {
  content: " ";
  position: absolute;
  width: 153px;
  height: 38px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url('data:image/svg+xml;charset=utf-8,%3Csvg width="183" height="58" viewBox="0 0 183 58" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M183 0C155.56 3.45505e-06 152.533 57.6234 91.5 57.6234C30.4667 57.6234 27.4398 0 0 0C0 0 52.6277 7.42748e-06 91.5 7.42748e-06C130.372 7.42748e-06 183 0 183 0Z" fill="%23F2F2F2"/%3E%3C/svg%3E');
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% 100%;
}
.dashboard_container .dashboard_side .signout_button {
  position: absolute;
  left: 0.75rem;
  top: -2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--red-1);
}
.dashboard_container .dashboard_side .signout_button:hover {
  text-transform: underline;
}
.dashboard_container .dashboard_side .signout_button p {
  font-size: 0.85rem;
}
.dashboard_container .dashboard_side .signout_button i {
  font-size: 18px;
}
.dashboard_container .dashboard_side .dashboard_side__body {
  display: none;
}
.dashboard_container .dashboard_side .dashboard_avatar {
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--black-10);
}
.dashboard_container .dashboard_side .dashboard_avatar img {
  width: var(--width-100);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.dashboard_container .dashboard_side .dashboard_menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.dashboard_container .dashboard_side .dashboard_menu .dashboard_menu__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  cursor: pointer;
  padding: 0.5rem 1.2rem 0.5rem 0;
  color: var(--gray-200);
  transition: color 250ms;
}
.dashboard_container .dashboard_side .dashboard_menu .dashboard_menu__item:hover {
  color: var(--blue-3);
}
.dashboard_container .dashboard_side .dashboard_menu .dashboard_menu__item:hover::before {
  width: 3px;
}
.dashboard_container .dashboard_side .dashboard_menu .dashboard_menu__item .arrow_button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 4px;
  border-radius: 0.5rem;
  visibility: hidden;
  background-color: var(--blue-3);
  color: #fff;
}
.dashboard_container .dashboard_side .dashboard_menu .dashboard_menu__item .arrow_button svg {
  width: 18px;
  height: 18px;
}
.dashboard_container .dashboard_side .dashboard_menu .dashboard_menu__item.is-active::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0;
  border-radius: 2px;
  background-color: var(--blue-3);
  transition: width 350ms ease-in;
}
.dashboard_container .dashboard_side .dashboard_menu .dashboard_menu__item.is-active {
  color: var(--blue-3);
}
.dashboard_container .dashboard_side .dashboard_menu .dashboard_menu__item.is-active .arrow_button {
  visibility: visible;
}
.dashboard_container .dashboard_side .dashboard_menu .dashboard_menu__item.is-active::before {
  width: 3px;
}
.dashboard_container .dashboard_side .dashboard_menu .dashboard_menu__item .icon {
  position: relative;
}
.dashboard_container .dashboard_side .dashboard_menu .dashboard_menu__item .icon.new::after {
  content: " ";
  position: absolute;
  top: 0;
  right: -1px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--red-1);
}
@media (min-width: 881px) {
  .dashboard_container {
    flex-direction: row;
  }
  .dashboard_container .dashboard_user__status {
    display: none;
  }
  .dashboard_container .dashboard_main {
    width: calc(100% - 320px - 1rem);
  }
  .dashboard_container .dashboard_side {
    padding: 5rem 1rem 1rem;
    width: 320px;
    flex: 0 0 320px;
  }
  .dashboard_container .dashboard_side::before {
    width: 183px;
    height: 58px;
  }
  .dashboard_container .dashboard_side .signout_button {
    display: none;
  }
  .dashboard_container .dashboard_side .dashboard_avatar {
    top: -60px;
    width: 114px;
    height: 114px;
  }
  .dashboard_container .dashboard_side .dashboard_side__body {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

.outline_card__roundedb-bordertnone {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  border-top: none;
  border-right: 1px solid var(--black-10);
  border-left: 1px solid var(--black-10);
  border-bottom: 1px solid var(--black-10);
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.main_dashboard__head {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}
@media (min-width: 886px) {
  .main_dashboard__head {
    flex-direction: row;
    align-items: center;
  }
}

.box_with__icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  position: relative;
  padding: 0.75rem 1.2rem;
  border-radius: 1rem;
  background-color: #fff;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.05);
}
.box_with__icon.link {
  padding-left: 3rem;
}
.box_with__icon.link .box_left {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-1);
}
.box_with__icon.link .box_left i {
  font-size: 20px;
}
.box_with__icon.link .box_left svg {
  width: 25px;
  height: 25px;
}
.box_with__icon .box_right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.box_with__icon .box_right .icon_container {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.box_with__icon .box_right .icon_container.blue {
  background-color: var(--blue-2);
  color: var(--blue-3);
}
.box_with__icon .box_right .icon_container.green {
  background-color: var(--green-2);
  color: var(--green-6);
}
.box_with__icon .box_right .icon_container.red {
  background-color: #FAD0D8;
  color: #E6123D;
}
.box_with__icon .box_right .icon_container i {
  font-size: 28px;
}
.box_with__icon .box_right .icon_container svg {
  width: 32px;
  height: 32px;
}
.box_with__icon .box_right .box_right__text {
  width: calc(100% - 56px - 0.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.download_section__header {
  display: flex;
  flex-wrap: wrap;
  border-radius: 0.5rem;
  color: var(--black-0);
  background-color: var(--gray-204);
}
.download_section__header .head {
  padding: 0.75rem 0.5rem;
  width: 50%;
  flex: 0 0 50%;
  font-size: 0.8rem;
}
.download_section__header .head:first-child {
  width: var(--width-100);
  flex: 0 0 100%;
}
@media (min-width: 881px) {
  .download_section__header .head {
    font-size: 0.9rem;
    width: 20%;
    flex: 0 0 20%;
  }
  .download_section__header .head:first-child {
    width: calc(40% - 1.5rem);
    flex: 0 0 calc(40% - 1.5rem);
  }
}

.accordion_download__container .accordion_button {
  width: var(--width-100);
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding-left: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--gray-202);
  background-color: #fff;
}
.accordion_download__container .accordion_button .accordion_button__text {
  width: 45%;
  flex: 0 0 45%;
  color: var(--gray-201);
  text-align: right;
  padding: 0 0.5rem 1.2rem;
}
.accordion_download__container .accordion_button .accordion_button__text:first-child {
  width: calc(100% - 1.5rem);
  flex: 0 0 calc(100% - 1.5rem);
  transition: color 350ms ease-in;
  text-overflow: ellipsis;
  overflow-x: hidden;
  padding: 1.2rem 0.5rem;
}
@media (min-width: 881px) {
  .accordion_download__container .accordion_button .accordion_button__text {
    width: 20%;
    flex: 0 0 20%;
    padding: 1.2rem 0.5rem;
  }
  .accordion_download__container .accordion_button .accordion_button__text:first-child {
    width: calc(40% - 1.5rem);
    flex: 0 0 calc(40% - 1.5rem);
  }
}
.accordion_download__container .accordion_button .accordion_button__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0.5rem;
  top: 0.75rem;
  width: 32px;
  height: 32px;
  background-color: var(--gray-204);
  color: var(--red-1);
  border-radius: 50%;
}
.accordion_download__container .accordion_button .accordion_button__icon svg {
  width: 22px;
  height: 22px;
  transition: transform 350ms ease-in;
}
@media (min-width: 881px) {
  .accordion_download__container .accordion_button .accordion_button__icon {
    top: 50%;
    transform: translateY(-50%);
  }
}
.accordion_download__container .accordion_download__contents {
  width: 97%;
  max-height: 0;
  margin: 0 auto;
  border: 1px solid transparent;
  border-radius: 0 0 0.5rem 0.5rem;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}
.accordion_download__container .accordion_download__contents .accordion_download__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background-color: #fff;
}
.accordion_download__container .accordion_download__contents .accordion_download__content:nth-child(even) {
  background-color: var(--gray-204);
}
@media (min-width: 881px) {
  .accordion_download__container .accordion_download__contents {
    width: 95%;
  }
}
.accordion_download__container.opened .accordion_button .accordion_button__text:first-child {
  color: var(--red-1);
  font-weight: 600;
}
.accordion_download__container.opened .accordion_button .accordion_button__icon svg {
  transform: rotate(180deg);
}
.accordion_download__container.opened .accordion_download__contents {
  border: 1px solid var(--gray-202);
  border-top-width: 0;
  max-height: -moz-max-content;
  max-height: max-content;
  transition: max-height 1s ease-in-out;
}

.avatar_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 1rem;
  background: var(--gray-204);
  color: var(--gray-200);
}
.avatar_container .avatar_image_account {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gray-203);
}
.avatar_container .avatar_image_account img {
  width: var(--width-100);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.avatar_container .avatar_body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.avatar_container .avatar_body .avatar_body__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.avatar_container .avatar_body .avatar_body__buttons input {
  display: none;
  width: 0;
}
@media (min-width: 881px) {
  .avatar_container {
    flex-direction: row;
  }
  .avatar_container .avatar_body {
    align-items: flex-start;
    gap: 1rem;
  }
  .avatar_container .avatar_body .avatar_body__buttons {
    flex-direction: row;
    gap: 1rem;
  }
}

.ticket_card__container {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.75rem 0;
  scrollbar-width: auto;
  scrollbar-color: var(--gray-204) #fff;
}
.ticket_card__container::-webkit-scrollbar {
  width: 12px;
}
.ticket_card__container::-webkit-scrollbar-track {
  background: #fff;
}
.ticket_card__container::-webkit-scrollbar-thumb {
  background-color: var(--gray-204);
  border-radius: 10px;
  border: 3px solid #fff;
}
.ticket_card__container .ticket_card {
  width: 250px;
  flex: 0 0 250px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: 1.2rem 2rem;
  background-image: url('data:image/svg+xml;charset=utf-8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="240" height="99" viewBox="0 0 240 99" fill="none"%3E%3Cmask id="path-1-inside-1_2856_39780" fill="white"%3E%3Cpath fill-rule="evenodd" clip-rule="evenodd" d="M240 0H0V30C11.0457 30 20 38.9543 20 50C20 61.0457 11.0457 70 0 70V99H240V70C228.954 70 220 61.0457 220 50C220 38.9543 228.954 30 240 30V0Z"/%3E%3C/mask%3E%3Cpath fill-rule="evenodd" clip-rule="evenodd" d="M240 0H0V30C11.0457 30 20 38.9543 20 50C20 61.0457 11.0457 70 0 70V99H240V70C228.954 70 220 61.0457 220 50C220 38.9543 228.954 30 240 30V0Z" fill="white"/%3E%3Cpath d="M0 0V-1H-1V0H0ZM240 0H241V-1H240V0ZM0 30H-1V31H0V30ZM0 70V69H-1V70H0ZM0 99H-1V100H0V99ZM240 99V100H241V99H240ZM240 70H241V69H240V70ZM240 30V31H241V30H240ZM0 1H240V-1H0V1ZM1 30V0H-1V30H1ZM21 50C21 38.402 11.598 29 0 29V31C10.4934 31 19 39.5066 19 50H21ZM0 71C11.598 71 21 61.598 21 50H19C19 60.4934 10.4934 69 0 69V71ZM1 99V70H-1V99H1ZM240 98H0V100H240V98ZM239 70V99H241V70H239ZM219 50C219 61.598 228.402 71 240 71V69C229.507 69 221 60.4934 221 50H219ZM240 29C228.402 29 219 38.402 219 50H221C221 39.5066 229.507 31 240 31V29ZM239 0V30H241V0H239Z" fill="%23E5E5E5" mask="url(%23path-1-inside-1_2856_39780)"/%3E%3C/svg%3E');
  background-size: 100% 100%;
}
.ticket_card__container .ticket_card.gray .ticket_card__icon {
  background: var(--black-10);
  color: var(--black-201);
}
.ticket_card__container .ticket_card.gray .ticket_card__body .ticket_card__number {
  color: var(--black-201);
}
.ticket_card__container .ticket_card.blue .ticket_card__icon {
  background: var(--blue-2);
  color: var(--blue-1);
}
.ticket_card__container .ticket_card.blue .ticket_card__body .ticket_card__number {
  color: var(--blue-1);
}
.ticket_card__container .ticket_card.green .ticket_card__icon {
  background: var(--green-2);
  color: var(--green-3);
}
.ticket_card__container .ticket_card.green .ticket_card__body .ticket_card__number {
  color: var(--green-3);
}
.ticket_card__container .ticket_card.red .ticket_card__icon {
  background: var(--red-10);
  color: var(--red-11);
}
.ticket_card__container .ticket_card.red .ticket_card__body .ticket_card__number {
  color: var(--red-11);
}
.ticket_card__container .ticket_card .ticket_card__icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--black-10);
  color: var(--black-201);
}
.ticket_card__container .ticket_card .ticket_card__icon svg {
  width: 26px;
  height: 26px;
}
.ticket_card__container .ticket_card .ticket_card__body {
  width: calc(100% - 50px - 1rem);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
}
@media (min-width: 1100px) {
  .ticket_card__container .ticket_card {
    width: calc(25% - 0.5rem);
    flex: 0 0 calc(25% - 0.5rem);
  }
}

.ticket_table__container {
  overflow-x: hidden;
}

.ticket_table {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow-x: auto;
}
.ticket_table .ticket_table__header {
  min-width: 940px;
  display: flex;
  align-items: center;
  border-radius: 0.5rem;
  color: var(--black-0);
  background-color: var(--gray-204);
  font-size: 0.85rem;
}
.ticket_table .ticket_table__header .item {
  text-align: right;
  padding: 1rem 0.75rem;
}
.ticket_table .ticket_table__header .item:nth-child(1) {
  min-width: 90px;
  flex: 0 0 90px;
}
.ticket_table .ticket_table__header .item:nth-child(2) {
  min-width: 320px;
  flex: 0 0 320px;
}
.ticket_table .ticket_table__header .item:nth-child(3) {
  min-width: 200px;
  flex: 0 0 200px;
}
.ticket_table .ticket_table__header .item:nth-child(4) {
  min-width: 150px;
  flex: 0 0 150px;
}
.ticket_table .ticket_table__header .item:nth-child(5) {
  min-width: 180px;
  flex: 0 0 180px;
}
.ticket_table .ticket_table__item {
  min-width: 940px;
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 0.5rem;
  border: 1px solid var(--black-10);
}
.ticket_table .ticket_table__item .item {
  text-align: right;
  padding: 1.5rem 0.75rem;
  font-size: 0.85rem;
}
.ticket_table .ticket_table__item .item:nth-child(1) {
  min-width: 90px;
  flex: 0 0 90px;
}
.ticket_table .ticket_table__item .item:nth-child(2) {
  min-width: 320px;
  flex: 0 0 320px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ticket_table .ticket_table__item .item:nth-child(3) {
  min-width: 200px;
  flex: 0 0 200px;
}
.ticket_table .ticket_table__item .item:nth-child(4) {
  min-width: 150px;
  flex: 0 0 150px;
  color: var(--gray-201);
}
.ticket_table .ticket_table__item .item:nth-child(5) {
  min-width: 180px;
  flex: 0 0 180px;
  display: flex;
}
.ticket_table .ticket_table__item.green::before {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--green-6);
}
.ticket_table .ticket_table__item.green .badge_ticket {
  background: var(--gray-212);
  color: var(--green-6);
  font-weight: 500;
  border-radius: 5px;
  padding: 0 0.4rem;
  font-size: 0.8rem;
}
.ticket_table .ticket_table__item.blue::before {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--blue-3);
}
.ticket_table .ticket_table__item.blue .badge_ticket {
  background: var(--blue-2);
  color: var(--blue-3);
  font-weight: 500;
  border-radius: 5px;
  padding: 0 0.4rem;
  font-size: 0.8rem;
}
.ticket_table .ticket_table__item.red::before {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 3px;
  background-color: #E6123D;
}
.ticket_table .ticket_table__item.red .badge_ticket {
  background: var(--red-7);
  color: #E6123D;
  font-weight: 500;
  border-radius: 5px;
  padding: 0 0.4rem;
  font-size: 0.8rem;
}

.accordion_notice_container .accordion_button {
  width: var(--width-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-radius: 0.5rem;
  padding: 1rem;
  background-color: var(--gray-204);
  border: 1px solid var(--black-10);
}
.accordion_notice_container .accordion_button .accordion_button__text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--black-201);
  width: calc(100% - 32px - 0.75rem);
  transition: color 250ms ease-in;
}
.accordion_notice_container .accordion_button .accordion_button__text i {
  font-size: 20px;
  transition: transform 250ms;
}
.accordion_notice_container .accordion_button .accordion_button__text svg {
  width: 22px;
  height: 22px;
}
.accordion_notice_container .accordion_button .accordion_button__text p {
  color: var(--gray-200);
  text-align: right;
  font-weight: 500;
}
.accordion_notice_container .accordion_button .accordion_button__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--black-10);
  color: var(--red-1) !important;
  border-radius: 50%;
}
.accordion_notice_container .accordion_button .accordion_button__icon i {
  font-size: 22px;
  color: var(--red-1) !important;
  transition: transform 350ms ease-in;
}
.accordion_notice_container .accordion_button .accordion_button__icon i.fa-minus {
  display: none;
}
.accordion_notice_container .accordion_button .accordion_button__icon i.fa-plus {
  display: block;
}
.accordion_notice_container .accordion_button .accordion_button__icon svg {
  width: 22px;
  height: 22px;
  color: var(--red-1) !important;
  transition: transform 350ms ease-in;
}
.accordion_notice_container .accordion_button:hover .accordion_button__text I {
  transform: rotate(-90deg);
}
.accordion_notice_container .accordion_button:hover .accordion_button__text i, .accordion_notice_container .accordion_button:hover .accordion_button__text p {
  color: var(--red-1);
  transition: all 100ms 0s ease-in;
}
.accordion_notice_container .accordion_notice__contents {
  width: 97%;
  max-height: 0;
  margin: 0 auto;
  border: 1px solid transparent;
  border-radius: 0 0 0.5rem 0.5rem;
  padding: 0 1rem;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1), padding 250ms;
}
.accordion_notice_container .accordion_notice__contents p {
  text-align: justify;
  color: var(--gray-201);
  font-size: 0.9rem;
  line-height: 1.7rem;
}
.accordion_notice_container .accordion_notice__contents .accordion_notice__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background-color: #fff;
  padding: 0 1rem;
}
@media (min-width: 881px) {
  .accordion_notice_container .accordion_notice__contents {
    width: 95%;
  }
}
.accordion_notice_container.opened .accordion_button .accordion_button__text i, .accordion_notice_container.opened .accordion_button .accordion_button__text p {
  color: var(--red-1);
}
.accordion_notice_container.opened .accordion_button .accordion_button__icon i, .accordion_notice_container.opened .accordion_button .accordion_button__icon svg {
  color: var(--red-1);
  transform: rotate(180deg);
}
.accordion_notice_container.opened .accordion_button .accordion_button__icon i.fa-minus {
  display: block;
}
.accordion_notice_container.opened .accordion_button .accordion_button__icon i.fa-plus {
  display: none;
}
.accordion_notice_container.opened .accordion_notice__contents {
  border: 1px solid var(--gray-202);
  border-top-width: 0;
  max-height: -moz-fit-content;
  max-height: fit-content;
  padding: 1rem;
  transition: max-height 1s ease-in-out, padding 250ms;
}

.add_ticket__form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ticket_images__uploaded {
  direction: ltr;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.ticket_images__uploaded .ticket_image {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  border: 1px solid var(--black-10);
}
.ticket_images__uploaded .ticket_image img {
  width: var(--width-100);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ticket_images__uploaded .ticket_image .uploading_status {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  background-color: rgba(77, 77, 77, 0.5);
  color: #fff;
  opacity: 0;
  visibility: hidden;
}
.ticket_images__uploaded .ticket_image.uploading .uploading_status {
  opacity: 1;
  visibility: visible;
}

.upload_image__button input {
  display: none;
  width: 0;
}
.upload_image__button span {
  width: var(--width-100);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--black-0);
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--black-10);
  background: var(--gray-205);
  transition: background 250ms ease-in;
}
.upload_image__button span:hover {
  background: var(--black-10);
}
.upload_image__button span svg {
  width: 20px;
  height: 20px;
}
.upload_image__button span p {
  font-size: 0.85rem;
}

.ticket_seperator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ticket_seperator svg {
  color: var(--red-1);
  width: 25px;
  height: 25px;
}
.ticket_seperator hr {
  flex-grow: 1;
}

.ticket_chatbox__container {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.ticket_chatbox__container .ticket_chatbox {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
}
.ticket_chatbox__container .ticket_chatbox .chatbox_avatar {
  display: none;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gray-203);
  margin-bottom: 2rem;
}
.ticket_chatbox__container .ticket_chatbox .chatbox_avatar img {
  width: var(--width-100);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ticket_chatbox__container .ticket_chatbox .chat_container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ticket_chatbox__container .ticket_chatbox .chat_container .chat_message {
  width: var(--width-100);
  max-width: 640px;
  padding: 24px 18px;
  border-radius: 16px 16px 2px 16px;
  background: var(--black-201);
}
.ticket_chatbox__container .ticket_chatbox .chat_container .chat_message p {
  color: #fff;
  font-size: 0.9rem;
}
.ticket_chatbox__container .ticket_chatbox .chat_container .chat_message .chat_attach__container {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.ticket_chatbox__container .ticket_chatbox .chat_container .chat_message .chat_attach__container .chat_attach__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  padding: 5px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.2);
}
.ticket_chatbox__container .ticket_chatbox .chat_container .chat_message .chat_attach__container .chat_attach__item .photo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  overflow: hidden;
}
.ticket_chatbox__container .ticket_chatbox .chat_container .chat_message .chat_attach__container .chat_attach__item .photo img {
  width: var(--width-100);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ticket_chatbox__container .ticket_chatbox .chat_container .chat_message .chat_attach__container .chat_attach__item .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}
.ticket_chatbox__container .ticket_chatbox .chat_container .chat_message .chat_attach__container .chat_attach__item .icon i {
  font-size: 32px;
}
.ticket_chatbox__container .ticket_chatbox .chat_container .chat_end {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--gray-201);
}
.ticket_chatbox__container .ticket_chatbox .chat_container .chat_end .vertical_line {
  display: none;
}
@media (min-width: 756px) {
  .ticket_chatbox__container .ticket_chatbox .chat_container .chat_end .vertical_line {
    display: block;
    width: 1px;
    height: 10px;
    background-color: var(--gray-203);
  }
}
.ticket_chatbox__container .ticket_chatbox.send .chat_message {
  background: var(--black-201);
  border-radius: 16px 16px 2px 16px;
}
.ticket_chatbox__container .ticket_chatbox.send .chat_message .chat_attach__container {
  justify-content: flex-end;
}
.ticket_chatbox__container .ticket_chatbox.receive {
  flex-direction: row-reverse;
}
.ticket_chatbox__container .ticket_chatbox.receive .chat_container {
  align-items: flex-end;
}
.ticket_chatbox__container .ticket_chatbox.receive .chat_container .chat_message {
  background: var(--blue-3);
  border-radius: 16px 16px 16px 2px;
}
@media (min-width: 881px) {
  .ticket_chatbox__container .ticket_chatbox .chatbox_avatar {
    display: flex;
  }
}

.ticket_chat__header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ticket_chat__header .ticket_chat__items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.ticket_chat__header .ticket_chat__items .ticket_chat__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ticket_chat__header .ticket_chat__items .vertical_seperator {
  display: none;
  width: 2px;
  height: 15px;
  background-color: var(--gray-203);
}
@media (min-width: 756px) {
  .ticket_chat__header .ticket_chat__items .vertical_seperator {
    display: block;
  }
}

.card_header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.card_header hr {
  flex-grow: 1;
}
.card_header .title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--black-0);
  font-size: 0.9rem;
}
.card_header .title i {
  font-size: 20px;
}

@media (max-width: 997px) {
  .openproduct_container .openproduct_main .openproduct_main__container .openproduct_main__slidercontrols .openproduct_main__slider .openproduct_main__imagezoom{
    position: absolute;
    bottom: 0;
    display: none;
    z-index: 10;
    width: 60%;
    height: 60%;
    overflow: hidden;
    border: 1px solid var(--gray-200);
  }
}
@media (min-width: 998px) {
  .openproduct_container .openproduct_main .openproduct_main__container .openproduct_main__slidercontrols .openproduct_main__slider .openproduct_main__imagezoom {
    position: absolute;
    bottom: 0;
    right: 100%;
    display: none;
    z-index: 10;
    width: var(--width-100);
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--gray-200);
  }
}
.fa-arrow-right-from-bracket-advanced{
  background: url('../img/logout.svg');
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  width: 20px;
  height: 20px;
  justify-content: center;
  align-items: center;
 }

.modal_share.modal__container .modal__content {
  background-color: #fff;
  width: 70%;
  height: 70vh;
  padding: 0 0.75rem;
}
.modal_chart .single-product.modal__content .gap-2-wrap{
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1rem;
}
.modal_chart .single-product.modal__content .select_color__box{
  background-color: #fff;
  display: flex;
  align-items: center;
  border: 1px solid var(--black-10);
  gap: 0.75rem;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  flex-wrap: nowrap;
}
.modal_chart .single-product.modal__content .select_color__box p{
  white-space: nowrap;
}
.fa-chart-bar-advanced{
  background: url('./../public/icons/filter-square.svg');
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  width: 20px;
  height: 20px;
  justify-content: center;
  align-items: center;
}

.single-product-price-chart-container {
  width: var(--width-100);
  margin-top: 23px;
  display: flex;
  justify-content: center;
}
.fa-swap-arrows-advanced{
  background: url('./../public/icons/frame.svg');
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  width: 20px;
  height: 20px;
  justify-content: center;
  align-items: center;
}
.compare-products-container .card_header {
  display: flex;
  height: 28px;
  align-items: center;
  gap: 8px;
}
.compare-products-container .card_header .v-line {
  width: var(--width-100);
  height: 1px;
  background: var(--black-10);
}
.white_card.compare-products-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 1rem;
  padding: 1.5rem;
  background-color: #fff;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.05);
}
.compare-products-container .card_header .title {
  display: flex;
  width: var(--width-100);
  align-items: center;
  gap: 0.5rem;
  color: var(--black-0);
  font-size: 0.9rem;
}
.compare-products-container .title p {
  white-space: nowrap;
}
.compare-products-container .h-line-separator {
  width: var(--width-80);
  height: 1px;
  background: var(--black-10);
  margin-top: 16px;
  margin-bottom: 16px;
}
.compare-products-container .h-line-full-separator {
  width: var(--width-100);
  height: 1px;
  background: var(--black-10);
  margin-top: 16px;
  margin-bottom: 16px;
}
.compare-products-main-container .product-column .product_condition_price_box .price {
  margin-right: 4px;
}
.compare-products-main-container .product-column .product_condition_price_box {
  display: flex;
}
@media (max-width: 1100px) {
  .compare-products-main-container .product-column .product_condition_price_box {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
  }
  .compare-products-main-container .product_condition__card .card_title {
    font-size:12px;
  }
  .compare-products-main-container .product_condition__card .add-to-cart-btn {
    padding: 0.5rem 0.7rem;
    height: 30px;
  }
}

.shoppingcard_container  .dropdown_textarea {
  position: relative;
  width: var(--width-100);
  border-radius: 0.5rem;
  border: 1px solid var(--gray-202);
  background-color: #fff;
  outline: none;
  font-family: inherit;
  transition: all 250ms ease-in;
  padding: 13px 16px 13px;
  font-size: 14px;
  line-height: 9px;
}
@media (max-width: 880px) {
  section.dashboard_container .dashboard_side.other-sections {
    display: none;
  }
  .dashboard_container .dashboard_side{
    width: 100% !important;
  }
}
@media (min-width: 881px) {
  .section_container.condition_table__desktop {
    max-width: calc(var(--width-max-width) + 3rem);
    width: calc(var(--width-90) + 3rem);
  }
  .compare-products-main-container {
    max-width: var(--width-max-width);
  }
}

/******** header-dropdown conponent********/
.navbar.header-dropdown-nav.navbar_container {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.navbar.header-dropdown-nav .navbar_container .navbar_logo a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar.header-dropdown-nav .navbar_container .navbar_logo a img {
  width: 150px;
}
.navbar.header-dropdown-nav .navbar_container .navbar_menu {
  display: none;
  align-items: center;
}
.navbar.header-dropdown-nav .navbar_container .navbar_menu > .navbar_menu__item {
  position: relative;
}
.navbar.header-dropdown-nav .navbar_container .navbar_menu > .navbar_menu__item > a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--black-201);
  padding: 1rem;
}
.navbar.header-dropdown-nav .navbar_container .navbar_menu > .navbar_menu__item > a i {
  font-size: 18px;
}
.navbar.header-dropdown-nav .navbar_container .navbar_menu > .navbar_menu__item > a svg {
  width: 16px;
  height: 16px;
  color: inherit;
}
.navbar.header-dropdown-nav .navbar_container .navbar_menu > .navbar_menu__item > a p {
  font-size: 0.9rem;
}
.navbar.header-dropdown-nav .navbar_container .navbar_menu > .navbar_menu__item > .navbar_menu__dropdown {
  top: 4rem;
  right: 0;
}
.navbar.header-dropdown-nav .navbar_container .navbar_menu > .navbar_menu__item .navbar_menu__dropdown {
  position: absolute;
  width: 170px;
  border-radius: 1rem;
  background-color: #fff;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  transition: opacity 250ms, visibility 0s 250ms;
}
.navbar.header-dropdown-nav .navbar_container .navbar_menu > .navbar_menu__item .navbar_menu__dropdown .navbar_dropdown__item {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  height: 48px;
  cursor: pointer;
  border-bottom: 1px solid var(--black-10);
  transition: background 250ms;
}
.navbar.header-dropdown-nav .navbar_container .navbar_menu > .navbar_menu__item .navbar_menu__dropdown .navbar_dropdown__item > a {
  display: flex;
  align-items: center;
  width: var(--width-100);
  height: 100%;
  font-size: 0.9rem;
}
.navbar.header-dropdown-nav .navbar_container .navbar_menu > .navbar_menu__item .navbar_menu__dropdown .navbar_dropdown__item > p {
  font-size: 0.9rem;
}
.navbar.header-dropdown-nav .navbar_container .navbar_menu > .navbar_menu__item .navbar_menu__dropdown .navbar_dropdown__item:hover {
  background-color: var(--gray-204);
}
.navbar.header-dropdown-nav .navbar_container .navbar_menu > .navbar_menu__item .navbar_menu__dropdown .navbar_dropdown__item:hover > .navbar_menu__dropdown {
  opacity: 1;
  visibility: visible;
  transition: opacity 250ms;
}
.navbar.header-dropdown-nav .navbar_container .navbar_menu > .navbar_menu__item .navbar_menu__dropdown .navbar_dropdown__item:last-child {
  border-bottom-width: 0;
}
.navbar.header-dropdown-nav .navbar_container .navbar_menu > .navbar_menu__item .navbar_menu__dropdown .navbar_dropdown__item > .navbar_menu__dropdown {
  position: absolute;
  top: 0;
  right: 175px;
}
.navbar.header-dropdown-nav .navbar_container .navbar_menu > .navbar_menu__item:hover > .navbar_menu__dropdown {
  opacity: 1;
  visibility: visible;
  transition: opacity 250ms;
}
.navbar.header-dropdown-nav .navbar_container .navbar_menu.link--1 > .navbar_menu__item > a::after {
  content: " ";
  position: absolute;
  bottom: 0;
  left: 0;
  width: var(--width-100);
  height: 3px;
  background-color: transparent;
  transition: background 250ms;
}
.navbar.header-dropdown-nav .navbar_container .navbar_menu.link--1 > .navbar_menu__item > a:hover::after {
  background-color: var(--main-color);
}
.navbar.header-dropdown-nav .navbar_container .navbar_menu.link--1 > .navbar_menu__item.active > a {
  background-color: var(--main-color);
  color: #fff;
}
.navbar.header-dropdown-nav .navbar_container .navbar_menu.link--2 > .navbar_menu__item > a {
  transition: color 250ms;
}
.navbar.header-dropdown-nav .navbar_container .navbar_menu.link--2 > .navbar_menu__item > a:hover {
  color: var(--main-color);
}
.navbar.header-dropdown-nav .navbar_container .navbar_menu.link--2 > .navbar_menu__item.active > a {
  color: var(--red-1);
}
.navbar.header-dropdown-nav .navbar_container .navbar_menu.link--3 > .navbar_menu__item > a {
  margin: 0.5rem;
}
.navbar.header-dropdown-nav .navbar_container .navbar_menu.link--3 > .navbar_menu__item > a::after {
  content: " ";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 4px;
  border-radius: 30px;
  background: transparent;
  transition: background 250ms;
}
.navbar.header-dropdown-nav .navbar_container .navbar_menu.link--3 > .navbar_menu__item > a:hover::after {
  background-color: var(--main-color);
}
.navbar.header-dropdown-nav .navbar_container .navbar_menu.link--3 > .navbar_menu__item.active > a {
  background-color: var(--main-color);
  color: #fff;
  border-radius: 0.5rem;
}
.navbar.header-dropdown-nav .navbar_container .navbar_menu.link--4 > .navbar_menu__item > a {
  margin: 0.5rem;
}
.navbar.header-dropdown-nav .navbar_container .navbar_menu.link--4 > .navbar_menu__item > a::after {
  content: " ";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 23px;
  height: 10px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="17" height="10" viewBox="0 0 17 10" fill="none"><path d="M14.6521 10H2.34795C0.498174 10 -0.360257 7.70457 1.03559 6.49079L7.18764 1.14118C7.94019 0.486795 9.05982 0.486795 9.81236 1.14118L15.9644 6.49079C17.3603 7.70457 16.5018 10 14.6521 10Z" fill="%23E6123D"/></svg>');
  background-size: 100% 100%;
  background-position: center top;
  opacity: 0;
  transition: opacity 250ms;
}
.navbar.header-dropdown-nav .navbar_container .navbar_menu.link--4 > .navbar_menu__item > a:hover {
  color: var(--main-color);
}
.navbar.header-dropdown-nav .navbar_container .navbar_menu.link--4 > .navbar_menu__item > a:hover::after {
  opacity: 1;
}
.navbar.header-dropdown-nav .navbar_container  .navbar_menu.link--4 > .navbar_menu__item.active > a {
  color: var(--red-1);
}
.navbar.header-dropdown-nav .navbar_container .navbar_menu.link--4 > .navbar_menu__item.active > a::after {
  opacity: 1;
}
@media (min-width: 980px) {
  .navbar.header-dropdown-nav .navbar_container {
    flex-grow: 0;
    justify-content: flex-start;
  }
  .navbar.header-dropdown-nav .navbar_container .navbar_menu {
    display: flex;
  }
}
.dashboard_container
{
  padding-top: 0px !important;
}
.dashboard_container .dashboard_main
{
  gap: 1rem;
}
.dashboard_container
{
  gap: 0.8rem;
}
.white_card
{
  padding: 13px;
}

.fa-home-alt:before, .fa-home-lg-alt:before, .fa-home:before, .fa-house:before
{
  content: "\e933";
  font-family: "iconly";
  vertical-align: middle !important;
}
/* .dashboard_menu__item i{
  
  font-weight: 500;
  font-family: "iconly";
  font-size: 20px;
} */
body.woodmartplus-myaccount .fa-box:before,.fa-box:before
{
  content: "\e916";
}
.fa-arrow-down-to-line:before, .fa-arrow-to-bottom:before
{
  content: "\e929";
}
.fa-ballot-check:before
{
  content: "\e954";
  
}
.fa-heart:before
{

}
.fa-bell:before
{
  content: "\e93f" !important;
}
body.woodmartplus-myaccount .fa-ticket:before ,.fa-ticket:before
{
  content: "\e921";
}
.fa-location-dot:before, .fa-map-marker-alt:before
{
  content: "\e938";
}
body.woodmartplus-myaccount .fa-circle-info:before,.fa-circle-info:before, body.woodmartplus-myaccount .fa-info-circle:before,.fa-info-circle:before
{
  content: "\e949";
}
body.woodmartplus-myaccount .fa-arrow-left:before,.fa-arrow-left:before
{
  content: "\e907";
  font-family: iconly;
}
.text_gray
{
  color: #454242de;
    font-size: 13px;
}
.dashboard_container .dashboard_side .dashboard_menu
{
  
}

.dashboard_container .dashboard_side
{
  padding: 4rem 0.9rem 1rem;
  width: 300px;
  flex: 0 0 300px;

  
}
body .dashboard_container .dashboard_side .dashboard_menu .dashboard_menu__item:hover
{
  color: var(--blue-3);
    background-color: #423f400f;
    border-radius: 10px;
}
body
{
  background-color: #ffffff;
}
.icondate::before
{
  font-family: iconly;
  content: "\e940";
  padding-left: 3px;
  font-size: 20px;
  vertical-align: middle;
 
}
.ordericonshoping:before
{
  font-family: iconly;
  content: "\e916";
  font-style: normal;
}
.fa-basket-shopping:before, .fa-shopping-basket:before
{
  font-family: iconly;
  content: "\e962";
  font-style: normal;
  
}
.fa-basket:before{
  font-family: iconly;
  content: "\e955";
  font-style: normal;
}

.have_notification i.fa-regular.fa-bell::after
{
  content: ' ';
  position: absolute;
  top: -2px;
  right: 1px;
  border-radius: 100%;
  width: 7px;
  height: 7px;
  background-color:var(--main-color);
  box-shadow: unset;

}
.iconlysite::after
{
  content: ' ';
  position: absolute;

  border-radius: 100%;
  width: 7px;
  height: 7px;
  background-color: var(--main-color);
  box-shadow: unset;
}
.factorshow
{
  padding: 10px;
  background-color: #4b4a4a;
  color: white;
  font-weight: 600;
  border-radius: 10px;
}
body.woodmartplus-myaccount .fa-heart:before,.fa-heart:before
{
    content: "\e931";
    font-family: 'iconly';
}
.dashboard_container .dashboard_side {
  /* width: var(--width-100); */
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  background-color: white !important;
  border-radius: 1rem;
  padding: 3rem 1rem 1rem;
  margin-top: 3.75rem;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0);
}

body
{
  background-color: #f2f2f2 !important;
}
.white_card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 1rem;
  padding: 1.5rem;
  background-color: white;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.1);
}
.box_with__icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  position: relative;
  padding: 0.75rem 1.2rem;
  border-radius: 1rem;
  background-color: white;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.1);
}

.box_with__icon .box_right .icon_container.blue {
    background-color: var(--blue-2);
    color: var(--blue-8);
}
.fa-b:before {
    font-family: iconly;
    content: "\e922";
    font-style: normal;
}
.dashboard_container .dashboard_side .dashboard_menu .dashboard_menu__item.is-active {
    color: var(--blue-3);
    background: #f2f2f2 !important;
    padding-left: 6px;
    border-radius: 10px;
}
.dashboard_container .dashboard_side .dashboard_menu {
	padding-bottom:1rem;
    border-bottom: 1px solid #A1A1A1;
}
.badge_gray--oneline{
	height: 36px;
}
.dashboard_container .dashboard_side .dashboard_side__body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.btn_copy__code .status {
    position: absolute;
    z-index: -3;
    right: 0;
    width: 80px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gray-204);
    color: var(--main-color);
    border-radius: 0.5rem;
    text-align: center;
    transition: right 250ms;
}
.outline_card:hover {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid var(--black-10);
	box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.05);
}
.card_header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
	background-color:#f2f2f2 !important;
	border-radius:10px;
	padding:8px;
}
.box_with__icon:hover {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    position: relative;
    padding: 0.75rem 1.2rem;
    border-radius: 1rem;
    background-color: white;
    box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.2)!important;
}
.white_card:hover {
    display: flex;
    flex-direction: column;
    gap: 1rem !important;
    border-radius: 1rem;
    padding: 1.5rem;
    background-color: white;
    box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.2);
}
.product_card.transparent {
    background-color: transparent;
    box-shadow: none;
    padding: 1rem;
	border-radius:0.5rem !important;
	border: 1px solid var(--black-10);
}
.product_card.transparent:hover {
    background-color: transparent;
    padding: 1rem;
	border-radius:0.5rem !important;
	border: 1px solid var(--black-10);
	box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.05) !important;
}
.box_with__icon .box_right .icon_container.blue {
    background-color: var(--blue-8);
    color: white;
	border: 4px solid rgba(255, 255, 255, 0.50);}
.box_with__icon .box_right .icon_container.green {
    background-color: var(--green-6);
    color: white;
	border: 4px solid rgba(255, 255, 255, 0.50);}
.box_with__icon .box_right .icon_container.red {
    background-color: #E6123D;
    color: white;
	border: 4px solid rgba(255, 255, 255, 0.50);}

  /* new login register */

  /* start css login */
body {
  height: 982px;
}

input[type=checkbox]::after {
  top: 3px;
  left: 2px;
}

body .wrapper {
  /* background-image: url(../../public/images/login/ثبت\ نام\ با\ رمز.png); */
  height: 100%;
  background-size: cover;
  
}

.img-responsive {
  width: 100%;
  height: auto;
}

.login-section {
  position: absolute;
  top: 60%;
  left: 70%;
  transform: translate(-50%, -50%);
  max-width: 390px;
  height: 737px;
}

.login-header {
  position: relative;
  height: 100px;
}

a.close {
  position: absolute;
  left: 7%;
  top: 60%;
  transform: translate(-50%, -50%);
  background-color: #ffff;
  width: 48px;
  height: 48px;
  border-radius: 254px;
}

.close:hover i {
  color: red;
  font-size: 16px;
  font-weight: bold;
}

i.fa-x {
  position: absolute;
  left: 12%;
  top: 85%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  color: #808080;
  transition: all .5s linear;
}

.login-header img {
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.login-header .img-compani {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 190px;
  height: 190px;
  background-color: rgb(255 255 255 / 9%);
  border-radius: 50%;
}

.login-section .login-body {
  background-image: url(../../public/images/login/Subtract.png);
  border-radius: 20px;
  padding: 80px 30px 40px 30px;
  width: 100%;
  background-size: 100%;
  background-color: #fff;
}

.login-body .enter {
  /* border: 1px solid red; */
  width: 330px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: rgb(53, 53, 53);
  padding-bottom: 12px;
}

.login-body .number span {
  font-weight: bold;
}

.login-body .input-login {
  padding: 20px 0px 0px 0px;
  position: relative;
}

.input-login .text-password {
  position: absolute;
  top: 24%;
  right: -6%;
  transform: translate(-50%, -50%);
  color: #B2B2B2;
  font-size: 11px;
  width: 75px;
  height: 17px;
  background-color: white;
  text-align: center;
}

.input-login i.fa-message {
  position: absolute;
  top: 63%;
  right: 3%;
  transform: translate(-50%, -50%);
  color: #B2B2B2;
}

.input-login input.One-time-password {
  padding: 10px 42px;
  width: 100%;
  height: 48px;
  border: 1px solid #cacaca;
  border-radius: 8px;
}

.One-time-password::placeholder {
  color: rgb(135, 135, 135);
  font-size: 14px;
}

.correct {
  padding-top: 5px;
  color: red;
  font-size: 13px;
  padding-left: 5px;
  visibility: hidden;
  /* visibility: visible; */
}

.correct i.fa-square-exclamation {
  margin-left: 10px;
}

.login-body .send-again {
  padding: 15px 5px;
  display: flex;
  justify-content: space-between;
}

.send-again .edit {
  font-size: 14px;
  cursor: pointer;
  transition: all .3s linear;
  color: rgb(82, 82, 82);
}

.send-again .edit:hover {
  color: red;
  transform: translateX(-3px)
}

.send-again .second {
  font-size: 12px;
  color: #b0b0b0;
}

.send-again .second span {
  color: rgb(60, 60, 60);

}

.login-body .btn-login {
  position: relative;
  cursor: pointer;
}

.btn-login button {
  width: 100%;
  height: 48px;
  border-radius: 8px;
  border: none;
  background-color: #1280E6;
  color: white;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all .5s linear;
  animation: chang 2 linear;
}

.btn-login button:hover {
  background-color: rgba(0, 0, 0, .4);
}

.btn-login i.fa-right-to-bracket {
  position: absolute;
  top: 54%;
  right: 36%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 16px;
}

.btn-login .icon-button {
  position: absolute;
  top: 43%;
  right: 33%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 14px;
}

.login-body p {
  width: 310px;
  margin-top: 15px;
  font-size: 14px;
  color: gray;
  text-align: justify;
}

.login-section .login-footer {
  background-color: white;
  max-width: 390px;
  height: 196px;
  border-radius: 20px;
  margin-top: 15px;
  padding: 20px 30px;
}

.left-img {
  width: 500px;
  height: 300px;
  position: absolute;
  top: 57%;
  left: 28%;
  transform: translate(-50%, -50%);
}

.left-img .rocket {
  width: 100%;
}

@media only screen and (max-width:900px) {
  .left-img {
      display: none;
  }

  .login-section {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      max-width: 390px;
      height: 737px;
  }

  .login-body .number {
      font-size: 14px;
      color: rgb(53, 53, 53);

  }

  .login-footer p {
      font-size: 14px;
      color: rgb(79, 79, 79);
      line-height: 24px;
      text-align: justify;
  }
}

@media only screen and (min-width:900px) {

  .login-body .number {
      font-size: 15px;
      color: rgb(53, 53, 53);
      text-align: justify;
      /* border: 1px solid red; */
      width: 330px;
  }

  .login-footer p {
      font-size: 15px;
      color: rgb(79, 79, 79);
      line-height: 24px;
      text-align: justify;
  }
}

.error-input {
  -webkit-animation: shake-horizontal 0.8s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
  animation: shake-horizontal 0.8s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
}

@-webkit-keyframes shake-horizontal {

  0%,
  100% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70% {
      -webkit-transform: translateX(-10px);
      transform: translateX(-10px);
  }

  20%,
  40%,
  60% {
      -webkit-transform: translateX(10px);
      transform: translateX(10px);
  }

  80% {
      -webkit-transform: translateX(8px);
      transform: translateX(8px);
  }

  90% {
      -webkit-transform: translateX(-8px);
      transform: translateX(-8px);
  }
}
.dashboard_menu__item .gap-x {
  width: 100%;
}
.dashboard_menu__item .gap-x p{
  width: 100%;
}
.dashboard_menu__item .gap-x p a{
  display: block;
  width: 100%;
}
@keyframes shake-horizontal {

  0%,
  100% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70% {
      -webkit-transform: translateX(-10px);
      transform: translateX(-10px);
  }

  20%,
  40%,
  60% {
      -webkit-transform: translateX(10px);
      transform: translateX(10px);
  }

  80% {
      -webkit-transform: translateX(8px);
      transform: translateX(8px);
  }

  90% {
      -webkit-transform: translateX(-8px);
      transform: translateX(-8px);
  }
}

/* .input-password-login-register{
    display: none;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
}
.items_container--4{
  display: none;
}
.mobile_login_register .items_container--4{
  display: block;
}
.login_email_password .input-password-login-register{
  display: flex;
} */

/* end new css login */


.right__section{
  width: 390px;
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
}
.header__section {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.close__section{
  position: absolute;
  background: white;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  line-height: 59px;
  left: 0;
  top: -65px;
  font-size: 18px;
}
.login_register__body{
  background-image: url(../img/Subtract.png);
  padding: 64px 27px;
  width: 100%;
  height: auto;
  background-size: cover;
  border-radius: 20px;
  background-position: center;
}
.form__login_register,.form_login_email,.form_register_email,.login_register_otp,.login_register_otp_email{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: auto;
  gap: 15px;
}
.form_register_email{
  gap: 10px;
}
button.login_register__submitbtn{
  padding: 1rem;
  border-radius: 8px;
  border: none;
  background-color: var(--main-color);
  color: white;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all .5s linear;
  animation: chang 2 linear;
  position: relative;
  height: 51px;
}
.form_register_email .login_register__submitbtn{
  padding: 1.8rem !important;
}
button.login_register__submitbtn.loading:before,
button.aramis__login_btn.loading:before,
button.aramis__register_btn.loading:before
{
  content: '';
  background-image: url(../img/Ellipsis-2.6s-200px.svg);
  width: 120px;
  height: 60px;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
}
.login_register__input{
  position: relative;
}
.login_register__input label{
  position: absolute;
  right: 31px;
  top: 50%;
  transform: translate(1px, -11px);
  font-size: 13px;
  color: #8a8585;
  transition: all .3s ease;
}
.login_register__input i{
  position: absolute;
  right: 0;
  bottom: 50%;
  transform: translate(-10px, 7px);
}

body .login_register__input input{
  width: 100%;
  padding: 10px 30px;
  width: 100%;
  height: 48px;
  border: 1px solid #cacaca;
  border-radius: 8px;
  outline: none;
}
.login_register__input input:focus{
  border-color: var(--main-color);
}
.login_register__input input:focus + label{
  top: 1px;
  right: 12px;
  font-size: 11px;
  background: #fff;
  padding: 0 6px;
}
p.login_register__description{
  font-size: 15px;
  color: rgb(53, 53, 53);
  text-align: right;
}
.login_register__description_after_btn{
  font-size: 14px;
  color: gray;
  text-align: right;
}
p.login_register___text{
  font-size: 18px;
  font-weight: bold;
  color: rgb(53, 53, 53);
  padding-bottom: 12px;
}
.logo__section{
  margin-bottom: -46px;
  width: 100%;
  /* margin-left: 18px; */
}
.logo__section img{
  width: 100px;
}
/* body.woodmartplus-myaccount:not(.elementor-editor-active) .container
  {
  max-width: 80rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}  */
.close__section___btn{
  position: relative;
  top: 77%;
}
.close__section.layout-2 .close__section___btn{
  right: 42px;
  top: 80%;
}
.alert_message{
  
  color: red;
  text-align: right;
  display: flex;
  align-items: center;
  gap: 4px;
}
.alert_message.success{
  color: #1bd01b;
}
.alert_message.error{
  color: red;
}

.footer__section {
  background-color: white;
  height: 196px;
  border-radius: 20px;
  margin-top: 15px;
  padding: 20px 30px;
}

.footer__section p {
  font-size: 15px;
    color: rgb(79, 79, 79);
    line-height: 24px;
    text-align: justify;
}
.container_login_register_layout2 {
  max-width: 1350px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
}
/* new css style 2 */
.background-wrapper{
  height: 100%;
}
.container_login_register_layout2{
  max-width: 1350px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.close__section.layout-2{
  top: -68px;
}
.wplus-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 23px;
  position: relative;
}
.wplus__top_row {
  display: flex;
  width: 800px;
}
.wplus__bottom_row {
  background-color: white;
  border-radius: 20px;
  margin-top: 20px;
  padding: 20px 30px;
  max-width: 100%;
  font-size: 15px;
  color: gray;
  text-align: justify;
  max-width: 800px;
}
.wplus__bottom_row p{
  font-size: 15px;
  color: rgb(79, 79, 79);
  line-height: 24px;
  text-align: justify;
}
.right__section.layout-2
{
    width: 50%;
    position: relative;
}
.left__section.layout-2
{
    width: 50%;
}
.logo__section.layout-2
{
    margin-left:0px;
    margin-bottom: 0px;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    top: -58px;
}
.left__section.layout-2
{
  background-image: url(../img/default-sidebar-img.png);
  background-size: cover;
  background-position: center;
  border-radius: 1.2rem 1.2rem 1.2rem 1.2rem;
}
.right__section.layout-2::before {
  content: '';
  background: #ffffff;
  width: 24px;
  height: 36px;
  position: absolute;
  left: 0;
}
.right__section.layout-2:after {
  content: '';
  background: #ffffff;
  width: 24px;
  height: 36px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.right__section__register {
  text-align: center;
  position: relative;
  width: 50%;
}

@media only screen and (max-width:900px) {

  .right__section {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 390px;
      height: 737px;
  }

  .left__section {
      display: none;
  }

  .wplus__top_row {
      display: flex;
      justify-content: center;
      width: 400px;
  }

  .right__section__register {
      width: 100%;
  }

  .close__section {
      left: 5%;
      z-index: 999;
  }
  
  .left-img {
      display: none;
  }

  .login-section {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      max-width: 390px;
      height: 737px;
  }

  .login-body .number {
      font-size: 14px;
      color: rgb(53, 53, 53);

  }

  .login-footer p {
      font-size: 14px;
      color: rgb(79, 79, 79);
      line-height: 24px;
      text-align: justify;
  }
}

@media only screen and (min-width:900px) {

  .login-body .number {
      font-size: 15px;
      color: rgb(53, 53, 53);
      text-align: justify;
      /* border: 1px solid red; */
      width: 330px;
  }

  .login-footer p {
      font-size: 15px;
      color: rgb(79, 79, 79);
      line-height: 24px;
      text-align: justify;
  }
}
.have_ticket a:before {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--main-color);
  position: absolute;
  right: 5px;
  top: 1px;
  border-radius: 50%;
}

/* required css add
  by developer
*/
body p{
  margin: 0;
}
body .card_header hr {
  max-width: unset;
  margin: 0;
}
body .link_primary
{
  color: var(--link-color);
}
body:not(.elementor-editor-active) a.btn{
  /* padding: 0; */
  min-height: 0;
  line-height: unset;
  text-transform: unset;
    text-shadow: none;
    font-weight: unset;
    font-family: unset;
    font-style: unset;
}
body ol,body ul,body li{
  padding: 0;
  margin: 0;
}
.card_header .title{
  margin: 0;
  font-family: inherit;
  font-style: inherit;
  line-height: unset;
}
.alfashop_container {
  width: var(--width-100);
  max-width: var(--width-width3);
  margin: 0 auto;
}
.dashboard_menu__item .icon svg{
  width: 19px;
}
.show_avatar_yes .dashboard_side:before
{
  content: unset;
}
 body h1, body h2,body h3,body h4,body h5,body h6 {
  margin-bottom: unset;
  color: unset;
  text-transform: unset;
  font-weight: unset;
  font-style: unset;
  font-family: unset;
  line-height: unset;
}

/* 123 */
.suggestion_container {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  gap: 1.5rem;
  padding: 1.5rem 0;
}
.suggestion_container .suggestion_now__container {
  position: relative;
}
.suggestion_container .suggestion_now__container .suggestion_card__main {
  width: var(--width-100);
  background: transparent;
}
.suggestion_container .suggestion_now__container .suggestion_card__main .suggestion_card__item {
  width: var(--width-100);
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  bottom: 0;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.05);
  padding: 1rem 0.75rem;
}
.suggestion_container .suggestion_now__container .suggestion_card__main .suggestion_card__item .card_top {
  position: relative;
  z-index: -1;
  width: var(--width-100);
  padding: 8px 16px;
  border-radius: 0.5rem;
  background-color: var(--red-1);
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  @supports ( (--a: 0)) {
    font-family: var(--font-doran-regular);
  }
  @supports ( not (--a: 0)) {
    font-family: "Doran", sans-serif;
  }
}
.suggestion_container .suggestion_now__container .suggestion_card__main .suggestion_card__item .card_top > * {
  z-index: 1;
}
.suggestion_container .suggestion_now__container .suggestion_card__main .suggestion_card__item .card_top::after {
  content: " ";
  position: absolute;
  inset: 0;
  z-index: 0;
  width: var(--width-100);
  height: 100%;
  background-image: url("../../public/images/awesomeslider-back-overlay.png");
  background-size: cover;
  background-position: center center;
}
.suggestion_container .suggestion_now__container .suggestion_card__main .suggestion_card__item .product_cover {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 250px;
  overflow: hidden;
  border-radius: 1rem;
}
.suggestion_container .suggestion_now__container .suggestion_card__main .suggestion_card__item .product_cover img {
  width: var(--width-100);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.suggestion_container .suggestion_now__container .suggestion_card__main .suggestion_card__item .product_cover .progress_circle {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.suggestion_container .suggestion_now__container .suggestion_card__main .suggestion_card__item .product_cover .progress_circle svg {
  color: var(--red-1);
}
.suggestion_container .suggestion_now__container .suggestion_card__main .suggestion_card__item .product_cover .progress_circle svg.circle_progress__timer {
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  transition: stroke-dashoffset 1s ease;
}
.suggestion_container .suggestion_now__container .suggestion_card__main .suggestion_card__item .product_cover .progress_circle p {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
  padding: 2px 0 0 2px;
  text-align: center;
  vertical-align: middle;
  color: var(--black-0);
  font-weight: 500;
}
.suggestion_container .suggestion_now__container .suggestion_card__main .suggestion_card__item.show {
  display: flex;
  animation: fadeIn 0.5s ease-in forwards;
}
.suggestion_container .suggestion_now__container .suggestion_card__main .suggestion_card__item .product_body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.suggestion_container .suggestion_now__container .suggestion_card__main .suggestion_card__item .product_body .product_title {
  text-align: center;
  color: var(--gray-200);
}
.suggestion_container .suggestion_now__container .suggestion_card__main .suggestion_card__item .product_body .product_bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.suggestion_container .suggestion_now__container .suggestion_card__main .suggestion_card__item .product_body .product_bottom .product_offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.suggestion_container .suggestion_now__container .suggestion_card__main .suggestion_card__item .product_body .product_bottom .product_offer p {
  font-size: 0.8rem;
  text-decoration: line-through;
  color: var(--gray-211);
}
.suggestion_container .suggestion_now__container .suggestion_card__main .suggestion_card__item .product_body .product_bottom .price {
  font-weight: 500;
  color: var(--green-6);
  font-size: 0.85rem;
}
@media (min-width: 420px) {
  .suggestion_container .suggestion_now__container .suggestion_card__main .suggestion_card__item .product_body .product_bottom {
    flex-direction: row;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.suggestion_container .suggestion_now__container, .suggestion_container .suggestion_slider__container {
  width: var(--width-100);
  position: relative;
}
.suggestion_container.type_one .suggestion_now__container .suggestion_card__under {
  width: var(--width-90);
  height: 470px;
  margin: 0 auto;
  position: relative;
  z-index: -1;
  background-color: var(--red-1);
  color: #fff;
  font-weight: 600;
  text-align: center;
  padding-top: 1.2rem;
  border-radius: 1rem;
  font-size: 1.2rem;
  @supports ( (--a: 0)) {
    font-family: var(--font-doran-regular);
  }
  @supports ( not (--a: 0)) {
    font-family: "Doran", sans-serif;
  }
}
.suggestion_container.type_one .suggestion_now__container .suggestion_card__under > * {
  z-index: 1;
}
.suggestion_container.type_one .suggestion_now__container .suggestion_card__under::after {
  content: " ";
  position: absolute;
  inset: 0;
  z-index: 0;
  width: var(--width-100);
  height: 100%;
  background-image: url("../../public/images/awesomeslider-back-overlay.png");
  background-size: cover;
  background-position: center center;
}
.suggestion_container.type_one .suggestion_now__container .suggestion_card__main {
  position: absolute;
  top: 4rem;
  left: 50%;
  transform: translateX(-50%);
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__button {
  display: flex;
  align-items: center;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__button .icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 0.5rem;
  border: 1px solid var(--red-1);
  color: var(--red-1);
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__button .icon svg {
  width: 24px;
  height: 24px;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__button .icon i {
  font-size: 22px;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__button p {
  color: var(--black-0);
  font-weight: 500;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_under {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: var(--width-90);
  max-width: 340px;
  min-height: 500px;
  background-color: var(--red-1);
  padding: 1.5rem 0.6rem;
  border-radius: 1rem;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_under p {
  color: #fff;
  font-weight: 600;
  text-align: left;
  font-size: 1.2rem;
  z-index: 10;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  @supports ( (--a: 0)) {
    font-family: var(--font-doran-regular);
  }
  @supports ( not (--a: 0)) {
    font-family: "Doran", sans-serif;
  }
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_under .suggestion_slider__buttons--mobile {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10;
  gap: 1rem;
  align-items: center;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_under .suggestion_slider__buttons--mobile .suggestion_slider__button .icon {
  width: 37px;
  height: 37px;
  border-radius: 0.5rem;
  border-color: #fff;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_under::after {
  content: " ";
  position: absolute;
  inset: 0;
  z-index: 1;
  width: var(--width-100);
  height: 100%;
  background-image: url("../../public/images/awesomeslider-back-overlay.png");
  background-size: cover;
  background-position: center center;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main {
  width: calc(100% - 3.5rem);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.05);
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top {
  background-color: #ffffff;
  position: relative;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  border-bottom: 1px solid var(--black-10);
  padding: 24px 20px;
  border-radius: 1rem;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top .awesome_end {
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  border-radius: 1rem;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top .awesome_end img {
  width: 200px;
  height: 200px;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top .suggestion_product__info {
  display: none;
  flex-direction: column;
  gap: 1rem;
  align-self: flex-start;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top .suggestion_product__info .product_title {
  font-size: 1.2rem;
  font-weight: 500;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top .suggestion_product__info .product_title__sub {
  font-size: 1rem;
  font-weight: 500;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top .suggestion_product__info .product_properties {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top .suggestion_product__info .product_properties li {
  display: flex;
  font-size: 0.8rem;
  color: var(--gray-200);
  position: relative;
  padding-right: 20px;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top .suggestion_product__info .product_properties li::before {
  content: " ";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--gray-208);
  border-radius: 50%;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top .suggestion_product__cover {
  width: var(--width-100);
  height: 250px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top .suggestion_product__cover img {
  width: var(--width-100);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top .suggestion_product__end {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top .suggestion_product__end .suggestion_product_timer__main {
  position: relative;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top .suggestion_product__end .suggestion_product_timer__main .suggestion_product_timer__container {
  position: relative;
  overflow: hidden;
  background-color: var(--black-10);
  border-radius: 1rem;
  --after-width: 0%;
  --before-width: 0%;
  --after-height: 0%;
  --before-height: 0%;
  --before-visible: "hidden";
  --after-visible: "hidden";
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top .suggestion_product__end .suggestion_product_timer__main .suggestion_product_timer__container .suggestion_product_timer {
  border-radius: 0.5rem;
  margin: 0.5rem;
  padding: 0 0.5rem;
  position: relative;
  background-color: #fff;
  z-index: 7;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top .suggestion_product__end .suggestion_product_timer__main .suggestion_product_timer__container .suggestion_product_timer .item {
  padding: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--black-10);
  font-size: 0.8rem;
  color: var(--gray-200);
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top .suggestion_product__end .suggestion_product_timer__main .suggestion_product_timer__container .suggestion_product_timer .item:last-child {
  border-bottom-width: 0;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top .suggestion_product__end .suggestion_product_timer__main .suggestion_product_timer__container .suggestion_product_timer .item .timer {
  display: flex;
  align-items: center;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top .suggestion_product__end .suggestion_product_timer__main .suggestion_product_timer__container .suggestion_product_timer .item .timer p {
  margin: 0;
  font-size: 0.8rem;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top .suggestion_product__end .suggestion_product_timer__main .suggestion_product_timer__container .suggestion_product_timer .item .timer p:first-child {
  color: var(--red-1);
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top .suggestion_product__end .suggestion_product_timer__main .suggestion_product_timer__container .suggestion_product_timer .item .timer:nth-child(2n) {
  font-size: 1.2rem;
  font-weight: 500;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top .suggestion_product__end .suggestion_product_timer__main .suggestion_product_timer__container .suggestion_product_timer .item .product_offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top .suggestion_product__end .suggestion_product_timer__main .suggestion_product_timer__container .suggestion_product_timer .item .product_offer p {
  color: var(--gray-211);
  font-size: 13px;
  font-weight: 400;
  text-decoration: line-through;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top .suggestion_product__end .suggestion_product_timer__main .suggestion_product_timer__container .suggestion_product_timer .item .price {
  color: var(--green-6);
  text-align: center;
  font-size: 13px;
  font-weight: 500;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top .suggestion_product__end .suggestion_product_timer__main .suggestion_product_timer__container::after {
  position: absolute;
  content: "";
  width: var(--after-width);
  height: var(--after-height);
  visibility: var(--after-visible);
  z-index: 5;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top .suggestion_product__end .suggestion_product_timer__main .suggestion_product_timer__container::before {
  position: absolute;
  content: "";
  width: var(--before-width);
  height: var(--before-height);
  visibility: var(--before-visible);
  z-index: 5;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top .suggestion_product__end .suggestion_product_timer__main .suggestion_product_timer__container::after {
  bottom: 0;
  right: 0;
  border-left: 12px solid var(--red-1);
  border-bottom: 12px solid var(--red-1);
  transition: width 0.1s ease 0.1s, height 0.1s ease, visibility 0s 0.2s;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top .suggestion_product__end .suggestion_product_timer__main .suggestion_product_timer__container::before {
  top: 0;
  left: 0;
  border-top: 12px solid var(--red-1);
  border-right: 12px solid var(--red-1);
  transition: width 0.1s ease 0.3s, height 0.1s ease 0.2s, visibility 0s 0.4s;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top .suggestion_product__end .suggestion_product_timer__main .circle_timer {
  --x-position: 0;
  --y-position: 0;
  position: absolute;
  left: var(--x-position, 0);
  top: var(--y-position, 0);
  background-color: var(--red-1);
  filter: drop-shadow(0px 0px 10px rgba(230, 18, 61, 0.4));
  -webkit-filter: drop-shadow(0px 0px 10px rgba(230, 18, 61, 0.4));
  border-radius: 50%;
  width: 16px;
  height: 16px;
  z-index: 8;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top .suggestion_slider__bottom--mobile {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top .suggestion_slider__bottom--mobile .suggestion_title--mobile {
  display: block;
  text-align: center;
  color: var(--black-0);
  font-weight: 500;
  font-size: 1rem;
  padding-top: 1rem;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top .suggestion_slider__bottom--mobile .suggestion_timer__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top .suggestion_slider__bottom--mobile .suggestion_timer__container .title {
  color: var(--red-1);
  font-weight: 500;
  font-size: 0.8rem;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top .suggestion_slider__bottom--mobile .suggestion_timer__container .timer {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top .suggestion_slider__bottom--mobile .suggestion_timer__container .timer p {
  margin: 0;
  font-size: 0.8rem;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top .suggestion_slider__bottom--mobile .suggestion_timer__container .timer p:first-child {
  color: var(--red-1);
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top .suggestion_slider__bottom--mobile .suggestion_timer__container .timer:nth-child(2n) {
  font-size: 1.2rem;
  font-weight: 500;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top .suggestion_slider__bottom--mobile .suggestion_timer__container .timer .timer_item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: var(--gray-204);
  border-radius: 0.5rem;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top .suggestion_slider__bottom--mobile .suggestion_price__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top .suggestion_slider__bottom--mobile .suggestion_price__container .product_offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top .suggestion_slider__bottom--mobile .suggestion_price__container .product_offer p {
  color: var(--gray-211);
  font-size: 13px;
  font-weight: 400;
  text-decoration: line-through;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top .suggestion_slider__bottom--mobile .suggestion_price__container .price {
  color: var(--green-6);
  text-align: center;
  font-size: 13px;
  font-weight: 500;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top.has_end .awesome_end {
  display: flex;
  z-index: 10;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__bottom {
  width: var(--width-100);
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 16px 20px;
  position: relative;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__bottom::before {
  content: "\f062";
  position: absolute;
  top: -8px;
  left: 50%;
  z-index: 10;
  transform: translateX(-50%);
  font-family: "Font Awesome 6 Pro";
  font-weight: 400;
  color: #fff;
  width: 35px;
  height: 25px;
  text-align: center;
  padding-top: 4px;
  border-radius: 120rem 120rem 0 0;
  background-color: var(--red-1);
  font-size: 0.85rem;
}
body .suggestion_slider__button {
  background-color: #ffff;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__bottom .suggestion_slider__button:disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__bottom .suggestion_slider__button .icon {
  font-size: 1.2rem;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__bottom .suggestion_product__main--thumb-h {
  height: 70px;
  width: var(--width-100);
  overflow: hidden;
  position: relative;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__bottom .suggestion_product__main--thumb-h .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--width-100);
  height: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__bottom .suggestion_product__main--thumb-h .swiper-slide img {
  width: var(--width-100);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__bottom .suggestion_product__main--thumb-h::before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 40%;
  z-index: 5;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}
.suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__bottom .suggestion_product__main--thumb-h::after {
  content: " ";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40%;
  z-index: 5;
  background: linear-gradient(-90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}
.suggestion_container.type_one .suggestion_slider__thumb .swiper-slide {
  position: relative;
  width: var(--width-100);
  height: 100%;
  overflow: hidden;
}
.suggestion_container.type_one .suggestion_slider__thumb .swiper-slide.swiper-slide-active {
  border: 1px solid var(--gray-211);
}
.suggestion_container.type_two .suggestion_slider__container {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_under {
  position: relative;
  z-index: 0;
  display: none;
  width: 95%;
  max-width: 350px;
  min-height: 100%;
  background-color: var(--red-1);
  border-radius: 1rem;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_under > * {
  z-index: 1;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_under::after {
  content: " ";
  position: absolute;
  inset: 0;
  z-index: 0;
  width: var(--width-100);
  height: 100%;
  background-image: url("../../public/images/awesomeslider-back-overlay.png");
  background-size: cover;
  background-position: center center;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start {
  display: flex;
  gap: 1rem;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.05);
  width: var(--width-100);
  padding: 1rem;
  position: relative;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .suggestion_title {
  width: 55px;
  background-color: var(--red-1);
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
  border-radius: 0.5rem;
  padding: 0.75rem 0.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .suggestion_title p {
  color: #fff;
  font-weight: 600;
  text-align: left;
  font-size: 1.2rem;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  @supports ( (--a: 0)) {
    font-family: var(--font-doran-regular);
  }
  @supports ( not (--a: 0)) {
    font-family: "Doran", sans-serif;
  }
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .suggestion_title .suggestion_slider__buttons--mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .suggestion_title .suggestion_slider__buttons--mobile .suggestion_slider__button .icon {
  width: 37px;
  height: 37px;
  border-radius: 0.5rem;
  background-color: #fff;
  color: var(--red-1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 {
  position: relative;
  overflow: hidden;
  width: var(--width-100);
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content {
  width: calc(100% - 55px);
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content.has_end .awesome_end {
  display: flex;
  z-index: 10;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .awesome_end {
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  border-radius: 1rem;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .awesome_end img {
  width: 200px;
  height: 200px;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_slider__with__timer {
  width: var(--width-100);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0.5rem;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_slider__with__timer .suggestion_product_timer__main {
  display: none;
  position: relative;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_slider__with__timer .suggestion_product_timer__main .suggestion_product_timer__container {
  position: relative;
  overflow: hidden;
  background-color: var(--black-10);
  border-radius: 1rem;
  --after-width: 0%;
  --before-width: 0%;
  --after-height: 0%;
  --before-height: 0%;
  --before-visible: "hidden";
  --after-visible: "hidden";
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_slider__with__timer .suggestion_product_timer__main .suggestion_product_timer__container .suggestion_product_timer {
  border-radius: 0.5rem;
  margin: 0.5rem;
  position: relative;
  background-color: #fff;
  z-index: 7;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_slider__with__timer .suggestion_product_timer__main .suggestion_product_timer__container .suggestion_product_timer .item {
  padding: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--black-10);
  font-size: 0.8rem;
  color: var(--gray-200);
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_slider__with__timer .suggestion_product_timer__main .suggestion_product_timer__container .suggestion_product_timer .item:last-child {
  border-bottom-width: 0;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_slider__with__timer .suggestion_product_timer__main .suggestion_product_timer__container .suggestion_product_timer .item .timer {
  display: flex;
  align-items: center;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_slider__with__timer .suggestion_product_timer__main .suggestion_product_timer__container .suggestion_product_timer .item .timer p {
  margin: 0;
  font-size: 0.8rem;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_slider__with__timer .suggestion_product_timer__main .suggestion_product_timer__container .suggestion_product_timer .item .timer p:first-child {
  color: var(--red-1);
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_slider__with__timer .suggestion_product_timer__main .suggestion_product_timer__container .suggestion_product_timer .item .timer:nth-child(2n) {
  font-size: 1.2rem;
  font-weight: 500;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_slider__with__timer .suggestion_product_timer__main .suggestion_product_timer__container .suggestion_product_timer .item .product_offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_slider__with__timer .suggestion_product_timer__main .suggestion_product_timer__container .suggestion_product_timer .item .product_offer p {
  color: var(--gray-211);
  font-size: 13px;
  font-weight: 400;
  text-decoration: line-through;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_slider__with__timer .suggestion_product_timer__main .suggestion_product_timer__container .suggestion_product_timer .item .price {
  color: var(--green-6);
  text-align: center;
  font-size: 13px;
  font-weight: 500;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_slider__with__timer .suggestion_product_timer__main .suggestion_product_timer__container::after {
  position: absolute;
  content: "";
  width: var(--after-width);
  height: var(--after-height);
  visibility: var(--after-visible);
  z-index: 5;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_slider__with__timer .suggestion_product_timer__main .suggestion_product_timer__container::before {
  position: absolute;
  content: "";
  width: var(--before-width);
  height: var(--before-height);
  visibility: var(--before-visible);
  z-index: 5;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_slider__with__timer .suggestion_product_timer__main .suggestion_product_timer__container::after {
  bottom: 0;
  right: 0;
  border-left: 12px solid var(--red-1);
  border-bottom: 12px solid var(--red-1);
  transition: width 0.1s ease 0.1s, height 0.1s ease, visibility 0s 0.2s;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_slider__with__timer .suggestion_product_timer__main .suggestion_product_timer__container::before {
  top: 0;
  left: 0;
  border-top: 12px solid var(--red-1);
  border-right: 12px solid var(--red-1);
  transition: width 0.1s ease 0.3s, height 0.1s ease 0.2s, visibility 0s 0.4s;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_slider__with__timer .suggestion_product_timer__main .circle_timer {
  --x-position: 0;
  --y-position: 0;
  position: absolute;
  left: var(--x-position, 0);
  top: var(--y-position, 0);
  background-color: var(--red-1);
  filter: drop-shadow(0px 0px 10px rgba(230, 18, 61, 0.4));
  -webkit-filter: drop-shadow(0px 0px 10px rgba(230, 18, 61, 0.4));
  border-radius: 50%;
  width: 16px;
  height: 16px;
  z-index: 8;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_slider__with__timer .suggestion_product__cover {
  width: var(--width-100);
  height: 250px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_slider__with__timer .suggestion_product__cover img {
  width: var(--width-100);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_slider__with__timer .suggestion_title--mobile {
  display: block;
  text-align: center;
  color: var(--black-0);
  font-weight: 500;
  font-size: 1rem;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_slider__with__timer .suggestion_timer__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_slider__with__timer .suggestion_timer__container .title {
  color: var(--red-1);
  font-weight: 500;
  font-size: 0.8rem;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_slider__with__timer .suggestion_timer__container .timer {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_slider__with__timer .suggestion_timer__container .timer p {
  margin: 0;
  font-size: 0.8rem;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_slider__with__timer .suggestion_timer__container .timer p:first-child {
  color: var(--red-1);
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_slider__with__timer .suggestion_timer__container .timer:nth-child(2n) {
  font-size: 1.2rem;
  font-weight: 500;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_slider__with__timer .suggestion_timer__container .timer .timer_item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: var(--gray-204);
  border-radius: 0.5rem;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_slider__with__timer .suggestion_price__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_slider__with__timer .suggestion_price__container .product_offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_slider__with__timer .suggestion_price__container .product_offer p {
  color: var(--gray-211);
  font-size: 13px;
  font-weight: 400;
  text-decoration: line-through;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_slider__with__timer .suggestion_price__container .price {
  color: var(--green-6);
  text-align: center;
  font-size: 13px;
  font-weight: 500;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_product__info {
  width: 50%;
  height: 100%;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_product__info .info_container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_product__info .info_container .product_title {
  font-size: 1.2rem;
  font-weight: 500;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_product__info .info_container .product_title__sub {
  font-size: 1rem;
  font-weight: 500;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_product__info .info_container .product_properties {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_product__info .info_container .product_properties li {
  display: flex;
  font-size: 0.8rem;
  color: var(--gray-200);
  position: relative;
  padding-right: 20px;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_product__info .info_container .product_properties li::before {
  content: " ";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--gray-208);
  border-radius: 50%;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_product__info .info_bottom {
  width: var(--width-100);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_product__info .info_bottom .info_price {
  width: var(--width-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_product__info .info_bottom .info_price .title {
  color: var(--gray-200);
  font-size: 0.8rem;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_product__info .info_bottom .info_price .product_price {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_product__info .info_bottom .info_price .product_price .product_offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_product__info .info_bottom .info_price .product_price .product_offer .offer_price {
  font-size: 0.8rem;
  text-decoration: line-through;
  color: var(--gray-211);
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_product__info .info_bottom .info_price .product_price .product_price__text {
  font-weight: 500;
  color: var(--green-6);
  font-size: 0.9rem;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__container--main {
  width: var(--width-100);
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__container--main .suggestion_slider__end {
  width: 30%;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.05);
  padding: 1rem;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__container--main .suggestion_slider__end .suggestion_slider__button {
  background-color: var(--gray-204);
  width: var(--width-100);
  text-align: center;
  border-radius: 0.5rem;
  padding: 0.75rem;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__container--main .suggestion_slider__end .suggestion_slider__thumb {
  width: var(--width-100);
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 0.75rem;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__container--main .suggestion_slider__end .suggestion_slider__thumb .suggestion_slider__button {
  background-color: var(--gray-204);
  width: var(--width-100);
  text-align: center;
  border-radius: 0.5rem;
  padding: 0.5rem;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__container--main .suggestion_slider__end .suggestion_slider__thumb .suggestion_product__main--thumb-v {
  width: var(--width-100);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__container--main .suggestion_slider__end .suggestion_slider__thumb .suggestion_product__main--thumb-v .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: var(--width-100);
  max-height: 60px;
  border-radius: 0.5rem;
  padding: 0.5rem;
  position: relative;
  cursor: pointer;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__container--main .suggestion_slider__end .suggestion_slider__thumb .suggestion_product__main--thumb-v .swiper-slide .slide_image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__container--main .suggestion_slider__end .suggestion_slider__thumb .suggestion_product__main--thumb-v .swiper-slide .slide_image img {
  width: var(--width-100);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__container--main .suggestion_slider__end .suggestion_slider__thumb .suggestion_product__main--thumb-v .swiper-slide .slide_text {
  width: calc(100% - 60px - 0.75rem);
  text-align: right;
  color: var(--black-0);
  font-size: 0.85rem;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__container--main .suggestion_slider__end .suggestion_slider__thumb .suggestion_product__main--thumb-v .swiper-slide::before {
  content: " ";
  width: 4px;
  height: 6px;
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  background-color: transparent;
  border-radius: 0 10px 10px 0;
  transition: background 250ms ease-in;
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__container--main .suggestion_slider__end .suggestion_slider__thumb .suggestion_product__main--thumb-v .swiper-slide.swiper-slide-active .slide_image {
  outline: 1px solid #fff;
  border: 1px solid var(--red-1);
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__container--main .suggestion_slider__end .suggestion_slider__thumb .suggestion_product__main--thumb-v .swiper-slide.swiper-slide-active .slide_text {
  color: var(--red-1);
}
.suggestion_container.type_two .suggestion_slider__container .suggestion_slider__container--main .suggestion_slider__end .suggestion_slider__thumb .suggestion_product__main--thumb-v .swiper-slide.swiper-slide-active::before {
  background-color: var(--red-1);
}
.suggestion_container.type_three .suggestion_now__container .suggestion_card__under {
  position: relative;
  z-index: -1;
  width: calc(100% - 2px);
  height: 200px;
  margin: 0 auto;
  background-color: var(--red-1);
  color: #fff;
  font-weight: 600;
  text-align: center;
  padding-top: 1.2rem;
  border-radius: 1rem;
  font-size: 1.2rem;
  @supports ( (--a: 0)) {
    font-family: var(--font-doran-regular);
  }
  @supports ( not (--a: 0)) {
    font-family: "Doran", sans-serif;
  }
}
.suggestion_container.type_three .suggestion_now__container .suggestion_card__under > * {
  z-index: 1;
}
.suggestion_container.type_three .suggestion_now__container .suggestion_card__under::after {
  content: " ";
  position: absolute;
  inset: 0;
  z-index: 0;
  width: var(--width-100);
  height: 100%;
  background-image: url("../../public/images/awesomeslider-back-overlay.png");
  background-size: cover;
  background-position: center center;
}
.suggestion_container.type_three .suggestion_now__container .suggestion_card__main {
  position: absolute;
  top: 4rem;
  left: 50%;
  transform: translateX(-50%);
}
.suggestion_container.type_three .suggestion_slider__container {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-bottom: 5rem;
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__under {
  position: relative;
  z-index: 0;
  width: var(--width-100);
  height: 450px;
  padding: 1rem;
  background-color: var(--red-1);
  border-radius: 1rem;
  text-align: center;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__under p {
  z-index: 10;
  color: #fff;
  font-weight: 600;
  text-align: left;
  font-size: 0.9rem;
  padding: 0.5rem;
  @supports ( (--a: 0)) {
    font-family: var(--font-doran-regular);
  }
  @supports ( not (--a: 0)) {
    font-family: "Doran", sans-serif;
  }
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__under .suggestion_slider__buttons--mobile {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__under .suggestion_slider__buttons--mobile .suggestion_slider__button .icon {
  width: 37px;
  height: 37px;
  border-radius: 0.5rem;
  background-color: #fff;
  color: var(--red-1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__under::after {
  content: " ";
  position: absolute;
  inset: 0;
  z-index: 1;
  width: var(--width-100);
  height: 100%;
  background-image: url("../../public/images/awesomeslider-back-overlay.png");
  background-size: cover;
  background-position: center center;
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main {
  width: var(--width-100);
  display: flex;
  gap: 0.75rem;
  position: absolute;
  left: 0;
  top: 4rem;
  margin-bottom: 7rem;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.05);
  overflow-y: hidden;
  padding: 1rem;
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .awesome_main_slider_3 {
  width: var(--width-100);
  position: relative;
  overflow: hidden;
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .awesome_main_slider_3 .suggestion_slider__start {
  display: flex;
  flex-direction: column;
  width: var(--width-100);
  gap: 0.75rem;
  position: relative;
  background-color: #fff;
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .awesome_main_slider_3 .suggestion_slider__start.has_end .awesome_end {
  display: flex;
  width: var(--width-100);
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .awesome_main_slider_3 .suggestion_slider__start .awesome_end {
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  border-radius: 1rem;
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .awesome_main_slider_3 .suggestion_slider__start .awesome_end img {
  width: 200px;
  height: 200px;
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .awesome_main_slider_3 .suggestion_slider__start .suggestion_product__cover {
  width: var(--width-100);
  height: 250px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .awesome_main_slider_3 .suggestion_slider__start .suggestion_product__cover img {
  width: var(--width-100);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .awesome_main_slider_3 .suggestion_slider__start .suggestion_product__info {
  width: var(--width-100);
  display: none;
  flex-direction: column;
  gap: 1rem;
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .awesome_main_slider_3 .suggestion_slider__start .suggestion_product__info .product_title {
  font-size: 1.2rem;
  font-weight: 500;
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .awesome_main_slider_3 .suggestion_slider__start .suggestion_product__info .product_title__sub {
  font-size: 1rem;
  font-weight: 500;
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .awesome_main_slider_3 .suggestion_slider__start .suggestion_product__info .product_properties {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .awesome_main_slider_3 .suggestion_slider__start .suggestion_product__info .product_properties li {
  display: flex;
  font-size: 0.8rem;
  color: var(--gray-200);
  position: relative;
  padding-right: 20px;
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .awesome_main_slider_3 .suggestion_slider__start .suggestion_product__info .product_properties li::before {
  content: " ";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--gray-208);
  border-radius: 50%;
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .awesome_main_slider_3 .suggestion_slider__start .product_details__container {
  width: var(--width-100);
  display: none;
  flex-direction: column;
  gap: 1rem;
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .awesome_main_slider_3 .suggestion_slider__start .product_details__container .product_details {
  background-color: var(--gray-204);
  border-radius: 1rem;
  padding: 0.75rem;
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .awesome_main_slider_3 .suggestion_slider__start .product_details__container .product_details .item {
  border-bottom: 1px solid var(--gray-202);
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .awesome_main_slider_3 .suggestion_slider__start .product_details__container .product_details .item:last-child {
  border-bottom-width: 0;
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .awesome_main_slider_3 .suggestion_slider__start .product_details__container .product_details .item .timer {
  display: flex;
  align-items: center;
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .awesome_main_slider_3 .suggestion_slider__start .product_details__container .product_details .item .timer p {
  margin: 0;
  font-size: 0.8rem;
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .awesome_main_slider_3 .suggestion_slider__start .product_details__container .product_details .item .timer p:first-child {
  color: var(--red-1);
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .awesome_main_slider_3 .suggestion_slider__start .product_details__container .product_details .item .timer:nth-child(2n) {
  font-size: 1.2rem;
  font-weight: 600;
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .awesome_main_slider_3 .suggestion_slider__start .product_details__container .product_details .item .product_offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .awesome_main_slider_3 .suggestion_slider__start .product_details__container .product_details .item .product_offer p {
  color: var(--gray-211);
  font-size: 13px;
  font-weight: 400;
  text-decoration: line-through;
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .awesome_main_slider_3 .suggestion_slider__start .product_details__container .product_details .item .price {
  color: var(--green-6);
  text-align: center;
  font-size: 13px;
  font-weight: 500;
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .awesome_main_slider_3 .suggestion_slider__start .suggestion_slider__bottom--mobile {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: var(--width-100);
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .awesome_main_slider_3 .suggestion_slider__start .suggestion_slider__bottom--mobile .suggestion_title--mobile {
  display: block;
  text-align: center;
  color: var(--black-0);
  font-weight: 500;
  font-size: 1rem;
  padding-top: 1rem;
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .awesome_main_slider_3 .suggestion_slider__start .suggestion_slider__bottom--mobile .suggestion_timer__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .awesome_main_slider_3 .suggestion_slider__start .suggestion_slider__bottom--mobile .suggestion_timer__container .title {
  color: var(--red-1);
  font-weight: 500;
  font-size: 0.8rem;
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .awesome_main_slider_3 .suggestion_slider__start .suggestion_slider__bottom--mobile .suggestion_timer__container .timer {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .awesome_main_slider_3 .suggestion_slider__start .suggestion_slider__bottom--mobile .suggestion_timer__container .timer p {
  margin: 0;
  font-size: 0.8rem;
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .awesome_main_slider_3 .suggestion_slider__start .suggestion_slider__bottom--mobile .suggestion_timer__container .timer p:first-child {
  color: var(--red-1);
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .awesome_main_slider_3 .suggestion_slider__start .suggestion_slider__bottom--mobile .suggestion_timer__container .timer:nth-child(2n) {
  font-size: 1.2rem;
  font-weight: 500;
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .awesome_main_slider_3 .suggestion_slider__start .suggestion_slider__bottom--mobile .suggestion_timer__container .timer .timer_item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: var(--gray-204);
  border-radius: 0.5rem;
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .awesome_main_slider_3 .suggestion_slider__start .suggestion_slider__bottom--mobile .suggestion_price__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .awesome_main_slider_3 .suggestion_slider__start .suggestion_slider__bottom--mobile .suggestion_price__container .product_offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .awesome_main_slider_3 .suggestion_slider__start .suggestion_slider__bottom--mobile .suggestion_price__container .product_offer p {
  color: var(--gray-211);
  font-size: 13px;
  font-weight: 400;
  text-decoration: line-through;
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .awesome_main_slider_3 .suggestion_slider__start .suggestion_slider__bottom--mobile .suggestion_price__container .price {
  color: var(--green-6);
  text-align: center;
  font-size: 13px;
  font-weight: 500;
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .suggestion_slider__end {
  width: 70px;
  display: none;
  gap: 0.75rem;
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .suggestion_slider__end .suggestion_slider__thumb {
  width: 90px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 0.75rem;
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .suggestion_slider__end .suggestion_slider__thumb .suggestion_slider__button {
  background-color: var(--gray-204);
  width: var(--width-100);
  text-align: center;
  border-radius: 0.5rem;
  padding: 0.5rem;
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .suggestion_slider__end .suggestion_slider__thumb .suggestion_product__main--thumb-v {
  width: var(--width-100);
  height: 100%;
  padding: 0 0.5rem;
  position: relative;
  overflow: hidden;
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .suggestion_slider__end .suggestion_slider__thumb .suggestion_product__main--thumb-v .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: var(--width-100);
  max-height: 60px;
  border-radius: 0.5rem;
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .suggestion_slider__end .suggestion_slider__thumb .suggestion_product__main--thumb-v .swiper-slide::before {
  content: " ";
  width: 4px;
  height: 6px;
  position: absolute;
  top: 50%;
  right: -4px;
  transform: translateY(-50%);
  background-color: transparent;
  border-radius: 0 10px 10px 0;
  transition: background 250ms ease-in;
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .suggestion_slider__end .suggestion_slider__thumb .suggestion_product__main--thumb-v .swiper-slide img {
  width: var(--width-100);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .suggestion_slider__end .suggestion_slider__thumb .suggestion_product__main--thumb-v .swiper-slide.swiper-slide-active {
  outline: 1px solid #fff;
  border: 1px solid var(--red-1);
}
.suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .suggestion_slider__end .suggestion_slider__thumb .suggestion_product__main--thumb-v .swiper-slide.swiper-slide-active::before {
  background-color: var(--red-1);
}
@media (min-width: 1024px) {
  .suggestion_container {
    flex-direction: row;
  }
  .suggestion_container .suggestion_slider__container {
    width: 100%;
  }
  .suggestion_container.type_one .suggestion_now__container .suggestion_card__under {
    height: 470px;
  }
  .suggestion_container.type_one .suggestion_slider__container .suggestion_under {
    justify-content: center;
    min-height: 470px;
  }
  .suggestion_container.type_one .suggestion_slider__container .suggestion_under p {
    text-align: center;
    font-size: 1.2rem;
  }
  .suggestion_container.type_one .suggestion_slider__container .suggestion_under .suggestion_slider__buttons--mobile {
    display: none;
  }
  .suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
  }
  .suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top .suggestion_product__info, .suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top .suggestion_product__end {
    display: flex;
  }
  .suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__top .suggestion_slider__bottom--mobile {
    display: none;
  }
  .suggestion_container.type_one .suggestion_slider__container .suggestion_slider__main .suggestion_slider__bottom {
    display: flex;
  }
  .suggestion_container.type_two .suggestion_slider__container .suggestion_under {
    display: block;
  }
  .suggestion_container.type_two .suggestion_slider__container .suggestion_slider__container--main {
    align-items: stretch;
    width: calc(100% - 1.5rem);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .suggestion_container.type_two .suggestion_slider__container .suggestion_slider__container--main .suggestion_slider__start {
    width: 70%;
  }
  .suggestion_container.type_two .suggestion_slider__container .suggestion_slider__container--main .suggestion_slider__start .suggestion_title {
    justify-content: center;
    padding: 1.5rem 0;
  }
  .suggestion_container.type_two .suggestion_slider__container .suggestion_slider__container--main .suggestion_slider__start .suggestion_title p {
    text-align: center;
  }
  .suggestion_container.type_two .suggestion_slider__container .suggestion_slider__container--main .suggestion_slider__start .suggestion_title .suggestion_slider__buttons--mobile {
    display: none;
  }
  .suggestion_container.type_two .suggestion_slider__container .suggestion_slider__container--main .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content {
    display: flex;
    gap: 0.5rem;
  }
  .suggestion_container.type_two .suggestion_slider__container .suggestion_slider__container--main .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_slider__with__timer {
    width: 50%;
  }
  .suggestion_container.type_two .suggestion_slider__container .suggestion_slider__container--main .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_slider__with__timer .suggestion_product_timer__main {
    display: block;
  }
  .suggestion_container.type_two .suggestion_slider__container .suggestion_slider__container--main .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_slider__with__timer .suggestion_title--mobile, .suggestion_container.type_two .suggestion_slider__container .suggestion_slider__container--main .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_slider__with__timer .suggestion_timer__container, .suggestion_container.type_two .suggestion_slider__container .suggestion_slider__container--main .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_slider__with__timer .suggestion_price__container {
    display: none;
  }
  .suggestion_container.type_two .suggestion_slider__container .suggestion_slider__container--main .suggestion_slider__start .awesome_main_slider_2 .suggestion_slider__start--content .suggestion_product__info {
    width: 50%;
    display: flex;
  }
  .suggestion_container.type_two .suggestion_slider__container .suggestion_slider__container--main .suggestion_slider__end {
    width: 30%;
    display: flex;
    height: 400px;
  }
  .suggestion_container.type_three .suggestion_slider__container {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
  }
  .suggestion_container.type_three .suggestion_slider__container .suggestion_slider__under {
    height: 400px;
  }
  .suggestion_container.type_three .suggestion_slider__container .suggestion_slider__under p {
    font-size: 1.2rem;
    padding-top: 0;
  }
  .suggestion_container.type_three .suggestion_slider__container .suggestion_slider__under .suggestion_slider__buttons--mobile {
    display: none;
  }
  .suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main {
    top: 4rem;
    margin-bottom: 4rem;
  }
  .suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .awesome_main_slider_3 {
    width: calc(100% - 60px);
  }
  .suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .awesome_main_slider_3 .suggestion_slider__start {
    flex-direction: row;
  }
  .suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .awesome_main_slider_3 .suggestion_slider__start .suggestion_product__cover {
    width: 30%;
    height: 100%;
  }
  .suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .awesome_main_slider_3 .suggestion_slider__start .suggestion_product__info {
    width: 35%;
    display: flex;
  }
  .suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .awesome_main_slider_3 .suggestion_slider__start .product_details__container {
    width: 35%;
    display: flex;
  }
  .suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .awesome_main_slider_3 .suggestion_slider__start .suggestion_slider__bottom--mobile {
    display: none;
  }
  .suggestion_container.type_three .suggestion_slider__container .suggestion_slider__container--main .suggestion_slider__end {
    display: flex;
  }
}
/* end 123 */
.show_avatar_yes .dashboard_side .dashboard_avatar
{
  display: none;
}
.deactive-logo-yes .logo__section {
  display: none;
}
.remove-background-yes .login_register__body{
  background-image: unset;
}
.deactive-close-btn-yes .close__section{
  display: none;
}
.elementor .swiper_homepage.bottom .swiper_control .swiper_control__navigation{
  flex-direction: row-reverse;
}
.elementor .swiper_homepage.bottom .swiper_control .swiper-pagination{
  gap: 7px;
}
.elementor-widget-container .login_register__body{
  background-image: unset;
}
[class*="elementor-kit"] .suggestion_slider__button {
  background-color: unset;
  border-radius: unset;
  padding: unset;
}

.type_two .swiper,
.slider-swiper-carousel.swiper
{
  border-radius: unset;
}

.type_one .amount,.type_two .amount,.slider-swiper-carousel .amount{
  color:unset;
}
.slider-swiper-carousel a.added_to_cart.wc-forward {
    display: none;
}
.slider-swiper-carousel.swiper-container-rtl .swiper-button-prev,
.slider-swiper-carousel.swiper-container-rtl .swiper-button-next
{
  background-image: unset;
}
.slider-swiper-carousel .swiper-button-prev:after
{
  content: 'next';
}
.slider-swiper-carousel .swiper-button-next:after
{
  content: 'prev';
}
.slider-swiper-carousel .loading .fa-cart-shopping:before{
  visibility: hidden;
}
.slider-swiper-carousel .arams-btn-add-to-cart.loading .lds-ring{
  display: inline-block;
}
.suggestion_container .fa-arrow-left:before{
  font-family: "Font Awesome 6 Pro";
  content: "\f060";
}
.lds-ring,
.lds-ring div {
  box-sizing: border-box;
}
.lds-ring {
  display: none;
  position: absolute;
  inset: 0;
  transform: translate(-5px, 4px);
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  margin: 8px;
  border: 3px solid currentColor;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: currentColor transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* new login form page */

:root {
  --primary-color: var(--main-color);
  --secondary-color: var(--red-5);
  --background-color: #f5f5f5;
  --form-background: rgba(255, 255, 255, 0.98);
  --text-primary: #333;
  --text-secondary: #666;
  --shadow-color: var(--red-5);
  --border-color: #eee;
}

body.woodmartplus-myaccount:not(.elementor-editor-active) .container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow: hidden;
} 

.form-box:not(.elementor .form-box)  {
  background: var(--form-background);
  padding: 40px 30px;
  border-radius: 24px;
  width: 100%;
  max-width: 420px;
  position: relative;
  backdrop-filter: blur(10px);
  border: 1px solid rgb(62 37 37 / 19%);
  transform: translateY(0);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.logo-container {
  width: 150px;
}

.logo-container img {
  width: 100%;
  height: auto !important;
}

.logo {
  font-size: 24px;
  color: white;
}

body .floating-input-field {
  position: relative;
  margin-bottom: 30px;
}

body .floating-input-field input {
  width: 100%;
  padding: 16px 40px 16px 12px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  font-size: 14px;
  background: transparent;
  color: var(--text-primary);
  transition: all 0.3s ease;
  height: unset !important;
}

body .floating-input-field label {
  position: absolute;
  right: 45px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--form-background);
  padding: 0 5px;
  color: var(--text-secondary);
  font-size: 14px;
  transition: all 0.3s ease;
  pointer-events: none;
}

body .floating-input-field input:focus~label,
body .floating-input-field input:valid~label {
  top: 0;
  font-size: 14px;
  color: var(--primary-color);
}

body .floating-input-field i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  font-size: 18px;
  transition: all 0.3s ease;
}

.custom-checkbox {
  position: relative;
  width: 24px;
  height: 24px;
}

.custom-checkbox input {
  display: none;
}

.custom-checkbox label {
  width: 24px;
  height: 24px;
  border: 2px solid var(--primary-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--form-background);
}

.custom-checkbox label i {
  color: white;
  font-size: 14px;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s ease;
}

.custom-checkbox input:checked+label {
  background: var(--primary-color);
}

.custom-checkbox input:checked+label i {
  opacity: 1;
  transform: scale(1);
}

body .submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 45px;
}

body .loading-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid white;
  border-top: 2px solid transparent;
  border-radius: 50%;
  position: absolute;
  display: none;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% {
      transform: rotate(0deg);
  }

  100% {
      transform: rotate(360deg);
  }
}

body .submit-btn.loading .btn-text,
body .submit-btn.loading i {
  opacity: 0;
}

body .submit-btn.loading .loading-spinner {
  display: block;
}

body .tooltip_wdplus {
  position: relative;
}

body .tooltip_wdplus:before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 12px;
  background: var(--text-primary);
  color: var(--form-background);
  font-size: 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

body .tooltip_wdplus:hover:before {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-10px);
}

@media (max-width: 480px) {
  .form-box {
      padding: 30px 20px;
  }

  .logo-area {
      flex-direction: column;
      text-align: center;
  }

  .extra-links {
      flex-direction: column;
      align-items: center;
      gap: 15px;
  }
}

.divider {
  text-align: center;
  margin: 30px 0;
  position: relative;
}

.divider::before,
.divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 45%;
  height: 1px;
  background: var(--border-color);
}

body .social-login {
  margin-bottom: 30px;
}

body .google-btn {
  width: 100%;
  padding: 14px;
  background: var(--form-background);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

body .extra-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

body .extra-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
line-height: 2;
  transition: color 0.3s ease;
}

body .floating-input-field input:focus {
  border-color: var(--primary-color);
  outline: none;
}

body #recaptcha-contact-form{
	display:flex;
	align-items: center;
  justify-content: center;
}
body #recaptcha-contact-form>div{
	margin-top:15px;
}
.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
}

.checkbox span {
  color: var(--text-secondary);
  font-size: 14px;
}

.top-header {
  text-align: center;
  margin-bottom: 40px;
}

body .top-header h2 {
  color: var(--text-primary);
  margin-bottom: 10px;
  font-size: 1.5rem;
}

body .top-header p {
  color: var(--text-secondary);
  font-size: 13px;
}

.otp-inputs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
}

.otp-inputs input {
  width: 100%;
  height: 50px;
  text-align: center;
  font-size: 24px;
  letter-spacing: 12px;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  background: transparent;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.otp-inputs input:focus {
  border-color: var(--primary-color);
  outline: none;
}

.action-links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0 30px;
}

.edit-number {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 14px;
}

.resend-code {
  text-align: right;
}

.resend-code .timer {
  margin-left: 15px;
  color: var(--text-secondary);
  font-size: 14px;
}

.resend-code .resend-link {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 14px;
}

.resend-code .resend-link.disabled {
  color: var(--text-secondary);
  cursor: not-allowed;
  opacity: 0.7;
}

#user-phone {
  font-weight: bold;
}

.msg_strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
}

.alert {
  display: none;
  align-items: center;
  padding: 11px 20px;
  border-radius: 8px;
  margin: 25px 0;
  font-size: 12px;
}

.alert.alert-success,
.alert.alert-error {
  display: flex;
}

.alert-success {
  background-color: #e7f6ed;
  border: 1px solid #b7e4c7;
  color: #1b4332;
}

.alert-error {
  background-color: #fde8e8;
  border: 1px solid #f8b4b4;
  color: #981b1b;
}

.alert-icon {
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
  line-height: 1;
}

.alert-icon svg {
  vertical-align: middle;
}

.alert.slide-in {
  animation: slideIn 0.5s ease forwards;
}

.svg_success {
  display: none;
}

.alert-success .svg_success {
  display: inline-block;
}

.svg_error {
  display: none;
}

.alert-error .svg_error {
  display: inline-block;
}

.floating-input-field .input-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
  transition: all 0.3s ease;
}
.woodmartplus-myaccount.wd-sticky-nav-enabled{
  margin-right:0px
}

@media (min-width: 1025px) {
  .woodmartplus-myaccount.wd-sticky-nav-enabled {
      margin-right: 0px;
  }
}
.woodmartplus-myaccount a:hover{
  color: unset;
  border-color: unset;
  background-color:unset;
}
.woodmartplus-myaccount :is(ul,ol) li
{
  margin-bottom: 0;
}
body.woodmartplus-myaccount
{
  --wd-text-font-weight:unset !important;
  --wd-text-font-size : 13px !important;
  --wd-title-font-weight:0;
}
body.woodmartplus-myaccount :is(.btn,.button,button,[type=submit],[type=button])
{
  --btn-font-weight:0;
  --btn-padding:0;
  
}
body.woodmartplus-myaccount .amount
{
  --wd-primary-color:currentColor;
  font-weight: unset;
}
.badge_ticket{
    padding: 3px 5px;
    border-radius: 9px;
    font-size: 11px;
}
.badge_ticket.blue{
  background-color: var(--blue-2);
  color : #2c7eb8;
}
.badge_ticket.red{
  background-color: var(--red-7);
  color : #E6123D;
}
.badge_ticket.green{
  background-color: var(--green-3);
  color : var(--green-2);
}
.badge_ticket.orange{
  background-color: #ff8300;
  color : #efeded;
}
.ticket_table .ticket_table__item.orange .badge_ticket {
  background: #ff8300;
  color: #efeded;
  font-weight: 500;
  border-radius: 5px;
  padding: 0 0.4rem;
  font-size: 0.8rem;
}
.alfashop_container:has(>.header_woodplus_myaccount) {
  max-width: 100%;
}
.woodmartplus-myaccount .elementor .swiper_homepage.bottom .swiper_control .swiper_control__navigation
{
  flex-direction: row;
}
.back_to_start,.show_password{
    display: flex;
    justify-content: end;
    margin-top: 21px;
    margin-left: 10px;
}
.register_link
{
    margin-top: 13px;
}
div#bd-root-birth_day table tbody td
{
  padding: unset !important;
}
#bd-main-birth_day table{
  margin-bottom: 0 !important;
}
div#bd-root-birth_day table thead th
{
  padding: unset !important;
  color: white !important;
  font-style: unset !important;
  font-family: unset !important;
  vertical-align: unset !important;
}
#bd-month-birth_day,#bd-year-birth_day{
      padding: unset !important;
    padding-right: 14px !important;
}

.floating-input-field:has(input:focus) label,
.floating-input-field:has(input.has-value) label {
  top: 0;
  font-size: 14px;
  color: var(--primary-color);
}

#bd-table-days-birth_day tr td button.day {
  position: unset !important;
  display: unset !important;
  align-items: unset !important;
  justify-content: unset !important;
  gap: unset !important;
  outline: unset !important;
  border-radius: unset !important;
  vertical-align: unset !important;
  text-decoration: unset !important;
  text-shadow: unset !important;
  line-height: unset !important;
  cursor: unset !important;
  transition: unset !important;
  border: unset !important;
  box-shadow: unset !important;
  text-transform: var(--btn-transform, uppercase);
  font-weight: unset !important;
  font-family: unset !important;
  font-style: unset !important;
  padding: unset !important;
  min-height: unset !important;
  font-size: unset !important;
}
.bd-table-days button:hover:enabled {
  color: red !important;
  font-weight: 700 !important;
  background-color: #e7e7e7 !important;
  cursor: pointer !important;
}
.wdplus_login_register .top-header h5{
  font-size: 16px;
}
.submit-btn:hover {
    transform: translateY(-2px);
    background-color: var(--red-5) !important;
    color: white !important;
}