.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);
  padding: 20px;
  visibility: hidden;
}
.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: #222327;
  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: #fff;
}
.modal_wrapper button.close_modal_btn {
  position: absolute;
  top: 17px;
  left: 20px;
  background: transparent;
  padding: 0;
  width: 25px;
  line-height: 25px;
}
.modal_wrapper.active {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}
.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*=top] {
  top: 0;
}

#toast-container[class*=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.afl .nav_activator_bars {
  align-items: flex-end;
}
.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 {
  transition: all 0.5s ease;
}
.kasebi_header_nav .kasebi_nav_activator .nav_activator_bars > * {
  background: currentColor;
  border-radius: 10px;
  transition: width 0.5s ease, transform 0.5s ease;
  margin-bottom: 3px;
  height: 2px;
}
.kasebi_header_nav .kasebi_nav_activator .nav_activator_bars .first_line {
  width: 18px;
}
.kasebi_header_nav .kasebi_nav_activator .nav_activator_bars .second_line {
  width: 16px;
}
.kasebi_header_nav .kasebi_nav_activator .nav_activator_bars .third_line {
  width: 14px;
}
.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 .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;
}
.kasebi_header_nav .kasebi_nav_list > ul > *:not(:last-child) {
  margin-left: 30px !important;
}
.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;
  position: relative;
}
.kasebi_header_nav .kasebi_nav_list > ul > li a.kasebi_nav_anchor > *:not(:last-child) {
  margin-left: 5px !important;
}
.kasebi_header_nav .kasebi_nav_list > ul > li a.kasebi_nav_anchor .kasebi_nav_arrow {
  display: none;
  margin-right: auto;
}
.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: 20px;
  height: 20px;
}
.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;
  padding: 10px 14px;
  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 .kasebi_nav_arrow {
  display: block;
}
.kasebi_header_nav .kasebi_nav_list > ul > li:hover > ul {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.kasebi_header_nav .close_nav_list {
  margin-bottom: 25px;
  cursor: pointer;
  color: #000;
  display: none;
}
.kasebi_header_nav.mobile_nav .kasebi_nav_activator {
  display: flex;
}
.kasebi_header_nav.mobile_nav .close_nav_list {
  display: block;
}
.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: 50px calc(50vw - var(--site-content-width) / 2) 40px 35px;
  border-radius: 25px 0 0 25px;
  background: #fff;
  z-index: 100;
  min-width: min(365px, 100vw);
  color: #181818;
  display: none;
  max-width: 100vw;
}
.kasebi_header_nav.mobile_nav .kasebi_nav_list > * {
  margin-right: 35px;
}
.kasebi_header_nav.mobile_nav .kasebi_nav_list > ul {
  flex-direction: column;
}
.kasebi_header_nav.mobile_nav .kasebi_nav_list li {
  border-bottom: 1px solid #E2E2E2;
  padding: 15px 10px 15px 0;
  line-height: 25px;
  width: 100%;
}
.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;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  padding: 0 25px 80px;
  visibility: visible;
  z-index: 2;
  transition: all 0.5s ease;
  pointer-events: none;
}
.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;
}
.kasebi_header_nav.mobile_nav .kasebi_nav_list li.level_1 .kasebi_nav_level .kasebi_nav_back .icon_box {
  margin: 0;
  transform: rotate(180deg);
}
.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 > *:not(:last-child) {
  margin-left: 5px !important;
}
.w-iconbox a {
  display: flex;
}
.w-iconbox a > *:not(:last-child) {
  margin-left: 5px !important;
}
.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;
}
.w-btn.btn_has_icon > *:not(:last-child) {
  margin-left: 5px !important;
}

.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;
  align-items: center;
}
.post_custom_field.has_kasebi_img > a {
  display: flex;
  align-items: center;
}
.post_custom_field.has_kasebi_img > a > *:not(:last-child) {
  margin-left: 5px !important;
}
.post_custom_field.has_kasebi_img > *:not(:last-child) {
  margin-left: 5px !important;
}

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

.otp_modal_btn {
  display: flex;
  align-items: center;
}
.otp_modal_btn > *:not(:last-child) {
  margin-left: 5px !important;
}
.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;
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 15px;
}
.login_box_wrapper .login_inputs_wrapper > *:not(:last-child) {
  margin-bottom: 20px !important;
}
.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;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.login_box_btn_wrapper > * {
  margin: 5px !important;
}
.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;
  align-items: center;
  justify-content: center;
  width: 100%;
}
#otp_modal .verify_otp_form_container > *:not(:last-child) {
  margin-bottom: 10px !important;
}
#otp_modal .verify_otp_form_container .edit_number_for_otp {
  display: flex;
  align-items: center;
  padding: 7px 20px;
  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 .edit_number_for_otp > *:not(:last-child) {
  margin-left: 10px !important;
}
#otp_modal .verify_otp_form_container .otp_form {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
}
#otp_modal .verify_otp_form_container .otp_form > *:not(:last-child) {
  margin-right: 10px !important;
}
#otp_modal .verify_otp_form_container .otp_form input {
  padding: 0;
  line-height: 45px;
  width: 45px;
  direction: ltr;
  text-align: center;
  border: none;
}
#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;
  margin-bottom: 15px;
  font-size: 17px;
  font-weight: 700;
}
a.login_box_header_link > *:not(:last-child) {
  margin-left: 10px !important;
}

.form_section {
  display: flex;
  flex-direction: column;
}
.form_section > *:not(:last-child) {
  margin-left: 10px !important;
}
.form_section .inputs_container {
  display: flex;
  flex-direction: column;
}
.form_section .inputs_container > *:not(:last-child) {
  margin-bottom: 6px !important;
}

.price_box_container {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.price_box_container > *:not(:last-child) {
  margin-left: 15px !important;
}
.price_box_container .price_row {
  display: flex;
  font-size: inherit;
  letter-spacing: -0.04em;
  align-items: center;
}
.price_box_container .price_row > *:not(:last-child) {
  margin-left: 5px !important;
}
.price_box_container .price_row.final_price {
  font-weight: 700;
}
.price_box_container .price_row.regular_price {
  display: none;
}
.price_box_container .on_sale .price_row.regular_price {
  display: flex;
  text-decoration: line-through;
  opacity: 0.5;
  font-size: 0.8em;
}

.sticky_text_banner {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: absolute;
  top: 0;
  font-weight: 700;
  padding: 3px 30px;
}
.sticky_text_banner > *:not(:last-child) {
  margin-left: 10px !important;
}
.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 .comment_form {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}
.post_comment_section .comment_form > *:not(:last-child) {
  margin-left: 20px !important;
}
@media screen and (max-width: 600px) {
  .post_comment_section .comment_form > .icon_box {
    display: none;
  }
}
.post_comment_section .comment_form .comment_inputs_wrapper {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.post_comment_section .comment_form .comment_inputs_wrapper textarea {
  height: auto;
}
.post_comment_section .comment_form .comment_inputs_wrapper > *:not(:last-child) {
  margin-left: 10px !important;
}
.post_comment_section .comment_form .comment_inputs_wrapper label {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 300;
  line-height: 20px;
  letter-spacing: -0.6px;
  margin-top: 10px;
}
.post_comment_section .comment_form .comment_inputs_wrapper label > *:not(:last-child) {
  margin-left: 8px !important;
}
.post_comment_section .comment_form .comment_inputs_wrapper label input {
  margin: 0;
  position: relative;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid #FFF;
  box-shadow: none !important;
}
.post_comment_section .comment_form .comment_inputs_wrapper label input:checked:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #FFBF10;
  border-radius: 2px;
}
.post_comment_section .comment_form .submit_comment_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  background: #4F4F4F;
  padding: 5px 0 5px 5px;
  width: 45px;
  height: 45px;
  cursor: pointer;
}
.post_comment_section .comments_list_cul .each_comment_row {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0;
  align-items: flex-start;
  border-bottom: 1px solid #39393A;
}
.post_comment_section .comments_list_cul .each_comment_row > *:not(:last-child) {
  margin-left: 20px !important;
}
@media screen and (max-width: 600px) {
  .post_comment_section .comments_list_cul .each_comment_row > *:not(:last-child) {
    margin-left: 0 !important;
  }
}
.post_comment_section .comments_list_cul .each_comment_row .comment_user_avatar {
  min-width: 40px;
  max-width: 40px;
}
.post_comment_section .comments_list_cul .each_comment_row .comment_user_avatar img {
  border-radius: 40px;
  display: block;
}
.post_comment_section .comments_list_cul .each_comment_row:last-child {
  border-bottom: none;
}
.post_comment_section .comments_list_cul .each_comment_row.child_comment {
  width: calc(100% - 50px);
  margin-right: auto;
  border-top: 1px solid #39393A;
}
.post_comment_section .comments_list_cul .each_comment_row .comment_content_box {
  flex-grow: 1;
}
@media screen and (max-width: 600px) {
  .post_comment_section .comments_list_cul .each_comment_row .comment_content_box {
    width: 100%;
  }
}
.post_comment_section .comments_list_cul .each_comment_row .comment_content_box .comment_author_name {
  display: flex;
  padding: 10px 0;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.17px;
  opacity: 0.3;
}
.post_comment_section .comments_list_cul .each_comment_row .comment_content_box .comment_author_name > *:not(:last-child) {
  margin-left: 10px !important;
}
@media screen and (max-width: 600px) {
  .post_comment_section .comments_list_cul .each_comment_row .comment_content_box .comment_author_name {
    margin-right: 60px;
    margin-top: -40px;
    margin-bottom: 10px;
  }
}
.post_comment_section .comments_list_cul .each_comment_row .comment_content_box .comment_content.spoiler_comment {
  filter: blur(6px);
}
.post_comment_section .comments_list_cul .each_comment_row .comment_content_box .comment_content.spoiler_comment.show_spoiler {
  filter: blur(0);
}
.post_comment_section .comments_list_cul .each_comment_row .comment_content_box .comment_like_dislikes {
  display: flex;
  color: #FFBF10;
  font-size: 23px;
  font-weight: 400;
  letter-spacing: -0.69px;
  align-items: center;
  padding: 10px 0;
  line-height: 24px;
}
.post_comment_section .comments_list_cul .each_comment_row .comment_content_box .comment_like_dislikes > *:not(:last-child) {
  margin-left: 5px !important;
}
.post_comment_section .comments_list_cul .each_comment_row .comment_content_box .comment_like_dislikes * {
  opacity: 0.5;
}
.post_comment_section .comments_list_cul .each_comment_row .comment_content_box .comment_like_dislikes .icon_box {
  cursor: pointer;
}
.post_comment_section .comments_list_cul .each_comment_row .comment_content_box .comment_like_dislikes span {
  margin-left: 35px;
  min-width: 30px;
}
.post_comment_section .comments_list_cul .each_comment_row .comment_content_box .comment_like_dislikes.disliked .dislikes_count, .post_comment_section .comments_list_cul .each_comment_row .comment_content_box .comment_like_dislikes.disliked .dislike_comment {
  opacity: 1;
}
.post_comment_section .comments_list_cul .each_comment_row .comment_content_box .comment_like_dislikes.liked .likes_count, .post_comment_section .comments_list_cul .each_comment_row .comment_content_box .comment_like_dislikes.liked .like_comment {
  opacity: 1;
}

.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;
}
.time_cul > div > *:not(:last-child) {
  margin-left: 3px !important;
}

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

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

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

div.cul_title {
  line-height: 25px;
  text-align: center;
  display: block;
  font-weight: 300;
}

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

.hide_title_timer .cul_title {
  display: none;
}

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