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

.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);
}

.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 .kasebi_nav_activator .nav_activator_bars {
  display: flex;
  transition: all 0.5s ease;
  gap: 3px;
  flex-direction: column;
}
.kasebi_header_nav .kasebi_nav_activator .nav_activator_bars > * {
  background: currentColor;
  border-radius: 10px;
  transition: width 0.5s ease, transform 0.5s ease;
  height: 3px;
  width: 25px;
}
.kasebi_header_nav .kasebi_nav_activator.active .first_line {
  transform: translateY(5px) rotate(-45deg);
  width: 16px;
}
.kasebi_header_nav .kasebi_nav_activator.active .second_line {
  width: 0;
}
.kasebi_header_nav .kasebi_nav_activator.active .third_line {
  transform: translateY(-5px) rotate(45deg);
  width: 16px;
}
.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 .kasebi_nav_list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.kasebi_header_nav .kasebi_nav_list ul li {
  padding: 0;
  margin: 0;
}
.kasebi_header_nav .kasebi_nav_list .kasebi_nav_back {
  display: none;
}
.kasebi_header_nav .kasebi_nav_list > ul {
  display: flex;
  gap: 30px;
}
.kasebi_header_nav .kasebi_nav_list > ul > li {
  position: relative;
}
.kasebi_header_nav .kasebi_nav_list > ul > li a.kasebi_nav_anchor {
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
}
.kasebi_header_nav .kasebi_nav_list > ul > li a.kasebi_nav_anchor .kasebi_nav_arrow {
  display: none;
  margin-right: auto;
}
@media screen and (max-width: 600px) {
  .kasebi_header_nav .kasebi_nav_list > ul > li a.kasebi_nav_anchor .kasebi_nav_arrow {
    background: var(--color-content-primary);
    border-radius: 4px;
    color: #fff;
  }
}
.kasebi_header_nav .kasebi_nav_list > ul > li a.kasebi_nav_anchor .kasebi_nav_arrow .icon_box {
  margin: 0;
}
.kasebi_header_nav .kasebi_nav_list > ul > li a.kasebi_nav_anchor:has(+ ul) .kasebi_nav_arrow {
  display: block;
  width: 22px;
  height: 22px;
}
.kasebi_header_nav .kasebi_nav_list > ul > li a.kasebi_nav_anchor.level_1 .kasebi_nav_arrow {
  transform: rotate(-90deg);
}
.kasebi_header_nav .kasebi_nav_list > ul > li ul.kasebi_nav_level {
  position: absolute;
  right: 0;
  transition: all 0.5s ease;
  width: 230px;
  margin: 0;
  background: #fff;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(-10px);
  top: 90%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2078431373);
  z-index: 200;
  visibility: hidden;
  line-height: 28px;
}
.kasebi_header_nav .kasebi_nav_list > ul > li ul.kasebi_nav_level a.kasebi_nav_anchor {
  padding: 7px 16px 7px 30px;
}
@media screen and (max-width: 600px) {
  .kasebi_header_nav .kasebi_nav_list > ul > li ul.kasebi_nav_level a.kasebi_nav_anchor {
    padding: 0;
  }
}
.kasebi_header_nav .kasebi_nav_list > ul > li ul.kasebi_nav_level a.kasebi_nav_anchor:before {
  content: "";
  background-color: var(--color-content-link);
  width: 0;
  height: 7px;
  opacity: 0;
  transition: 0.4s ease;
  transform: rotate(45deg);
}
.kasebi_header_nav .kasebi_nav_list > ul > li ul.kasebi_nav_level a.kasebi_nav_anchor:hover:before {
  width: 7px;
  opacity: 1;
}
.kasebi_header_nav .kasebi_nav_list > ul > li:hover > ul {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.kasebi_header_nav .close_nav_list_row {
  display: none;
}
.kasebi_header_nav .close_nav_list_row .close_nav_list {
  margin-bottom: 25px;
  cursor: pointer;
  color: #000;
}
.kasebi_header_nav.mobile_nav .kasebi_nav_activator {
  display: flex;
}
.kasebi_header_nav.mobile_nav .close_nav_list_row {
  display: block;
}
.kasebi_header_nav.mobile_nav .close_nav_list_row .close_nav_list {
  font-size: 24px;
  position: absolute;
  top: 8px;
  left: 9px;
  color: rgb(235, 88, 83);
  line-height: 1;
}
.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: 8px calc(50vw - var(--site-content-width) / 2) 40px 20px;
  background: #fff;
  z-index: 100;
  min-width: min(250px, 100vw);
  color: #181818;
  display: none;
  max-width: 100vw;
}
.kasebi_header_nav.mobile_nav .kasebi_nav_list > * {
  margin-right: 20px;
}
.kasebi_header_nav.mobile_nav .kasebi_nav_list > ul {
  flex-direction: column;
  gap: 0;
}
.kasebi_header_nav.mobile_nav .kasebi_nav_list li {
  color: #333;
  display: block;
  padding: 8px 0;
  position: relative;
  width: 100%;
  line-height: 28px;
}
.kasebi_header_nav.mobile_nav .kasebi_nav_list li a.kasebi_nav_anchor.level_1 .kasebi_nav_arrow {
  transform: rotate(0);
}
.kasebi_header_nav.mobile_nav .kasebi_nav_list li:last-child {
  border: none;
}
.kasebi_header_nav.mobile_nav .kasebi_nav_list li.level_1 .kasebi_nav_level {
  position: fixed;
  border-radius: 0;
  opacity: 0;
  transform: translateX(110%);
  top: 0;
  right: 0;
  height: 100vh;
  overflow: auto;
  padding: 0 20px 80px;
  visibility: visible;
  z-index: 2;
  transition: all 0.5s ease;
  pointer-events: none;
  min-width: min(250px, 100vw);
  color: #181818;
  max-width: 100vw;
  width: 250px;
}
.kasebi_header_nav.mobile_nav .kasebi_nav_list li.level_1 .kasebi_nav_level.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}
.kasebi_header_nav.mobile_nav .kasebi_nav_list li.level_1 .kasebi_nav_level .kasebi_nav_back {
  display: flex;
  margin-bottom: 25px;
  border-bottom: 1px solid #D2D2D2;
  padding-bottom: 10px;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
  padding-top: 30px;
  align-items: center;
  justify-content: space-between;
}
.kasebi_header_nav.mobile_nav .kasebi_nav_list li.level_1 .kasebi_nav_level .kasebi_nav_back .nav_back_icon {
  background: var(--color-content-primary);
  border-radius: 4px;
  color: #fff;
}
.kasebi_header_nav.mobile_nav .kasebi_nav_list li.level_1 .kasebi_nav_level .kasebi_nav_back .nav_back_icon .icon_box {
  margin: 0;
  transform: rotate(180deg);
  position: relative;
}
.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.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;
}

#otp_modal .verify_otp_form_container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
}
#otp_modal .verify_otp_form_container .edit_number_for_otp {
  display: flex;
  align-items: center;
  padding: 7px 20px;
  gap: 10px;
  justify-content: center;
  font-weight: 500;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: -0.025em;
  color: #6F6F6F;
  background: #DEDEDE;
  border-radius: 10px;
  cursor: pointer;
}
#otp_modal .verify_otp_form_container .otp_form {
  display: flex;
  flex-direction: row-reverse;
  gap: 11px;
  justify-content: center;
  align-items: center;
}
#otp_modal .verify_otp_form_container .otp_form input {
  padding: 0;
  line-height: 45px;
  width: 45px;
  direction: ltr;
  text-align: center;
  border: none;
  border-bottom: 1px solid;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
#otp_modal .verify_otp_form_container .otp_form input.filled {
  border-color: var(--color-content-primary);
}
#otp_modal .verify_otp_form_container .otp_timer {
  text-align: center;
  margin-bottom: 25px;
  font-weight: 500;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
}

.qr_code_box {
  margin-bottom: 40px;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 29px; /* 145% */
  letter-spacing: -0.6px;
}
.qr_code_box .qr_code_wrapper {
  width: 165px;
  height: 165px;
  border-radius: 20px;
  overflow: hidden;
  padding: 15px;
  background: #fff;
  margin: auto auto 20px;
}
.qr_code_box .auth_code {
  margin-top: 10px;
  color: #FFBF10;
  font-size: 25px;
  line-height: 20px;
  letter-spacing: 7px;
}

a.login_box_header_link {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 17px;
  font-weight: 700;
}

.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: center;
  justify-content: center;
  gap: 20px;
  line-height: 1.3;
}
.price_box_container .off_percent {
  display: none;
  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.6em;
  font-weight: 500;
}
.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 .off_percent, .price_box_container.on_sale .regular_price {
  display: flex;
}

.sticky_text_banner {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: absolute;
  top: 0;
  gap: 10px;
  font-weight: 700;
  padding: 3px 30px;
}
.sticky_text_banner a.w-btn {
  white-space: nowrap;
}
.sticky_text_banner .close_banner {
  position: absolute;
  left: 10px;
  top: 5px;
  cursor: pointer;
}

.post_comment_section .get_comment_cul_title {
  text-align: center;
  font-weight: 500;
  margin-bottom: 40px;
}
.post_comment_section .comment_form {
  margin-bottom: 30px;
}
.post_comment_section .comment_form .comment_form_extra_wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
}
.post_comment_section .comment_form .comment_field_wrapper {
  flex: 0 0 49%;
  flex-wrap: wrap;
  display: flex;
  margin-bottom: 20px;
}
.post_comment_section .comment_form label {
  margin-bottom: 12px;
  position: relative;
  color: #717171;
  font-size: 16px;
  line-height: 24px;
  padding-right: 3px;
  display: block;
}
.post_comment_section .comment_form .comment_submit_box {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.post_comment_section .no_comment_yet {
  background: rgba(252, 78, 78, 0.2);
  border-radius: 8px;
  color: #fc4e4e;
  min-width: 170px;
  pointer-events: none;
  padding: 8px 20px;
  font-size: 16px;
  line-height: 2;
  text-align: center;
}
.post_comment_section .comments_list_cul .each_comment_row {
  background: #ffffff;
  border: 1px solid #ededed;
  border-radius: 8px;
  position: relative;
  margin-bottom: 15px;
}
.post_comment_section .comments_list_cul .each_comment_row .meta_comment {
  display: flex;
  padding: 15px 24px 15px 17px;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ededed;
  gap: 10px;
  font-size: 16px;
  line-height: 24px;
  color: #757575;
}
.post_comment_section .comments_list_cul .each_comment_row .meta_comment img {
  display: block;
  border-radius: 100px;
}
.post_comment_section .comments_list_cul .each_comment_row .meta_comment .author_comment {
  margin-left: auto;
}
.post_comment_section .comments_list_cul .each_comment_row .meta_comment .time_comment {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 600px) {
  .post_comment_section .comments_list_cul .each_comment_row .meta_comment {
    flex-wrap: wrap;
  }
  .post_comment_section .comments_list_cul .each_comment_row .meta_comment img {
    margin-right: auto;
  }
  .post_comment_section .comments_list_cul .each_comment_row .meta_comment .time_comment {
    width: 100%;
  }
}
.post_comment_section .comments_list_cul .each_comment_row .comment_content_block {
  padding: 16px 24px 40px;
  font-size: 16px;
  line-height: 2.3;
  position: relative;
}
.post_comment_section .comments_list_cul .each_comment_row .comment_content_block .reply_to_btn {
  color: #333333;
  display: flex;
  align-items: center;
  font-size: 14px;
  position: absolute;
  left: 28px;
  bottom: 10px;
  gap: 5px;
  cursor: pointer;
}
.post_comment_section .comments_list_cul .each_comment_row .comment_content_block .reply_to_btn i {
  transform: rotate(90deg);
}
.post_comment_section .comments_list_cul .each_comment_row .isReply {
  position: absolute;
  font-size: 30px;
  line-height: 1;
  right: -65px;
  top: 46px;
}
@media screen and (max-width: 600px) {
  .post_comment_section .comments_list_cul .each_comment_row .isReply {
    right: 10px;
    top: 10px;
  }
}
.post_comment_section .comments_list_cul .each_comment_row.admin_comment {
  border-color: #fc7a4e;
}
.post_comment_section .comments_list_cul .each_comment_row.admin_comment .meta_comment {
  border-color: #fc7a4e;
  color: #fc7a4e;
}
.post_comment_section .comments_list_cul .comments_children {
  padding-right: 110px;
}
@media screen and (max-width: 600px) {
  .post_comment_section .comments_list_cul .comments_children {
    padding-right: 14px;
  }
}

.timer_section {
  display: flex;
  justify-content: center;
  position: relative;
  align-items: flex-start;
}

.time_cul {
  text-align: center;
  margin: 0 4px;
}

.time_cul > div {
  display: flex;
  gap: 3px;
}

.time_cul span {
  background: var(--timer-bg);
  min-width: 1.1em;
  display: inline-block;
  line-height: inherit;
  border-radius: 30px;
  color: var(--timer-color);
  text-align: center;
  max-height: 45px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2078431373);
  font-weight: 700;
  height: 2em;
}

.grid_timer.timer_expired .time_cul span {
  background: rgba(252, 186, 61, 0.3);
}

.time_cul span.first {
  margin-left: 1px;
}

div.cul_title {
  font-size: 0.6em;
  margin-top: 3px;
  line-height: 1.5;
  text-align: center;
  display: block;
}

.timer_separator {
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1.9em;
}

.hide_title_timer .cul_title {
  display: none;
}

.toastify {
  padding: 12px 20px;
  color: #000000;
  display: inline-block;
  box-shadow: 0 3px 6px -1px rgba(0, 0, 0, 0.12), 0 10px 36px -4px rgba(77, 96, 232, 0.3);
  background: var(--color-content-primary-grad);
  position: fixed;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  max-width: calc(70% - 20px);
  z-index: 2147483647;
}

.toastify.on {
  opacity: 1;
}

.toast-close {
  background: 0 0;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: 1em;
  opacity: 0.4;
  padding: 0 5px;
}

.toastify-right {
  right: 15px;
}

.toastify-left {
  left: 15px;
}

.toastify-top {
  top: -150px;
}

.toastify-bottom {
  bottom: -150px;
}

.toastify-rounded {
  border-radius: 25px;
}

.toastify-avatar {
  width: 1.5em;
  height: 1.5em;
  margin: -7px 5px;
  border-radius: 2px;
}

.toastify-center {
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  width: fit-content;
  width: -moz-fit-content;
}

@media only screen and (max-width: 360px) {
  .toastify-left, .toastify-right {
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    width: fit-content;
    width: -moz-fit-content;
  }
  body {
    background: #fff !important;
  }
}
.mini-cart_content {
  font-family: nooshikaybakh, nooshikaybakhen, sans-serif;
}

.mini_cart_product_data_cul {
  flex-grow: 1;
}

span.w-cart-quantity {
  position: static;
  font-size: 19px;
  padding: 3px 0 0;
  line-height: 1.8;
  text-align: center;
}

.mini-cart-modal {
  position: fixed;
  width: 100vw;
  left: 0;
  display: flex;
  flex-direction: row-reverse;
  background: rgba(0, 0, 0, 0.2784313725);
  z-index: 250;
  top: 0;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s ease;
  /* height: 100vh; */
}

.active.mini-cart-modal {
  opacity: 1;
  pointer-events: all;
}

.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);
}

.mini-cart-content {
  background: #fff;
  box-shadow: -4px 0 25px 0 rgba(0, 0, 0, 0.0509803922);
  transition: all 0.5s ease;
  /* transform: translateX(-100%); */
  display: flex;
  width: 100vw;
  max-width: 600px;
}

.active .mini-cart-content {
  /* transform: translateX(0); */
}

.kasebi-cart-link.empty span.w-cart-quantity {
  display: none;
}

.mini-cart_content {
  /* display: flex; */
  /* flex-direction: column; */
  /* height: 100%; */
}

.mini_cart_content_footer {
  margin-top: auto;
  padding: 35px 40px;
  box-shadow: 0 -10px 30px 0 rgba(0, 0, 0, 0.1294117647);
  background: #fff;
  display: flex;
  justify-content: center;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 600px;
}

.widget.woocommerce.widget_shopping_cart {
  /* height: 100%; */
  display: flex;
  width: 100%;
}

.widget_shopping_cart_content {
  /* height: 100%; */
  width: 100%;
}

.mini_cart_content_header {
  display: flex;
  padding: 20px 30px;
  justify-content: space-between;
  min-width: 330px;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 5;
  width: 100%;
  max-width: 600px;
}

.mini-cart_content_header_title {
  font-size: 16px;
  letter-spacing: -0.8px;
  display: flex;
  line-height: 25px;
  gap: 10px;
}

.mini_cart_content_header i {
  cursor: pointer;
  font-size: 23px;
  display: block;
}

.mini_cart_content_body {
  min-height: 100vh;
  padding: 70px 40px 160px;
}

.empty_mini_cart_text, .mini-cart_empty_icon {
  text-align: center;
}

.mini-cart-footer_btn {
  display: flex;
  gap: 20px;
  cursor: pointer;
  flex-grow: 1;
  align-items: center;
  justify-content: space-between;
}

.mini_cart_footer_total.price_row {
  width: 100%;
  display: flex;
  align-items: center;
  color: #353535;
}

.mini_cart_btn_row {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 16px;
}

span.price_row_separator {
  flex-grow: 1;
  border-bottom: 2px dashed #bfbfbf;
  margin: 0 15px;
}

span.price_row_value {
  font-size: 22px;
  font-weight: 500;
  line-height: 15px;
  letter-spacing: -0.88px;
  margin-left: 10px;
}

.mini_cart_footer_total .icon_box {
  margin: 0;
  width: 26px;
}

span.price_row_label {
  color: #717171;
  font-size: 15px;
}

.mini_cart_product_list {
  height: 100%;
  max-height: 100%;
  overflow: auto;
}

.simplebar-track.simplebar-vertical:before {
  border-left: 2px solid #dadada;
  content: "";
  height: 100%;
  position: absolute;
  left: 5px;
}

.simplebar-scrollbar:before {
  width: 6px;
  background: #404040;
}

.each_mini_cart_product_block {
  display: flex;
  flex-direction: row-reverse;
  border-radius: 10px;
  padding: 15px;
  justify-content: flex-start;
  align-items: center;
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1490196078);
  gap: 20px;
  background: #fff;
  margin: 10px 25px;
}

.mini_cart_product_image {
  min-width: 100px;
  height: 100px;
  border-radius: 15px;
  overflow: hidden;
  width: 100px;
}

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

.change_product_cart_qty {
  width: 40px;
  line-height: 51px;
  border-radius: 8px;
  background: #e4e3e1;
  text-align: center;
  height: 46px;
  cursor: pointer;
}

.current_cart_qty {
  flex-grow: 1;
  text-align: center;
  border-radius: 8px;
  line-height: 46px;
  border: 1px solid #e4e3e1;
  user-select: none;
  color: #454545;
  background: #fff;
  min-width: 40px;
}

.mini_cart_product_title {
  font-size: inherit;
  line-height: 24px;
  letter-spacing: -0.6px;
  text-align: left;
  margin-bottom: 15px;
  font-weight: 700;
}

span.mini_cart_product_attribute_summary {
  display: block;
  font-size: 13px;
  color: #828282;
  font-weight: 300;
}

.mini_cart_product_price span.price_row_value {
  font-size: 18px;
  line-height: 15px;
  color: #4a4a4a;
}

.mini_cart_product_price {
  display: flex;
  align-items: center;
  margin-top: 15px;
  justify-content: flex-end;
}

.mini_cart_product_quantity .current_cart_qty {
  line-height: 30px;
}

.mini_cart_product_quantity .change_product_cart_qty {
  height: 30px;
  line-height: 36px;
  color: #fff;
  background: #a1a1a1;
}

.mini_cart_product_quantity {
  opacity: 0.5;
}

.each_mini_cart_product_block:first-child {
  margin-top: 20px;
}

.each_mini_cart_product_block:last-child {
  margin-bottom: 20px;
}

.mini-cart_empty.mini_cart_content_body {
  padding: 0;
}

@media (max-width: 600px) {
  .mini-cart-content {
    border-radius: 0;
    width: 100vw;
  }
  .mini_cart_content_body {
    padding: 50px 15px 180px;
  }
  .mini_cart_content_footer {
    padding: 25px 20px;
  }
  .mini-cart-footer_btn {
    gap: 10px;
  }
  .each_mini_cart_product_block {
    margin-left: 20px;
  }
  .mini_cart_content_header {
    padding: 10px 20px;
  }
}
main#page-content {
  margin-top: var(--banner-height);
}
@media screen and (max-width: 1099px) and (min-width: 600px) {
  main#page-content {
    margin-top: var(--banner-height-tablet);
  }
}
@media screen and (max-width: 600px) {
  main#page-content {
    margin-top: var(--banner-height-mobile);
  }
}

.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: 600px) {
  .sticky_header_banner {
    height: var(--banner-height-tablet);
  }
}
@media screen and (max-width: 600px) {
  .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: 600px) {
  .sticky_header_banner > a .each_sticky_banner.tablet_banner {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .sticky_header_banner > a .each_sticky_banner.mobile_banner {
    display: block;
  }
}

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

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