body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.w-btn {
  cursor: pointer;
}

.kasebi_icon_box {
  min-width: var(--icon-size);
  min-height: var(--icon-size);
  background: currentColor;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-image: var(--icon-url);
  -webkit-mask-image: var(--icon-url);
}

.w-iconbox .w-iconbox-icon {
  font-size: var(--icon-size);
}

.modal_wrapper {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  pointer-events: none;
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3333333333);
  opacity: 0;
  transition: all 0.5s ease;
  padding: 20px;
}
.modal_wrapper .loading_container {
  width: 400px;
  text-align: center;
  font-size: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 180px;
  font-weight: 700;
  color: #fff;
}
.modal_wrapper .loading_container p {
  margin: 0;
}
.modal_wrapper .loading_container .sk-chase {
  width: 40px;
  height: 40px;
  position: relative;
  animation: sk-chase 2.5s infinite linear both;
}
.modal_wrapper .loading_container .sk-chase .sk-chase-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  animation: sk-chase-dot 2s infinite ease-in-out both;
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.2));
}
.modal_wrapper .loading_container .sk-chase .sk-chase-dot:before {
  content: "";
  display: block;
  width: 25%;
  height: 25%;
  background-color: var(--color-alt-content-primary);
  border-radius: 100%;
  animation: sk-chase-dot-before 2s infinite ease-in-out both;
  animation-delay: inherit;
}
.modal_wrapper .loading_container .sk-chase .sk-chase-dot:nth-child(1) {
  animation-delay: -1.1s;
}
.modal_wrapper .loading_container .sk-chase .sk-chase-dot:nth-child(2) {
  animation-delay: -1s;
}
.modal_wrapper .loading_container .sk-chase .sk-chase-dot:nth-child(3) {
  animation-delay: -0.9s;
}
.modal_wrapper .loading_container .sk-chase .sk-chase-dot:nth-child(4) {
  animation-delay: -0.8s;
}
.modal_wrapper .loading_container .sk-chase .sk-chase-dot:nth-child(5) {
  animation-delay: -0.7s;
}
.modal_wrapper .loading_container .sk-chase .sk-chase-dot:nth-child(6) {
  animation-delay: -0.6s;
}
.modal_wrapper .modal_content {
  border-radius: 15px;
  background: #fff;
  padding: 30px 25px 30px 25px;
  max-width: 380px;
  flex-grow: 1;
  position: relative;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3137254902);
  margin: 15px;
  transition: all 0.5s ease;
  transform: scale(0.5);
  width: calc(100% - 30px);
  color: #000;
}
.modal_wrapper .modal_content .otp_title {
  text-align: center;
  margin-bottom: 5px;
}
.modal_wrapper .modal_content .w-btn {
  display: block;
  width: 150px;
  margin: 10px auto;
}
.modal_wrapper .modal_content a {
  text-align: center;
  display: block;
}
.modal_wrapper .modal_content button.close_modal_btn {
  position: absolute;
  top: 17px;
  left: 20px;
  background: transparent;
  padding: 0;
  width: 25px;
  line-height: 25px;
}
.modal_wrapper .modal_content .input_row {
  margin-bottom: 5px;
  position: relative;
}
.modal_wrapper .modal_content .input_row .see_pass {
  position: absolute;
  left: 10px;
  top: 0;
  display: flex;
  align-items: center;
  height: 100%;
  cursor: pointer;
}
.modal_wrapper.active {
  opacity: 1;
  pointer-events: all;
}
.modal_wrapper.active > * {
  transform: scale(1);
}

@keyframes sk-chase {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes sk-chase-dot {
  80%, 100% {
    transform: rotate(360deg);
  }
}
@keyframes sk-chase-dot-before {
  50% {
    transform: scale(0.4);
  }
  100%, 0% {
    transform: scale(1);
  }
}
@media only screen and (max-width: 768px) {
  body {
    background: #fff !important;
  }
}
#toast-container {
  position: fixed;
  z-index: 999999;
  pointer-events: none;
  padding: 1.25rem;
  width: 100%;
}

#toast-container[class*=-center] .toastr {
  margin-right: auto;
  margin-left: auto;
}

#toast-container[class*=-left] .toastr {
  margin-left: auto;
}

#toast-container[class*=-right] .toastr {
  margin-right: auto;
}

#toast-container[class*=-full] .toastr {
  width: 100%;
}

#toast-container[class*=toast-top] {
  top: 0;
}

#toast-container[class*=toast-bottom] {
  bottom: 0;
}

.toastr {
  position: relative;
  pointer-events: auto;
  background: #fff;
  box-shadow: 0 3px 12px 1px rgba(43, 55, 72, 0.15);
  border-radius: 4px;
  opacity: 1;
  border-right: 4px solid transparent;
  padding: 1.25rem 1.25rem 1.25rem 4.5rem;
  width: 430px;
  max-width: 100%;
  font-size: 0.875rem;
  line-height: 1.3rem;
}

.is-dark .toastr {
  background: #101924;
  color: #fff;
}

.toastr:not(:last-child) {
  margin-bottom: 0.75rem;
}

.toastr.toast-success {
  border-color: #0fca7a;
  background-color: #51a351;
  color: #fff;
}

.toastr.toast-success .icon {
  color: #0fca7a;
}

.toastr.toast-error {
  border-color: #f2426e;
  background-color: #bd362f;
  color: #fff;
}

.toastr.toast-error .icon {
  color: #f2426e;
}

.toastr.toast-info {
  border-color: #058efc;
}

.toastr.toast-info .icon {
  color: #058efc;
}

.toastr.toast-warning {
  border-color: #fd9722;
  background-color: #f89406;
}

.toastr.toast-warning .icon {
  color: #fd9722;
}

.toastr-icon {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  line-height: 1;
}

.toastr-icon + .toastr-text {
  padding-right: 2.35rem;
}

.toast-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 4px;
  background-color: #000000;
  opacity: 0.4;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  filter: alpha(opacity=40);
}

.toast-title {
  font-weight: bold;
}

.toast-message {
  word-wrap: break-word;
}

.toast-message a,
.toast-message label {
  color: #526484;
}

.toast-message a:hover {
  color: #cccccc;
  text-decoration: none;
}

.icon_box {
  width: var(--icon-size, 22px);
  height: var(--icon-size, 22px);
  margin-left: var(--icon-margin-left, 7px);
  margin-right: var(--icon-margin-right, 0);
  background: currentColor;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-image: var(--icon-url);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-image: var(--icon-url);
}

.l-subheader-h:has(.drop_down_full) {
  position: static;
}

.l-subheader-h:has(.layout_fullwidth) {
  position: static;
}

.kasebi_header_nav .kasebi_nav_activator {
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  display: none;
  flex-direction: column;
  align-items: center;
  line-height: 25px;
  position: relative;
  z-index: 5;
}
.kasebi_header_nav .nav_activator_bars i {
  display: block;
}
.kasebi_header_nav.afl .nav_activator_bars {
  align-items: flex-end;
}
.kasebi_header_nav .kasebi_nav_bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.431372549);
  transition: all 0.5s ease;
  opacity: 0;
  backdrop-filter: blur(11px);
  z-index: 3;
}
.kasebi_header_nav .kasebi_nav_bg .nav_bg_image {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
}
.kasebi_header_nav.opened .kasebi_nav_bg {
  opacity: 1;
  pointer-events: all;
}
.kasebi_header_nav a.kasebi_nav_anchor {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  justify-content: space-between;
}
.kasebi_header_nav a.kasebi_nav_anchor .kasebi_nav_title {
  margin-left: auto;
}
.kasebi_header_nav a.kasebi_nav_anchor .kasebi_nav_icon i {
  font-size: 20px;
  display: block;
}
.kasebi_header_nav a.kasebi_nav_anchor .kasebi_nav_arrow {
  display: none;
  padding-top: 3px;
}
.kasebi_header_nav a.kasebi_nav_anchor .kasebi_nav_arrow i {
  display: block;
}
.kasebi_header_nav a.kasebi_nav_anchor:has(+ ul) .kasebi_nav_arrow {
  display: block;
}
.kasebi_header_nav.desktop_nav .kasebi_nav_list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.kasebi_header_nav.desktop_nav .kasebi_nav_list ul li {
  padding: 0;
  margin: 0;
}
.kasebi_header_nav.desktop_nav .kasebi_nav_list .kasebi_nav_back {
  display: none;
}
.kasebi_header_nav.desktop_nav .kasebi_nav_list ul.main_nav_list {
  display: flex;
  gap: var(--nav-gap, 30px);
}
.kasebi_header_nav.desktop_nav .kasebi_nav_list ul.main_nav_list li.level_1 ul.kasebi_nav_level {
  transition: all 0.5s ease;
  opacity: 0;
  transform: translateY(-10px);
  visibility: hidden;
  background: var(--color_drop_bg);
  color: var(--color_drop_text);
  position: absolute;
  right: 0;
  top: 100%;
  line-height: 1.5;
}
.kasebi_header_nav.desktop_nav .kasebi_nav_list ul.main_nav_list li.level_1 ul.kasebi_nav_level > li {
  margin-bottom: 10px;
}
.kasebi_header_nav.desktop_nav .kasebi_nav_list ul.main_nav_list li.level_1:hover ul.kasebi_nav_level.level_2 {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.kasebi_header_nav.desktop_nav .kasebi_nav_list ul.main_nav_list .drop_down_custom, .kasebi_header_nav.desktop_nav .kasebi_nav_list ul.main_nav_list .drop_down_auto {
  position: relative;
}
.kasebi_header_nav.desktop_nav .kasebi_nav_list ul.main_nav_list .drop_down_custom ul.kasebi_nav_level, .kasebi_header_nav.desktop_nav .kasebi_nav_list ul.main_nav_list .drop_down_auto ul.kasebi_nav_level {
  padding: 40px 50px;
}
.kasebi_header_nav.desktop_nav .kasebi_nav_list ul.main_nav_list .drop_down_has_col ul.kasebi_nav_level {
  display: grid;
  grid-template-columns: repeat(var(--columns, 1), 1fr);
  column-gap: 60px;
}
.kasebi_header_nav.desktop_nav .kasebi_nav_list ul.main_nav_list .drop_down_custom ul.kasebi_nav_level {
  width: var(--custom_width);
  max-width: calc(100vw - 2rem);
}
.kasebi_header_nav.desktop_nav .kasebi_nav_list ul.main_nav_list .drop_down_full ul.kasebi_nav_level {
  width: 100vw;
}
.kasebi_header_nav .close_nav_list_row {
  display: none;
}
.kasebi_header_nav.mobile_nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 85vh;
  overflow: auto;
}
.kasebi_header_nav.mobile_nav ul li {
  padding: 0;
  margin: 0;
}
.kasebi_header_nav.mobile_nav .kasebi_nav_activator {
  display: flex;
}
.kasebi_header_nav.mobile_nav a.kasebi_nav_anchor .kasebi_nav_arrow {
  display: block;
}
.kasebi_header_nav.mobile_nav .close_nav_list_row {
  display: block;
  margin-bottom: 25px;
  margin-right: 35px;
  font-size: 24px;
  cursor: pointer;
}
.kasebi_header_nav.mobile_nav .close_nav_list_row .close_nav_list i {
  display: block;
}
.kasebi_header_nav.mobile_nav .close_nav_list_row .mobile_nav_menu_log a img {
  display: block;
  height: var(--logo-size, 30px);
  width: auto;
}
.kasebi_header_nav.mobile_nav .kasebi_nav_list {
  position: fixed;
  right: 0;
  top: 0;
  border-left: 1px solid #DADADA;
  width: calc(50vw - var(--site-content-width) / 2 + 390px);
  margin: 0;
  height: 100vh;
  padding: 55px calc(50vw - var(--site-content-width) / 2) 55px 0;
  background: #fff;
  z-index: 100;
  min-width: min(300px, 100vw);
  color: #181818;
  display: none;
  max-width: 100vw;
}
.kasebi_header_nav.mobile_nav .kasebi_nav_list ul.main_nav_list {
  flex-direction: column;
  gap: 0;
}
.kasebi_header_nav.mobile_nav .kasebi_nav_list ul.main_nav_list li {
  line-height: 28px;
  margin-left: 35px;
  padding: 15px 0;
  border-bottom: 1px #E2E2E2 solid;
}
.kasebi_header_nav.mobile_nav .kasebi_nav_list ul.main_nav_list li:last-child {
  border-bottom: none;
}
.kasebi_header_nav.mobile_nav .kasebi_nav_list ul.main_nav_list li.current-menu-item {
  font-weight: 700;
  color: var(--color_drop_active_text);
}
.kasebi_header_nav.mobile_nav .kasebi_nav_list ul.main_nav_list > * {
  margin-right: 35px;
}
.kasebi_header_nav.mobile_nav .kasebi_nav_list ul.main_nav_list li.level_1 ul.kasebi_nav_level {
  position: fixed;
  border-radius: 0;
  opacity: 0;
  transform: translateX(110%);
  top: 0;
  right: 0;
  height: 100vh;
  overflow: auto;
  padding: 55px calc(50vw - var(--site-content-width) / 2) 55px 0;
  visibility: visible;
  z-index: 2;
  transition: all 0.5s ease;
  pointer-events: none;
  min-width: min(300px, 100vw);
  color: #181818;
  max-width: 100vw;
  width: calc(50vw - var(--site-content-width) / 2 + 390px);
  background: #fff;
}
.kasebi_header_nav.mobile_nav .kasebi_nav_list ul.main_nav_list li.level_1 ul.kasebi_nav_level.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}
.kasebi_header_nav.mobile_nav .kasebi_nav_list ul.main_nav_list li.level_1 ul.kasebi_nav_level > * {
  margin-right: 35px;
}
.kasebi_header_nav.mobile_nav .kasebi_nav_list ul.main_nav_list li.level_1 ul.kasebi_nav_level .kasebi_nav_back {
  display: flex;
  border-bottom: 1px solid #D2D2D2;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  margin-right: 35px;
  margin-left: 35px;
  padding-bottom: 15px;
}
.kasebi_header_nav.mobile_nav .kasebi_nav_list ul.main_nav_list li.level_1 ul.kasebi_nav_level .kasebi_nav_back i {
  font-size: 1.3em;
  display: block;
}
.kasebi_header_nav.mobile_nav .kasebi_nav_list ul.main_nav_list .drop_down_custom, .kasebi_header_nav.mobile_nav .kasebi_nav_list ul.main_nav_list .drop_down_auto {
  position: relative;
}
.kasebi_header_nav.mobile_nav .kasebi_nav_list ul.main_nav_list .drop_down_custom ul.kasebi_nav_level, .kasebi_header_nav.mobile_nav .kasebi_nav_list ul.main_nav_list .drop_down_auto ul.kasebi_nav_level {
  padding: 40px 50px;
}
.kasebi_header_nav.mobile_nav .kasebi_nav_list li {
  color: #333;
  display: block;
  padding: 5px 0;
  position: relative;
  line-height: 28px;
}
.kasebi_header_nav.mobile_nav .kasebi_nav_list li:last-child {
  border: none;
}
.kasebi_header_nav.mobile_nav.afl .kasebi_nav_list {
  right: auto;
  left: 0;
  padding: 50px 35px 40px calc(50vw - var(--site-content-width) / 2);
  border-radius: 0 25px 25px 0;
}

.w-iconbox {
  gap: 10px;
}
.w-iconbox a {
  display: flex;
  gap: 5px;
}
.w-iconbox .w-iconbox-icon {
  width: var(--icon-size) !important;
  margin: 0 !important;
}

.w-btn-wrapper {
  margin: 0 !important;
  display: flex !important;
}
.w-btn-wrapper.align_center {
  justify-content: center;
}
.w-btn-wrapper.align_left {
  justify-content: flex-end;
}

.w-btn.btn_has_icon {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.align_justify .w-btn.btn_has_icon {
  justify-content: space-between;
}

.mobiles_align_justify > .w-btn {
  justify-content: center;
}

.post_custom_field.has_kasebi_img {
  display: flex;
  gap: 5px;
  align-items: center;
}

.w-iconbox-icon {
  font-size: var(--icon-size);
}

.otp_modal_btn {
  display: flex;
  gap: 5px;
  align-items: center;
  white-space: nowrap;
}
.otp_modal_btn .icon_box {
  --icon-size: 1.2em;
  --icon-margin-left: 0;
}

.login_box_wrapper {
  border-radius: 15px;
  background: #222327;
  padding: 30px 25px 30px 25px;
}
.login_box_wrapper .login_inputs_wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
.login_box_wrapper .input_wrapper {
  position: relative;
}
.login_box_wrapper .see_pass {
  position: absolute;
  left: 10px;
  top: 0;
  display: flex;
  align-items: center;
  height: 100%;
  cursor: pointer;
}
.login_box_wrapper .login_terms_text {
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
  letter-spacing: -0.28px;
}
.login_box_wrapper .login_terms_text a {
  color: #5874E7;
  font-weight: 600;
  text-decoration-line: underline;
}

.ltr_field {
  direction: ltr;
}
.ltr_field input {
  text-align: left;
}
.ltr_field .see_pass {
  left: auto;
  right: 10px;
}

.login_box_btn_wrapper {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.login_box_btn_wrapper:last-child {
  margin-bottom: 0;
}

.login_btn {
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  border: 3px solid #2C419A;
  transition: all 0.3s ease;
  line-height: 36px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.16px;
  flex-grow: 1;
}
.login_btn:hover {
  background: #2C419A;
}
.login_btn.main_btn {
  background: #2C419A;
  width: 100%;
}
.login_btn.main_btn:hover {
  background: transparent;
}
.login_btn.full_width_btn {
  width: 100%;
}
.login_btn.colored_btn {
  border-color: #FFBF10;
  color: #FFBF10;
}
.login_btn.colored_btn:hover {
  background: #FFBF10;
  color: #2C419A;
}
.login_btn a {
  display: block;
  color: inherit;
}
.login_btn a:hover {
  color: inherit;
}

.form_section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form_section .inputs_container {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form_section .input_row {
  position: relative;
}
.form_section .input_row .remove_coupon_landing_form {
  position: absolute;
  top: 5px;
  left: 5px;
  font-size: 16px;
  cursor: pointer;
  display: none;
}
.form_section .input_row.filled .remove_coupon_landing_form {
  display: block;
}
.form_section .payment_method_select {
  font-size: 15px;
  font-weight: 500;
}
.form_section .payment_method_select .payment_method_select_options {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.form_section .payment_method_select .payment_method_select_options .each_payment_method {
  font-size: 14px;
  padding: 3px 7px;
  display: flex;
  gap: 5px;
  border: solid 1px #c4c4c4;
  cursor: pointer;
  border-radius: 4px;
}
.form_section .payment_method_select .payment_method_select_options .each_payment_method.active {
  border-color: var(--color-content-primary);
  font-weight: 600;
}
.form_section .use_wallet_for_order_box {
  font-size: 14px;
  font-weight: 400;
  padding-right: 20px;
  position: relative;
  line-height: 25px;
  cursor: pointer;
}
.form_section .use_wallet_for_order_box:before {
  content: "";
  position: absolute;
  right: 0;
  top: 5px;
  width: 13px;
  height: 13px;
  border-radius: 3px;
  border: solid 1px #c4c4c4;
  background: #fff;
}
.form_section .use_wallet_for_order_box:after {
  content: "";
  position: absolute;
  right: 4px;
  top: 9px;
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 1px;
}
.form_section .use_wallet_for_order_box.active:before {
  border-color: var(--color-content-primary);
}
.form_section .use_wallet_for_order_box.active:after {
  background: var(--color-content-primary);
}

.price_box_container {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  line-height: 1.3;
}
.price_box_container .off_percent {
  border-radius: 15px;
  background: #EA1E1E;
  padding: 6px 7px 4px;
  gap: 2px;
  color: #FFF;
  font-size: 15px;
  font-weight: 700;
  line-height: 10px;
  letter-spacing: -0.3px;
}
.price_box_container .price_row {
  display: flex;
  gap: 5px;
  align-items: baseline;
}
.price_box_container .price_row .currency {
  font-size: 0.8em;
  font-weight: 400;
  font-family: IRANYekanX;
}
.price_box_container .regular_price {
  font-size: 0.8em;
  opacity: 0.7;
  text-decoration: line-through;
  font-weight: 500;
}
.price_box_container .free_price, .price_box_container .regular_price {
  display: none;
}
.price_box_container.free_price_box .free_price {
  display: block;
}
.price_box_container.free_price_box .final_price {
  display: none;
}
.price_box_container .on_sale .regular_price {
  display: flex;
}

.post_comment_section {
  padding-top: 50px;
  margin-top: 50px;
  border-top: 1px solid var(--color-content-border);
  margin-bottom: 50px;
}
.post_comment_section .get_comment_cul_title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-content-heading);
  font-size: 16px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.64px;
  margin-bottom: 20px;
}
.post_comment_section .comment_form {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.post_comment_section .comment_form .comment_field_wrapper {
  flex-grow: 1;
}
.post_comment_section .comment_form .comment_form_footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
}
.post_comment_section .comment_form .comment_form_footer .comment_form_extra_wrapper {
  flex-grow: 1;
  display: flex;
  gap: 14px;
}
.post_comment_section .comment_form .comment_form_footer .comment_submit_box {
  flex: 0 0 30%;
  display: flex;
  gap: 15px;
}
.post_comment_section .comment_form .comment_form_footer .comment_submit_box .submit_comment {
  flex-grow: 1;
}
.post_comment_section .comments_list_cul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.post_comment_section .comments_list_cul .comment_box .each_comment_row {
  background: var(--color-content-overlay);
  border-radius: 10px;
  padding: 20px 40px;
}
@media screen and (max-width: 768px) {
  .post_comment_section .comments_list_cul .comment_box .each_comment_row {
    padding: 20px;
  }
}
.post_comment_section .comments_list_cul .comment_box .each_comment_row .comments_header {
  display: flex;
  align-items: center;
  gap: 8px;
}
.post_comment_section .comments_list_cul .comment_box .each_comment_row .comments_header .comment_author_avatar {
  border-radius: 40px;
  overflow: hidden;
}
.post_comment_section .comments_list_cul .comment_box .each_comment_row .comments_header .comment_author_avatar img {
  display: flex;
}
.post_comment_section .comments_list_cul .comment_box .each_comment_row .comments_header .comment_author_name {
  color: #121212;
  font-size: 15px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.6px;
  margin-bottom: 4px;
}
.post_comment_section .comments_list_cul .comment_box .each_comment_row .comments_header .comment_date {
  color: #A8A8A8;
  font-size: 15px;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: -0.6px;
}
.post_comment_section .comments_list_cul .comment_box .each_comment_row .comments_header .reply_to_btn {
  color: var(--color-content-primary);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.6px;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  margin-right: auto;
}
.post_comment_section .comments_list_cul .comment_box .each_comment_row .comment_content_block {
  margin-top: 12px;
  font-size: 16px;
}
.post_comment_section .comments_list_cul .comment_box .each_comment_row:has(+ .comments_children) {
  padding-bottom: 80px;
}
.post_comment_section .comments_list_cul .comment_box .replay_to_form {
  margin-top: 20px;
  margin-bottom: 20px;
}
.post_comment_section .comments_list_cul .comment_box .comments_children {
  margin-top: -55px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.post_comment_section .comments_list_cul .comment_box .comments_children .comment_box .each_comment_row {
  margin: 0 40px;
  background: #fff;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 768px) {
  .post_comment_section .comments_list_cul .comment_box .comments_children .comment_box .each_comment_row {
    margin-left: 0;
    margin-right: 20px;
  }
}
.post_comment_section .comments_list_cul .comment_box .comments_children .comment_box .each_comment_row .reply_to_btn {
  display: none;
}

.timer_section {
  display: flex;
  justify-content: center;
  position: relative;
  align-items: flex-start;
}
.timer_section .time_cul {
  text-align: center;
  margin: 0 4px;
}
.timer_section .time_cul > div {
  display: flex;
  gap: 3px;
}
.timer_section .time_cul > div span {
  background: #222327;
  min-width: 1.1em;
  display: inline-block;
  line-height: inherit;
  border-radius: 5px;
  text-align: center;
  max-height: 45px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2078431373);
  font-weight: 600;
  height: 30px;
  font-size: 20px;
}
.timer_section .time_cul > div span.first {
  margin-left: 1px;
}
.timer_section .time_cul .cul_title {
  line-height: 25px;
  text-align: center;
  display: block;
  font-weight: 300;
}
.timer_section .timer_separator {
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1.9em;
}
.timer_section.hide_title_timer .cul_title {
  display: none;
}

.sticky_header_banner {
  display: flex;
  justify-content: center;
  position: relative;
  transition: all 0.5s ease;
  overflow: hidden;
  height: var(--banner-height);
}
@media screen and (max-width: 1099px) and (min-width: 768px) {
  .sticky_header_banner {
    height: var(--banner-height-tablet);
  }
}
@media screen and (max-width: 768px) {
  .sticky_header_banner {
    height: var(--banner-height-mobile);
  }
}
.sticky_header_banner > a {
  display: block;
  position: absolute;
  top: 0;
}
.sticky_header_banner > a .each_sticky_banner {
  display: none;
  width: auto;
  max-width: inherit;
  height: 100%;
}
@media screen and (min-width: 1100px) {
  .sticky_header_banner > a .each_sticky_banner.desktop_banner {
    display: block;
  }
}
@media screen and (max-width: 1099px) and (min-width: 768px) {
  .sticky_header_banner > a .each_sticky_banner.tablet_banner {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .sticky_header_banner > a .each_sticky_banner.mobile_banner {
    display: block;
  }
}

header#page-header.sticky .sticky_header_banner.scroll_sticky {
  height: 0;
}

.callBtnContainer.wa {
  position: fixed;
  bottom: 2%;
  left: 3%;
  padding: 9px;
  border: solid var(--color-alt-content-primary);
  border-radius: 100%;
  opacity: 1;
  z-index: 300;
}
.callBtnContainer.wa .callBtn i {
  color: white;
  background-color: var(--color-alt-content-primary);
  width: 50px;
  height: 50px;
  text-align: center;
  padding-top: 10px;
  border-radius: 100%;
  font-size: 30px;
  position: relative;
}

.landing_form_attribution_data {
  display: none;
}

.each_product_variation_select_wrapper {
  margin-bottom: 30px;
}
.each_product_variation_select_wrapper:last-child {
  margin-bottom: 0;
}
.each_product_variation_select_wrapper .product_variation_options_list {
  margin-top: 5px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
}
.each_product_variation_select_wrapper .product_variation_options_list .each_product_att_select {
  min-width: 65px;
  padding: 3px 10px;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
  border: 1px solid #ECECEC;
  cursor: pointer;
}
.each_product_variation_select_wrapper .product_variation_options_list .each_product_att_select.selected_att {
  border-color: #000;
}
.each_product_variation_select_wrapper .product_variation_options_list .each_product_att_select.outofstock {
  color: #EEE;
}

.product_add_to_cart_container .btn_container {
  display: flex;
  flex-direction: row-reverse;
  gap: 20px;
}
.product_add_to_cart_container .btn_container .w-btn {
  cursor: pointer;
}
.product_add_to_cart_container .btn_container .product_add_to_cart_wrapper, .product_add_to_cart_container .btn_container .notif_me_on_stock {
  flex-grow: 1;
}
.product_add_to_cart_container .btn_container .remove_product_from_cart {
  padding: 9px;
  font-size: 17px;
  line-height: 20px !important;
}
.product_add_to_cart_container .btn_container .remove_product_from_cart i {
  display: block;
  width: 21px;
  height: 21px;
}
.product_add_to_cart_container .btn_container .product_change_product_qty_block {
  display: flex;
  width: 140px;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #EFEFEF;
  background: #FFF;
  margin-left: auto;
  flex-direction: row-reverse;
}
.product_add_to_cart_container .btn_container .product_change_product_qty_block .current_cart_qty {
  flex-grow: 1;
  text-align: center;
  line-height: 37px;
  user-select: none;
  color: #1e1e1e;
  font-size: 17px;
  font-weight: 600;
}
.product_add_to_cart_container .btn_container .product_change_product_qty_block .change_product_cart_qty {
  line-height: 37px;
  text-align: center;
  height: 37px;
  cursor: pointer;
  padding: 0 15px;
  color: #5a5a5a;
}
.product_add_to_cart_container .btn_container .product_change_product_qty_block .change_product_cart_qty.disabled {
  color: #C7C7C7;
  pointer-events: none;
}

.kasebi-cart-link span.w-cart-quantity {
  position: relative;
  font-size: inherit;
  font-weight: inherit;
  padding: 0;
}
.kasebi-cart-link.empty span.w-cart-quantity {
  display: none;
}

#page-header .kasebi_btn.w-btn i {
  display: none;
}
#page-header .kasebi_btn.w-btn .header_btn_text {
  display: none;
}
#page-header .kasebi_btn.w-btn.show_icon i {
  display: inline-block;
}
#page-header .kasebi_btn.w-btn.show_text .header_btn_text {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  #page-header .kasebi_btn.w-btn i {
    display: inline-block;
  }
  #page-header .kasebi_btn.w-btn .header_btn_text {
    display: inline-block;
  }
  #page-header .kasebi_btn.w-btn.hide_icon_mobile i {
    display: none;
  }
  #page-header .kasebi_btn.w-btn.hide_text_mobile .header_btn_text {
    display: none;
  }
}
#page-header .w-search .w-search-open span {
  display: none;
}
#page-header .w-search .w-search-form {
  left: 0;
  right: 0;
  top: 100%;
}
#page-header .w-search:before {
  content: "";
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.3294117647);
  backdrop-filter: blur(4px);
  pointer-events: none;
  opacity: 0;
  transition: all 0.5s ease;
}
#page-header .w-search.active:before {
  opacity: 1;
  pointer-events: all;
}

.popup-active .w-popup-wrap, .usoverlay_fixed .w-popup-wrap, html.usoverlay_fixed .header_hor .l-header.pos_fixed {
  overflow-y: hidden;
}

form.w-filter.mod_toggle .w-filter-item {
  border-top: 1px solid #DEDEDE;
  border-bottom: none;
  margin-bottom: 0;
}
form.w-filter.mod_toggle .w-filter-item:first-child, form.w-filter.mod_toggle .w-filter-item.type_radio {
  border-top: none;
}
form.w-filter.mod_toggle .w-filter-item:last-child {
  border-bottom: none;
}
form.w-filter.mod_toggle .w-filter-item .w-filter-item-content {
  padding-bottom: 30px;
  padding-top: 0;
  margin-bottom: 0;
}
form.w-filter.mod_toggle .w-filter-item .w-filter-item-title {
  margin: 0;
  padding: 15px 0px;
  color: #000;
  font-size: 15px;
  font-weight: 700;
  line-height: 20px;
  display: flex;
  align-items: center;
  letter-spacing: -0.06em;
  transition: all 0.5s ease;
}
form.w-filter.mod_toggle .w-filter-item .w-filter-item-title .w-filter-item-reset {
  display: none;
}
form.w-filter.mod_toggle .w-filter-item .w-filter-item-title:before, form.w-filter.mod_toggle .w-filter-item .w-filter-item-title:after {
  content: "";
  position: absolute;
  transition: all 0.5s ease;
  width: 13px;
  height: 1.7px;
  left: 0;
  background: #ABABAB;
  border: none;
  margin: 0;
  top: 50%;
  right: auto;
}
form.w-filter.mod_toggle .w-filter-item .w-filter-item-title:after {
  margin: 0 !important;
  transform: rotate(90deg) !important;
}
form.w-filter.mod_toggle .w-filter-item.type_radio:has(+ .type_checkbox) {
  margin-bottom: 10px;
}
form.w-filter.mod_toggle .w-filter-item.type_radio .w-filter-item-title {
  padding: 5px 0;
}
form.w-filter.mod_toggle .w-filter-item.type_radio .w-filter-item-title:before, form.w-filter.mod_toggle .w-filter-item.type_radio .w-filter-item-title:after {
  display: none;
}
form.w-filter.mod_toggle .w-filter-item.type_radio .w-filter-item-content {
  display: block;
  margin: 0;
  padding: 0;
}
form.w-filter.mod_toggle .w-filter-item.type_radio .w-filter-item-values {
  display: flex;
  margin: 0;
  position: absolute;
  left: 0;
  background: #E6E6E6;
  border-radius: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 16px;
  justify-content: space-between;
  flex-direction: row-reverse;
}
form.w-filter.mod_toggle .w-filter-item.type_radio .w-filter-item-values:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 15px;
  position: absolute;
  background: #fff;
  top: 3px;
  left: 3px;
  transition: all 0.3s ease;
}
form.w-filter.mod_toggle .w-filter-item.type_radio .w-filter-item-values .w-filter-item-value {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
form.w-filter.mod_toggle .w-filter-item.type_radio .w-filter-item-values .w-filter-item-value .w-filter-item-value-label {
  display: none;
}
form.w-filter.mod_toggle .w-filter-item.type_radio .w-filter-item-values .w-filter-item-value input {
  margin: 0;
  opacity: 0;
  width: 15px;
  height: 15px;
  border: none;
}
form.w-filter.mod_toggle .w-filter-item.type_radio.has_value .w-filter-item-values {
  background: var(--color-content-primary);
}
form.w-filter.mod_toggle .w-filter-item.type_radio.has_value .w-filter-item-values:before {
  left: 23px;
}
form.w-filter.mod_toggle .w-filter-item.type_checkbox .w-filter-item-values .w-filter-item-value {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  border-bottom: 1px solid #ededed;
  padding: 10px 30px 10px 0;
  position: relative;
  display: flex;
  align-items: center;
}
form.w-filter.mod_toggle .w-filter-item.type_checkbox .w-filter-item-values .w-filter-item-value:before {
  content: "";
  position: absolute;
  right: 0;
  width: 15px;
  height: 15px;
  border-radius: 50px;
  border: 2px solid;
  box-sizing: border-box;
}
form.w-filter.mod_toggle .w-filter-item.type_checkbox .w-filter-item-values .w-filter-item-value:after {
  content: "";
  position: absolute;
  right: 4px;
  width: 7px;
  height: 7px;
  border-radius: 50px;
  opacity: 0;
  background: var(--color-content-primary);
}
form.w-filter.mod_toggle .w-filter-item.type_checkbox .w-filter-item-values .w-filter-item-value:has(input:checked):after {
  opacity: 1;
}
form.w-filter.mod_toggle .w-filter-item.type_checkbox .w-filter-item-values .w-filter-item-value:has(input:checked):before {
  color: var(--color-content-primary);
}
form.w-filter.mod_toggle .w-filter-item.type_checkbox .w-filter-item-values .w-filter-item-value:first-child {
  padding-top: 0;
}
form.w-filter.mod_toggle .w-filter-item.type_checkbox .w-filter-item-values .w-filter-item-value:last-child {
  border-bottom: 0;
}
form.w-filter.mod_toggle .w-filter-item.type_checkbox .w-filter-item-values .w-filter-item-value .w-filter-item-value-amount {
  opacity: 1;
}
form.w-filter.mod_toggle .w-filter-item.type_checkbox .w-filter-item-values .w-filter-item-value input {
  display: none;
}
form.w-filter.mod_toggle .w-filter-item.open.type_checkbox .w-filter-item-title:after {
  margin: 0;
  transform: rotate(0deg);
}
form.w-filter.mod_toggle .w-filter-item.open.type_checkbox .w-filter-item-content {
  display: none;
}

@media screen and (max-width: 768px) {
  .w-filter-opener.w-btn {
    display: block !important;
    width: 100%;
  }
  .w-filter-opener.w-btn span {
    position: relative;
  }
  .w-filter-opener.w-btn span:after {
    width: 5px;
    height: 5px;
    position: absolute;
    margin: 0 !important;
    left: -13px;
    border: 2px solid;
    color: var(--color-content-primary);
    background: #F42020;
    top: 1px;
  }
  .w-filter-opener.w-btn i {
    margin-right: 10px;
    margin-left: 0;
  }
}

.w-order {
  align-self: stretch;
}
@media screen and (max-width: 768px) {
  .w-order {
    flex-grow: 1;
  }
}
.w-order .w-order-select:after {
  display: none;
}
.w-order .w-order-select .choices .choices__inner {
  padding: 19px 40px;
  border: none;
  background: #fff;
}
.w-order .w-order-select .choices .choices__inner .choices__list--single {
  padding: 0 0 0 14px;
}
.w-order .w-order-select .choices .choices__inner .choices__placeholder {
  color: #6A6A6A;
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: -0.15px;
  opacity: 1;
}
.w-order .w-order-select .choices .choices__list .choices__item.choices__placeholder.choices__item--choice {
  display: none;
}
.w-order .w-order-select .choices:after {
  content: "\f104";
  font-family: fontawesome;
  font-weight: 400;
  padding: 0;
  border: none;
  display: block;
  position: absolute;
  width: 8px;
  height: 13px;
  top: calc(50% - 6px);
  margin: 0;
  line-height: 13px;
  transform: rotate(-90deg);
  left: 40px;
  right: auto;
  transition: all 0.5s ease;
  transform-origin: center;
}
.w-order .w-order-select .choices.is-open:after {
  transform: rotate(90deg);
  margin-top: -4px;
}

.pages_breadcrumb {
  padding: 4px 0;
}
@media screen and (max-width: 768px) {
  .pages_breadcrumb {
    overflow: auto;
  }
  .pages_breadcrumb span {
    white-space: nowrap;
  }
}
.pages_breadcrumb .g-breadcrumbs-item a {
  line-height: 21px;
  color: #757575;
  display: flex;
  align-items: center;
}
.pages_breadcrumb .g-breadcrumbs-item a:after {
  content: "";
  display: inline-block;
  margin: 0 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-content-link);
}
.pages_breadcrumb .g-breadcrumbs-item:nth-last-child(2) a:after {
  display: none;
}

.w-post-elm.product_field.attributes > div {
  display: flex;
  position: relative;
  padding-right: 25px;
  align-items: center;
  margin-bottom: 8px;
}
.w-post-elm.product_field.attributes > div:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  right: 9px;
  border-radius: 6px;
  background: currentColor;
}
.w-post-elm.product_field.attributes > div .w-post-elm-before {
  min-width: 150px;
  color: #252525;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: -0.48px;
}
.w-post-elm.product_field.attributes > div .woocommerce-product-attributes-item__value {
  font-weight: 300;
  letter-spacing: -0.48px;
}

.map_html {
  position: relative;
}
.map_html iframe {
  display: block;
}
.map_html:after {
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.5) inset;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  top: 0;
  left: 0;
  border-radius: inherit;
}

.mini-cart-modal {
  position: fixed;
  width: 100vw;
  left: 0;
  top: 0;
  bottom: env(safe-area-inset-bottom);
  display: flex;
  justify-content: flex-end;
  background: rgba(0, 0, 0, 0.2784313725);
  backdrop-filter: blur(3px);
  z-index: 250;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease;
}
.mini-cart-modal .mini-cart-content {
  transition: all 0.5s ease;
  width: 100vw;
  max-width: 600px;
  border-radius: 0 20px 20px 0;
  background: #FFF;
  box-shadow: 0px -10px 30px 0px rgba(0, 0, 0, 0.05), 0px -50px 50px 0px #FFF;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .mini-cart-modal .mini-cart-content {
    border-radius: 0;
  }
}
.mini-cart-modal .mini-cart-content .mini_cart_header {
  margin: 55px 40px 20px 65px;
  display: flex;
  align-items: center;
  font-weight: 400;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .mini-cart-modal .mini-cart-content .mini_cart_header {
    margin: 35px 20px 20px 45px;
  }
}
.mini-cart-modal .mini-cart-content .mini_cart_header .mini_cart_title {
  margin-right: auto;
}
.mini-cart-modal .mini-cart-content .mini_cart_header i {
  font-size: 24px;
}
.mini-cart-modal .mini-cart-content .mini_cart_body {
  flex-grow: 1;
  max-height: calc(100vh - 330px);
  margin: 20px 20px 40px 25px;
  overflow: auto;
  position: relative;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .mini-cart-modal .mini-cart-content .mini_cart_body {
    margin: 0;
  }
}
.mini-cart-modal .mini-cart-content .mini_cart_body .empty_mini_cart_text {
  text-align: center;
  font-size: 18px;
}
.mini-cart-modal .mini-cart-content .mini_cart_body .mini_cart_product_list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.mini-cart-modal .mini-cart-content .mini_cart_body .mini_cart_product_list .mini_cart_item_block {
  display: flex;
  width: 100%;
  padding: 15px;
  align-items: center;
  gap: 20px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
}
.mini-cart-modal .mini-cart-content .mini_cart_body .mini_cart_product_list .mini_cart_item_block .mini_cart_item_data {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
  flex-grow: 1;
}
.mini-cart-modal .mini-cart-content .mini_cart_body .mini_cart_product_list .mini_cart_item_block .mini_cart_item_data .mini_cart_item_title {
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.64px;
}
.mini-cart-modal .mini-cart-content .mini_cart_body .mini_cart_product_list .mini_cart_item_block .mini_cart_item_data .mini_cart_item_title a {
  color: inherit;
}
.mini-cart-modal .mini-cart-content .mini_cart_body .mini_cart_product_list .mini_cart_item_block .mini_cart_item_data .mini_cart_item_qty {
  width: 100%;
}
.mini-cart-modal .mini-cart-content .mini_cart_body .mini_cart_product_list .mini_cart_item_block .mini_cart_item_data .mini_cart_item_qty .btn_container .product_change_product_qty_block {
  margin-right: auto;
  margin-left: 0;
}
.mini-cart-modal .mini-cart-content .mini_cart_body .mini_cart_product_list .mini_cart_item_block .mini_cart_item_data .mini_cart_item_price {
  width: 100%;
}
.mini-cart-modal .mini-cart-content .mini_cart_body .mini_cart_product_list .mini_cart_item_block .mini_cart_item_data .mini_cart_item_price .price_box_container {
  flex-direction: row-reverse;
  font-size: 18px;
  font-weight: 600;
}
.mini-cart-modal .mini-cart-content .mini_cart_body .mini_cart_product_list .mini_cart_item_block .mini_cart_item_data .mini_cart_item_price .price_box_container .price_list {
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 5px;
}
.mini-cart-modal .mini-cart-content .mini_cart_body .mini_cart_product_list .mini_cart_item_block .mini_cart_item_image {
  width: 105px;
  height: 105px;
}
.mini-cart-modal .mini-cart-content .mini_cart_body .mini_cart_product_list .mini_cart_item_block .mini_cart_item_image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mini-cart-modal .mini-cart-content .mini_cart_footer {
  margin-top: auto;
  background: #FFF;
  box-shadow: 0px -10px 30px 0px rgba(0, 0, 0, 0.05), 0px -50px 50px 0px #FFF;
  padding: 25px 40px 30px;
}
@media screen and (max-width: 768px) {
  .mini-cart-modal .mini-cart-content .mini_cart_footer {
    padding: 15px 20px calc(20px + env(safe-area-inset-bottom));
  }
}
.mini-cart-modal .mini-cart-content .mini_cart_footer .mini_cart_footer_price {
  display: flex;
  padding: 15px 35px;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .mini-cart-modal .mini-cart-content .mini_cart_footer .mini_cart_footer_price {
    padding: 15px 10px;
  }
}
.mini-cart-modal .mini-cart-content .mini_cart_footer .mini_cart_footer_price .price_row_label {
  color: #717171;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.75px;
}
.mini-cart-modal .mini-cart-content .mini_cart_footer .mini_cart_footer_price .price_row_value {
  font-size: 22px;
  font-weight: 600;
}
.mini-cart-modal .mini-cart-content .mini_cart_footer .mini_cart_footer_price .price_row_separator {
  flex-grow: 1;
  border-bottom: 2px dashed #bfbfbf;
}
.mini-cart-modal .mini-cart-content .mini_cart_footer .mini_cart_footer_btn_wrapper {
  display: flex;
  gap: 15px;
}
.mini-cart-modal .mini-cart-content .mini_cart_footer .mini_cart_footer_btn_wrapper > * {
  flex-grow: 1;
}
.mini-cart-modal.active {
  opacity: 1;
  pointer-events: all;
}

/**
#todo must be edited
 */
.otp_title {
  font-size: 15px;
  text-align: center;
  font-weight: 700;
}

div#otp_input_form {
  display: flex;
  flex-direction: row-reverse;
  gap: 11px;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}

div#otp_input_form input.otp_input {
  padding: 0;
  line-height: 45px;
  width: 45px;
  direction: ltr;
  text-align: center;
  border: none;
  border-bottom: 2px solid var(--color-content-primary);
  border-radius: 5px 5px 0 0;
}

div#otp_input_form input.otp_input.filled {
  border-bottom: 2px solid var(--color-content-primary);
  border-radius: 5px 5px 0 0;
}

.edit_number_for_otp {
  display: flex;
  align-items: center;
  padding: 7px 20px;
  gap: 10px;
  justify-content: center;
  max-width: 180px;
  font-weight: 500;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: -0.025em;
  color: #6f6f6f;
  margin: 10px auto;
  background: #dedede;
  border-radius: 10px;
  cursor: pointer;
}

.edit_number_for_otp i {
  font-size: 15px;
}

.otp_timer {
  text-align: center;
  margin-bottom: 25px;
  font-weight: 500;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  margin-top: 10px;
}

.otp_timer.disabled {
  pointer-events: none;
}

main#page-content {
  margin-top: var(--banner-height);
}
@media screen and (max-width: 1099px) and (min-width: 768px) {
  main#page-content {
    margin-top: var(--banner-height-tablet);
  }
}
@media screen and (max-width: 768px) {
  main#page-content {
    margin-top: var(--banner-height-mobile);
  }
}

.buy_process_content_container {
  display: flex;
  gap: 30px;
  max-width: 960px;
  margin: auto;
  align-items: flex-start;
  user-select: none;
  padding: 30px 0;
}

.buy_process_content {
  flex-grow: 1;
}

.buy_process_sidebar {
  width: 300px;
  padding: 30px 25px;
  min-width: 300px;
  position: sticky;
  top: 110px;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.buy_process_steps_navbar {
  display: flex;
  margin-bottom: 40px;
}

.steps_navbar_item {
  display: flex;
  flex-grow: 1;
  border-bottom: 1px solid;
  align-items: center;
  justify-content: center;
  gap: 3px;
  line-height: 22px;
  font-size: 14px;
  color: #dcdcdc;
}

.steps_navbar_item.current {
  color: var(--color-content-primary);
  border-width: 2px;
  padding-bottom: 8px;
}

.steps_navbar_item .icon_box {
  width: 25px;
  height: 25px;
  margin: 0;
}

.steps_navbar_item.passed {
  color: #8f8f8f;
}

.each_step_btn .btn_spinner {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
}
.each_step_btn .btn_spinner > div {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.6705882353);
  border-radius: 100%;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.each_step_btn .btn_spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.each_step_btn .btn_spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.each_step_btn {
  cursor: pointer;
  padding: 7px !important;
  flex-grow: 1;
}

.sidebar_step_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.each_step_btn.prev_step_btn.us-btn-style_1.w-btn {
  background: #8f8f8f;
}

.change_product_cart_row_qty {
  width: 40px;
  line-height: 42px;
  border-radius: 8px;
  background: #e4e3e1;
  text-align: center;
  height: 36px;
  cursor: pointer;
}

.cart_item_quantity_container {
  display: flex;
  flex-direction: row-reverse;
  width: 150px;
  gap: 5px;
  margin-right: auto;
  color: #383634;
}

.current_cart_row_qty {
  flex-grow: 1;
  text-align: center;
  border-radius: 8px;
  line-height: 34px;
  border: 1px solid #e4e3e1;
  user-select: none;
}

.cart_item_row {
  display: flex;
  padding: 7px 20px;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  gap: 15px;
  margin-bottom: 10px;
  justify-content: center;
  align-items: center;
}

.removed_cart_item_notice {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 6px;
  color: #f00;
}

.cart_item_image {
  width: 95px;
}

.cart_item_total {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 19px;
}

.cart_item_cart_data {
  margin-right: auto;
}

.cart_item_total .product_price_row {
  font-size: 19px;
}

.cart_item_total .icon_box {
  width: 20px;
}

.cart_item_total .product_final_price {
  font-weight: 500;
}

.cart_item_title {
  color: #616161;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
}

.cart_item_price .product_final_price {
  color: #a0a0a0;
  font-size: 18px;
  font-weight: 500;
}

.cart_item_price .final_price_row.product_price_row {
  color: #c1c1c1;
}

.cart_item_price .final_price_row .icon_box {
  width: 20px;
}

.cart_item_quantity_container.waiting {
  min-height: 36px;
  border-radius: 8px;
  background: #cfcfcf;
}

.cart_item_product_data {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cart_item_product_data .price_box_container {
  color: #636363;
}

.cart_item_image img {
  display: block;
  border-radius: 5px;
}

.each_total_row {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  color: #bcbcbc;
  flex-wrap: wrap;
}

.each_total_row_value {
  display: flex;
  margin-right: auto;
  align-items: center;
  gap: 5px;
  color: #959595;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
}

.each_total_row_value .icon_box {
  width: 20px;
  background: #c1c1c1;
  margin: 0;
}

.each_total_row > .icon_box {
  width: 20px;
  margin: 0;
  height: 20px;
}

.each_total_row_title {
  text-align: right;
  font-size: 16px;
  margin-right: 3px;
  line-height: 20px;
}

.each_total_row.final_total {
  color: #989898;
  margin-top: 20px;
  font-weight: 500;
}

.each_total_row.final_total .each_total_row_value {
  font-size: 25px;
  color: var(--color-content-primary);
}

.side_bar_totals {
  margin-bottom: 15px;
}

.add_new_address_row {
  border-radius: 5px;
  border: 1px solid #d3d3d3;
  display: flex;
  padding: 15px 25px;
  color: #807e7c;
  font-size: 15px;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  margin-bottom: 10px;
  margin-top: 20px;
}

.add_new_address_button {
  color: var(--color-content-primary);
  font-weight: 700;
  border: 1px solid var(--color-content-primary);
  border-radius: 5px;
  padding: 0 14px;
  font-size: 13px;
  line-height: 34px;
  cursor: pointer;
  background: #343434;
}

.add_new_address_button.w-btn:before {
  display: none;
}

.no_address {
  text-align: center;
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
}

.each_step_btn.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.new_address_form {
  border-radius: 10px 10px 0 0;
  background: #fff;
  max-width: 600px;
  width: 100%;
  transition: all 0.5s ease;
}

.submit_address, .submit_coupon {
  cursor: pointer;
}

label.each_address_input_label {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  display: block;
  margin-bottom: 5px;
  margin-right: 20px;
}

.new_address_form_wrapper {
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  bottom: 0;
  opacity: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.5019607843);
  backdrop-filter: blur(5px);
  z-index: 200;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.5s ease;
  align-items: center;
}

.checked_address {
  color: var(--color-content-primary);
  cursor: pointer;
}

.each_address_block.selected_address .checked_address {
  filter: brightness(0.7);
}

.icon_box.check_mark_icon {
  width: 24px;
  height: 24px;
  margin: 0;
}

.each_address_block .checked_address {
  position: absolute;
  top: 10px;
  right: 10px;
}

.each_address_block {
  border-radius: 5px;
  background: #fff;
  padding: 10px 40px 10px 20px;
  margin-bottom: 10px;
  border: 1px solid #d3d3d3;
  position: relative;
}

.address_data_row .icon_box {
  width: 16px;
  height: 16px;
  margin-left: 5px;
  filter: brightness(0.7);
}

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

.address_data {
  flex-grow: 1;
}

.address_data_row {
  display: flex;
  gap: 30px;
  color: #6f6f6f;
  font-size: 14px;
}

.address_block_actions {
  position: absolute;
  bottom: 16px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #717171;
}

.address_data_row.full_address_row {
  font-weight: 600;
  color: #313131;
  font-size: 16px;
}

.address_block_actions i {
  cursor: pointer;
}

.select_shipping_method_wrapper {
  border-radius: 5px;
  border: 1px solid #d3d3d3;
  background: #fff;
  padding: 15px 40px 10px 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.each_shipping_method_row, .each_payment_method_row {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  line-height: 27px;
  padding-bottom: 10px;
  position: relative;
  flex-wrap: wrap;
}

.select_shipping_method {
  color: var(--color-content-primary);
  cursor: pointer;
}

.select_shipping_method {
  position: absolute;
  top: 2px;
  right: -30px;
}

.shipping_row_cost {
  display: flex;
  margin-right: auto;
  gap: 4px;
  font-size: 20px;
  line-height: 1.2;
  align-items: center;
  color: #3c3c3c;
  font-weight: 700;
}

.select_shipping_method_title {
  font-size: 19px;
  margin-bottom: 10px;
}

.each_shipping_method_row:after, .each_payment_method_row:after {
  content: "";
  width: 100%;
  border-bottom: solid 1px #e5e5e5;
  position: absolute;
  bottom: 0;
  left: 0;
}

.each_shipping_method_row:last-child:after, .each_payment_method_row:last-child:after {
  display: none;
}

.payment_method_description {
  font-size: 0.85em;
  width: 100%;
  font-weight: 400;
}

.select_payment_method.selected .unselected_payment {
  display: none;
}

.selected_payment {
  display: none;
}

.select_payment_method.selected .selected_payment {
  display: block;
}

.select_payment_method {
  color: var(--color-content-primary);
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
}

.coupon_input_row {
  display: flex;
  align-items: center;
  gap: 30px;
}

input#coupon_input {
  max-width: 220px;
  margin-left: auto;
  box-shadow: none;
  line-height: 30px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--color-content-primary);
  min-height: 0;
}

.woocommerce-notices-wrapper {
  display: none;
}

.coupon_data {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 13px;
  font-weight: 500;
  color: #454545;
}

.remove_coupon {
  cursor: pointer;
}

.cart_item_row.out_of_stock {
  opacity: 0.7;
  pointer-events: none;
  filter: blur(2px);
}

.shipping_page_header {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.new_address_form_wrapper.active {
  opacity: 1;
  pointer-events: all;
}

.new_address_action_row {
  padding: 15px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  border-top: solid 1px #dbdbdb;
}

.new_address_action_row > .w-btn {
  padding: 0 15px;
  line-height: 35px !important;
  width: 100%;
}

.address_form_wrapper {
  padding: 20px;
  max-height: 340px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.address_form_wrapper input.each_address_input {
  padding: 0 20px;
  min-height: 0;
  height: 41px;
  background: #f4f4f4;
}

.address_form_wrapper::-webkit-scrollbar {
  width: 2px;
}

.address_form_wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.address_form_wrapper::-webkit-scrollbar-thumb {
  background: #888;
}

.address_form_wrapper::-webkit-scrollbar-thumb:hover {
  background: #555;
}

span.select2-dropdown {
  border-radius: 10px;
}

.address_list_wrapper {
  margin-bottom: 40px;
}

.shipping_method_description {
  font-size: 0.85em;
  width: 100%;
  font-weight: 400;
}

.selected_method .select_shipping_method, .selected_method .select_payment_method {
  filter: brightness(0.7);
}

.shipping_method_label {
  font-weight: 600;
}

.select_payment_method {
  position: absolute;
  top: 2px;
  right: -30px;
}

.select_shipping_method_wrapper.coupon_wrapper {
  padding: 20px;
}

@media (max-width: 600px) {
  iframe#goftino_w {
    display: none;
  }
  .callBtnContainer.wa {
    display: none;
  }
  input#coupon_input {
    max-width: 100%;
  }
  .buy_process_content_container {
    flex-direction: column;
    gap: 30px;
  }
  .buy_process_sidebar {
    width: 100%;
    padding: 20px;
  }
  .cart_item_row {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 10px 20px;
  }
  .cart_item_product_data {
    max-width: calc(100% - 120px);
  }
  .cart_item_cart_data {
    margin: auto;
    display: flex;
    gap: 10px;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
  }
  .cart_item_total .product_price_row {
    justify-content: center;
  }
  .sidebar_step_btn {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    background: #fff;
    padding: 17px 10px;
    z-index: 1720;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2078431373);
  }
  .l-canvas.type_wide {
    position: relative;
    z-index: 2;
  }
  .coupon_input_row {
    flex-wrap: wrap;
  }
  .submit_coupon {
    margin-right: auto;
  }
  .cart_item_title {
    margin-top: 6px;
  }
  .cart_item_total {
    margin-bottom: 0;
  }
  .change_product_cart_row_qty {
    width: 29px;
    font-size: 14px;
    height: 29px;
    line-height: 34px;
  }
  .cart_item_quantity_container {
    width: 100px;
  }
  .current_cart_row_qty {
    height: 29px;
    line-height: 29px;
  }
  .buy_process_steps_navbar {
    margin-bottom: 30px;
  }
  .side_bar_totals {
    margin: 0;
  }
  .callBtnContainer.wa {
    bottom: 80px;
  }
  .buy_process_content {
    width: 100%;
  }
}

/*# sourceMappingURL=styles.css.map */
