/* zendentistry core styles (migrated from legacy WP css) */
/* source: css/main.css */
body {
  color: #fff;
  font-size: 16px;
  background: #08070f url(/assets/images/zendentistry/bg_site.png) 0 0 no-repeat;
  /* height: 100%; */
  font-family: 'Rubik';
  overflow-x: hidden;
	transition: background-image 0.5s ease-in-out;
}

body.zenden-theme.webinars-shell {
  background:
    radial-gradient(circle at top left, rgba(50, 101, 255, 0.18), transparent 34%),
    radial-gradient(circle at top right, rgba(162, 70, 255, 0.16), transparent 32%),
    #070913 fixed;
}

body.zenden-theme .zwebinars-page,
body.zenden-theme .zwebinar-access-page {
  color: #f3f5ff;
  padding: 48px 0 96px;
}

body.zenden-theme .zwebinars-hero,
body.zenden-theme .zwebinars-state,
body.zenden-theme .zwebinar-access-summary,
body.zenden-theme .zwebinar-access-block {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 13, 27, 0.78);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

body.zenden-theme .zwebinars-hero {
  border-radius: 32px;
  padding: 42px 44px;
  margin-bottom: 28px;
}

body.zenden-theme .zwebinars-hero__eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(203, 209, 255, 0.72);
  margin-bottom: 14px;
}

body.zenden-theme .zwebinars-hero__title,
body.zenden-theme .zwebinar-access-hero__title {
  margin: 0;
  color: #ffffff;
  font-size: 54px;
  line-height: 1;
  font-weight: 300;
}

body.zenden-theme .zwebinars-hero__text {
  margin: 18px 0 0;
  max-width: 720px;
  color: rgba(228, 233, 255, 0.76);
  font-size: 18px;
  line-height: 1.6;
}

body.zenden-theme .zwebinars-state {
  border-radius: 28px;
  padding: 36px 38px;
}

body.zenden-theme .zwebinars-state--single {
  max-width: 920px;
  margin: 0 auto;
}

body.zenden-theme .zwebinars-state--compact {
  padding: 24px 28px;
}

body.zenden-theme .zwebinars-state h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 400;
}

body.zenden-theme .zwebinars-state p {
  margin: 0;
  color: rgba(228, 233, 255, 0.72);
  font-size: 17px;
  line-height: 1.7;
}

body.zenden-theme .zwebinars-state__actions,
body.zenden-theme .zwebinar-access-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

body.zenden-theme .zwebinars-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
  overflow: hidden;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
  isolation: isolate;
}

body.zenden-theme .zwebinars-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

body.zenden-theme .zwebinars-btn--primary {
  border-color: rgba(177, 152, 255, 0.45);
  background: rgba(255, 255, 255, 0.03);
  color: #090b14;
}

body.zenden-theme .zwebinars-btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, #7d5cff, #5ec9ff);
  transition: opacity 0.25s ease, transform 0.25s ease, filter 0.25s ease;
}

body.zenden-theme .zwebinars-btn--primary:hover::before {
  opacity: 0.92;
  transform: scale(1.02);
  filter: saturate(1.08) brightness(1.03);
}

body.zenden-theme .zwebinars-catalog {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 24px;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

body.zenden-theme .zwebinars-catalog__item {
  display: block;
  width: 100%;
  margin: 0;
  max-width: 380px;
  list-style: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

body.zenden-theme .zwebinars-catalog__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  transition: box-shadow 0.35s ease;
}

body.zenden-theme .zwebinars-catalog__item:hover {
  transform: translateY(-3px);
  box-shadow: 0px 20px 60px 0px rgba(170, 128, 255, 0.45);
}

body.zenden-theme .zwebinars-catalog__item .img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 560 / 360;
}

body.zenden-theme .zwebinars-catalog__item .img img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 560 / 360;
  object-fit: cover;
  transition: transform 0.35s ease;
}

body.zenden-theme .zwebinars-catalog__link:hover .img img {
  transform: scale(1.1);
}

body.zenden-theme .zwebinars-catalog__kind {
  position: absolute;
  left: 16px;
  top: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 6px;
  background: #cf5f74;
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  z-index: 2;
}

body.zenden-theme .zwebinars-catalog__caption {
  display: flex;
  flex-direction: column;
  min-height: 200px;
  padding: 28px 18px 20px;
  background: #221f2b;
}

body.zenden-theme .zwebinars-catalog__title {
  margin: 0;
  color: #f7f4fa;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 300;
}

body.zenden-theme .zwebinars-catalog__meta-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: auto;
  padding-top: 42px;
}

body.zenden-theme .zwebinars-catalog__author,
body.zenden-theme .zwebinars-catalog__lang {
  color: rgba(234, 230, 240, 0.68);
  font-size: 14px;
  line-height: 1.45;
  min-width: 0;
}

body.zenden-theme .zwebinars-catalog__lang {
  color: #f2eef7;
  text-align: right;
  white-space: normal;
  overflow-wrap: anywhere;
  margin-left: auto;
}

body.zenden-theme .zwebinars-catalog__status-row,
body.zenden-theme .zwebinar-access-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

body.zenden-theme .zwebinars-catalog__status-row {
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

body.zenden-theme .zwebinars-catalog__status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(117, 126, 150, 0.35);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.zenden-theme .zwebinars-catalog__status.is-active {
  background: rgba(61, 184, 115, 0.92);
}

body.zenden-theme .zwebinars-catalog__status.is-unpaid {
  background: rgba(241, 139, 27, 0.94);
}

body.zenden-theme .zwebinars-catalog__status.is-closed,
body.zenden-theme .zwebinars-catalog__status.is-expired {
  background: rgba(160, 167, 192, 0.92);
}

body.zenden-theme .zwebinars-catalog__expires {
  color: rgba(234, 230, 240, 0.64);
  font-size: 13px;
  text-align: right;
}

body.zenden-theme .zwebinar-access-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: rgba(228, 233, 255, 0.72);
  font-size: 15px;
}

body.zenden-theme .zwebinars-pagination {
  margin-top: 26px;
}

body.zenden-theme .zwebinar-access-hero {
  position: relative;
  min-height: 360px;
  background:
    linear-gradient(135deg, rgba(7, 10, 24, 0.82), rgba(14, 8, 28, 0.84)),
    #0b1022;
  background-position: center;
  background-size: cover;
  border-radius: 32px;
  overflow: hidden;
  margin-bottom: 28px;
}

body.zenden-theme .zwebinar-access-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 360px;
  padding: 44px 44px 42px;
}

body.zenden-theme .zwebinar-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(244, 246, 255, 0.76);
  font-size: 14px;
  text-decoration: none;
}

body.zenden-theme .zwebinar-access-layout {
  display: grid;
  gap: 24px;
}

body.zenden-theme .zwebinar-access-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  border-radius: 28px;
  padding: 28px;
}

body.zenden-theme .zwebinar-access-summary__card {
  min-width: 0;
}

body.zenden-theme .zwebinar-access-summary__label {
  color: rgba(198, 204, 231, 0.58);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

body.zenden-theme .zwebinar-access-summary__value {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.5;
}

body.zenden-theme .zwebinar-access-summary__value.is-active {
  color: #78e59e;
}

body.zenden-theme .zwebinar-access-code {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

body.zenden-theme .zwebinar-copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
}

body.zenden-theme .zwebinar-access-block {
  border-radius: 28px;
  padding: 32px;
}

body.zenden-theme .zwebinar-access-block--summary {
  color: rgba(228, 233, 255, 0.8);
}

body.zenden-theme .zwebinar-access-block__head h2 {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 300;
}

body.zenden-theme .zwebinar-richtext,
body.zenden-theme .zwebinar-access-block--summary {
  color: rgba(228, 233, 255, 0.82);
  font-size: 17px;
  line-height: 1.8;
}

body.zenden-theme .zwebinar-richtext > *:first-child {
  margin-top: 0;
}

body.zenden-theme .zwebinar-richtext > *:last-child {
  margin-bottom: 0;
}

body.zenden-theme .zwebinar-richtext iframe,
body.zenden-theme .zwebinar-richtext video {
  width: 100%;
  max-width: 100%;
  border: 0;
  border-radius: 18px;
}

body.zenden-theme .zwebinar-player,
body.zenden-theme .zwebinar-player > div,
body.zenden-theme .zwebinar-player iframe {
  width: 100%;
  max-width: 100%;
}

body.zenden-theme .zwebinar-player {
  display: flex;
  justify-content: center;
}

body.zenden-theme .zwebinar-player > div {
  margin: 0 auto;
}

body.zenden-theme .zwebinar-player > iframe {
  min-height: 620px;
}

body.zenden-theme .zwebinar-player iframe {
  border: 0;
  border-radius: 24px;
  background: #05070f;
}

body.zenden-theme .zwebinar-certificate {
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

body.zenden-theme .zwebinar-certificate__preview {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top left, rgba(117, 92, 255, 0.18), transparent 46%),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

body.zenden-theme .zwebinar-certificate__preview::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 24px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

body.zenden-theme .zwebinar-certificate__preview img {
  display: block;
  width: 100%;
  height: auto;
}

body.zenden-theme .zwebinar-certificate__meta {
  display: grid;
  gap: 16px;
  align-content: start;
  min-width: 0;
  padding: 26px 28px;
  box-sizing: border-box;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

body.zenden-theme .zwebinar-certificate__eyebrow {
  color: rgba(183, 191, 232, 0.74);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.zenden-theme .zwebinar-certificate__title {
  margin: 0;
  color: #ffffff;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 300;
}

body.zenden-theme .zwebinar-certificate__meta p {
  margin: 0;
  color: rgba(228, 233, 255, 0.76);
  font-size: 16px;
  line-height: 1.7;
}

body.zenden-theme .zwebinar-certificate__note {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(113, 194, 255, 0.16);
  background: rgba(79, 158, 255, 0.08);
  color: rgba(232, 239, 255, 0.82);
  font-size: 14px;
  line-height: 1.6;
}

body.zenden-theme .zwebinar-certificate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

body.zenden-theme .zwebinar-guide-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

body.zenden-theme .zwebinar-guide-head__title {
  color: #ffffff;
  font-size: 54px;
  line-height: 1;
  font-weight: 300;
}

body.zenden-theme .zwebinar-guide-head__back {
  display: inline-flex;
  align-items: center;
  color: rgba(228, 233, 255, 0.74);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
  z-index: 99;
}

body.zenden-theme .zwebinar-guide-head__back:hover,
body.zenden-theme .zwebinar-guide-inline-link:hover {
  color: #ffffff;
}

body.zenden-theme .zwebinar-guide-head__back::after {
  content: "";
  position: absolute;
  left: -30px;
  top: -35px;
  width: 265px;
  height: 92px;
  z-index: -1;
  background: radial-gradient(113% 84%, rgb(173 159 214 / 33%), rgb(8 7 16 / 0%), rgb(9 8 18 / 0%));
}

body.zenden-theme .zwebinar-guide-head__back.is-fixed {
  position: fixed;
  top: 40px;
  right: var(--zwebinar-guide-back-right, 24px);
}

body.zenden-theme .zwebinar-guide-block {
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 34px 38px;
  background: rgba(9, 13, 27, 0.78);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  color: rgba(228, 233, 255, 0.82);
  font-size: 17px;
  line-height: 1.8;
}

body.zenden-theme .zwebinar-guide-block h2 {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: 31px;
  line-height: 1.18;
  font-weight: 300;
}

body.zenden-theme .zwebinar-guide-block p {
  margin: 0 0 18px;
}

body.zenden-theme .zwebinar-guide-block p:last-child {
  margin-bottom: 0;
}

body.zenden-theme .zwebinar-guide-warning {
  color: #d7a7b6;
}

body.zenden-theme .zwebinar-guide-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: guide-steps;
}

body.zenden-theme .zwebinar-guide-steps li {
  position: relative;
  margin-bottom: 16px;
  padding-left: 44px;
}

body.zenden-theme .zwebinar-guide-steps li::before {
  counter-increment: guide-steps;
  content: counter(guide-steps);
  position: absolute;
  top: 0;
  left: 0;
  color: #bfa6cf;
  font-weight: 700;
}

body.zenden-theme .zwebinar-guide-steps[start="3"] {
  counter-reset: guide-steps 2;
}

body.zenden-theme .zwebinar-guide-download {
  margin-top: 8px;
}

body.zenden-theme .zwebinar-guide-download a,
body.zenden-theme .zwebinar-guide-inline-link {
  color: #d8b6ff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

body.zenden-theme .zwebinar-guide-inline-link.is-disabled {
  opacity: 0.55;
  cursor: default;
}

body.zenden-theme .zwebinar-guide-image {
  margin: 24px 0 24px 44px;
  max-width: 596px;
}

body.zenden-theme .zwebinar-guide-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

body.zenden-theme .zwebinar-guide-note {
  margin-top: 10px;
  color: rgba(228, 233, 255, 0.72);
  font-size: 15px;
}

body.zenden-theme .zwebinar-guide-support-line {
  margin-top: 24px;
}

body.zenden-theme .zwebinar-faq-content a {
  color: #d8b6ff;
}

body.zenden-theme .zwebinar-faq-gap {
  margin-top: 28px !important;
}

body.zenden-theme.zwebinar-support-modal-open {
  overflow: hidden;
}

body.zenden-theme .zwebinar-support-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 2147483000;
}

body.zenden-theme .zwebinar-support-modal.is-open {
  display: flex;
}

body.zenden-theme .zwebinar-support-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 18, 0.82);
  backdrop-filter: blur(10px);
}

body.zenden-theme .zwebinar-support-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  padding: 32px;
  border: 1px solid rgba(146, 162, 255, 0.18);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(10, 15, 37, 0.98), rgba(9, 12, 28, 0.98));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

body.zenden-theme .zwebinar-support-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

body.zenden-theme .zwebinar-support-modal__head h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 32px;
  line-height: 1.12;
  font-weight: 300;
}

body.zenden-theme .zwebinar-support-modal__head p {
  margin: 0 0 24px;
  color: rgba(228, 233, 255, 0.74);
  font-size: 16px;
  line-height: 1.6;
}

body.zenden-theme .zwebinar-support-form {
  display: grid;
  gap: 16px;
}

body.zenden-theme .zwebinar-support-form__textarea {
  width: 100%;
  min-height: 220px;
  padding: 18px 20px;
  border: 1px solid rgba(151, 166, 255, 0.18);
  border-radius: 22px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font: inherit;
  resize: vertical;
}

body.zenden-theme .zwebinar-support-form__textarea::placeholder {
  color: rgba(228, 233, 255, 0.42);
}

body.zenden-theme .zwebinar-support-form__error {
  color: #ff8f98;
  font-size: 14px;
}

body.zenden-theme .zwebinar-support-form__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

@media (max-width: 1100px) {
  body.zenden-theme .zwebinars-catalog {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.zenden-theme .zwebinars-catalog__item {
    max-width: none;
  }

  body.zenden-theme .zwebinar-access-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.zenden-theme .zwebinar-guide-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 1024px) {
  body.zenden-theme .zwebinars-catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  body.zenden-theme .zwebinars-page,
  body.zenden-theme .zwebinar-access-page {
    padding: 28px 0 72px;
  }

  body.zenden-theme .zwebinars-hero,
  body.zenden-theme .zwebinars-state,
  body.zenden-theme .zwebinar-access-summary,
  body.zenden-theme .zwebinar-access-block {
    border-radius: 24px;
  }

  body.zenden-theme .zwebinars-hero,
  body.zenden-theme .zwebinars-state,
  body.zenden-theme .zwebinar-access-block,
  body.zenden-theme .zwebinar-access-summary,
  body.zenden-theme .zwebinar-access-hero__inner {
    padding: 24px 22px;
  }

  body.zenden-theme .zwebinars-hero__title,
  body.zenden-theme .zwebinar-access-hero__title {
    font-size: 38px;
  }

  body.zenden-theme .zwebinar-guide-head__title {
    font-size: 38px;
    line-height: 1.05;
  }

  body.zenden-theme .zwebinar-guide-head__back.is-fixed {
    position: relative;
    top: auto;
    right: auto;
  }

  body.zenden-theme .zwebinar-access-summary {
    grid-template-columns: minmax(0, 1fr);
  }

  body.zenden-theme .zwebinars-catalog {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  body.zenden-theme .zwebinars-catalog__title {
    font-size: 21px;
  }

  body.zenden-theme .zwebinars-catalog__meta-row,
  body.zenden-theme .zwebinars-catalog__status-row {
    flex-direction: column;
    align-items: flex-start;
  }

  body.zenden-theme .zwebinars-catalog__lang,
  body.zenden-theme .zwebinars-catalog__expires {
    text-align: left;
  }

  body.zenden-theme .zwebinar-access-hero,
  body.zenden-theme .zwebinar-access-hero__inner {
    min-height: 280px;
  }

  body.zenden-theme .zwebinar-player > iframe {
    min-height: 360px;
  }

  body.zenden-theme .zwebinar-certificate {
    grid-template-columns: 1fr;
  }

  body.zenden-theme .zwebinar-guide-block {
    border-radius: 24px;
    padding: 24px 22px;
    font-size: 16px;
  }

  body.zenden-theme .zwebinar-guide-block h2 {
    font-size: 27px;
  }

  body.zenden-theme .zwebinar-guide-steps li {
    padding-left: 34px;
  }

  body.zenden-theme .zwebinar-guide-image {
    margin: 20px 0;
  }

  body.zenden-theme .zwebinar-support-modal {
    padding: 16px;
  }

  body.zenden-theme .zwebinar-support-modal__dialog {
    padding: 24px 18px 18px;
    border-radius: 24px;
  }

  body.zenden-theme .zwebinar-support-modal__head h2 {
    font-size: 28px;
  }

  body.zenden-theme .zwebinar-support-form__textarea {
    min-height: 180px;
    border-radius: 18px;
  }

  body.zenden-theme .zwebinar-support-form__actions {
    justify-content: stretch;
  }

  body.zenden-theme .zwebinar-support-form__actions .zwebinars-btn {
    width: 100%;
  }
}

body.zenden-theme .is-star-filled,
body.zenden-theme .is-star-half {
  color: #f4c84a;
}

body.zenden-theme .is-star-empty {
  color: rgba(255, 255, 255, 0.28);
}

body.zenden-theme .zenden-review-page {
  padding-top: 34px;
  padding-bottom: 56px;
}

body.zenden-theme .zenden-review-page__block {
  margin-bottom: 28px;
}

body.zenden-theme .zenden-review-page__purchase-badge {
  margin-top: 16px;
}

body.zenden-theme .zenden-review-page__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(111, 196, 152, 0.28);
  background: rgba(111, 196, 152, 0.12);
  color: #d7ffea;
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  font-weight: 400;
}

body.zenden-theme .zenden-review-page__product {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

body.zenden-theme .zenden-review-page__product-image {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(119, 113, 136, 0.34);
  background: rgba(255, 255, 255, 0.04);
}

body.zenden-theme .zenden-review-page__product-image-img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

body.zenden-theme .zenden-review-page__product-title {
  margin: 0 0 12px;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 38px;
  font-weight: 300;
  line-height: 1;
}

body.zenden-theme .zenden-review-page__product-text {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
}

body.zenden-theme .zenden-review-page__stats {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 28px;
  padding: 26px;
  border: 1px solid rgba(119, 113, 136, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

body.zenden-theme .zenden-review-page__stats-main {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

body.zenden-theme .zenden-review-page__stats-value {
  color: #cfbfff;
  font-family: "Oswald", sans-serif;
  font-size: 64px;
  font-weight: 300;
  line-height: 1;
}

body.zenden-theme .zenden-review-page__stats-label {
  padding-bottom: 10px;
  color: rgba(255, 255, 255, 0.45);
  font-family: "Rubik", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body.zenden-theme .zenden-review-page__stats-side {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

body.zenden-theme .zenden-review-page__stats-stars {
  display: flex;
  gap: 6px;
  color: #f4c84a;
  font-size: 22px;
}

body.zenden-theme .zenden-review-page__stats-stars .is-muted {
  color: rgba(255, 255, 255, 0.22);
}

body.zenden-theme .zenden-review-page__stats-count {
  color: rgba(255, 255, 255, 0.7);
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-weight: 300;
}

body.zenden-theme .zenden-review-page__list {
  display: grid;
  gap: 18px;
}

body.zenden-theme .zenden-review-page__pagination {
  margin-top: 32px;
}

body.zenden-theme .zenden-review-form {
  display: grid;
  gap: 28px;
}

body.zenden-theme .zenden-review-form__group {
  display: grid;
  gap: 12px;
}

body.zenden-theme .zenden-review-form__label {
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 18px;
  font-weight: 500;
}

body.zenden-theme .zenden-review-form__input,
body.zenden-theme .zenden-review-form__textarea {
  width: 100%;
  border: 1px solid rgba(119, 113, 136, 0.34);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  box-sizing: border-box;
  transition: border-color 0.2s ease, background 0.2s ease;
}

body.zenden-theme .zenden-review-form__input {
  min-height: 54px;
  padding: 0 18px;
}

body.zenden-theme .zenden-review-form__textarea {
  min-height: 190px;
  padding: 16px 18px;
  resize: vertical;
}

body.zenden-theme .zenden-review-form__input::placeholder,
body.zenden-theme .zenden-review-form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

body.zenden-theme .zenden-review-form__input:focus,
body.zenden-theme .zenden-review-form__textarea:focus {
  outline: none;
  border-color: rgba(207, 191, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

body.zenden-theme .zenden-review-form__stars {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.zenden-theme .zenden-review-form__star {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: transform 0.2s ease;
}

body.zenden-theme .zenden-review-form__star:hover {
  transform: scale(1.08);
}

body.zenden-theme .zenden-review-form__star-icon {
  font-size: 38px;
}

body.zenden-theme .zenden-review-form__hint,
body.zenden-theme .zenden-review-form__counter {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  font-weight: 300;
}

body.zenden-theme .zenden-review-form__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

body.zenden-theme .zenden-review-form__ready {
  color: #9ce6bf;
  font-size: 16px;
}

body.zenden-theme .zenden-review-form__error {
  color: #ffcad7;
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  font-weight: 300;
}

body.zenden-theme .zenden-review-form__row {
  display: flex;
  align-items: stretch;
  gap: 10px;
}

body.zenden-theme .zenden-review-form__input--inline {
  flex: 1 1 auto;
}

body.zenden-theme .zenden-review-form__remove {
  width: 52px;
  min-width: 52px;
  border: 1px solid rgba(119, 113, 136, 0.34);
  background: rgba(255, 255, 255, 0.05);
  color: #ffd5df;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

body.zenden-theme .zenden-review-form__remove:hover {
  background: rgba(148, 24, 49, 0.25);
  border-color: rgba(205, 88, 112, 0.45);
}

body.zenden-theme .zenden-review-form__add {
  padding: 0;
  border: 0;
  background: transparent;
  color: #cfbfff;
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
}

body.zenden-theme .zenden-review-form__upload {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px;
  border: 1px dashed rgba(119, 113, 136, 0.42);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.72);
  font-family: "Rubik", sans-serif;
  font-size: 15px;
  font-weight: 300;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

body.zenden-theme .zenden-review-form__upload:hover {
  border-color: rgba(207, 191, 255, 0.42);
  background: rgba(255, 255, 255, 0.07);
}

body.zenden-theme .zenden-review-form__previews {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

body.zenden-theme .zenden-review-form__preview {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(119, 113, 136, 0.34);
  background: rgba(255, 255, 255, 0.04);
  aspect-ratio: 1 / 1;
}

body.zenden-theme .zenden-review-form__preview-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.zenden-theme .zenden-review-form__preview-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: rgba(148, 24, 49, 0.92);
  color: #fff;
  cursor: pointer;
}

body.zenden-theme .zenden-review-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

body.zenden-theme .zenden-review-form__submit {
  min-width: 240px;
}
body.home {
  color: #fff;
  font-size: 16px;
  background: #08070f;
  /* height: 100%; */
  font-family: 'Rubik';
  overflow-x: hidden;
}
.wrapper{
  overflow-x: hidden;
}
.menutop .menu ul li a:hover {
  text-decoration: none;
  text-shadow: 0px 0px 32.8px rgba(203, 216, 255, 1), 0px 0px 57.4px rgba(51, 102, 255, 1);
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
.menu_toggle ul li a:hover{
  background-color: transparent;
  text-shadow: 0px 0px 32.8px rgba(203, 216, 255, 1), 0px 0px 57.4px rgba(51, 102, 255, 1);
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
.menu_toggle{
  display: none;
}
.back1 {
  background: #08070f url(/assets/images/zendentistry/bg_site2.jpg) center 0 no-repeat;
}

.back2 {
  background: #08070f url(/assets/images/zendentistry/bg_site3.jpg) center 0 no-repeat;
}
.section_lightslider {
  margin-bottom: 90px;
  margin-top: 30px;

}

.lightslider_title {
  width: 628px;
  color:#ffffff;
  font-size: 32px;
  padding: 40px 50px 7px 50px;
  font-family: 'Oswald';
  font-weight: 400;
  line-height: 1.5;
}

.date_lightslider {
	border: 1px solid #ffffff;
	-webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
	-moz-transform: skew(-8deg, 0deg);
    -webkit-transform: skew(-8deg, 0deg);
    -o-transform: skew(-8deg, 0deg);
    -ms-transform: skew(-8deg, 0deg);
    transform: skew(-8deg, 0deg);
  font-size: 14px;
  text-transform: uppercase;
  color:#ffffff;
  width: 154px;
  margin-top: 30px;
  margin-bottom: 30px;
  margin-left: 50px;
  text-align: center;
  padding: 8px 20px 6px;
  background: none;
}

.lSAction{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-1%, -50%);
  width: 185px;
  height: 257px;
  z-index: 10;
}
.lSAction> a.lSNext {
  width: 100%;
  height: 100%;
  background: url(/assets/images/zendentistry/lightslider_arrow.png) 0 0 no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
  opacity: 1;   
  position: absolute;
  top: 0;
  left: 0;    
}

.lSAction> a:hover {
  opacity: 0.8;
}

.lSAction>.lSPrev {
  display: none;
}

.lightslider_body {
  width: 470px;
  color:#e5e5e5;
  font-size: 22px;
  line-height: 30px;
  font-family: 'Rubik';
  font-weight: 300;
  padding-bottom: 40px;
  padding-left: 50px;
  padding-right: 50px;
}
.link_lightslider-wrap {
  display: -ms-flexbox!important;
  display: flex!important;
  padding-bottom: 133px;
}
.link_lightslider {
  font-size: 22px;
  color:#ffffff;
  display: block;
  text-decoration: none;
  padding-left: 50px;
}


.link_lightslider:hover {
  text-shadow: 0px 0px 33.8px rgba(203, 216, 255, 0.95), 0px 0px 58.4px rgba(51, 102, 255, 0.95);
  color: #fff;
  text-decoration: none;
}


.link_lightslider2 {
  position: relative;
  font-size: 22px;
  color:#ffffff;
  display: block;
  text-decoration: none;
  padding-left: 40px;
}

.link_lightslider2:before {
  position: absolute;
  top: 3px;
  left: 17px;
  height: 26px;
  width: 5px;
  background: url(/assets/images/zendentistry/line_reg.png) 100% 0 no-repeat;
  content: '';
}


.link_lightslider2:hover {
  text-shadow: 0px 0px 33.8px rgba(203, 216, 255, 0.95), 0px 0px 58.4px rgba(51, 102, 255, 0.95);
  color: #fff;
  text-decoration: none;
}



.lSSlideOuter .lSPager.lSpg>li.active a, .lSSlideOuter .lSPager.lSpg>li:hover a {
  background-color: #c0bfcc;
}

.lSSlideOuter .lSPager.lSpg>li a {
  background: #5b5a64;
}

.lSSlideOuter .lSPager.lSpg {
  position: absolute;
  bottom: 62px;
  left: 45px;
}

.silder_wrap {
  width: 120%;
  position: relative;
}

.lSNext.active {
  display: none;
}

.item-a {
 width:876px; 
 background-position: 0 0;
 -webkit-background-size: cover;
 background-size: cover;
}

.hoverImage {
  position: absolute;
  top: -20px;
  right: 0;
  z-index: 1;
}
.hoverImage__img {
  max-width: 100%;
  transition: opacity 0.3s ease-in-out; /* Уменьшили время анимации */
}

.hoverImage2 {
  position: absolute;
  top: -20px;
  left: 0;
  z-index: 0;
}
.hoverImage__img2 {
  max-width: 100%;
  transition: opacity 0.3s ease-in-out; /* Уменьшили время анимации */
}

.activity-title{
  font-size: 60px;
  font-family: 'Oswald';
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 32px;
}

.activity-title br {
  display: none;
}

.activity-crumbs{
  margin-bottom: 50px;
}

.activity-crumbs a {
  text-decoration: none;
  display: inline-block;
  margin: 0 24px;
  color: #a09da8;
}
.activity-crumbs a:first-child {
  margin-left: 0;
}
.activity-crumbs a:hover {
  text-shadow: 0 0 29.6px rgba(238, 233, 253, 0.95);
}
.activity-items{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  margin-left: -15px;
  margin-right: -15px;
}
.activity-item{
  margin-left: 15px;
  margin-right: 15px;
  width: calc(33.33% - 30px);
  background: #1d1b25;
}
.activity-item_img{
  height: 252px;
  overflow: hidden;
}
.activity-item_img img{
  transition: all ease 1s;
}
.activity-item_text {   
  padding: 27px 20px 31px 39px;
  display: flex;
  flex-direction: column;
  height: calc(100% - 252px);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.activity-item_date {
  color: #9996a7;
  font-size: 13px;
  margin-bottom: 21px;
  text-transform: uppercase;
}
.activity-item_title {
  line-height: 30px;
  font-size: 20px;
  color: #e5e5e5;
  margin-bottom: 5px;
}
.activity-item_name {
  color: #9996a7;
  font-size: 16px;
  margin-top: auto;
}
.activity-item a {
  display: block;
  border: 1px solid transparent;
  overflow: hidden;
  position: relative;
  z-index: 10;
  text-decoration: none;
  transition: 0.3s;
  height: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.activity-item a:hover {
  text-decoration: none;
  box-shadow: 0px 20px 60px 0px rgba(170, 128, 255, 0.45);
  border-color: rgba(255, 255, 255, 0.1);
}
.activity-item a:hover img {
  transform: scale(1.1);
  transition: all ease 2s;
}
.about-and-materials {
  background: url(/assets/images/zendentistry/proect_bg.jpg);
  background-position: center 26%!important;
}
.about-project{
  padding-bottom: 200px;
  padding-top: 100px;
}
.about-project_title{
  font-size: 60px;
  font-family: 'Oswald';
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 32px;
}
.about-project_text{
  color: #c0bcc9;
  font-size: 25px;
  font-family: 'Rubik';
  font-weight: 300;
  line-height: 35px;
  max-width: 900px;
  padding-right: 10px;
}
.about-project_text a {
  color: #e6e5e8;
  font-weight: 400;
}
.about-project_text p{
  margin: 20px 0;
}
.summary_message {
  font-size: 17px;
  color: #a09da8;
  margin-bottom: 20px;
}
.summary_message .info {
  margin-bottom: 5px;
}
.summary_message a {
  font-size: 17px;
}
.summary_message a:focus {
  color: #cfbfff;
  text-shadow: 0px 1px 18px #cfbfff;
}
.materials{
  padding-top: 40px;
  padding-bottom: 70px;
}
.materials-items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.materials-item{
  width: calc(33.33% - 30px);
  margin: 0 15px;
  margin-bottom: 30px;
}
.materials_title{
  font-size: 60px;
  font-family: 'Oswald';
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 60px;
}
.materials-item a{
  position: relative;
  display: block;
  height: 240px;
  overflow: hidden;
  text-decoration: none;
}
.materials-item a img{
  transition: all ease 2s;
}
.materials-item a:hover img{ 
  transform: scale(1.1);
}
.materials-item a:hover .materials-img_hover{
  opacity: 1;
}
.materials-img, .materials-img_hover{
  position: absolute;
  height: 240px;
  transition: all ease .3s;
}
.materials-img_hover{
  opacity: 0;
}
.materials-text{
  padding: 33px 36px 30px;
  height: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
} 
.materials-text_top{
  display: flex;
  justify-content: space-between;
}
.materials-text_bottom{
  margin-top: auto;
}
.materials-tema{
  color: #14187b;
  font-size: 13px;
  text-transform: uppercase;
}  
.materials-time{
  color: #9996a7;
  font-size: 13px;
  padding: 0 0 0 19px;
  background: url(/assets/images/zendentistry/play_time.png) 0 48% no-repeat;
}
.materials-name{
  font-size: 20px;
  color: #e6e6e6;
  margin-bottom: 10px;
  line-height: 26px;
}
.materials-autor{
  color: #14187b;
  font-size: 16px;
}
.last-news{
  padding: 100px 0;
  background: url(/assets/images/zendentistry/news_bg.jpg) center 0 no-repeat;
  background-size: cover;
}
.last-news_title {
  font-size: 60px;
  font-family: 'Oswald';
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 50px;
}
.last-news_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.last-news_big{
  width: calc(33.33% - 30px);
  margin: 0 15px;
  margin-bottom: 30px;
  height: 498px;
}
.last-news_small-wrap{
  width: calc(66.67% - 30px);
  margin: 0 15px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.last-news_small{
  height: 234px;
  width: calc(50% - 15px);
  margin-bottom: 30px;
}
.last-news_items a{
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
  border: 1px solid transparent;
  text-decoration: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  transition: all ease .3s;
}
.last-news_items a:hover {
  text-decoration: none;
  box-shadow: 0px 20px 60px 0px rgba(170, 128, 255, 0.45);
  border-color: rgba(255, 255, 255, 0.1);
}
.last-news_img{
  position: absolute;
}
.last-news_items a img {
  transition: all ease .3s;
}
.last-news_items a:hover img {
  transition: all ease 2s;
  transform: scale(1.1);
}
.last-news_text{
  height: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 36px 33px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.last-news_date{
  color: #e6e6e6;
  font-size: 13px;
  text-transform: uppercase;
}
.last-news_h2{
  font-size: 20px;
  line-height: 26px;
  color: #e6e6e6;
  margin-top: auto;
}
* {
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
/*footer*/
.footer-wrapper {
  background: url(/assets/images/zendentistry/footer_bg.jpg) center 0 no-repeat;
  background-size: cover;
  padding-bottom: 40px;
}
.parallax-wrapper{
  position: absolute;
  width: 100%;
}
.par {
  position: absolute;
  height: 504px;
  width: 459px;
  right: 320px;
  top: 360px;
  z-index: 10;
  transform: translateX(0);
  background: url(/assets/images/zendentistry/parallaks.png) 0 0 no-repeat;
}

.par2 {
  position: absolute;
  height: 302px;
  width: 349px;
  right: 523px;
  top: 80px;
  z-index: 10;
  transform: translateX(0);
  background: url(/assets/images/zendentistry/parallaks2.png) 0 0 no-repeat;
}
.par3 {
  position: absolute;
  height: 734px;
  width: 573px;
  left: 0;
  top: 460px;
  z-index: 1;
  transform: translateX(0);
  background: url(/assets/images/zendentistry/parallaks3.png) 0 0 no-repeat;
}
.par4 {
  position: absolute;
  height: 151px;
  width: 143px;
  right: 0;
  top: 80px;
  z-index: 1;
  transform: translateX(0);
  background: url(/assets/images/zendentistry/parallaks4.png) 0 0 no-repeat;
}
.section_client {
  padding: 120px 0 195px 0;
}

.client_main_title {
  font-size: 60px;
  font-family: 'Oswald';
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 32px;
}

.social_block_wrap {
  margin-top: 59px;
  position: relative;
  z-index: 11;
}
.carousel-inner{
  z-index: 1;
}
.social_block {
  display: flex;
  flex-wrap: wrap;
}

.social_block img {
  max-width: 41px;
  width: 100%;
}

.social_title {
  color:#ffffff;
  font-size: 28px;
  margin-right: 17px;
}

.social_block a {
  display: flex;
  margin-bottom: 10px;
  margin-right: 20px;
  color: #ffffff;
  font-size: 24px;
  align-items: center;
	line-height: 0;
	max-height: 41px;
}

.double-phone .bottom_phone-item,
.bottom_phone .bottom_phone-item {
  position: relative;
}
.bottom_phone .bottom_phone-item {
  height: 85.7px;
}
.double-phone .bottom_phone-item {
  height: 36px;
}
.double-phone .bottom_phone-item.active .messengers,
.bottom_phone .bottom_phone-item.active .messengers {
  z-index: 100;
  opacity: 1;
  visibility: visible;
  transform: translateY(50px);
}
.double-phone .bottom_phone-item.active .messengers {
  transform: translateY(44px);
  background: #0e0c14;
}
.contact_data .double-phone .bottom_phone-item.active .messengers {
  background: #08070f;
}
.bottom_phone .bottom_phone-item.active,
.bottom_phone .bottom_phone-item.active {
  z-index: 100;
}
.bottom_phone .bottom_phone-item.active p {
  font-size: 19px;
}
.double-phone .messengers,
.bottom_phone .messengers {
  position: absolute;
  z-index: 100;
  display: flex;
  top: -10px;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.double-phone .messengers {
  top: 0;
}
.double-phone .messengers {
  width: 100%;
  padding: 5px 0 20px;
}
.double-phone .bottom_phone-item p,
.bottom_phone .bottom_phone-item p {
  cursor: pointer;
  width: max-content;
}
.double-phone .bottom_phone-item p:hover,
.bottom_phone .bottom_phone-item p:hover {
  text-shadow: 0 0 29.6px rgba(238, 233, 253, 0.95);
}
.double-phone .bottom_phone-item.active p:hover {
  text-shadow: none
}
.bottom_phone-item:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 3px;
  background: #baace6;
  left: -21px;
  border-radius: 134px;
  opacity: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.double-phone .bottom_phone-item:before {
  height: 240%;
  top: 7px;
}
.double-phone .bottom_phone-item.active p,
.bottom_phone .bottom_phone-item.active p {
  cursor: auto;
}
.contact_data .double-phone .bottom_phone-item p {
  line-height: 42px;
}
.bottom_phone-item.active:before {
  opacity: 1;
}
.double-phone .messengers a,
.bottom_phone .messengers a {
  line-height: 0;
}
.double-phone .messengers a:not(:last-child),
.bottom_phone .messengers a:not(:last-child) {
  line-height: 0;
  margin-right: 20px;
}
.double-phone .messengers a img,
.bottom_phone .messengers a img {
  width: 100%;
  max-width: 41px;
}
.content .widjet .ttl span,
.footer .widjet .ttl span {
  margin-top: 6px;
}
.footer-footer{
  position: relative;
  /* z-index: 10; */
}

.bottom_work_wrap{
  display: flex;
  padding-left: 100px;
}
.phone-and-email{
  display: flex;
  margin-bottom: 115px;
  padding: 0 100px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.bottom_phone {
  font-size: 60px;
  width: 50%;
  font-family: 'Oswald';
  font-weight: 300;
  text-shadow: 0px 0px 57.4px rgba(51, 102, 255, 0.50), 0px 0px 32.8px rgba(203, 216, 255, 0.50); 
  
}



.bottom_mail {
  position: relative;
  font-size: 60px;
  width: 50%;
  text-align: right;
  font-family: 'Oswald';
  font-weight: 300;
  text-shadow: 0px 0px 57.4px rgba(51, 102, 255, 0.50), 0px 0px 32.8px rgba(203, 216, 255, 0.50); 
}


.bottom_mail:before {
  position: absolute;
  top:-20px;
  left: -75px;
  height: 145px;
  width: 22px;
  background: url(/assets/images/zendentistry/line_phone_bot.png) 100% 0 no-repeat;
  content: '';
}

.container_bottom {
  padding: 0;
}

.bottom_work {
  color:#c0bcc9;
  font-size: 18px;
  margin-right: 58px;
  line-height: 26px;
}

.bottom_work span {
  color:#7b7687;
  font-size: 16px;
}

.bottom_work_about {
  font-size: 18px;
  color:#c0bcc9;
  line-height: 26px;
  margin-bottom: 148px;
}
.bottom_work_about a{
  color:#c0bcc9;
}
.politica-and-copyright{
  display: flex;
  -ms-align-items: center;
  align-items: center;
}
.politica_title {

}

.politica_title a {
  color:#827c90;
  display: inline-block;
  margin-right: 29px;
  text-decoration: none !important;
  font-family: 'Rubik';
  font-weight: 300;
}

.copyright {
  color:#827c90;
  font-family: 'Rubik';
  font-weight: 300;
  margin-left: auto;
}
.madein{
  margin-left: auto;
}
.madein a{
  color: #827c90;
  font-family: 'Rubik';
  font-weight: 300;
  text-decoration: none;
}
.madein img{
  width: 100px;
  margin-left: 7px;
  margin-top: -10px;
}
.politica_link {
  position: relative;
}

.politica_link:before {
  content: '';
  display: block;
}
.politica_link:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #827c90;
  max-width: 0;
  -webkit-transition: max-width 0.3s;
  transition: max-width 0.3s;
}
.politica_title .politica_link:hover {
  color: #827c90 !important;
  text-decoration: none !important;
}
.politica_link:hover:after {
  max-width: 100%;
}

.carousel_title {
  font-size: 28px;
  color:#ffffff;
}

.carousel_body {
  color:#c0bcc9;
  font-family: 'Rubik';
  font-weight: 300;
  font-size: 18px;
  margin-bottom: 24px;
}

.carousel-item {
  padding: 53px 60px 90px 60px;
  width: 1139px;
  background: url(/assets/images/zendentistry/slider_bg.png) 0 0 no-repeat;
}

.carousel_item {
  font-size: 22px;
  font-family: 'Rubik';
  font-weight: 300;
  color:#c0bcc9;
}

.carousel-control-prev {
  display: none;
}



.carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover {
   opacity: 0.8;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
  width: 95px;
  height: 138px;
}

.carousel-control-next, .carousel-control-prev {
  opacity: 1;

  z-index: 12;
  width: 95px;
}

.carousel-control-next {
  right: -20px;

}
.carousel-control-next-icon {
    background: url(/assets/images/zendentistry/carousel_arrow.png) 0 0 no-repeat;
}
@media (max-width: 1450px) {
  .item-a{

  }
  .lSAction{
    left: 820px;
  }
  .hoverImage{
    top: -30px;
    right: -300px;
  }
  .carousel-item{
    width: 900px;
    background-color: #201c2d;
    background-image: url(/assets/images/zendentistry/cl-bg.jpg);
    background-repeat: no-repeat;
    
  }
  .phone-and-email{
    padding: 0;
  }
  .bottom_mail:before{
    left: -50px;
  }
  .bottom_work_wrap{
    padding-left: 0;
  }
  .par{
    right: 90px;
  }
  .par2{
    right: 400px;
  }
  .par3{
    left: -110px;
  }
}
@media (max-width: 1024px) {
  .menu_toggle{
    display: block;
  }
  .item-a{
   width: 768px;
 }
 .parallax-wrapper{
    display: none;
  }
 .lSAction{
  left: 720px;
}
.hoverImage{
  display: none;
}
	.hoverImage2{
  z-index: 0;
}
.activity-items{
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
.activity-item{
  width: calc(100% - 30px);
  margin-bottom: 30px;
}
.activity-item a{
  display: flex;
}
.activity-item_img{
  width: 50%;
  flex-shrink: 0;
}
.activity-item_text{
  height: 100%;
}
.materials-item{
  width: calc(50% - 30px);
}
.last-news_big{
  width: calc(50% - 30px);
}
.last-news_small-wrap{
  width: calc(50% - 30px);
}
.carousel-item{
  width: 720px;
}
.social_block_wrap.d-flex{
  flex-wrap: wrap;
}
.social_block{
  margin-top: 15px;
}
.section_client{
  padding-bottom: 100px;
}
.phone-and-email{
  flex-wrap: wrap;
}
.bottom_phone{
  width: 100%;
}
.bottom_mail{
  width: 100%;
  text-align: left;
}
.bottom_mail:before{
  display: none;
}
}
@media (max-width: 852px) {
  .item-a{
   width: 560px;
 }
 .lSAction{
  left: 510px;
}
.lightslider_title, .activity-title, .about-project_title, .materials_title, .last-news_title, .client_main_title {
  width: 100%;
  font-size: 40px;
  line-height: 1.2;
}
.last-news_title{
  text-align: center;
}
.lightslider_body{
  width: 470px;
  font-size: 16px;
  line-height: 1.2;
}
.about-project_text{
  font-size: 20px;
  line-height: 30px;
}
.last-news_items{
  justify-content: center;
}
.last-news_big{
  width: calc(100% - 30px);
  max-width: 420px;
}
.last-news_small-wrap{
  width: calc(100% - 30px);
  max-width: 420px;
}
.last-news_small{
  width: 100%;
}
.carousel-item{
  width: 680px;
}
.carousel_body{
  font-size: 16px;
}
.bottom_work_wrap{
  flex-direction: column;
}
.bottom_work{
  margin-right: 0;
  margin-bottom: 20px;
}
.politica-and-copyright{
  flex-direction: column;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.copyright{
  margin-left: 0;
  margin-top: 20px;
}
.madein{
  margin-left: 0;
  margin-top: 30px;
}
.carousel_item{
  font-size: 18px;
}
}
@media (max-width: 718px){
  .item-a{
   width: 460px;
 }
 .lSAction{
  left: 410px;
}
.activity-items{
  justify-content: center;
}
.activity-item{
  max-width: 400px;
}
.activity-item a{
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}
.activity-item_img{
  width: 100%;
}
.activity-item_text{
  height: auto;
}
.activity-crumbs a{
  margin: 0 10px;
}
.materials-items{
  justify-content: center;
}
.materials-item{
  width: calc(100% - 30px);
  max-width: 420px;
}
.activity-title, .materials_title, .activity-crumbs{
  text-align: center;
}
	.activity-title br {
  display: block;
}
.carousel-item{
  width: 520px;
}
.social_title{
  font-size: 20px;
}
.bottom_phone, .bottom_mail{
  font-size: 40px;
}
.section_client {
    padding-bottom: 60px;
}
.phone-and-email{
  margin-bottom: 60px;
}
.bottom_work_about{
  margin-bottom: 60px;
}
}
@media (max-width: 560px){
  .silder_wrap{
    width: 100%;
  }
  .item-a{
   width: 320px;
 }
 .lSAction{
  width: 50px;
  height: 70px;
  left: 300px;
}
.link_lightslider, .link_lightslider2{
  font-size: 19px;
}
.date_lightslider{
  margin-left: 30px;
}
.lightslider_title, .lightslider_body{
  width: auto;
  padding-left: 30px;
  padding-right: 30px;
}
.link_lightslider{
  padding-left: 30px;
}
.lSSlideOuter .lSPager.lSpg{
  left: 30px;
}
.activity-crumbs a{
  font-size: 14px;
  margin: 0 9px;
}
.carousel-item{
  width: 100%;
  padding: 30px;
}
.carousel-control-next-icon, .carousel-control-prev-icon {
    right: -35px;
    position: absolute;
}
.bottom_phone, .bottom_mail{
  font-size: 30px;
}
}

@media (max-width: 320px){
  .silder_wrap{
    width: 100%;
  }
  .item-a{
   width: 300px;
 }
 .lSAction{
  width: 50px;
  height: 70px;
  left: 270px;
}
.link_lightslider, .link_lightslider2{
  font-size: 19px;
}
.date_lightslider{
  margin-left: 30px;
}
.lightslider_title, .lightslider_body{
  width: auto;
  padding-left: 30px;
  padding-right: 30px;
}
.link_lightslider{
  padding-left: 30px;
}
.lSSlideOuter .lSPager.lSpg{
  left: 30px;
}
.activity-crumbs a{
  font-size: 14px;
  margin: 0 9px;
}
.carousel-item{
  width: 100%;
  padding: 30px;
}
.carousel-control-next-icon, .carousel-control-prev-icon {
    right: -35px;
    position: absolute;
}
.bottom_phone, .bottom_mail{
  font-size: 30px;
}
}

.article-header {
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff
}
.article-header:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #1c1748;
  opacity: .6
}
.article-header-content {
  height: 610px;
  padding: 60px 0 80px;
  box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative
}
.article-date {
  font-size: 14px;
  text-transform: uppercase
}
.article-title {
  font-family: Oswald;
  font-size: 60px;
  font-weight: 300;
  text-transform: uppercase;
  margin-top: auto;
  margin-bottom: 20px
}
.article-meta {
  font-size: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex
}
.article-cat {
  margin-right: 13px
}
.article-cat:after {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background: #999;
  display: inline-block;
  vertical-align: middle;
  margin-left: 13px
}
.article-body {
  padding: 30px 0 50px;
  background-color: #100e17;
  color: #a09da8
}
.article-body-content {
  max-width: 1100px
}
.article-body-content p {
  font-size: 20px;
  line-height: 34px;
  font-weight: 300;
  margin: 20px 0
}
.article-body-content figure {
  margin: 60px 0;
  padding: 0
}
.article-body-content figure img {
  max-width: 100%
}
.article-body-content figcaption {
  font-size: 16px;
  line-height: 23px;
  font-weight: 300;
  margin-top: 10px;
  max-width: 780px
}
.video {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  margin: 60px 0;
  background: #000
}
.video-link,
.video-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none
}
.video-button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  z-index: 1;
  width: 201px;
  height: 211px;
  background-color: transparent;
  border: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
  background-image: url(/local/templates/dentistry/images/video-button.png);
  background-position: 0 0
}
.video-button:hover {
  background-position: 0 -211px
}
.article-slider {
  margin: 50px 0
}
.fotorama__caption {
  bottom: 20px
}
.fotorama__caption__wrap {
  font-size: 16px;
  max-width: 780px;
  padding-left: 20px;
  background-color: rgba(0,0,0,.8);
  color: #fff;
  font-family: Rubik;
  font-weight: 300
}
.fotorama__thumb-border {
  border-color: #a09da8;
  background: rgba(28,23,72,.6)
}
.fotorama__arr {
  width: 95px;
  height: 138px;
  margin-top: -69px;
  background-position: 0 0;
  background-size: cover
}
.fotorama__arr--next {
  background-image: url(/local/templates/dentistry/images/arrow-right.png)
}
.fotorama__arr--prev {
  background-image: url(/local/templates/dentistry/images/arrow-left.png)
}
.article-gallery {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-gap: 15px
}
.article-gallery-item:nth-child(1) {
  grid-column: 1/3
}
.article-gallery-item:nth-child(2) {
  grid-column: 3;
  grid-row: 1/3
}
.article-gallery-item img {
  max-width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover
}
.subscribe {
  background-image: url(/assets/images/zendentistry/bg-subscribe.jpg);
  background-position: center;
  background-size: cover;
  padding: 80px 0;
  position: relative
}
.subscribe:before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  height: 512px;
  background-image: url(/assets/images/zendentistry/bg-subscribe-before.png);
  background-position: center;
  background-size: 1801px 512px
}
.subscribe-content {
  max-width: 790px;
  margin: 0 auto;
  position: relative
}
.subscribe-title {
  font-size: 24px;
  line-height: 37px;
  color: #a09da8;
  font-weight: 300;
  text-align: center;
  margin-bottom: 35px
}
.subscribe-form {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center
}
.input-wrapper {
  height: 60px;
  width: 410px;
  position: relative;
  border-radius: 5px;
  border: 1px solid #28272f;
  padding: 0 20px;
  box-sizing: border-box;
  -webkit-transform: skew(-8deg,0deg);
  -ms-transform: skew(-8deg,0deg);
  transform: skew(-8deg,0deg);
  margin-right: 10px
}
.input-wrapper input {
  background-color: transparent;
  width: 100%;
  height: 100%;
  color: #a09da8;
  font-size: 18px;
  border: 0;
  -webkit-transform: skew(8deg,0deg);
  -ms-transform: skew(8deg,0deg);
  transform: skew(8deg,0deg);
  z-index: 2;
  position: relative
}
.input-wrapper input::-webkit-input-placeholder {
  color: #a09da8
}
.input-wrapper input:-moz-placeholder {
  color: #a09da8
}
.input-wrapper input:focus + .input-focus {
  box-shadow: 0 0 5px 0 rgba(255,255,255,.3);
  display: block
}
.input-focus {
  position: absolute;
  left: -1px;
  top: -1px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 5px;
  z-index: 1;
  display: none
}
.subscribe-button {
  width: 178px;
  height: 60px;
  background: #f7f2ff;
  line-height: 60px;
  -webkit-transform: skew(-8deg,0deg);
  -ms-transform: skew(-8deg,0deg);
  transform: skew(-8deg,0deg);
  font-size: 18px;
  border: 0;
  border-radius: 5px;
  box-shadow: 0 1px 13px 0 rgba(255,255,255,.75);
  cursor: pointer
}
.subscribe-button:hover {
  box-shadow: 0 1px 13px 0 #fff
}
.subscribe-button span {
  -webkit-transform: skew(8deg,0deg);
  -ms-transform: skew(8deg,0deg);
  transform: skew(8deg,0deg);
  display: inline-block
}
.articles {
  background: #100e17;
  padding: 90px 0 60px
}
.articles .materials_title {
  text-align: center;
  font-size: 60px;
  font-family: Oswald;
  font-weight: 300;
  letter-spacing: 1px;
  margin-bottom: 60px;
  color: #fff
}
.materials-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px
}
.materials-item {
  width: calc(33.33% - 30px);
  margin: 0 15px 30px
}
.materials-item a {
  position: relative;
  display: block;
  height: 240px;
  overflow: hidden;
  text-decoration: none
}
.materials-item a img {
  -webkit-transition: 2s;
  transition: 2s
}
.materials-item a:hover .materials-img_hover {
  opacity: 1
}
.materials-item a:hover .materials-img_hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1)
}
.materials-img,
.materials-img_hover {
  position: absolute;
  height: 240px;
  -webkit-transition: .3s;
  transition: .3s
}
.materials-img_hover {
  opacity: 0
}
.materials-text {
  padding: 33px 36px 30px;
  height: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column
}
.materials-text_top {
  font-size: 13px;
  line-height: 20px;
  text-transform: uppercase;
  color: #9996a7;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between
}
.materials-text_bottom {
  margin-top: auto
}
.materials-name {
  font-size: 20px;
  color: #e6e6e6;
  margin-bottom: 10px;
  line-height: 26px
}
.materials-autor {
  color: #4549af;
  font-size: 16px
}
.materials-tema {
  max-width: 50%
}
.materials-time {
  margin-left: auto;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-right: 10px;
  white-space: nowrap
}
.materials-time:after {
  content: '';
  width: 3px;
  height: 3px;
  border-radius: 2px;
  background: #999;
  display: inline-block;
  vertical-align: middle;
  margin-left: 13px
}
.materials-date {
  white-space: nowrap
}
@media (max-width:1450px) {
  .materials-text {
    padding: 22px
  }
  .materials-text_top {
    font-size: 12px
  }
}
@media (max-width:1024px) {
  .article-gallery {
    grid-template-columns: repeat(2,1fr);
    max-width: 729px
  }
  .article-gallery-item:nth-child(1) {
    grid-column: 1/3
  }
  .article-gallery-item:nth-child(2) {
    grid-column: 2;
    grid-row: 2/4
  }
  .materials-item {
    width: calc(50% - 30px)
  }
}
@media (max-width:718px) {
  .materials-items {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center
  }
  .materials-item {
    width: calc(100% - 30px);
    max-width: 420px
  }
  .bottom_phone .bottom_phone-item {
    height: 57.14px;
  }
  .bottom_phone .bottom_phone-item.active p {
    font-size: 13px;
  }
  .bottom_phone .bottom_phone-item.active .messengers {
    transform: translateY(30px);
  }
  .bottom_phone-item:before {
    left: -12px;
  }
  .bottom_phone .messengers a img {
    max-width: 35px;
  }
  .bottom_phone .messengers a:not(:last-child) {
    margin-right: 15px;
  }
}
@media (max-width:560px) {
  .article-title {
    font-size: 40px
  }
  .article-meta {
    display: block
  }
  .article-cat {
    margin-right: 0;
    margin-bottom: 10px
  }
  .article-cat:after {
    display: none
  }
  .article-body-content p {
    font-size: 16px;
    line-height: 24px
  }
  .article-gallery {
    display: block
  }
  .article-gallery-item {
    margin-bottom: 15px
  }
  .articles .materials_title {
    font-size: 40px
  }
  .subscribe-title {
    font-size: 19px;
    line-height: 32px
  }
  .fotorama__caption {
    display: none
  }
  .article-body-content figcaption,
  .fotorama__caption__wrap {
    font-size: 12px
  }
  .bottom_phone .bottom_phone-item {
    height: 48.84px;
    margin-bottom: 10px;
  }
  .bottom_phone .bottom_phone-item.active p {
    font-size: 11px;
    top: -10px;
    position: relative;
  }
  .bottom_phone .messengers {
    top: -50px;
  }
  .bottom_phone .bottom_phone-item.active .messengers {
    transform: translateY(61px);
  }
  .bottom_phone-item:before {
    left: -10px;
    top: -9px;
    height: calc(100% + 10px);
  }
  .double-phone .bottom_phone-item:before {
    height: 187%;
    top: 0px;
  }
  .double-phone .bottom_phone-item.active .messengers {
    transform: translateY(30px);
  }
  .double-phone .messengers {
    padding: 5px 0 5px;
  }
  .contact_data .double-phone .bottom_phone-item:before {
    height: 189%;
    top: 5px;
  }
  .contact_data .double-phone .messengers a img {
    max-width: 30px;
  }
  .contact_data .double-phone .bottom_phone-item p {
    line-height: normal;
  }
  .contact_data .double-phone .bottom_phone-item.active .messengers {
    transform: translateY(34px);
  }
}

@media (min-width:561px) {
  .contact_data .widjet,
  .footer .widjet {
    margin-bottom: 105px;
    height: auto;
  }
}
/* source: style.css */
/*   
	Theme Name: Zendentistry
	Theme URI: https://zendentistry.ru
	Description: Individual WP Theme
	Author: Spartan Team
	Author URI: https://spartan.by
	Version: 1.0
*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, textarea {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}
body {
	line-height:1
}
ol, ul {
	list-style:none
}
blockquote, q {
	quotes:none
}
blockquote:before, blockquote:after, q:before, q:after {
	content:'';
	content:none
}
:focus {
	outline:0
}
ins {
	text-decoration:none
}
del {
	text-decoration:line-through
}
table {
	border-collapse:collapse;
	border-spacing:0
}
.clear {
	clear:both;
	display:block;
	overflow:hidden;
	visibility:hidden;
	width:0;
	height:0
}
.clearfix:after {
	clear:both;
	content:' ';
	display:block;
	font-size:0;
	line-height:0;
	visibility:hidden;
	width:0;
	height:0
}
.clearfix {
	display:inline-block
}
* html .clearfix {
	height:1%
}
.clearfix {
	display:block
}
th, td {
	margin:0;
	padding:0
}
table {
	border-collapse:collapse;
	border-spacing:0
}
.clear {
	clear: both;
}
br {
	line-height: 10px;
}

input[type="submit"]::-moz-focus-inner, input[type="button"]::-moz-focus-inner {
 border : 0px;
}
input[type="submit"]:focus, input[type="button"]:focus {
	outline : none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	 -ms-appearance: none;
}

::selection {

}
::-moz-selection {

}

input[type="text"], input[type="submit"], input[type="button"], textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	 -ms-appearance: none;
	resize: none;
		font-family: 'Rubik';
}


/******************************* 0 #settings *************************************/


html {
	width:100%;
	height:100%;
	font-family: 'Rubik';
}

body {
	width:100%;
	position:relative;
	height:100%;
	font-family: 'Rubik';
}


.wrapper {
	width:100%;
	position:relative;
	min-height:100%;
	font-family: 'Rubik';
}

.wrapper.sign {
	background: #100e17 url('/assets/images/zendentistry/i/bg_sign.png') no-repeat;
	background-position: center bottom;
	background-size: cover !important;
}


.wrapper #scene {
	width: 100%;
	height: 100%;
	position: absolute;
	top:0;
	left:0;
	overflow: hidden;
	z-index: 1
}

.wrapper #scene div {
	position: absolute;
	width: 100%;
	height: 120%;
	top:-30%;
	left:0;
}

.wrapper #scene .layer_1 {
	background: url('/assets/images/zendentistry/parall_layer1.png') no-repeat;
	background-position: center bottom;
	background-size: cover;
}

.wrapper #scene .layer_2 {
	background: url('/assets/images/zendentistry/parall_layer2.png') no-repeat;
	background-position: center bottom;
	background-size: cover;
}

.wrapper #scene .layer_3 {
	background: url('/assets/images/zendentistry/parall_layer3.png') no-repeat;
	background-position: center bottom;
	background-size: cover;
}


.template_table {
	display: table;
}

.template_table .cell {
	display: table-cell;
	vertical-align: middle;
}

.center {
	width: 1400px;
	margin:0 auto;
}


/******************************* 1 .menutop *************************************/
.menutop {
	height: 158px;
	/*background: #100e17;*/
	background: transparent;
	width: 100%;
	z-index: 2;
	position: relative;
}

.menutop .logo {
	background: url('/assets/images/zendentistry/i/logo.png') no-repeat;
	width: 245px;
	height: 139px;
	display: block;
	float: left;
}

.menutop .menu ul li {
	float: left;
}

.menutop .menu ul li a {
	display: block;
	height: 159px;
	text-decoration: none;
	font-size: 18px;
	color: #ffffff;
	margin:0 14px;
	line-height: 159px;
	text-shadow: 0px 1px 18px rgba(255, 255, 255, 1);
	-webkit-transition: opacity 0.2s ease-in-out;
	-moz-transition: opacity 0.2s ease-in-out;
	-o-transition: opacity 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out;
}

.menutop .menu ul li a:hover {
	color: #cfbfff;
text-shadow: 0px 1px 18px #cfbfff;
text-decoration: none;
 text-shadow: 0px 0px 32.8px rgba(203, 216, 255, 1), 0px 0px 57.4px rgba(51, 102, 255, 1);
 transition: 0.3s;
 -webkit-transition: 0.3s;
}

.menutop .buttons_right {
	border: 1px solid #4c4a51;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	padding: 0 20px;
	-moz-transform: skew(-8deg, 0deg);
	-webkit-transform: skew(-8deg, 0deg);
	-o-transform: skew(-8deg, 0deg);
	-ms-transform: skew(-8deg, 0deg);
	transform: skew(-8deg, 0deg);
}

.menutop .buttons_right a {
	text-decoration: none;
	font-size: 18px;
	color: #cfbfff;
	text-shadow: 0px 1px 18px #cfbfff;
	display: inline-block;
	line-height: 54px;
	-moz-transform: skew(8deg, 0deg);
	-webkit-transform: skew(8deg, 0deg);
	-o-transform: skew(8deg, 0deg);
	-ms-transform: skew(8deg, 0deg);
	transform: skew(8deg, 0deg);
	vertical-align: top;
}

.menutop .buttons_right a:hover {
	color: #fff;
}

.menutop .player_right {
	background-color: transparent;
	margin-top: 60px;
	margin-right: -480px;
	float: right;
	border: 1px solid #4c4a51;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-moz-transform: skew(-8deg, 0deg);
	-webkit-transform: skew(-8deg, 0deg);
	-o-transform: skew(-8deg, 0deg);
	-ms-transform: skew(-8deg, 0deg);
	transform: skew(-8deg, 0deg);
}

.menutop .player_right button{
	background-color: transparent;
	border: 1px solid;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

.menutop .player_right i{
	margin-top: 5px;
}

@media (max-width: 1450px) {
	.menutop .player_right {
		margin-top: 25px;
		margin-right: -400px;
	}
  }

@media (max-width: 1024px) {
	.menutop .player_right {
		margin-top: 25px;
		margin-right: 50px;
	}
	.menutop .basket_bl {
		margin-right: 60px;
	}
  }

@media (max-width: 575px) {
	.menutop .player_right {
		margin-top: 25px;
		margin-right: 5px;
		margin-left: 35px;
	}
  }

@media (max-width: 560px) {
	.menutop .player_right {
		margin-top: 25px;
		margin-right: 10px;
		margin-left: 50px;
	}
  }

.menutop .basket_bl {
	background: url('/assets/images/zendentistry/i/basket_i.png') no-repeat;
	font-size: 18px;
	height: 33px;
	width: 33px;
	color: #fff;
	line-height: 33px;
	cursor: pointer;
	transition: 0.3s;
    -webkit-transition: 0.3s;
}

.menutop .basket_bl:hover {
	text-decoration: none;
    text-shadow: 0px 0px 32.8px rgb(203 216 255), 0px 0px 57.4px rgb(51 102 255);    
	color: #cfbfff;
}

.menutop .basket_bl .cart {
    line-height: 40px;
}

.menutop .basket_bl .basket-btn__counter {
    position: absolute;
    margin-left: 3px;
	margin-top: -1px;
}

@media (max-width: 1450px) {
	.menutop .basket_bl {
		margin-top: 26px;
	}
}

@media (max-width: 1024px) {
	.menutop .basket_bl {
		margin-right: 60px;
	}
  }

@media (max-width: 1023px) {
	.menutop .basket_bl {
		margin-top: 22px;
		margin-right: 52px;
	}
}

.menutop .buttons_right .sep {
	height: 51px;
	position: relative;
	width: 27px;
	display: inline-block;
}

.menutop .buttons_right .sep::after {
	content: "";
	position: absolute;
	width:1px;
	height: 30px;
	left:0;
	top:11px;
	background: #4c4a51;
}

/******************************* 2 .header *************************************/
.header {
	height: 610px;
	background: url('/assets/images/zendentistry/imgcont1.jpg') no-repeat;
	background-size: cover !important;
	background-position: center center;
	width: 100%;
}

.header .center {
	position: relative;
		height:100%;
}

.single-product .header {
	background: none;
	background-size: cover !important;
	background-position: center center !important;
}

.single-product .header:before {
	content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: #000000;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.single-product .header.shown:before {
	opacity: 1;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.header .center .breadcrumbs {
	padding-top:65px;
}

.header .center .breadcrumbs a {
	color: #fff;
	font-size: 14px;
	text-decoration: none;
	text-transform: uppercase;
}

.header .center .breadcrumbs a:hover {
	color: #cfbfff;
text-shadow: 0px 1px 18px #cfbfff;
text-decoration: none;
}

.header .center .breadcrumbs a i {
	margin-right: 13px;
}


.header .caption {
	position: absolute;
	bottom: 30px;
	left: 0;
	width: 99%;
}

.header .caption .is-countdown {
	position: absolute;
	right: 0;
	top:15px;
}

.header .caption .is-countdown span {
	display: block;
}

.header .caption .is-countdown .countdown-section {
	float: left;
	margin-right: 22px;
}

.header .caption .is-countdown .countdown-section:nth-last-of-type(1) {
	margin-right: 0;
}

.header .caption .is-countdown .countdown-section:nth-last-of-type(1) .countdown-amount::after {
	display: none;
}

.header .caption .is-countdown .countdown-section .countdown-amount {
	font-family: 'Oswald';
	font-size: 50px;
	color: #fff;
	font-weight: 300;
	text-align: center;
	position: relative;
	padding-bottom: 12px;
	width: 60px;
	display: block;
}

.header .caption .is-countdown .countdown-section .countdown-amount::after {
	content: ":";
	position: absolute;
	left:130%;

	top:0;
}

.header .caption .is-countdown .countdown-section .countdown-period {
	font-size: 15px;
	color: rgb(250, 250, 250, 0.5);
	color: #fff;
	font-weight: 300;
	text-align: center;
	text-transform: lowercase;
	display: block;
}

.header .caption .headline {
	border-bottom: 1px solid rgba(250,250,250, 0.2);
	padding-right:300px;
}

@media (max-width:1024px) {
	.header .caption .headline {padding-right:0;}
}

.header .caption .headline .title {
	color: #fff;
	font-size: 60px;
	font-family: 'Oswald';
	margin-bottom: 20px;
	line-height: 1;
}

.header .caption .headline .description {
	color: #fff;
	font-size: 20px;
		margin-bottom: 46px;
}
.header .caption .headline .description span {
	display: inline-block;
	font-weight: 300;
}

.header .caption .panel_b .left {
	color:#fff;
	font-size: 20px;
	float: left;
	padding-top: 15px;
}

.header .caption .panel_b .left span.light {
	font-weight: 300;
}

.header .caption .panel_b .left .sep {
	display: inline-block;
	height: 51px;
	position: relative;
	width: 38px;
	display: inline-block;
}

.header .caption .panel_b .left .sep::after {
	content: "";
	position: absolute;
	width:1px;
	height: 45px;
	left:18px;
	top:0;
	background: rgba(250,250,250, 0.2);
	-moz-transform: skew(-8deg, 0deg);
	-webkit-transform: skew(-8deg, 0deg);
	-o-transform: skew(-8deg, 0deg);
	-ms-transform: skew(-8deg, 0deg);
	transform: skew(-8deg, 0deg);
}

.header .caption .panel_b .buttons {
	float: right;
	padding-top: 29px;
}

.header .caption .panel_b .buttons .bookmarks {
	font-size: 18px;
	height: 62px;
	display: inline-block;
	line-height: 62px;
	margin-right: 60px;
	color: #fff;
	text-decoration: none;
}

.header .caption .panel_b .buttons .bookmarks:hover {
	color: #cfbfff;
	text-shadow: 0px 1px 18px #cfbfff;
}

.content a {
	color: #cfbfff;
	font-size: 14px;
	text-decoration: none;
}

.content a.return {
	margin-bottom: 37px;
	display: inline-block;
	text-transform: uppercase;
}
.content a i {
	margin-right: 13px;
}

.content a:hover {
	color: #cfbfff;
	text-shadow: 0px 1px 18px #cfbfff;
}

.button,
a.button {
	height: 62px;
	display: inline-block;
	line-height: 62px;
	text-decoration: none;
	-moz-transform: skew(-8deg, 0deg);
	-webkit-transform: skew(-8deg, 0deg);
	-o-transform: skew(-8deg, 0deg);
	-ms-transform: skew(-8deg, 0deg);
	transform: skew(-8deg, 0deg);
	font-size: 18px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	padding:0 22px;
	-webkit-box-shadow: 0px 1px 13px 0px rgba(255, 255, 255, 0.75);
-moz-box-shadow:    0px 1px 13px 0px rgba(255, 255, 255, 0.75);
box-shadow:         0px 1px 13px 0px rgba(255, 255, 255, 0.75);
	cursor: pointer;
	border:0;
}

.button.white,
a.button.white, .woocommerce div.product form.cart .button {
	background: #f7f2ff;
}

.button.white:hover,
a.button.white:hover {
	webkit-box-shadow: 0px 1px 13px 0px rgba(255, 255, 255, 1);
-moz-box-shadow:    0px 1px 13px 0px rgba(255, 255, 255, 1);
box-shadow:         0px 1px 13px 0px rgba(255, 255, 255, 1);
}


.button.white span,
a.button.white span {
	color: #302946;
}

.button.black,
a.button.black {
	background: none;
	-webkit-box-shadow: none;
	-moz-box-shadow:    none;
	box-shadow:         none;
	border:1px solid rgba(255, 255, 255, 0.2);
	height: 60px;
	display: inline-block;
	line-height: 60px;
}

.button.black span,
a.button.black span {
  text-shadow: 0px 1px 18px rgba(255, 255, 255, 1);
	color: #fff;
}
.button.black:hover span,
a.button.black:hover span {
	color: #cfbfff;
	text-shadow: 0px 1px 18px #cfbfff;
}


.button.blue,
a.button.blue {
	background: #5055d9;
	-webkit-box-shadow: 0px 1px 5px 0px #5055d9;
-moz-box-shadow:    0px 1px 5px 0px #5055d9;
box-shadow:         0px 1px 5px 0px #5055d9;
	height: 60px;
	display: inline-block;
	line-height: 60px;
}

.button.blue span,
a.button.blue span {
	-webkit-transition: all 0.4s ease-in-out;
-moz-transition: all 0.4s ease-in-out;
-o-transition: all 0.4s ease-in-out;
transition: all 0.4s ease-in-out;

	color: #fff;
}
.button.black:hover span,
a.button.black:hover span {
	color: #fff;
	text-shadow: 0px 1px 18px rgba(255, 255, 255, 1);
}

.button.black:hover,
a.button.black:hover {
	-webkit-box-shadow: none;
	-moz-box-shadow:    none;
	box-shadow:         none;
}

.button span,
a.button span {
	-moz-transform: skew(8deg, 0deg);
	-webkit-transform: skew(8deg, 0deg);
	-o-transform: skew(8deg, 0deg);
	-ms-transform: skew(8deg, 0deg);
	transform: skew(8deg, 0deg);
	display: inline-block;
}




/******************************* 3 .section *************************************/

.section {
	/*background: #100e17;*/
	padding-top:78px;
	padding-bottom: 115px;
	width: 100%;
}

.section-tov {
	/*background: #100e17;*/
	padding-top:78px;
	width: 100%;
}

.section.content {
	position: relative;
}

.section-tov.content {
	position: relative;
}

.section .section_menu {
	margin-bottom: 64px;
}
.section .section_menu li {
	float: left;
}

.section .section_menu li:nth-last-child(1) {
	clear: both;
	float: none;
}

.section .section_menu li:nth-last-child(2) a::after {
	display: none;
}

.section .section_menu li:nth-child(1) a {
	padding-left: 0;
}

.section .section_menu li a {
	font-size: 22px;
	color: #a09da8;
	text-decoration: none;
		position: relative;
		padding-right: 25px;
		padding-left: 25px;
}

.section .section_menu li a:hover {
	color: #cfbfff;
	text-shadow: 0px 1px 18px #cfbfff;
}

.section .section_menu li.current a {
	color: #fff;
	text-shadow: 0px 1px 18px rgba(255, 255, 255, 1);
}

.section .section_menu li a::after {
	content: '';
	position: absolute;
	right: 0;
	top:3px;
	height: 23px;
	border-left: 1px solid rgba(250,250,250, 0.2);
	-moz-transform: skew(-8deg, 0deg);
	-webkit-transform: skew(-8deg, 0deg);
	-o-transform: skew(-8deg, 0deg);
	-ms-transform: skew(-8deg, 0deg);
	transform: skew(-8deg, 0deg);
}
.section .menu_tabs  {

}
.section .menu_tabs .section_tabs {
	margin-bottom: 35px;
}

.section .menu_tabs .section_tabs li {
	display: inline-block;
	margin-right: 8px;
}

.section .menu_tabs .section_tabs li a {
	height: 41px;
	line-height: 41px;
	text-decoration: none;
	-moz-transform: skew(-8deg, 0deg);
	-webkit-transform: skew(-8deg, 0deg);
	-o-transform: skew(-8deg, 0deg);
	-ms-transform: skew(-8deg, 0deg);
	transform: skew(-8deg, 0deg);
	font-size: 18px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	padding:0 22px;
	font-size: 18px;
	color: rgba(250,250,250, 0.2);
	display: block;
	border:1px solid rgba(250,250,250, 0.2);
	margin-bottom: 20px;

}
.section .menu_tabs .section_tabs li.current a {
	border:1px solid rgba(250,250,250, 0.6);
	color: #fff;
	text-shadow: 0px 1px 18px rgba(255, 255, 255, 1);
}

.section .menu_tabs .section_tabs li a span {
	-moz-transform: skew(8deg, 0deg);
	-webkit-transform: skew(8deg, 0deg);
	-o-transform: skew(8deg, 0deg);
	-ms-transform: skew(8deg, 0deg);
	transform: skew(8deg, 0deg);
	display: inline-block;
}

.section .menu_tabs .section_tabs li a:hover span {
	color: #cfbfff;
	text-shadow: 0px 1px 18px #cfbfff;
}

.section .menu_tabs .section_tabs li.current a:hover span {
	color: #fff;
	text-shadow: 0px 1px 18px rgba(255, 255, 255, 1);
}

.section .menu_tabs .tabs_content .tree_list {
	margin-bottom: 74px;
	margin-left: 14px;
}

.section .menu_tabs .tabs_content .tree_list li {
	color: #a09da8;
	font-size: 20px;
	line-height: 28px;
	background: url('/assets/images/zendentistry/i/ul_disk.png') no-repeat;
	padding-left: 34px;
	padding-bottom: 36px;
}

.section .menu_tabs .tabs_content .tree_list li:nth-last-child(1) {
	background: url('/assets/images/zendentistry/i/ul_disk_last.png') no-repeat;

}

.section .menu_tabs .tabs_content .tree_list li i {
	color: #fff;
	font-style: normal;
	font-weight: 300;
}


.discussion {
	border-top: 1px solid rgba(250,250,250, 0.1);
	padding-top: 79px;
}

.discussion .title {
	color: #fff;
	font-weight: 300;
	font-family: 'Oswald';
	font-size: 60px;
	padding-bottom: 44px;
}

.discussion .comment {
	margin-bottom: 59px;
	margin-right: 20px;
}

.discussion .comment .comment {
	margin-left: 100px;
	padding-top: 59px;
}
.discussion .comment .avatar {
	width: 61px;
	height: 61px;
	-moz-transform: skew(-8deg, 0deg);
	-webkit-transform: skew(-8deg, 0deg);
	-o-transform: skew(-8deg, 0deg);
	-ms-transform: skew(-8deg, 0deg);
	transform: skew(-8deg, 0deg);
	overflow: hidden;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	margin-right: 5px;
	float: left;
}

.discussion .comment .avatar .img {
	width: 100%;
	height: 100%;
}

.discussion .comment .avatar .img img {
	width: 100%;
	height: auto;
}

.discussion .comment .field_text {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	height: 96px;
	border: 1px solid rgba(250,250,250, 0.1);
	float: right;
	width: calc(100% - 76px);
	-moz-transform: skew(-8deg, 0deg);
	-webkit-transform: skew(-8deg, 0deg);
	-o-transform: skew(-8deg, 0deg);
	-ms-transform: skew(-8deg, 0deg);
	transform: skew(-8deg, 0deg);
	margin-bottom: 20px;
	overflow: hidden;
}

.discussion .comment .field_text textarea {
	border:0;
	background: none;
	width: 100%;
	height: 100%;
	font-size: 18px;
	color: #a09da8;
	font-family: 'Rubik';
	padding:22px 20px;
	-moz-transform: skew(8deg, 0deg);
	-webkit-transform: skew(8deg, 0deg);
	-o-transform: skew(8deg, 0deg);
	-ms-transform: skew(8deg, 0deg);
	transform: skew(8deg, 0deg);
}

.discussion .comment .authorization {
	text-align: right;
	font-size: 15px;
	color: #a09da8;
	padding-bottom: 15px;
}

.discussion .comment .authorization a {
	text-decoration: none;
	display: inline-block;
	color: #fff;
	font-size: 20px;
	margin-left: 7px;
}

.discussion .comment .authorization a:hover {
	color: #cfbfff;
	text-shadow: 0px 1px 18px #cfbfff;
}

.discussion .comment .bl_button {
	text-align: right;
	width: 99%;
}

.discussion .comment .comm_block {
	float: right;
	width: calc(100% - 96px);
	padding-left: 20px;
}

.discussion .comment .comm_block .headline {
	font-size: 18px;
	color: #a09da8;
	padding-top: 23px;

	margin-bottom: 20px;
}

.discussion .comment .comm_block .headline span {
	font-weight: 300;
	display: inline-block;
	padding:0 8px;
}

.discussion .comment .comm_block .comment_text {
	font-size: 18px;
	color: #7b7687;
	font-weight: 300;
	line-height: 24px;
	padding-bottom: 30px;
}

.discussion .comment .comm_block .panel_message .count {
	font-size: 16px;
	color: #a09da8;
	display: inline-block;
	margin-right: 16px;
}

.discussion .comment .comm_block .panel_message .arrows {
	font-size: 20px;
	display: inline-block;
	color: #fff;
}

.discussion .comment .comm_block .panel_message .arrows a {
	color: #fff;
	text-shadow: 0px 1px 18px rgba(255, 255, 255, 1);
	margin-right: 8px;
	display: inline-block;
}

.discussion .comment .comm_block .panel_message a {
	color: #fff;
	text-shadow: 0px 1px 18px rgba(255, 255, 255, 1);
	margin-right: 8px;
	font-size: 16px;
	display: inline-block;
	text-decoration: none;
}
.discussion .comment .comm_block .panel_message a:hover {
	color: #cfbfff;
	text-shadow: 0px 1px 18px #cfbfff;
}





/******************************* 4 .form_question *************************************/

.form_question {
	padding-top:112px;
	padding-bottom: 101px;
	background: url('/assets/images/zendentistry/imgcont2.jpg') no-repeat;
	background-size: cover;
	width: 100%;
}

.form_question.f2 {
	background: url('/assets/images/zendentistry/i/bg_sup_form.jpg') no-repeat;
	background-size:cover;
	background-position: center center;
}

.form_question .title {
	text-align: center;
	font-weight: 300;
	color: #fff;
	font-family: 'Oswald';
	font-size: 60px;
	padding-bottom: 23px;
}

.form_question .description {
	font-size: 24px;
	color: #a09da8;
	text-align: center;
	font-weight: 300;
	margin-bottom: 60px;
	line-height: 32px;
}

.form_question.subscribe {
	background-position-y: -157px;
	margin-top: -93px;
}

.form_question .form {
	width: 830px;
	margin:0 auto;
}

.form_question.subscribe .form {
	width: 605px;
}

.form_question .form .input_bl {
	-moz-transform: skew(-8deg, 0deg);
	-webkit-transform: skew(-8deg, 0deg);
	-o-transform: skew(-8deg, 0deg);
	-ms-transform: skew(-8deg, 0deg);
	transform: skew(-8deg, 0deg);
	border: 1px solid rgba(255, 255, 255, 0.1);
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	margin-right: 10px;
	width: calc(49% - 5px);
	float: left;
	margin-bottom: 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.form_question.subscribe .form .input_bl {
	width: calc(70% - 5px);
}

.form_question .form .input_bl input {
	width: 100%;
	height: 100%;
	border:0;
	background: none;
	color: #fff;
	font-size: 18px;
	font-weight: 300;
	padding: 21px 22px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	-moz-transform: skew(8deg, 0deg);
	-webkit-transform: skew(8deg, 0deg);
	-o-transform: skew(8deg, 0deg);
	-ms-transform: skew(8deg, 0deg);
	transform: skew(8deg, 0deg);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.form_question .form .input_bl input::-webkit-input-placeholder {color:#a09da8;}
.form_question .form .input_bl input::-moz-placeholder          {color:#a09da8;}
.form_question .form .input_bl input:-moz-placeholder           {color:#a09da8;}
.form_question .form .input_bl input:-ms-input-placeholder      {color:#a09da8;}

.form_question .form .textarea_bl {
	-moz-transform: skew(-8deg, 0deg);
	-webkit-transform: skew(-8deg, 0deg);
	-o-transform: skew(-8deg, 0deg);
	-ms-transform: skew(-8deg, 0deg);
	transform: skew(-8deg, 0deg);
	border: 1px solid rgba(255, 255, 255, 0.1);
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	margin-right: 10px;
	clear: both;
	width: 98%;
	margin-bottom: 10px;
	height: 100px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin-bottom: 20px;
}

.form_question .form .textarea_bl textarea {
	width: 100%;
	height: 100%;
	border:0;
	background: none;
	color: #fff;
	font-size: 18px;
	font-weight: 300;
	padding: 26px 22px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	-moz-transform: skew(8deg, 0deg);
	-webkit-transform: skew(8deg, 0deg);
	-o-transform: skew(8deg, 0deg);
	-ms-transform: skew(8deg, 0deg);
	transform: skew(8deg, 0deg);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.form_question .form .bl_button {
	text-align: center;
}


/******************************* 5 .footer *************************************/

.footer {
	padding-top: 80px;
	background: #0e0c14;
	padding-bottom: 52px;
}

.footer .widjet,
.contact_data .widjet {
	min-width: 330px;
	float: left;
	vertical-align: top;
	position: relative;
	margin-right: 50px;
	margin-bottom: 30px;
	height: 130px;
	padding-right: 44px;
}

.footer .widjet.soc_w,
.contact_data .widjet.soc_w {
	min-width: auto;
}

.footer .widjet.soc_w .soc a,
.contact_data .widjet.soc_w .soc a {
	text-decoration: none;
	color: #746f7f;
	font-size: 45px;
	margin-right: 10px;
	margin-bottom: 10px;
}

.contact_data .widjet.soc_w .soc a.text,
.wrapper .footer .widjet.soc_w .soc .text {
    font-size: 25px;
}

.wrapper .footer .widjet.soc_w .soc {
	display: flex;
    align-items: center;
	flex-wrap: wrap;
}

.footer .widjet.soc_w .soc a:hover,
.contact_data .widjet.soc_w .soc a:hover {
	color: #cfbfff;
	text-shadow: 0px 1px 18px #cfbfff;
}

.footer .widjet .ttl,
.contact_data .widjet .ttl {
	color: #7b7687;
	font-size: 30px;
	padding-bottom: 8px;
}

.contact_data .widjet .ttl {
	color: #c0bcc9;
}

.footer .widjet .descript,
.contact_data .widjet .descript {
	font-size: 20px;
	color: #514c5c;
	font-weight: 300;
	line-height: 24px;
}

.footer .widjet .descript b,
.contact_data .widjet .descript b {
	color: #746f7f;
	font-weight: normal;
}

.contact_data .widjet .descript b {
	color: #c0bcc9;
}

.footer .widjet .descript a,
.contact_data .widjet .descript a {
	color: #746f7f;
	text-decoration: none;
}

.contact_data .widjet .descript a {
	font-size: 18px;
	color: #c0bcc9;
}

.footer .widjet .descript a:hover,
.contact_data .widjet .descript a:hover {
	text-decoration: underline;
}

.footer .widjet .descript span.seps,
.contact_data .widjet .descript span.seps {
	display: inline-block;
	color: #746f7f;
	padding:0 5px;
}

.footer .widjet .sep {
	margin-top: -5px;
}

.contact_data .widjet .sep {
	margin-top: -15px;
}

.footer .widjet .sep,
.contact_data .widjet .sep {
	height: 90px;
	width:1px;
	position: absolute;
	right:0;
}


.footer .widjet .sep::after,
.contact_data .widjet .sep::after {
	content: "";
	position: absolute;
	top:0;
	left:0;
	width: 1px;
	height: 100%;
	background: rgba(255, 255, 255, 0.1);
}

.footer .links {
	font-size: 20px;
	color: #514c5c;
	font-weight: 300;
	float: left;
}

.footer .links a {
	font-size: 20px;
	color: #514c5c;
	font-weight: 300;
	text-decoration: none;
	margin-right: 28px;
}

.footer .links a:hover {
	text-decoration: underline;
}

.footer .copy {
	font-size: 20px;
	color: #514c5c;
	font-weight: 300;
	float: right;
}


.menu_toggle {
	height:100%;
	overflow-x:hidden;
	width:100%;
	position:absolute;
	top:-100%;
	left:0;
	z-index:99999;
	text-align:center;
	-webkit-transition: top 0.4s, background-color 0.4s;
	-moz-transition: top 0.4s, background-color 0.4s;
	transition: top 0.4s, background-color 0.4s;
	background:rgba(0, 0, 0, 0.0);
}


body.active .menu_toggle {
	background:rgba(0, 0, 0, 0.9);
}

.menu_toggle .bg_scroll {
	padding-bottom:100px;
}

.menu_toggle .sub_title {
	font-size:14px;
	text-transform: uppercase;
	color:#cfbfff;
	font-weight:bold;
	text-transform: uppercase;
	letter-spacing:2px;
	padding-bottom:10px;
}

.menu_toggle .center {
	padding-top:100px;
}

.menu_toggle ul {
	padding-bottom:40px;
	position:static;
}

.menu_toggle ul li ul {
	padding-top:40px;
}

.menu_toggle ul li {
	margin-bottom:2px;
}

.menu_toggle ul li a {
	display:inline-block;
	font-size:20px;
	font-weight:300;
	color:#fff;
	padding:15px 30px;
	text-decoration:none;
}

.menu_toggle ul li a:hover {

	color:#fff;
}

.menu_toggle ul li a:hover {
	background-color: transparent;
  text-shadow: 0px 0px 32.8px rgba(203, 216, 255, 1), 0px 0px 57.4px rgba(51, 102, 255, 1);
  transition: 0.3s;
  -webkit-transition: 0.3s;
}

body.active .wrapper {
	overflow:hidden;
}

body.hiddenbd {
	position:static;
	overflow:hidden;
}

body.active .menu_toggle {
	top:0px;
}
.wrapper .button_menu {
		display:none;
}

.hide{
	display: none !important;
}


/******************************* 6 .content other *************************************/
.onsale{
    line-height: 41px;
    height: 41px;
    background: #1d1b25;
    position: absolute;
    top: 24px;
    left: -6px;
    font-size: 13px;
    color: #ffffff;
    text-transform: uppercase;
    padding-left: 34px;
    padding-right: 21px;
    -moz-transform: skew(-8deg, 0deg);
    -webkit-transform: skew(-8deg, 0deg);
    -o-transform: skew(-8deg, 0deg);
    -ms-transform: skew(-8deg, 0deg);
    transform: skew(-8deg, 0deg);
}

.woocommerce span.onsale {
    background: #5055d9;
	padding:0 20px;
	letter-spacing: 2.2pt;
}

.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

@media(max-width: 1200px) {
	.woocommerce ul.products {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media(max-width: 700px) {
	.woocommerce ul.products {
		grid-template-columns: 1fr;
	}
}

.woocommerce ul.products::before {
	display: none;
}

.term-events.woocommerce ul.products li.product {
	display: flex;
}

.content .title_m {
	font-weight: 300;
	color: #fff;
	font-size: 60px;
	font-family: 'Oswald';
	margin-bottom: 60px;
}

.content .title_m.center {
	text-align: center;
}

.content .author_post {
	font-size: 20px;
	color: #ffffff;
	margin-top:-40px;
	margin-bottom: 50px;
}

.content .profile_konkurs {
	position: relative;
}

.content .right_alg {
	position: absolute;
	right:0;top:0;
}

.content h3 {
	font-weight: 300;
	font-size: 30px;
	color: #c0bcc9;
	padding-bottom: 35px;
}

.content p {
	font-size: 20px;
	color: #a09da8;
	font-weight: 300;
	line-height: 28px;
	margin-bottom: 20px;
}

.woocommerce form .form-row .input-text, .woocommerce form .form-row select {
	color: #a09da8 !important;
}

.content .artcl {
	margin-bottom: 70px;
}

.content {
	color: #7b7687;
	font-weight: 300;
}


.content table {
	font-size: 18px;
}

.content table td {
	padding-bottom: 20px;
	padding-right: 50px;
}

.content table td:nth-child(even) {
	font-weight: normal;
}

.content hr {
	border:0;
	border-top:1px solid #2b2833;
	margin: 45px 0;
}
.content .grid.n2 {
	padding-top: 84px;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-align-content: stretch;
	-ms-flex-line-pack: stretch;
	align-content: stretch;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.content .grid.n2.nopadd {
	padding-top: 0;
}

.content .grid.n2 .entry {
	-webkit-order: 0;
	-ms-flex-order: 0;
	order: 0;
	-webkit-flex: 2 1 auto;
	-ms-flex: 2 1 auto;
	flex: 2 1 auto;
	-webkit-align-self: auto;
	-ms-flex-item-align: auto;
	align-self: auto;
}

.content .grid.n2 .sidebar {
	float: left;
	width:306px;
	background: #1d1b25;
	padding:0 40px;
	-webkit-order: 0;
	-ms-flex-order: 0;
	order: 0;
	-webkit-flex: 0 1 auto;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
	-webkit-align-self: auto;
	-ms-flex-item-align: auto;
	align-self: auto;
	margin-right: 60px;
}

.content .grid.n2 .sidebar .avatar {
	width: 158px;
	height: 158px;
	margin-top:-26px;
	overflow: hidden;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	margin-bottom: 26px;
	position: relative;
}

.content .grid.n2 .sidebar .avatar .layertop {
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	line-height: 158px;
	text-align: center;
	background: rgba(29, 27, 37, 0.75);
	font-size: 14px;
	color: #ffffff;
	cursor: pointer;
}

.content .grid.n2 .sidebar .avatar img {
	width: 100%;
	height: auto;
}

.content .grid.n2 .sidebar .widjet {
	font-size: 20px;
	color: #a09da8;
	line-height: 28px;
	border-bottom: 1px solid #2a2832;
	margin-bottom: 33px;
}

.content .grid.n2 .sidebar .widjet p {
	margin-bottom: 36px;
}
.content .grid.n2 .sidebar .widjet p a {
	font-size: 20px;
	line-height: 28px;
}

.content .grid.n2 .sidebar .menu {
	margin-bottom: 30px;
}

.content .grid.n2 .sidebar .menu ul li {
	margin-bottom: 24px;
}

.content .grid.n2 .sidebar .menu ul li a {
	font-size: 18px;
	color: #ffffff;
	text-decoration: none;
}

.content .grid.n2 .sidebar .menu ul li a:hover {
	color: #cfbfff;
	text-shadow: 0px 1px 18px #cfbfff;
}

.content .grid.n2 .sidebar .menu ul li.current a {
	color: #5c5866;
}

.content .grid.n2 .sidebar .menu ul li.current a:hover {
	text-shadow: none;
	color: #5c5866;
}

.content .grid.n2 .entry {

}


.content .entry .ordertable {
	border:1px solid #28272f;
	padding:50px 46px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	position: relative;
	margin-bottom: 50px;
}

.content .entry .ordertable .headline {
	border-bottom: 1px solid #28272f;
	margin-bottom: 50px;
}

.content .entry .ordertable .headline .ttl {
	font-size: 30px;
	color: #a09da8;
	margin-bottom: 10px;
}

.content .entry .ordertable .headline .descript {
	font-weight: 300;
	font-size: 18px;
	color: #7b7687;
	padding-bottom: 45px;
}

.content .entry .ordertable .headline .status {
	height: 56px;
	line-height: 56px;
	background: #28252f;
	padding:0 24px;
	font-size: 18px;
	color: #a09da8;
	font-weight: 300;
	position: absolute;
	right:0;
}

.content .entry .ordertable .headline .status::after {
	content: '';
	background: url('/assets/images/zendentistry/i/after_status.jpg') no-repeat;
	width:12px;
	height: 56px;
	position: absolute;
	left: -11px;
	top:0px;
}

.content .entry .ordertable .flex_block {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-align-content: stretch;
	-ms-flex-line-pack: stretch;
	align-content: stretch;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.content .entry .ordertable .flex_block .item {
	-webkit-order: 0;
	-ms-flex-order: 0;
	order: 0;
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	-webkit-align-self: auto;
	-ms-flex-item-align: auto;
	align-self: auto;
	font-size: 18px;
	color: #7b7687;
	font-weight: 300;
}


.content .entry .ordertable .flex_block .item p {
	margin-bottom: 20px;
	line-height: 22px;
}

.content .entry .ordertable .flex_block .item .min_size {
	font-size: 16px;
	color: #a09da8;
}

.content .entry .ordertable .flex_block .item table {
	width: 100%;
}

.content .entry .ordertable .flex_block .item table td {
	padding-bottom: 17px;
}

.content .entry .ordertable .flex_block .item table tr:nth-of-type(1) td {
	padding-top: 4px;
}

.content .entry .ordertable .flex_block .item table td:nth-last-child(odd) {
	color: #a09da8;
}

.content .entry .ordertable .flex_block .item table td .max_size {
	font-weight: normal;
}

.content .entry .ordertable .flex_block .item table td:nth-last-child(odd) .max_size {
	font-size: 22px;
	color: #fff;
}

.content .entry .list_goods .item.item-custom {

	 display: block;
}

.content .entry .list_goods .item .item-sub-block{
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-align-content: stretch;
	-ms-flex-line-pack: stretch;
	align-content: stretch;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 20px;

}

.content .entry .list_goods .item .item-sub-block .flex {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex:1 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
		margin-right: 24px;
		font-size: 20px;
		color: #a09da8;
		text-align: center;
}

.content .entry .list_goods .item .product-type-footer{
	padding-right: 20px;
}

@media (max-width: 1024px) {
	.content .entry .list_goods .item .product-type-footer .button {
		font-size: 16px;
	}
}

@media (max-width: 718px) {
	.content .entry .list_goods .item .product-type-footer .button {
		height: 50px;
		line-height: 50px;
		padding: 0 14px;
	}
}

.content .entry .list_goods .item .flex:nth-of-type(1) {
	text-align: left;
}

.content .entry .list_goods .item .flex .img {
	width:153px;
	height: 99px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	overflow: hidden;
}

.content .entry .list_goods .item .flex .img img {
	width: 100%;
	height: auto;
}

.content .entry .list_goods .item .flex .info {
	text-align: left;
	max-width: 200px;
	min-width: 200px;
}

@media (max-width:740px) {
	.content .entry .list_goods .item .item-sub-block{
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.content .entry .list_goods .item .flex .info {
		text-align:center;
	}
}

.content .entry .list_goods .item .flex .info .art {
	font-size: 13px;
	color: #535059;
	margin-bottom: 13px;
}

.content .entry .list_goods .item .flex .info .ttl_good {
	font-size: 20px;
	color: #fff;
	margin-bottom: 14px;
	display: inline-block;

}

.content .entry .list_goods .item .flex .info .sizes {
	font-size: 16px;
	color: #7b7687;
}

.content .entry .list_goods .item .flex .info .sizes span {
	display: inline-block;
	margin-right: 22px;
	font-weight: 300;
}

.content .article {
	font-size: 20px;
	color: #a09da8;
	line-height: 28px;
	font-weight: 300;
}

.content .article p {
	margin-bottom: 25px;
}

.content .title2 {
	font-size: 30px;
	color: #c0bcc9;
	font-weight: 300;
	margin-bottom: 40px;
}

.content .grid_flex {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-align-content: stretch;
	-ms-flex-line-pack: stretch;
	align-content: stretch;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 80px;
}

.content .grid_flex .item {
	-webkit-order: 0;
	-ms-flex-order: 0;
	order: 0;
	-webkit-flex: 0 1 auto;
	-ms-flex: 0 1 auto;
	flex:0 1 auto;
	-webkit-align-self: auto;
	-ms-flex-item-align: auto;
	align-self: auto;
	margin-right: 16px;
}

.content .grid_flex .item .img {
	width: 252px;
	height: 252px;
	overflow: hidden;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	margin-bottom: 20px;
}

.content .grid_flex .item .img img {
	width: 100%;
	height: auto;
}

.content .grid_flex .item .ttl {
	color: #c0bcc9;
	font-size: 20px;
	padding-bottom: 14px;
}

.content .grid_flex .item .decript {
	font-size: 16px;
	color: #7b7687;
}

.content .gallery_grid {
	width: 100%;
	overflow: hidden;
	position: relative;
}

.content .gallery_grid .overflow {
	width:105%;
}

.content .gallery_grid .item {
	float: left;
	width: 316px;
	display: block;
	text-decoration: none;
	margin-right: 20px;
	margin-bottom: 40px;
}

.content .gallery_grid .item .img {
	width: 100%;
	margin-bottom: 17px;
	position: relative;
}

.content .gallery_grid .item .img::after {
	content: '';
	width: 100%;
	height: 100%;
	background: rgba(41, 38, 70, 0.75);
	position: absolute;
	top:0;
	left: 0;
}

.content .gallery_grid .item .img img {
	width: 100%;
	height: auto;
}

.content .gallery_grid .item .ttl {
	font-size: 18px;
	color: #c0bcc9;
	display: inline-block;
}

.content .gallery_grid .item:hover .ttl {
	text-shadow: 0px 1px 18px rgba(255, 255, 255, 0.5);
}

.content .navigation {
	text-align: center;
}

.content .navigation a {
	display: inline-block;
	height: 40px;
	width: 40px;
	line-height: 40px;
	text-align: center;
	text-decoration: none;
	border:1px solid #28272f;
	font-size: 18px;
	color: #a09da8;
	-moz-transform: skew(-8deg, 0deg);
	-webkit-transform: skew(-8deg, 0deg);
	-o-transform: skew(-8deg, 0deg);
	-ms-transform: skew(-8deg, 0deg);
	transform: skew(-8deg, 0deg);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	margin:5px 5px;
}

.content .navigation a span {
	-moz-transform: skew(8deg, 0deg);
	-webkit-transform: skew(8deg, 0deg);
	-o-transform: skew(8deg, 0deg);
	-ms-transform: skew(8deg, 0deg);
	transform: skew(8deg, 0deg);
	display: inline-block;
}

.content .navigation a.active {
	text-shadow: 0px 1px 18px rgba(255, 255, 255, 0.8);
	color: #fff;
	border: 1px solid #9f9fa2;
}

.content .buttons_ul li {
	display: inline-block;
	margin-right: 10px;
}

.entry {
	font-size: 18px;
	color: #7b7687;
	font-weight: 300;
	line-height: 28px;
}

.entry p {
	margin-bottom: 50px;
}

.entry .title_entry {
	font-size: 30px;
	color: #a09da8;
	padding-bottom: 55px;
}

.entry .blocks_card {
	width: 100%;
	overflow: hidden;
	margin-bottom: 29px;
}

.entry .blocks_card .overflow {
	width: 105%;
}

.entry .blocks_card .item {
	margin-right: 20px;
	width: calc(46% - 7px);
	position: relative;
	text-decoration: none;
	display: block;
	float: left;
	margin-bottom: 20px;
}

.entry .blocks_card .item .layer {
	width: 100%;
	height: 100%;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	line-height: 0;
	position: relative;
}
.entry .blocks_card .item.add .img::before,
.entry .blocks_card .item.order .img::before {
	/* width: calc(100% - 2px); */
	position: absolute;
	border:1px solid #28272f;
	width: calc(100% - 2px);
	height: calc(100% - 2px);
	left:0;
	top:0;
	content: "";
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}


.entry .blocks_card .item.add .img::after {
	content: "";
	position: absolute;
	top:50%;
	left:50%;
	font-family: "FontAwesome";
	content: "\f067";
	color: #fff;
	margin-left: -12px;
	margin-top: -12px;
	font-size: 31px;
	line-height: 28px;
}

.entry .blocks_card .item .headline {
	font-size: 18px;
	color: rgba(250,250,250,1);
	padding-top: 12px;
	line-height: 26px;
	display: block;
}

.entry .blocks_card .item.add .headline {
	color: rgba(250,250,250,0.25);
}

.entry .blocks_card .item:hover .headline {
	text-shadow: none;
}

.entry .blocks_card .item .price {
	color:#7b7687;
}

.entry .blocks_card .item .layer {
	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
		position: absolute;
		top:0;
		left:0;
		width: 100%;
		height: 100%;
}

.entry .blocks_card .item .img {
	line-height: 0;
	position: relative;
}

.entry .blocks_card .item .img img {
	width: 100%;
	height: auto;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}



.entry .blocks_card .item .layer .edit_buttons {
	position: absolute;
	top:29px;
	right: 26px;
	display: block;
	text-align: right;
}

.entry .blocks_card .item .layer .edit_buttons .b_item {
	color: #fff;
	font-size: 14px;
	margin-left: 20px;
	cursor: pointer;
}

.entry .blocks_card .item .layer .edit_buttons .b_item:hover {
	text-shadow: 0px 1px 18px rgba(255, 255, 255, 1);
}

.entry .blocks_card .item .layer .info_line {
	padding:0 35px;
	line-height: 28px;
	padding-bottom: 23px;
}

.entry .blocks_card .item .layer .info_line .ttl {
	font-size: 20px;
	color: #e5e5e5;
	margin-bottom: 6px;
}

.entry .blocks_card .item .layer .info_line .descript {
	font-size: 13px;
	color: #9996a7;
	text-transform: uppercase;
}

.content .sorting_menu {
	margin-bottom: 40px;
  margin-top: -23px;
}

.content .sorting_menu .label {
	color: #a09da8;
	float: left;
	line-height: 50px;
	font-weight: normal;
	margin-right: 18px;
}

.content .good_card .sorting_menu.sorting_menu_ext{
	margin-top: 40px;
}

.content .sorting_menu.frm .menu_s li a {
	line-height: 35px;
}

.content .sorting_menu.frm .menu_s li::after {
	top: 8px;
}

.content .sorting_menu .menu_s	{
	-moz-transform: skew(-8deg, 0deg);
	-webkit-transform: skew(-8deg, 0deg);
	-o-transform: skew(-8deg, 0deg);
	-ms-transform: skew(-8deg, 0deg);
	transform: skew(-8deg, 0deg);
	 border: 1px solid #28272f;
	 -webkit-border-radius: 5px;
	 -moz-border-radius: 5px;
	 border-radius: 5px;
	 float: left;
	 padding:0 25px;
}

.content .sorting_menu .menu_s li {
	float: left;
	margin-right: 50px;
	position: relative;
}

.content .sorting_menu .menu_s li::after {
	content: '';
	position: absolute;
	right: -25px;
  top: 13px;
  height: 20px;
	border-left: 1px solid rgba(250,250,250, 0.2);
	-moz-transform: skew(-8deg, 0deg);
	-webkit-transform: skew(-8deg, 0deg);
	-o-transform: skew(-8deg, 0deg);
	-ms-transform: skew(-8deg, 0deg);
	transform: skew(-8deg, 0deg);
}

.content .sorting_menu .menu_s li:nth-last-of-type(1) {
	margin-right: 0;
}
.content .sorting_menu .menu_s li:nth-last-of-type(1)::after {
	display: none;
}

.content .sorting_menu .menu_s li a {
	display: block;
	color: #a09da8;
	font-weight: normal;
	line-height: 46px;
	-moz-transform: skew(8deg, 0deg);
	-webkit-transform: skew(8deg, 0deg);
	-o-transform: skew(8deg, 0deg);
	-ms-transform: skew(8deg, 0deg);
	transform: skew(8deg, 0deg);
}

.content .sorting_menu .menu_s li.current a {
	color: #fff;
}

.content .review_links .menu_s{
	-moz-transform: skew(-8deg, 0deg);
	-webkit-transform: skew(-8deg, 0deg);
	-o-transform: skew(-8deg, 0deg);
	-ms-transform: skew(-8deg, 0deg);
	transform: skew(-8deg, 0deg);
	border: 1px solid #28272f;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	float: left;
	padding:0 25px;
}

.content .review_links .menu_s li a {
	display: block;
	color: #a09da8;
	font-weight: normal;
	line-height: 46px;
	font-size: 18px;
	-moz-transform: skew(8deg, 0deg);
	-webkit-transform: skew(8deg, 0deg);
	-o-transform: skew(8deg, 0deg);
	-ms-transform: skew(8deg, 0deg);
	transform: skew(8deg, 0deg);
}

.entry .blocks_card .item.order .context {
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	padding:0 30px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.entry .blocks_card .item.order .context .headline {
	margin-bottom: 40px;
	padding-top:28px;
}

.entry .blocks_card .item.order .context .headline .status {
    height: 42px;
    line-height: 42px;
    background: #28252f;
    padding: 0 24px;
    font-size: 14px;
    color: #a09da8;
    font-weight: 300;
    position: absolute;
    right: 0;
}

.entry .blocks_card .item.order .context .headline .status::after {
    content: '';
    background: url(i/after_status.jpg) no-repeat;
    width: 12px;
    height: 42px;
    position: absolute;
    left: -11px;
    top: 0px;
}

.entry .blocks_card .item.order .context .headline .ttl {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: -2px;
}

.entry .blocks_card .item.order .context .headline .descript {
    font-weight: 300;
    font-size: 14px;
    color: #7b7687;
}


/*--*/

.entry .blocks_card .item.order .context .flex_block {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-align-content: stretch;
	-ms-flex-line-pack: stretch;
	align-content: stretch;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.entry .blocks_card .item.order .context .flex_block .item_fx {
	-webkit-order: 0;
	-ms-flex-order: 0;
	order: 0;
	-webkit-flex: 1 1 auto;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	-webkit-align-self: auto;
	-ms-flex-item-align: auto;
	align-self: auto;
	font-size: 18px;
	color: #7b7687;
	font-weight: 300;
}


.entry .blocks_card .item.order .context .flex_block .item_fx p {
	margin-bottom: 20px;
	line-height: 22px;
}

.entry .blocks_card .item.order .context .flex_block .item_fx .min_size {
	font-size: 16px;
	color: #a09da8;
}

.entry .blocks_card .item.order .context .flex_block .item_fx table {
	width: 100%;
	margin-bottom: 40px;
}

.entry .blocks_card .item.order .context .flex_block .item_fx table td {
	padding-bottom: 12px;
	font-size: 16px;
	line-height: 10px;
}

.entry .blocks_card .item.order .context .flex_block .item_fx table tr:nth-of-type(1) td {
	padding-top: 4px;
}

.entry .blocks_card .item.order .context .flex_block .item_fx table td:nth-last-child(odd) {
	color: #a09da8;
}

.entry .blocks_card .item.order .context .flex_block .item_fx table td .max_size {
	font-weight: normal;
}

.entry .blocks_card .item.order .context .flex_block .item_fx table td:nth-last-child(odd) .max_size {
	font-size: 22px;
	color: #fff;
}


.entry .blocks_card .item.order .context .price {
	color:#ffffff;
	float: left;
	font-weight: normal;
}

.entry .blocks_card .item.order .context .more {
	float: right;
	display: inline-block;
	font-size: 18px;
	font-weight: normal;
	text-shadow: 0px 1px 18px rgba(255, 255, 255, 0.8);
}

.content .gallery_grid.el3 {
	margin-bottom: 38px;
}

.content .gallery_grid.el3 .item {
	 width: 22.7%;
	 position: relative;
	 margin-bottom: 20px;
	 display: inline-block;
	 float: none;
	 vertical-align: top;
}

.content .gallery_grid.el4 .item {
	width: calc(24.2% - 20px);
	margin-bottom: 20px;
}

.content .gallery_grid.el4 .slide .item {
	width: auto;
	margin-right: 0;
}

.content .gallery_grid.el4 .item .img {
	margin-bottom: 0;
	line-height: 0;
	position:relative;
	min-height:220px;
}

.content .gallery_grid.el4 .item .img::after {
	display: none;
}

.content .gallery_grid.el3 .item {
	position: relative;
}

.content .gallery_grid.el3 .item::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top:-15px;
	left:0;
	box-shadow: 0px 20px 60px 0px rgba(170, 128, 255, 0.45);
	-moz-transform: scale(0.92);
	-webkit-transform: scale(0.92);
	-o-transform: scale(0.92);
	-ms-transform: scale(0.92);
	transform: scale(0.92);
	transition: 0.3s;
	opacity: 0;
	z-index: 0;
}

.content .gallery_grid.el3 .item::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top:0;
	left:0;
	background: #1d1b25;
	z-index: 1;
}

.content .gallery_grid.el3 .item:hover::after {
	opacity: 1;
}

.content .gallery_grid.el3 .item > div {
	z-index:2;
	position: relative;
}

.content .gallery_grid.el3 .item:hover {
	/* -webkit-box-shadow: 0px 0px 12px -3px rgba(0, 255, 255, 0.5);
-moz-box-shadow:    0px 0px 12px -3px rgba(0, 255, 255, 0.5);
box-shadow:         0px 0px 12px -3px rgba(0, 255, 255, 0.5); */

}

.content .gallery_grid.el3 .item .img {
	margin-bottom: 0;
}

.content .gallery_grid.el3 .item:hover .img::after {
	display: none;
}

.content .gallery_grid.el3 .item .layer {
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	line-height: 0;
	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
	overflow: hidden;
}

.content .gallery_grid.products .item {
	overflow: hidden;
}

.content .gallery_grid.el3 .item .layer .flx {
	-webkit-order: 0;
	    -ms-flex-order: 0;
	    order: 0;
	    -webkit-flex: 0 1 auto;
	    -ms-flex: 0 1 auto;
	    flex: 0 1 auto;
	    -webkit-align-self: auto;
	    -ms-flex-item-align: auto;
	    align-self: auto;
}

.content .gallery_grid.el3 .item .layer .left,
.content .gallery_grid.el3 .item .layer .right {
	font-size: 13px;
	text-transform: uppercase;
	color: rgba(250, 250, 250, 0.5);
	padding:0px 35px;
	display: block;
	position: absolute;
	top:0;
	line-height: 66px;
	height: 66px;
}

.content .gallery_grid.el3 .item .layer .left {
	left:0;
}

.content .gallery_grid.el3 .item .layer .right {
	right:0;
}

.content .gallery_grid.el3 .item .layer .right span {
	display: inline-block;
	padding:0 10px;
}

.content .gallery_grid .item .count_products {
	line-height: 41px;
	height: 41px;
	background: #1d1b25;
	position: absolute;
	top: 24px;
	left:-6px;
	font-size: 13px;
	color: #ffffff;
	text-transform: uppercase;
	padding-left: 34px;
	padding-right: 21px;
	-moz-transform: skew(-8deg, 0deg);
-webkit-transform: skew(-8deg, 0deg);
-o-transform: skew(-8deg, 0deg);
-ms-transform: skew(-8deg, 0deg);
transform: skew(-8deg, 0deg);
}

.content .gallery_grid .item .count_products.blue {
	background: #5055d9;
	padding:0 20px;
	letter-spacing: 2.2pt;
}


.content .gallery_grid .item .count_products.rate {
	background: #5055d9;
	left:7px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	padding-left: 17px;
	padding-right:5px;
}


.content .gallery_grid .item .count_products.rate.voted {
	opacity: 0.7;
}

.content .gallery_grid .item .count_products.rate.voted i {
	margin-right: 10px;
}

.content .gallery_grid .item .count_products.rate.voted span {
	margin-right: 12px;
}

.content .gallery_grid .item .count_products span {
	display: inline-block;
	-moz-transform: skew(8deg, 0deg);
-webkit-transform: skew(8deg, 0deg);
-o-transform: skew(8deg, 0deg);
-ms-transform: skew(8deg, 0deg);
transform: skew(8deg, 0deg);
}

.content .gallery_grid.el3 .item .layer .info_line {
	padding:0 35px;
	line-height: 28px;
	margin-bottom: 34px;
}

.content .gallery_grid.el3 .item .layer .info_line .ttl {
	font-size: 20px;
	color: #ffffff;
	margin-bottom: 6px;
}

.content .gallery_grid.el3 .item .layer .info_line .description {
	color: rgba(250, 250, 250, 0.8);
	font-size: 16px;
	font-weight: 300;
}

.content .gallery_grid.el3 .item:hover .layer .info_line .description {
	color: rgba(250, 250, 250, 1);
}


.entry .form_lk .bl_input {
	margin-bottom: 38px;
}

.entry .form_lk .bl_input::after {
	content: '';
	width: 50%;
	clear: both;
	display: block;
}

.entry .form_lk .bl_input .label {
	font-weight: 500;
	font-size: 16px;
	color: #7b7687;
	padding-bottom: 15px;
	white-space: normal;
}

.entry .form_lk .bl_input .label p {
	margin-bottom: -25px;
    text-align: left;
    padding-left: 10px;
}

.entry .form_lk .bl_input .input_text_mod>p {
	margin-left: -8px;
	height: 100%;
}

.entry .form_lk .bl_input .input_text,
.entry .form_lk .bl_input .input_textarea {
	height: 53px;
	width: 38%;
	border: 1px solid #28272f;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	padding:0 20px;
	-moz-transform: skew(-8deg, 0deg);
	-webkit-transform: skew(-8deg, 0deg);
	-o-transform: skew(-8deg, 0deg);
	-ms-transform: skew(-8deg, 0deg);
	transform: skew(-8deg, 0deg);
	position: relative;
	float: left;
	margin-bottom: 10px;
}


.entry .form_lk .bl_input .input_text.year {
	width: 109px;
}

.entry .form_lk .bl_input .input_textarea {
	height: 95px;
	width: 50%;
}

.entry .form_lk .bl_input .input_text input[type="text"], .entry .form_lk .bl_input .input_text input[type="tel"], .entry .form_lk .bl_input .input_text input[type="email"],
.entry .form_lk .bl_input .input_textarea textarea {
	width: 100%;
	height: 100%;
	border:0;
	background: none;
	-moz-transform: skew(8deg, 0deg);
	-webkit-transform: skew(8deg, 0deg);
	-o-transform: skew(8deg, 0deg);
	-ms-transform: skew(8deg, 0deg);
	transform: skew(8deg, 0deg);
	font-size: 18px;
	color: #a09da8;
	position: relative;
	z-index: 2;
	overflow: hidden;
}

.entry .form_lk .bl_input .input_textarea {
	    height: 125px;
}

.entry .form_lk .bl_input .input_textarea textarea {
	font-family: 'Rubik';
	min-height: 102px;
	padding-top: 18px;
}

.entry .form_lk .bl_input .input_text input[type="text"]::-webkit-input-placeholder, .entry .form_lk .bl_input .input_text input[type="tel"]::-webkit-input-placeholder, .entry .form_lk .bl_input .input_text input[type="email"]::-webkit-input-placeholder {color:#a09da8; opacity: 0.25}
.entry .form_lk .bl_input .input_text input[type="text"]::-moz-placeholder, .entry .form_lk .bl_input .input_text input[type="tel"]::-moz-placeholder, .entry .form_lk .bl_input .input_text input[type="email"]::-moz-placeholder          {color:#a09da8; opacity: 0.25}
.entry .form_lk .bl_input .input_text input[type="text"]:-moz-placeholder, .entry .form_lk .bl_input .input_text input[type="tel"]:-moz-placeholder, .entry .form_lk .bl_input .input_text input[type="email"]:-moz-placeholder           {color:#a09da8; opacity: 0.25}
.entry .form_lk .bl_input .input_text input[type="text"]:-ms-input-placeholder, .entry .form_lk .bl_input .input_text input[type="tel"]:-ms-input-placeholder, .entry .form_lk .bl_input .input_text input[type="email"]:-ms-input-placeholder      {color:#a09da8; opacity: 0.25}

.entry .form_lk .bl_input .input_textarea textarea::-webkit-input-placeholder {color:#a09da8; opacity: 0.25}
.entry .form_lk .bl_input .input_textarea textarea::-moz-placeholder          {color:#a09da8; opacity: 0.25}
.entry .form_lk .bl_input .input_textarea textarea:-moz-placeholder           {color:#a09da8; opacity: 0.25}
.entry .form_lk .bl_input .input_textarea textarea:-ms-input-placeholder      {color:#a09da8; opacity: 0.25}

.entry .form_lk .bl_input .input_text .parent-focus,
.entry .form_lk .bl_input .input_textarea .parent-focus {
	width: 100%;
	height: 100%;
	position: absolute;
	top:-1px;
	left:-1px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	display: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-ms-appearance: none;
	z-index: 1;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.entry .form_lk .bl_input .input_text input[type="text"]:focus + .parent-focus,
.entry .form_lk .bl_input .input_textarea textarea:focus + .parent-focus {
	display: block;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(255, 255, 255, 0.3);
	-moz-box-shadow:    0px 0px 5px 0px rgba(255, 255, 255, 0.3);
	box-shadow:         0px 0px 5px 0px rgba(255, 255, 255, 0.3);
}

.entry .form_lk .bl_input .checkbox_st {
	height: 41px;
	width: 38%;
	border: 1px solid #28272f;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	padding:0 20px;
	-moz-transform: skew(-8deg, 0deg);
	-webkit-transform: skew(-8deg, 0deg);
	-o-transform: skew(-8deg, 0deg);
	-ms-transform: skew(-8deg, 0deg);
	transform: skew(-8deg, 0deg);
	position: relative;
	display: inline-block;
	width: auto;

}

.entry .form_lk .bl_input .checkbox_st .checkbox {
	vertical-align: top;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-ms-appearance: none;
}

.entry .form_lk .bl_input .checkbox_st label {
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	cursor: pointer;
	z-index: 2;
}

.entry .form_lk .bl_input .checkbox_st span.y {
	position: relative;
	padding-right: 20px;
}

.entry .form_lk .bl_input .checkbox_st span.y::after {
	content: '';
	position: absolute;
	right: 0;
	top: 9px;
	height: 23px;
	border-left: 1px solid rgba(250,250,250, 0.2);
	-moz-transform: skew(-8deg, 0deg);
	-webkit-transform: skew(-8deg, 0deg);
	-o-transform: skew(-8deg, 0deg);
	-ms-transform: skew(-8deg, 0deg);
	transform: skew(-8deg, 0deg);
}


.entry .form_lk .bl_input .checkbox_st span.y,
.entry .form_lk .bl_input .checkbox_st span.n {
	-moz-transform: skew(8deg, 0deg);
	-webkit-transform: skew(8deg, 0deg);
	-o-transform: skew(8deg, 0deg);
	-ms-transform: skew(8deg, 0deg);
	transform: skew(8deg, 0deg);
	display: inline-block;
	line-height: 41px;
	font-size: 18px;

}

.entry .form_lk .bl_input .checkbox_st span.n {
	padding-left: 15px;
}


.entry .form_lk .bl_input .checkbox_st .checkbox:not(checked) {
	position: absolute;
	opacity: 0;
}

.entry .form_lk .bl_input .checkbox_st .checkbox:not(checked) + span.y {
	color: rgba(160, 157, 168, 1);
}

.entry .form_lk .bl_input .checkbox_st .checkbox:not(checked) + span.y + span.n {
	color: rgba(160, 157, 168, 0.25);
}

.entry .form_lk .bl_input .checkbox_st .checkbox:checked + span.y {
	color: rgba(160, 157, 168, 0.25);
}

.entry .form_lk .bl_input .checkbox_st .checkbox:checked + span.y + span.n {
	color: rgba(160, 157, 168, 1);
}

.entry .form_lk .bl_input .link_bl,
.entry .form_lk .bl_input .link_bl.tild {
	line-height: 55px;
	margin-left: 21px;
	float: left;
}

.entry .form_lk .bl_input .link_bl.tild {
	margin-right: 11px;
	margin-left: 11px;
}

.entry .form_lk .bl_input .images .item_i {
	width: 91px;
	position: relative;
	float: left;
	margin-right: 10px;
}

.entry .form_lk .bl_input .images .item_i img {
	width: 100%;
	height: auto;
}

.entry .form_lk .bl_input .images .item_i .layer {
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.3);
}

.entry .form_lk .bl_input .images .item_i .layer .clouse {
	float: right;
	color: #fff;
	margin-top: 1px;
	margin-right: -5px;
}

.entry .form_lk .bl_input .images .item_i.butt_add {
	line-height: 0;
}
.entry .form_lk .bl_input .images .item_i.butt_add::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    font-family: "FontAwesome";
    content: "\f067";
    color: #fff;
		margin-left: -10px;
		margin-top: -12px;
    font-size: 21px;
    line-height: 28px;
}

.entry .form_lk .bl_input .images .item_i.butt_add::before {
	content: "";
	position: absolute;
	top:0;
	left:0;
	border: 1px solid #28272f;
	width: calc(100% - 2px);
	height: calc(100% - 2px);
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.content .top_search {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-align-content: stretch;
	-ms-flex-line-pack: stretch;
	align-content: stretch;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	width: 100%;
}

.content .top_search .sorting_menu {
	margin-top:0;
	margin-bottom: 0;
	display: inline-block;
}


.content .top_search .sorting_menu li a {
	text-decoration: none;
}

.content .top_search .flex_it {
	margin-right: 15px;
}

.content .top_search .flex_it:nth-child(1) {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
}

.content .top_search .flex_it:nth-child(2) {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
}

.content .top_search .flex_it:nth-child(3) {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
}

.content .top_search .flex_it .butt_list {
	position: relative;
	display: inline-block;
}

.content .top_search .flex_it.right {
	text-align: right;
}


.content .top_search .flex_it .butt_list ul {
	background: rgba(28, 26, 36, 0.95);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	padding:82px 30px 24px;
	margin-left: -30px;
	position: absolute;
	top: -15px;
	left:0;
	z-index: 2;
	width: 200px;
	display: none;

}
.content .top_search .flex_it .butt_list.active {
	z-index: 4;
}


.content .top_search .flex_it .butt_list.active ul.showclass {
	display: block;
}

.content .top_search .flex_it .butt_list .link_a {
	font-size: 18px;
	color: #a09da8;
	display: inline-block;
	position: relative;
	z-index: 3;
	height: 47px;
	line-height: 47px;
	margin-right: 40px;
	cursor: pointer;
}

.content .top_search .flex_it .butt_list.active .link_a {
	z-index: 4;
}


.content .top_search .flex_it .butt_list .link_a::after {
	font-family: 'FontAwesome';
	content: "\f107";
	position: absolute;
	right: -30px;
	top:0;
}

.content .top_search .flex_it .butt_list.active .link_a::after {
	content: "\f106";
}

.content .top_search .flex_it .butt_list.active .link_a {
	color: #fff;
	text-shadow: 0px 1px 18px rgba(255, 255, 255, 1);
}

.content .top_search .flex_it .butt_list ul li {
	margin-bottom: 24px;
}

.content .top_search .flex_it .butt_list ul li a {
	font-size: 18px;
	color: #ffffff;
	text-decoration: none;
}

.content .top_search .flex_it .butt_list ul li a:hover {
	color: #cfbfff;
	text-shadow: 0px 1px 18px #cfbfff;
}

.content .top_search .flex_it .butt_list ul li.current a {
	color: #5c5866;
}

.content .top_search .flex_it .butt_list ul li.current a:hover {
	text-shadow: none;
	color: #5c5866;
}

.content .top_search .flex_it .button {
	height: 46px;
	line-height: 46px;
}

.content .top_search .flex_it .serch_form {
	height: 46px;
	width: 38%;
	border: 1px solid #28272f;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	padding:0 20px;
	-moz-transform: skew(-8deg, 0deg);
	-webkit-transform: skew(-8deg, 0deg);
	-o-transform: skew(-8deg, 0deg);
	-ms-transform: skew(-8deg, 0deg);
	transform: skew(-8deg, 0deg);
	position: relative;
	float: left;
	margin-bottom: 10px;
	display: inline-block;
	margin-right: 15px;
}
.content .top_search .flex_it .serch_form.serch_form_custom {
	width: 65%;
}

.content .top_search .flex_it .serch_form input[type="text"]{
	width: 100%;
	height: 100%;
	border:0;
	background: none;
	-moz-transform: skew(8deg, 0deg);
	-webkit-transform: skew(8deg, 0deg);
	-o-transform: skew(8deg, 0deg);
	-ms-transform: skew(8deg, 0deg);
	transform: skew(8deg, 0deg);
	font-size: 18px;
	color: #a09da8;
	position: relative;
	z-index: 2;
}

.content .top_search .flex_it .serch_form input[type="text"]::-webkit-input-placeholder {color:#a09da8; opacity: 0.25}
.content .top_search .flex_it .serch_form input[type="text"]::-moz-placeholder          {color:#a09da8; opacity: 0.25}
.content .top_search .flex_it .serch_form input[type="text"]:-moz-placeholder           {color:#a09da8; opacity: 0.25}
.content .top_search .flex_it .serch_form input[type="text"]:-ms-input-placeholder      {color:#a09da8; opacity: 0.25}



.content .top_search .flex_it .serch_form .parent-focus {
	width: 100%;
	height: 100%;
	position: absolute;
	top:-1px;
	left:-1px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	display: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-ms-appearance: none;
	z-index: 1;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.content .top_search .flex_it .serch_form input[type="text"]:focus + .parent-focus {
	display: block;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(255, 255, 255, 0.3);
	-moz-box-shadow:    0px 0px 5px 0px rgba(255, 255, 255, 0.3);
	box-shadow:         0px 0px 5px 0px rgba(255, 255, 255, 0.3);
}

.content .top_search .flex_it .button .fa {
	margin-right: 12px;
}

.content .top_search {
	margin-bottom: 37px;
}
.content .gallery_grid.performance .overflow .item .img {
	line-height: 0;
}
.content .gallery_grid.performance .overflow .item .img::after {
	display: none;
}

.content .gallery_grid.performance .overflow .item:hover {
	-webkit-box-shadow: none;
-moz-box-shadow:  none;
box-shadow:none;
}

.content .gallery_grid.performance .overflow .item .caption {
	background: #1d1b25;
	padding: 31px 35px 0;
}

.content .gallery_grid.performance .overflow .item .caption .line1 {
	margin-bottom: 22px;
}

.content .gallery_grid.performance .overflow .item .caption .line1 .inline {
	font-size: 13px;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.5);
	display: inline-block;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	line-height: 30px;
	height: 30px;
	margin-right: 25px;
}

.content .gallery_grid.performance .overflow .item .caption .line1 .inline.red {
	color: #d95050;
}

.content .gallery_grid.performance .overflow .item .caption .line1 .dot {
	display: inline-block;
	margin-right: 5px;
}

.content .gallery_grid.performance .overflow .item .caption .ttl {
	font-size: 20px;
	color: #fff;
	display: inline-block;
	line-height: 28px;
	margin-bottom: 20px;
}

.content .gallery_grid.performance .overflow .item .caption .description {
	font-size: 16px;
  color: rgba(250, 250, 250, 0.5);
	font-weight: 300;
	padding-bottom: 38px;
}

.content .gallery_grid.performance .overflow .item .caption .line1 .inline.discount {
	background: #5055d9;
	color: #fff;
	padding: 0 10px;
	-moz-transform: skew(-8deg, 0deg);
	-webkit-transform: skew(-8deg, 0deg);
	-o-transform: skew(-8deg, 0deg);
	-ms-transform: skew(-8deg, 0deg);
	transform: skew(-8deg, 0deg);
}

.content .gallery_grid.performance .overflow .item .caption .line1 .inline.discount span {
	display: inline-block;
	-moz-transform: skew(8deg, 0deg);
	-webkit-transform: skew(8deg, 0deg);
	-o-transform: skew(8deg, 0deg);
	-ms-transform: skew(8deg, 0deg);
	transform: skew(8deg, 0deg);
}

.content .gallery_grid .more_button {
	margin-bottom: 10px;
	text-align: center;
	padding-top: 20px;
}

.content h2 {
	font-size: 25px;
	color: #a09da8;
	padding-bottom: 29px;
	font-family: 'Rubik';
	font-weight: normal;
}

 .profile {
	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
	margin-bottom: 60px;
}

.profile .flex_it {
	margin-right: 34px;
	font-size: 18px;
	color: #7b7687;
	line-height: 26px;
	font-weight: 300;
}

.content dl {
	width: 75%;
}

.content dl dt {
	display: block;
	position: relative;
	font-size: 16px;
	color: #7b7687;
	font-weight: 300;
	padding-bottom: 18px;
}

.content dl dt span {
	display: inline-block;
	position: relative;
	z-index: 2;
	background: #100e17;
	padding-right: 8px;
}

.content dl dt::after {
	content: "";
	position: absolute;
	top:9px;
	left:0;
	width: 100%;
	border-top:1px solid #1b1922;
	z-index: 1;
}

.content dl dd {
	font-weight: 300;
	color: #a09da8;
	font-size: 18px;
	line-height: 28px;
	margin-bottom: 72px;
}

.content .images img {
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	margin-right: 3px;
}

.content .slider {
	margin-bottom: 110px;
}

.content .slider .gallery_grid {
	overflow: visible;
}

.content .slider .ttl_slide {
	font-size: 30px;
	color: #c0bcc9;
	font-weight: 300;
	padding-bottom: 42px;
}

.content .gallery_grid .owl-nav {
	position: absolute;
	top: -68px;
	right:0;
}
.content .gallery_grid .owl-nav .owl-prev {
	margin-right: 20px;
}
.content .gallery_grid .owl-nav .owl-next,
.content .gallery_grid .owl-nav .owl-prev {
	font-size: 0;
	text-align: right;
	display: inline-block;
	color: #fff;
	text-shadow: 0px 1px 18px rgba(255, 255, 255, 1);
}

.content .gallery_grid .owl-nav .owl-next::after,
.content .gallery_grid .owl-nav .owl-prev::after {
	font-family: 'FontAwesome';
	font-size: 22px;
	color: #fff;
}

.content .gallery_grid .owl-nav .owl-next::after {
	  content: "\f105";
}

.content .gallery_grid .owl-nav .owl-prev::after {
	  content: "\f104";
}

.content .slider .gallery_grid.el3 .item {
	width: auto;
	margin-right: 0;
}

.content .gallery_grid.el3.products .item .img::after {
	opacity: 1;
}

.content .gallery_grid.el3.products .item:hover .img::after {
	display: block;
	opacity: 0.4;
}

.content .gallery_grid.products .item {
	margin-bottom: 40px;
}

.content .gallery_grid.products .item .caption {
	padding-top:20px;
	color: #c0bcc9;
	font-size: 16px;
}

.content .gallery_grid.products .item .caption .ttl {
	display: block;
	font-size: 20px;
	margin-bottom: 13px;
	min-height:50px;
}

.content .gallery_grid.products .item .caption .ttl + .img-author{
	min-height:20px;
}

.section.logos {
	padding:0;
	background: #16141c;
}

.section.logos .center {
	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
		height: 183px;
}

.section.logos .center img {
	margin:0 20px;
}

.section.content.nopadd {
	padding-bottom: 10px;
}

.content .good_card {
	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
		border: 1px solid #34323a;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		border-radius: 3px;
	margin-bottom: 70px;
}

.content .good_card .flex_it {
	-webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
}

.content .good_card .flex_it.img {
	line-height: 0;
}

.content .good_card .flex_it .info_product {
	padding-left: 60px;
}

.content .good_card .flex_it .info_product .art {
	font-size: 15px;
	color: #535059;
	text-transform: uppercase;
	font-weight: 300;
	padding-bottom: 26px;
}


.content .good_card .flex_it .info_product .ttl, .woocommerce div.product .product_title {
	font-size: 30px;
	color: #ffffff;
	margin-bottom: 20px;
}

.woocommerce div.product .product_title {
	font-weight: 300;
}

.content .good_card .sorting_menu {
	margin-top: 0;
	float: none;
}

.content .good_card .buttons .price {
	display: inline-block;
	font-size: 20px;
	color: #ffffff;
	line-height: 85px;
	padding-left: 24px;
}

.content .post_entry {
	position: relative;
	width: 1100px;
}

.content .post_entry .date {
	font-size: 14px;
	color: #a09da8;
	position: absolute;
	right:-213px;
	top:0;
	text-transform: uppercase;
}

.content .post_entry p {
	margin-bottom: 50px;
}



.wrapper.sign .form_up {
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
		z-index: 2;
}

.wrapper.sign .bl_form {
	max-width: 572px;
	width: 100%;
	border: 1px solid rgba(255, 255, 255, 0.05);
	padding: 47px 77px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	position: relative;
}

.wrapper.sign .bl_form .title {
	font-weight: 300;
    color: #fff;
    font-size: 50px;
    font-family: 'Oswald';
		text-align: center;
		padding-bottom: 44px;
	    letter-spacing: -0.8pt;
}

.wrapper.sign .bl_form p.desc {
	font-size: 18px;
	color: #7b7687;
	font-weight: 300;
	line-height: 22px;
	text-align: center;
	padding-bottom: 25px;
}

.wrapper.sign .bl_form p.desc b {
	font-weight: normal;
}



.wrapper.sign .bl_form .bl_input .input_text {
	height: 53px;
	width: 100%;
	border: 1px solid #28272f;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	padding:0 20px;
	-moz-transform: skew(-8deg, 0deg);
	-webkit-transform: skew(-8deg, 0deg);
	-o-transform: skew(-8deg, 0deg);
	-ms-transform: skew(-8deg, 0deg);
	transform: skew(-8deg, 0deg);
	position: relative;
	float: left;
	margin-bottom: 10px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}


.wrapper.sign .bl_form .bl_input .input_text input[type="text"] {
	width: 100%;
	height: 100%;
	border:0;
	background: none;
	-moz-transform: skew(8deg, 0deg);
	-webkit-transform: skew(8deg, 0deg);
	-o-transform: skew(8deg, 0deg);
	-ms-transform: skew(8deg, 0deg);
	transform: skew(8deg, 0deg);
	font-size: 18px;
	color: #a09da8;
	position: relative;
	z-index: 2;
}

.wrapper.sign .bl_form .bl_input .input_text input[type="password"] {
width: 100%;
height: 100%;
border:0;
background: none;
-moz-transform: skew(8deg, 0deg);
-webkit-transform: skew(8deg, 0deg);
-o-transform: skew(8deg, 0deg);
-ms-transform: skew(8deg, 0deg);
transform: skew(8deg, 0deg);
font-size: 18px;
color: #a09da8;
position: relative;
z-index: 2;
}


.wrapper.sign .bl_form .bl_input .input_text input[type="text"]::-webkit-input-placeholder {color:#a09da8; opacity: 0.25}
.wrapper.sign .bl_form .bl_input .input_text input[type="text"]::-moz-placeholder          {color:#a09da8; opacity: 0.25}
.wrapper.sign .bl_form .bl_input .input_text input[type="text"]:-moz-placeholder           {color:#a09da8; opacity: 0.25}
.wrapper.sign .bl_form .bl_input .input_text input[type="text"]:-ms-input-placeholder      {color:#a09da8; opacity: 0.25}

.wrapper.sign .bl_form .bl_input .input_text .parent-focus,
.wrapper.sign .bl_form .bl_input .input_textarea .parent-focus {
	width: 100%;
	height: 100%;
	position: absolute;
	top:-1px;
	left:-1px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	display: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-ms-appearance: none;
	z-index: 1;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.wrapper.sign .bl_form .bl_input .input_text input[type="text"]:focus + .parent-focus,
.wrapper.sign .bl_form .bl_input .input_textarea textarea:focus + .parent-focus {
	display: block;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(255, 255, 255, 0.3);
	-moz-box-shadow:    0px 0px 5px 0px rgba(255, 255, 255, 0.3);
	box-shadow:         0px 0px 5px 0px rgba(255, 255, 255, 0.3);
}

.wrapper.sign .bl_form .buttons {
	text-align: center;
	margin-bottom: 44px;
}

.wrapper.sign .bl_form .button.sz {
	padding:0 47px;
	margin-right: 26px;
}

.wrapper.sign .bl_form a {
	color: #fff;
	font-size: 18px;
	text-decoration: none;
	text-shadow: 0px 1px 18px rgba(255, 255, 255, 1);
		-webkit-transition: opacity 0.2s ease-in-out;
		-moz-transition: opacity 0.2s ease-in-out;
		-o-transition: opacity 0.2s ease-in-out;
		transition: opacity 0.2s ease-in-out;
}

.wrapper.sign .bl_form a:hover {
	text-shadow: 0px 1px 18px #cfbfff;
}

.wrapper.sign .bl_form .authorization {
	text-align: center;
	font-size: 15px;
	color: #a09da8;
	padding-bottom: 15px;
}

.wrapper.sign .bl_form .authorization a {
	text-decoration: none;
	display: inline-block;
	color: #fff;
	font-size: 20px;
	margin-left: 7px;
}

.wrapper.sign .bl_form .authorization a:hover {
	color: #cfbfff;
	text-shadow: 0px 1px 18px #cfbfff;
}

.wrapper.sign .bl_form .links_offset {
	text-align: center;
	position: absolute;
	bottom:-60px;
	left:0;
	width: 100%;
}

.wrapper.sign .bl_form .politic_offset {
	text-align: center;
	position: absolute;
	bottom:-60px;
	left:0;
	width: 100%;
	font-size: 14px;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.35);
	line-height: 18px;
}

.wrapper.sign .bl_form .politic_offset a {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.35);
	text-shadow: none;
	text-decoration: underline;
}

.wrapper.sign .bl_form .politic_offset a:hover {
	text-decoration: none;
}

.wrapper.sign .bl_form .robotgoogle {
	margin-bottom: 20px;
}

.wrapper.sign .bl_form .robotgoogle .img1 img {
	width: 100%;
	height: auto;
}

.wrapper.sign .line_foot {
	position: absolute;
	bottom:0;
	left:0;
	width: 100%;
	padding-bottom: 41px;
}

.wrapper.sign .line_foot .links {
	font-size: 16px;
	color: #514c5c;
	font-weight: 300;
	float: left;
}

.wrapper.sign .line_foot .links a {
	font-size: 16px;
	color: #514c5c;
	font-weight: 300;
	text-decoration: none;
	margin-right: 28px;
}

.wrapper.sign .line_foot .links a:hover {
	text-decoration: underline;
}

.wrapper.sign .line_foot .copy {
	font-size: 16px;
	color: #514c5c;
	font-weight: 300;
	float: right;
}

.wrapper.sign .menutop .center {
	position: relative;
}

.content .gallery_grid.fotogallery .item {
	margin-bottom: 40px;
}

.content .gallery_grid.fotogallery .item .img::after {
	display: none;
}

.content .gallery_grid.el4.fotogallery .img {
	margin-bottom: 17px;
}

.form_question.contacts {
	background: #100e17;
	/* padding-top:0; */
}

.form_question.contacts .title,
.form_question.contacts .description {
	text-align: left;
}

.form_question.contacts .form {
	margin-left: 0;
}

.form_question.contacts .form .signature {
	display: inline-block;
	font-size: 14px;
	color: #514c5c;
	font-weight: 300;
	line-height: 20px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
		height: 62px;
}

.form_question.contacts .form .bl_button {
	text-align: left;
}

.form_question.contacts .form .bl_button .button {
	float: left;
	margin-right: 22px;
}

.bl_button.left .button {
	float: left;
	margin-right: 20px;
}

.bl_button.left .signature {
	line-height: 23px;
padding-top: 9px;
padding-left: 20px;
}

.content .grid.n2 .sidebar.basket {
	float: none;
	margin-right: 0;
	margin-left: 0px;
	background: 0;
	padding:0;
	width: 426px;
}


.content .grid.n2 .sidebar.basket .wrap {
	border:1px solid #34323a;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	padding:48px 43px;
}

.content .grid.n2 .sidebar.basket .wrap .list_inf_goods {
	margin-bottom: 50px;
}

.content .grid.n2 .sidebar.basket .wrap .promocode {
	padding:30px 0;
	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
	border:1px solid #34323a;
	border-left:0;
	border-right: 0;
	margin-bottom: 43px;
}




.content .grid.n2 .sidebar.basket .wrap .promocode .bl_input {
	width: 58%;
}

.content .entry .list_goods .item .flex .bl_input {
	    width: 54px;
	display: inline-block;
}

.content .grid.n2 .sidebar.basket .wrap .promocode .bl_input::after,
.content .entry .list_goods .item .flex .bl_input::after{
	content: '';
	width: 50%;
	clear: both;
	display: block;
}



.content .grid.n2 .sidebar.basket .wrap .promocode .bl_input .input_text,
.content .entry .list_goods .item .flex .bl_input .input_text,
.modal_popup .bl_input .input_text {
	height: 53px;
	width: 100%;
	border: 1px solid #28272f;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	padding:0 8px;
	-moz-transform: skew(-8deg, 0deg);
	-webkit-transform: skew(-8deg, 0deg);
	-o-transform: skew(-8deg, 0deg);
	-ms-transform: skew(-8deg, 0deg);
	transform: skew(-8deg, 0deg);
	position: relative;
	float: left;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.content .grid.n2 .sidebar.basket .wrap .promocode .bl_input .input_text input[type="text"],
.content .entry .list_goods .item .flex .bl_input .input_text input[type="text"],
.modal_popup .bl_input .input_text input[type="text"] {
	width: 100%;
	height: 100%;
	border:0;
	background: none;
	-moz-transform: skew(8deg, 0deg);
	-webkit-transform: skew(8deg, 0deg);
	-o-transform: skew(8deg, 0deg);
	-ms-transform: skew(8deg, 0deg);
	transform: skew(8deg, 0deg);
	font-size: 18px;
	color: #a09da8;
	position: relative;
	z-index: 2;
}

.modal_popup .bl_input .input_text input[type="text"] {
	text-align: center;
}

.content .grid.n2 .sidebar.basket .wrap .promocode .bl_input .input_text input[type="text"]::-webkit-input-placeholder {color:#a09da8;}
.content .grid.n2 .sidebar.basket .wrap .promocode .bl_input .input_text input[type="text"]::-moz-placeholder          {color:#a09da8;}
.content .grid.n2 .sidebar.basket .wrap .promocode .bl_input .input_text input[type="text"]:-moz-placeholder           {color:#a09da8;}
.content .grid.n2 .sidebar.basket .wrap .promocode .bl_input .input_text input[type="text"]:-ms-input-placeholder      {color:#a09da8;}

.content .entry .list_goods .item .flex .bl_input .input_text input[type="text"]::-webkit-input-placeholder {color:#a09da8;}
.content .entry .list_goods .item .flex .bl_input .input_text input[type="text"]::-moz-placeholder          {color:#a09da8;}
.content .entry .list_goods .item .flex .bl_input .input_text input[type="text"]:-moz-placeholder           {color:#a09da8;}
.content .entry .list_goods .item .flex .bl_input .input_text input[type="text"]:-ms-input-placeholder      {color:#a09da8;}

.content .grid.n2 .sidebar.basket .wrap .promocode .bl_input .input_text .parent-focus,
.content .entry .list_goods .item .flex .bl_input .input_text .parent-focus {
	width: 100%;
	height: 100%;
	position: absolute;
	top:-1px;
	left:-1px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	display: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-ms-appearance: none;
	z-index: 1;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.content .grid.n2 .sidebar.basket .wrap .promocode .bl_input .input_text input[type="text"]:focus + .parent-focus,
.content .entry .list_goods .item .flex .bl_input .input_text input[type="text"]:focus + .parent-focus {
	display: block;
	-webkit-box-shadow: 0px 0px 5px 0px rgba(255, 255, 255, 0.3);
	-moz-box-shadow:    0px 0px 5px 0px rgba(255, 255, 255, 0.3);
	box-shadow:         0px 0px 5px 0px rgba(255, 255, 255, 0.3);
}

.content .grid.n2 .sidebar.basket .wrap .promocode .apply {
	margin-left: 20px;
	font-weight: normal;
	text-shadow: 0px 1px 18px rgba(255, 255, 255, 0.6);
}


.content .grid.n2 .sidebar.basket .wrap .total_price .label_price {
	float: left;
	color: #7b7687;
	font-size: 18px;
}

.content .grid.n2 .sidebar.basket .wrap .total_price .price {
	float: right;
	text-align: right;
}

.content .grid.n2 .sidebar.basket .wrap .total_price .price b {
	font-weight: normal;
	color: #fff;
}

.content .grid.n2 .sidebar.basket .wrap .total_price .price .delivery {
	display: block;
	color: #7b7687;
	font-weight: 300;
	padding-top: 11px;
}

.content .grid.n2 .sidebar.basket .wrap .bl_button {
	text-align: right;
	padding-top: 40px;
}

.entry .form_lk .bl_input .checkbox_bt {
	margin-bottom: 7px;
}

.entry .form_lk .bl_input .checkbox_bt .checkbox_bt_c {
	vertical-align: top;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-ms-appearance: none;
}

.entry .form_lk .bl_input .checkbox_bt .checkbox_bt_c + label {
	cursor: pointer;
	position: relative;
	padding: 0 0 0 27px;
	color:#a09da8;
	font-size: 18px;
	font-weight: normal;
}
.entry .form_lk .bl_input .checkbox_bt .checkbox_bt_c:not(checked) {
	position: absolute;
	opacity: 0;
}

.entry .form_lk .bl_input .checkbox_bt .checkbox_bt_c:not(checked) + label {

}

.entry .form_lk .bl_input .checkbox_bt .checkbox_bt_c + label:before {
	font-family: 'FontAwesome';
	content: "\f00c";

	position: absolute;
	left:0;
}

.entry .form_lk .bl_input .checkbox_bt .checkbox_bt_c:not(checked) + label:before {
	color:#34323b;
}

.entry .form_lk .bl_input .checkbox_bt .checkbox_bt_c:checked + label:before {
	color:#fff;
	text-shadow: 0px 1px 18px rgba(255, 255, 255, 0.6);
}

.entry .button_description {
	margin-top: -30px;
	margin-bottom: 55px;
}


.entry .button_description a.button {
	height: 46px;
	line-height: 46px;
	float: left;
	margin-bottom: 15px;
	margin-right: 20px;
}

.entry .button_description .txt_bl {
	font-size: 16px;
	color: #7b7687;
	float: left;
	line-height: 22px;
	padding-top: 2px;

}

i.plane {
	display: inline-block;
	width: 12px;
	height: 12px;
	background: url('/assets/images/zendentistry/i/plane.png') no-repeat;
}
.button_status {
	text-transform: uppercase;
	position: absolute;
	top: 29px;
	left: 35px;
}

.button_status b.lnk {
	font-weight: normal;
	color: rgba(255,255,255,0.5);
	font-size: 16px;
	height: 19px;
    line-height: 19px;
}

.button_status a i {
	margin-right: 4px;
}

.button_status a {
	font-size: 16px;
}

.entry .form_lk .bl_input.line_b {

}

.entry .form_lk .bl_input.line_b .input_text,
.entry .form_lk .bl_input.line_b .input_textarea {
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border:0;
	border-bottom: 2px solid #403e45;
	border-radius: 0;
	padding:0;
}


.entry .form_lk .bl_input.line_b .input_text input[type="text"]:focus + .parent-focus,
.entry .form_lk .bl_input.line_b .input_textarea textarea:focus + .parent-focus {
	display: none;
}

.entry .form_lk .bl_input.line_b .input_textarea.v2 {
	transform:none;
	border-bottom: 2px solid #403e45;
	border-radius: 0;
	padding:0;
}



div.tagsinput { padding:5px; width:1000px; height:100px; overflow-y: auto; color: #fff;}
div.tagsinput span.tag { border: 1px solid #28272f; -moz-border-radius:2px; -webkit-border-radius:2px; display: block; float: left;   padding: 1px 4px; text-decoration:none; background: #28272f; color: #686868; margin-right: 5px; margin-bottom:5px; font-size:16px;}
div.tagsinput span.tag a { font-weight: bold; color: #686868; text-decoration:none; font-size: 11px;  }
div.tagsinput input { width:177px; margin:0px; font-size: 18px;
     border:1px solid #343434; padding:5px; background: transparent; color: #343434 !important; outline:0px;  margin-right:5px; margin-bottom:5px; }
div.tagsinput div { display:block; float: left; width: 160px;  }
.tags_clear { clear: both; width: 100%; height: 0px; }
.not_valid { background: #FBD8DB !important; color: #90111A !important;}

.content .sorting_menu.bsize {
	width: 100%;
}

.content .sorting_menu.bsize .menu_s {
	width: calc(100% - 25px);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	transform: none;
}

.content .sorting_menu.bsize .menu_s li a {
	line-height: 74px;
	transform: none;
	font-size: 20px;
}

.content .sorting_menu.bsize .menu_s li {
    float: left;
    margin-right: 0;
    position: relative;
    width: 50%;
		text-align: center;
}

.content .sorting_menu.bsize .menu_s li::after {
	height: 47px;
}


.flex_images {

}



.flex_images .item {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
			margin-bottom: 25px;
    }

.flex_images .item .flx {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
}

.flex_images .item .flx .image {
	position: relative;
}

.flex_images .item .flx .image .clouse {
	position: absolute;
	top:9px;
	right:9px;
	width: 15px;
	height: 14px;
	background: url('/assets/images/zendentistry/i/clouse2.png') no-repeat;
	cursor: pointer;
}
.flex_images .item .flx .description {
	padding: 25px;
}

.flex_images .item .flx .description textarea {
	font-size: 18px;
	width: 100%;
	color: #a09da8;
	overflow: hidden;
}

.flex_images .item .flx:nth-child(2) {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
    }


.flex_images .item .flx .description textarea::-webkit-input-placeholder {color:#34323b;}
.flex_images .item .flx .description textarea::-moz-placeholder          {color:#34323b;}
.flex_images .item .flx .description textarea:-moz-placeholder           {color:#34323b;}
.flex_images .item .flx .description textarea:-ms-input-placeholder      {color:#34323b;}

.form_lk .bl_button .button {
	float: left;
    margin-right: 22px;
}


.form_lk .bl_button .signature {
	 display: inline-block;
	font-size: 14px;
	color: #514c5c;
	font-weight: 300;
	line-height: 20px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
		height: 62px;
 }

 .entry .form_lk .bl_input.line_b .input_textarea.v2 {
	 overflow: hidden;
 }

 .content .sorting_menu.bsize.one .menu_s li {
	 width: 100%;
 }

 .content .slider .ttl_slide a:focus {
 	color: #cfbfff;
 	text-shadow: 0px 1px 18px #cfbfff;
 }

 .content .slider .ttl_slide a {
 	margin-right: 20px;
 }


.content .image_konkurs {
	width: 100%;
	height: auto;
	position: relative;
	margin-bottom: 74px;
}

.content .image_konkurs img {
	width: 100%;
	height: auto;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

.content .image_konkurs .ttl_bl {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.content .image_konkurs .ttl_bl .template_table {
	width: 100%;
	height: 100%;
}

.content .image_konkurs .ttl_bl .template_table .cell {
	vertical-align: middle;
	text-align: center;
	font-size: 60px;
	color: #fff;
	font-family: 'Oswald';
	font-size: 300;
}

.content p.white {
	font-size: 20px;
	color: #ffffff;
	font-weight: 300;
}

.content p.white a {
	font-size: 20px;
}

.content .competition_bl .cmp_title {
	font-size: 30px;
	color: #ffffff;
	margin-bottom: 28px;
}

.exalm_book {
	display: inline-block;
	width: 21px;
	height: 21px;
	background: url('/assets/images/zendentistry/i/exalm_book.png') no-repeat;
	margin-right: 10px;
}

.times_bl {
	display: inline-block;
	width: 23px;
	height: 23px;
	background: url('/assets/images/zendentistry/i/times_ic.png') no-repeat;
	margin-right: 10px;
}

.reward_bl {
	display: inline-block;
	width: 21px;
	height: 21px;
	background: url('/assets/images/zendentistry/i/reward.png') no-repeat;
	margin-right: 10px;
}

.users_bl {
	display: inline-block;
	width: 17px;
	height: 22px;
	background: url('/assets/images/zendentistry/i/users_bl.png') no-repeat;
	margin-right: 10px;
}

.content .competition_bl {
	margin-bottom: 68px;
}

.content .competition_bl p {
	margin-bottom: 33px;
}

.content .competition_bl p b {
	font-weight: 300;
	color: #cfbfff;
}

.content .competition_bl ul {
	margin-bottom: 35px;
}

.content .competition_bl ul li {
	font-size: 18px;
	color: #a09da8;
	position: relative;
	padding-left: 20px;
	margin-bottom: 15px;
}

.content .competition_bl ul li::after {
	content: '';
	width: 12px;
	height: 12px;
	background: url('/assets/images/zendentistry/i/li_competition_bl.png') no-repeat;
	position: absolute;
	top: 3px;
	left: 0;
}

.content .competition_bl .place_bl	{
	color: #cfbfff;
	font-size: 24px;
	margin-bottom: 22px;
}


.modalb {
	display: none;
	max-width: 800px;
	padding: 55px;
	text-align: left;
	background: #100e17;
}

.modalb h2 {
	font-weight: 500;
	margin-bottom: 25px;
}

.modalb p {
	font-size: 18px;
	color: #a09da8;
	font-weight: 300;
	line-height: 28px;
	margin-bottom: 20px;
}

.modalb a {
	color: #fff;
	text-decoration: none;
}

.modalb.clouse_n .fancybox-close-small {
	display: none;
}

.tabs {
	padding-top:46px;
}

.tabs .tabs__caption {
	height:28px;
}

.tabs .tabs__caption li {
	height:28px;
	padding:0 20px;
	line-height:28px;
	color:#a09da8;
	font-size: 18px;
	display:inline-block;
	text-transform:uppercase;
	cursor:pointer;
	border-right:1px solid #514c5c;
	background:none;
}


.tabs .tabs__caption li:nth-last-child(1) {
	border-right:0;
}

.tabs .tabs__caption li:first-child {
	padding-left:0px;
}

.tabs .tabs__caption li.active {
	color:#fff;
}

.tabs .tabs__content {
	padding:27px 0 0 0;
	font-size: 18px;
	color:#686868;
	line-height:22px;
	display:none;
}

.tabs .tabs__content.active {
	display:block;
}



.content .good_card .flex_it .slider_block_inpages {
	position: relative;
	width:600px;
}

.content .good_card .flex_it .slider_block_inpages .item {
	/* width: 100%; */
	width: auto;
}

.content .good_card .flex_it .slider_block_inpages .owl-nav {
	position: absolute;
	top: 0;
	font-size: 0;
	width: 100%;
}

.content .good_card .flex_it .slider_block_inpages .owl-nav .owl-prev,
.content .good_card .flex_it .slider_block_inpages .owl-nav .owl-next {
	width: 95px;
  height: 138px;
	z-index: 5;
	position: absolute;
	top: 128px;
}

.content .good_card .flex_it .slider_block_inpages .owl-nav .owl-prev {
	left: 0;
	background: url(/assets/images/zendentistry/carousel_arrow_prev.png) 0 0 no-repeat;

}

.content .good_card .flex_it .slider_block_inpages .owl-nav .owl-next {
	right: 0;
	background: url(/assets/images/zendentistry/carousel_arrow.png) 0 0 no-repeat;

}

.content .good_card .flex_it .slider_block_inpages .owl-nav .owl-next.disabled, .content .good_card .flex_it .slider_block_inpages .owl-nav .owl-prev.disabled {
	opacity: 0.5;
    cursor: auto;
}

.content .good_card .flex_it .slider_block_inpages .owl-dots {
	display: none;
}

.content .good_card .flex_it .slider_block_inpages .owl-dots .owl-dot {
	display: inline-block;
}

.content .good_card .flex_it .slider_block_inpages .owl-dots .owl-dot span {
	width: 12px;
	height: 12px;
	background: rgba(34, 104, 141, 0.3);
	display: block;
	-webkit-border-radius: 100px;
	-moz-border-radius: 100px;
	border-radius: 100px;
	margin:0 5px;
}

.content .good_card .flex_it .slider_block_inpages .owl-dots .owl-dot.active span {
	background: #22688D;
}

.content .links_category {
	margin-top: -10px;
	margin-bottom: 20px;
}

.content .links_category a {
	text-transform: uppercase;
	font-family: 'Oswald';
	text-decoration: none;
	font-size: 16px;
	margin-right: 20px;
}

.content .links_category a.current {
	color: #cfbfff;
  text-shadow: 0px 1px 18px #cfbfff;
}


.modal_popup {
	display: none; padding: 20px; max-width: 1000px;text-align: center;
	background: #16141c;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

.basket_class {
	display: none; padding: 20px; text-align: center;
	background: #16141c;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	color: #fff;
}


.basket_class .label_info {
	width: 286px;
	margin-bottom: 70px;

}

.modal_popup .img_pop {
	 margin-bottom: 20px;
 }
.modal_popup .img_pop img {
	width: 100%;
	height: auto;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

.modal_popup .bl_input {
	width: 54px;
	clear: both;
	float: none;
	margin:0 auto;
	position: relative;
	display: block;
	margin-bottom: 30px;
}


.modal_popup.basket_class .bl_input {
	padding-bottom: 100px;
}

.number_cl {
	position: absolute;
top: -49px;
border-top: 1px solid #cfbfff;
width: 50px;
text-align: center;
	padding-top: 15px;
    margin-left: 4px;
		color: #cfbfff;
    text-shadow: 0px 1px 18px #cfbfff;
		-webkit-border-radius: 5px;
		-moz-border-radius: 5px;
		border-radius: 5px;
}

.modal_popup .bl_input .add_goods,
.modal_popup .bl_input .remove_goods {
	position: absolute;
	top: 19px;
	color: #a09da8;
}

.modal_popup .bl_input .add_goods {
	left: -37px;
}

.modal_popup .bl_input .remove_goods {
	right: -37px;
}

.modal_popup .bl_input .add_goods:hover,
.modal_popup .bl_input .remove_goods:hover {
	color: #cfbfff;
}

.list_nubmer_position.left {
	float: left;
}
.list_nubmer_position.right {
	float: right;
}

.list_nubmer_position .menu_s {
	-moz-transform: skew(-8deg, 0deg);
		-webkit-transform: skew(-8deg, 0deg);
		-o-transform: skew(-8deg, 0deg);
		-ms-transform: skew(-8deg, 0deg);
		transform: skew(-8deg, 0deg);
		 border: 1px solid #28272f;
		 -webkit-border-radius: 5px;
		 -moz-border-radius: 5px;
		 border-radius: 5px;
		 float: left;
		 padding: 0 0 0 25px;
		margin-bottom: 20px;
}


.list_nubmer_position .menu_s li {
	float: left;
	width: 50px;
	position: relative;
}

.list_nubmer_position .menu_s li:after {
	content: '';
	position: absolute;
	    right: 17px;
  top: 13px;
  height: 20px;
	border-left: 1px solid rgba(250,250,250, 0.2);
	-moz-transform: skew(-8deg, 0deg);
	-webkit-transform: skew(-8deg, 0deg);
	-o-transform: skew(-8deg, 0deg);
	-ms-transform: skew(-8deg, 0deg);
	transform: skew(-8deg, 0deg);
}


.list_nubmer_position .menu_s li:nth-last-of-type(1) {
	margin-right: 0;
}
.list_nubmer_position .menu_s li:nth-last-of-type(1)::after {
	display: none;
}

.list_nubmer_position .menu_s li a {
	display: block;
	color: #a09da8;
	font-weight: normal;
	line-height: 46px;
	-moz-transform: skew(8deg, 0deg);
	-webkit-transform: skew(8deg, 0deg);
	-o-transform: skew(8deg, 0deg);
	-ms-transform: skew(8deg, 0deg);
	transform: skew(8deg, 0deg);
}

.list_nubmer_position .menu_s li.current a {
	color: #cfbfff;
text-shadow: 0px 1px 18px #cfbfff;
}

.block_lists {
	width: 59%;
	margin:0 auto;
	padding-bottom: 30px;
}


.form_question .form img[alt="CAPTCHA"] {
	-moz-transform: skew(-8deg, 0deg);
	-webkit-transform: skew(-8deg, 0deg);
	-o-transform: skew(-8deg, 0deg);
	-ms-transform: skew(-8deg, 0deg);
	transform: skew(-8deg, 0deg);
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	margin-top: 10px;
	margin-bottom: 24px;
}

.basket-item-price {
	min-width: 100px;
}

.catalog-top-description p a {
	font-size: 20px!important;
}

.vertical-gallery {
	position: relative;
	margin: 20px 0;
}
.vertical-gallery-item {
	max-width: 100%;
	position: relative;
	display: block;
	margin-bottom: 25px;
}
.vertical-gallery-item-image {
	float: left;
	width: 50%;
}
.vertical-gallery-item-image img {
	max-width: 100%;
	min-width: 100%;
}
.vertical-gallery-item-description {
	float: left;
	width: 50%;
}
.vertical-gallery-item-description > div {
	padding: 10px 0 0 25px;
}

.mobile-lang {
	float: right;
	padding-right: 28px;
	line-height: 33px;
	margin-top: 15px;
    margin-right: 0;
	display: none;
}
.mobile-lang a {
	text-decoration: none;
	font-size: 18px;
	font-style: italic;
	color: #cfbfff;
	text-shadow: 0px 1px 18px #cfbfff;
	display: inline-block;
	line-height: 54px;
	-moz-transform: skew(8deg, 0deg);
	-webkit-transform: skew(8deg, 0deg);
	-o-transform: skew(8deg, 0deg);
	-ms-transform: skew(8deg, 0deg);
	transform: skew(8deg, 0deg);
	vertical-align: top;
}
.mobile-lang a:hover {
	color: #fff;
}

.header .caption .panel_b .buttons {
	position: relative;
}
.no-place-comment {
	font-size: 12px;
	color: #302946;
	position: absolute;
	top: 34px;
	left: 88px;
	z-index: 999;
}

.bottom_phone {
	top: -36px;
}
.bottom_phone p {
	margin-bottom: 0;
}
.bottom_phone span {
	display: block;
	font-size: 22px;
	line-height: 24px;
	margin-bottom: 10px;
}

.footer .widjet .ttl p {
	margin-bottom: 0;
}
.footer .widjet .ttl span {
	display: block;
	font-size: 16px;
	line-height: 18px;
	margin-bottom: 8px;
}
.double-phone {
	position: relative;
}

.content .widjet .ttl p {
	font-size: 30px;
	margin-bottom: 4px;
}
.content .widjet .ttl span {
	display: block;
	font-size: 16px;
	line-height: 18px;
	margin-bottom: 12px;
}

.entry .form_lk .bl_input .input_text_mod {
	width: 100%!important;
}

.entry .form_lk .bl_input .input_text_mod.method:not(.active) {
	display: none;
}

.entry .form_lk .bl_input_mod {
	margin-bottom: 16px;
}

.entry .form_lk .bl_input_mod select {
    background: rgb(255 255 255 / 0%);
    -webkit-transform: skew(8deg, 0deg);
    -o-transform: skew(8deg, 0deg);
    -ms-transform: skew(8deg, 0deg);
    transform: skew(8deg, 0deg);
    border: 0;
    width: 100%;
    height: 52px;
}

.title_popup_mod {
	margin-bottom: 32px;
}

.modal-content-text.entry {
	padding-bottom: 86px;
}

@media (max-width: 560px) {
    .mobile-lang {
	    display: inline-block;
	}
	
	body .wrapper.sign .bl_form {
		padding: 30px 10px;
	}

	.wrapper.sign .bl_form a {
		font-size: 14px;
	}
}

@media (max-width: 768px) {
	
	.vertical-gallery-item-image {
		float: none;
		display: block;
		width: 100%;
		margin-bottom: 10px;
	}
	.vertical-gallery-item-description {
		float: none;
		display: block;
		width: 100%;
	}

	.header .crb_status {
		top: 27px;
	}

	.woocommerce table.cart td.actions .coupon {
		margin-bottom: 15px;
	}

	.woocommerce table.cart td.actions .coupon .button {
		width: 44%;
	}

	body .woocommerce-cart-form .coupon input {
		margin-right: 0px!important;
	}
}

/*KSM*/
.buttons_right ul li.lang-item {
    text-transform: uppercase;
}
.buttons_right ul.language {
    float: left;
    margin: 0 15px 0 0;	
	line-height: 54px;
	position: relative;
}
.footer .links a:before, .footer .links a:after {
	display: none;
}
.footer .line_foot .links a {display: inline;}
.home .last-news_items a img {
    max-width: 100%;
    height: auto;
}
.home .last-news_big {
    height: 100%;
}
.home .last-news_img {
    position: relative;
}
.home  .last-news_text {
    position: absolute;
    bottom: 0;
}
.single-material .vertical-gallery-item-image img {
    height: auto;
}
.single-material .article-body-content p {
	font-size: 16px;
	line-height: 1.5;
    font-weight: 400;
}
@media (min-width: 1025px) {
	.single-material iframe {
		width: 100%;
		height: 573px;
	}
}
@media only screen and (max-width: 1024px) and (min-width: 853px) {
	.single-material iframe {
		width: 100%;
		height: 453px;
	}
}
@media only screen and (max-width: 852px) and (min-width: 769px) {
	.single-material iframe {
		width: 100%;
		height: 423px;
	}
}
@media only screen and (max-width: 768px) and (min-width: 719px) {
	.single-material iframe {
		width: 100%;
		height: 395px;
	}
}
@media only screen and (max-width: 718px) and (min-width: 561px) {
	.single-material iframe {
		width: 100%;
		height: 310px;
	}
}
@media only screen and (max-width: 560px) and (min-width: 367px) {
	.single-material iframe {
		width: 100%;
		height: 198px;
	}
}
.content .navigation span.page-numbers.current {
    padding: 0 10px;
}
.content .navigation a.prev.page-numbers, .content .navigation a.next.page-numbers  {
	width: auto;
    padding: 0 10px;
}
.content .navigation {
    justify-content: center;
/*     margin: 15px 0 0; */
	margin: 0;
	width: 100%;
}
.page .content p a {
    font-size: 20px;
}
.use-floating-validation-tip .wpcf7-not-valid-tip {
    top: 15px;
    left: auto;
    border: 0;
    background: rgb(16 14 23 / 0%);
    padding: 0;
    width: auto;
    position: absolute;
    right: 8px;
    font-size: 13px;
}
form.submitting:after {
    content: "";
    width: 107%;
    height: 107%;
    background: rgb(0 0 0 / 70%);
    position: absolute;
    top: 0;
    left: -17px;
}
form {position: relative;}
form .wpcf7-spinner {
    display: none!important;
}
form.submitting .wpcf7-spinner {
    position: absolute;
	display: block!important;
    left: 32px;
    top: 18px;
}
.form_question.contacts .form .bl_button {
    position: relative;
}
body .form_question.contacts {
    padding-top: 50px;
}
.bx-404-container{
	width: 100%;
	margin: 0 auto;
	text-align: center;
}
.bx-404-block{
	margin-top: 100px;
	margin-bottom: 66px;
}

@media (max-width:768px) {
	.bx-404-block{
		margin-top: 50px;
		margin-bottom: 33px;
	}
}

.bx-404-text-block{
	font-size: 20px;
	font-family: "Open Sans", "Helvetica Neue", Arial, Helvetica, sans-serif;
	padding-bottom: 20px;
}

.bx-maps-title{
	color: #8f8f8f;
	font-size: 16px;
	font-family: "Open Sans", "Helvetica Neue", Arial, Helvetica, sans-serif;
	padding-bottom: 20px;
	padding-top: 10px;
	border-bottom: 1px solid #e9eaea;
}

.map-columns{
	padding-top: 20px;
}
.bx-map-title{
	font-weight: bold;
	font-size: 14px;
	font-family: "Open Sans", "Helvetica Neue", Arial, Helvetica, sans-serif;
	position: relative;
	min-height: 20px;
	padding-left: 25px;
	margin-bottom: 20px;
}
.bx-map-title .fa{
	color: #0083d1;
	position: absolute;
	left: 0;
	top: 2px;
	font-size: 15px;
}

.map-columns ul{
	list-style: none;
	margin-bottom: 5px;
}
.map-level-0{
	margin-left: 0;
	padding-left: 25px;
	margin-bottom: 20px;
}
.map-level-0 li{
	margin-left: 0;
	padding-left: 0;
}
.map-level-0 ul{
	padding-left: 15px;
}
ul.map-level-1{
	margin-bottom: 30px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
    display: none;
}
.woocommerce div.product div.summary {
    margin-bottom: 0em;
	float: none;
    width: 100%;
}
.woocommerce div.product p.price {
    display: inline-block;
	margin: 0;
}
.woocommerce .woocommerce-breadcrumb a {
    color: #cfbfff;
}
.woocommerce div.product form.cart {
    margin-bottom: 0em;
	margin-top: 1em;
}
.woocommerce-tabs.wc-tabs-wrapper.row {
    padding: 0 15px;
}
.content .product  a {
    font-size: inherit;
	display: flex !important;
	flex-direction: column;
	flex-grow: 1;
}
.woocommerce div.product form.cart .button span {
    color: #302946;
    font-weight: 300;
	font-size: 18px;
}

.woocommerce div.product form.cart .button span i {
	margin-right: 13px;
}

.woocommerce button.button {
	box-shadow: 0px 1px 13px 0px rgb(255 255 255 / 75%);
	padding: 0 22px;
}
.woocommerce button.button:hover {
	box-shadow: 0px 1px 13px 0px rgb(255 255 255);
}
.woocommerce div.product p.price span.woocommerce-Price-amount.amount {
    display: inline-block;
    font-size: 20px;
    color: #ffffff;
    line-height: 62px;
    padding-left: 24px;
}
.products .caption, .products .woocommerce-Price-amount.amount {
    display: block;
    font-size: 20px;
    margin-bottom: 13px;
    color: #c0bcc9;
	font-weight: 300;
}
section.related.products {
    margin-bottom: -70px;
}
@media (max-width: 1024px) {
.content .good_card .flex_it .slider_block_inpages {
    width: auto;
}
body .content .good_card .flex_it.img img {
    width: auto;
}
.content .good_card .flex_it .slider_block_inpages .owl-nav .owl-prev, .content .good_card .flex_it .slider_block_inpages .owl-nav .owl-next {
    margin: auto;
    top: 0;
	bottom: 0;
}
.content .good_card .flex_it .slider_block_inpages .owl-nav {
    position: static;
}
}
.content .top_search .sorting_menu li label {
    margin-bottom: 0;
	cursor: pointer;
}
.content .top_search .sorting_menu li input {
	display: none;
}
@media (min-width: 769px) {
	.content .top_search.woocommerce-ordering {
		justify-content: flex-end;
	}
	.web .title_m .title {
		max-width: 71%;
	}
}
.summary .social-share {
    margin-top: 20px;
}
.woocommerce table.shop_attributes th {
    width: auto;
    font-weight: 400;
    font-size: 16px;
	padding: 0 8px 0 0;
}

.content .product .woocommerce-product-attributes-item__value a {
     font-size: 16px;
	 font-style: normal;
}
tr.woocommerce-product-attributes-item {
    display: table;
}
.woocommerce table.shop_attributes {
    margin-bottom: 0;
}
.woocommerce table.shop_attributes td p {
    padding: 0;
	color: #ffffff;
    font-style: normal;
    font-size: 16px;
}

body.zenden-theme .zenden-specs-table {
    width: 100%;
    margin-bottom: 0;
    border-collapse: collapse;
}

body.zenden-theme .zenden-specs-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.zenden-theme .zenden-specs-table tr:last-child {
    border-bottom: 0;
}

body.zenden-theme .zenden-specs-table th,
body.zenden-theme .zenden-specs-table td {
    padding: 14px 0;
    text-align: left;
    vertical-align: top;
}

body.zenden-theme .zenden-specs-table th {
    width: 36%;
    padding-right: 16px;
    color: rgba(255, 255, 255, 0.64);
    font-family: "Rubik", sans-serif;
    font-size: 15px;
    font-weight: 400;
}

body.zenden-theme .zenden-specs-table td {
    color: #ffffff;
    font-family: "Rubik", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
}
.description .dot {
    padding: 0 5px;
}

.woocommerce .panel_b a.button {
    font-size: 18px;
    line-height: 62px;
    padding: 0 22px;
    font-weight: 400;
    border-radius: 3px;
    box-shadow: 0px 1px 13px 0px rgb(255 255 255 / 75%);
	-webkit-box-shadow: 0px 1px 13px 0px rgb(255 255 255 / 75%);
}

.woocommerce .panel_b a.button:hover {
    webkit-box-shadow: 0px 1px 13px 0px rgba(255, 255, 255, 1);
    -moz-box-shadow: 0px 1px 13px 0px rgba(255, 255, 255, 1);
    box-shadow: 0px 1px 13px 0px rgb(255 255 255);
}

.tabs__content, .tabs_content {
    display: none;
}

.tabs__content.current, .tabs_content.current {
    display: block;
}

.tree_list b {
    font-weight: 400;
}


.tabs__content iframe {
    width: 100%!important;
    height: 450px!important;
}

.map-widget-content-view__balloon .map-widget-content-view__container {
    max-height: 100%!important;
}

.caption .event-date, .caption .is-countdown {
	display: none;
}

.caption .is-countdown.visible {
	display: block;
}


.summary  a.button.add_to_cart_button.ajax_add_to_cart:before {
    content: "\f07a";
    font-family: 'FontAwesome';
    margin-right: 13px;
}

.summary  a.button.add_to_cart_button.ajax_add_to_cart {
	float: left;
}
a.button.add_to_cart_button.ajax_add_to_cart {
    box-shadow: 0px 1px 13px 0px rgb(255 255 255 / 75%);
    padding: 0 22px;
    background: #f7f2ff;
    font-weight: 300;
    line-height: 62px;
    font-size: 18px;
    color: #302946;
}

a.button.add_to_cart_button.ajax_add_to_cart:hover {
    box-shadow: 0px 1px 13px 0px rgb(255 255 255);
}

.buttons a.button.add_to_cart_button.ajax_add_to_cart {
    font-weight: 400;
}

.woocommerce .buttons a.button.loading::after {
    top: 0;
    right: 0.1em;
}

.summary .prod-attr {
    margin-bottom: 15px;
}

.contShopping.return {
    cursor: pointer;
}

.contShopping.return:hover {
    text-decoration: underline;
}

.woocommerce div.product form.cart div.quantity, .woocommerce form a.added_to_cart, .woocommerce .buttons a.added_to_cart {
    display: none!important;
}

.woocommerce button.button.loading::after {
	top: 1.5em!important;
}

.woocommerce button.button.added::after, .woocommerce button.button.loading::after {
    color: #302946;
}

.endShopping.button.white {
    padding: 0 22px;
    line-height: 62px;
    font-size: 18px;
    font-weight: 400;
    color: #302946;
    outline: 0;
    text-decoration: none;
    box-shadow: 0px 1px 13px 0px rgb(255 255 255 / 75%);
}

body .endShopping.button.white:hover {
    webkit-box-shadow: 0px 1px 13px 0px rgba(255, 255, 255, 1);
    -moz-box-shadow: 0px 1px 13px 0px rgba(255, 255, 255, 1);
    box-shadow: 0px 1px 13px 0px rgb(255 255 255);
	background: #f7f2ff;
	color: #302946;
}

#addedToBasket .closemodal img {
    cursor: pointer;
}

#rezervModal.modals.visible {
	opacity: 1;
	z-index: 999;
}

.modal-content-ok .reg span,
.sub input[type="submit"], .modal-content-ok .ok span {
    -moz-transform: skew(8deg, 0deg);
    -webkit-transform: skew( 8deg, 0deg);
    -o-transform: skew(8deg, 0deg);
    -ms-transform: skew(8deg, 0deg);
    transform: skew( 8deg, 0deg);
    display: inline-block;
    border-radius: 5px;
    padding: 0 22px;
    border: 0;
    background: rgb(255 255 255 / 0%);
    color: #302946;
}

.modal-content-ok .reg span a {
    color: #302946;
	text-decoration: none;
}


.modal-content-ok .ok span a {
    text-decoration: none;
    color: #302946;
}

.ok .modal-content-ok .reg {
    margin: 0 15px;
    text-align: center;
    display: block;
    width: auto;
}

.ok .modal-content-ok .ok {
    margin: auto;
    text-align: center;
    display: block;
    width: 120px;
}

.ok .modal-content-ok .reg:hover,
.ok .modal-content-ok .ok:hover {
    box-shadow: 0px 1px 13px 0px rgb(255 255 255);
}

.ok .modal-content-ok .buttons {
    display: flex;
    justify-content: center;
}

.modal-content-ok .success {
    margin-bottom: 25px;
	text-align: center;
}

.modal-content-ok .success .text i {
    display: block;
    margin: 5px 0;
}

.modal-content-ok .success:not(.wb) .veb,
.modal-content-ok .success.wb .noveb {
    display: none;
}

.modal-content-ok .reg,
#rezervModal .sub, .vebinar .sub, .modal-content-ok .ok {
    height: 62px;
    display: inline-block;
    line-height: 62px;
    text-decoration: none;
    -moz-transform: skew(-8deg, 0deg);
    -webkit-transform: skew( -8deg, 0deg);
    -o-transform: skew(-8deg, 0deg);
    -ms-transform: skew(-8deg, 0deg);
    transform: skew( -8deg, 0deg);
	font-size: 18px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    padding: 0 0px;
    -webkit-box-shadow: 0px 1px 13px 0px rgb(255 255 255 / 75%);
    -moz-box-shadow: 0px 1px 13px 0px rgba(255, 255, 255, 0.75);
    box-shadow: 0px 1px 13px 0px rgb(255 255 255 / 75%);
    cursor: pointer;
    border: 0;
    background: #f7f2ff;
}
#rezervModal .sub:hover, .vebinar .sub:hover {
    -webkit-box-shadow: 0px 1px 13px 0px rgba(255, 255, 255, 1);
    -moz-box-shadow: 0px 1px 13px 0px rgba(255, 255, 255, 1);
    box-shadow: 0px 1px 13px 0px rgb(255 255 255);
}

.use-floating-validation-tip .form_lk .wpcf7-not-valid-tip {
    top: 13px;   
    right: -12px;
}

.form_question form.submitting:after {
    background: rgb(32 31 39 / 0%);
}

.form_question .form .bl_button {
    text-align: center;
    position: relative;
}

form.submitting .wpcf7-spinner {
    left: 0;
    right: 0;
    margin: auto;
}

.form_question .form .button.white {
    font-weight: 400;
    color: #302946;
    font-size: 18px;
}

body .swiper-button-next {
    background-image: url(/assets/images/zendentistry/arrow-right.png);
    width: 95px;
    height: 138px;
    margin-top: 30px;
    background-position: 0 0;
    background-size: cover;
}

.swiper-button-next:hover {
  opacity: 0.8;
}

body .swiper-button-prev {
    background-image: url(/assets/images/zendentistry/arrow-left.png);
    width: 95px;
    height: 138px;
    margin-top: 30px;
    background-position: 0 0;
    background-size: cover;
}

.swiper-button-prev:hover {
  opacity: 0.8;
}

.swiper-wrapper {
    margin-bottom: 5px;
}

body .swiper-button-next:after, body .swiper-button-prev:after {
    display: none;
}

.mySwiper2 .swiper-slide:not(.swiper-slide-active) {
    height: 0;
}

.mySwiper .swiper-slide.swiper-slide-visible.swiper-slide-thumb-active:after {
    content: "";
    position: absolute;
    background: rgba(28,23,72,.6);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#rezervModal form.submitting:after {
    background: rgb(0 0 0 / 75%);
}

form.submitting .wpcf7-spinner {
    -moz-transform: skew(0deg, 0deg);
    -webkit-transform: skew( 0deg, 0deg);
    -o-transform: skew(0deg, 0deg);
    -ms-transform: skew(0deg, 0deg);
    transform: skew( 0deg, 0deg);
}

.vebinar form.submitting .wpcf7-spinner {
    -moz-transform: skew(0deg, 8deg);
    -webkit-transform: skew( 0deg, 8deg);
    -o-transform: skew(0deg, 8deg);
    -ms-transform: skew(0deg, 8deg);
    transform: skew( 0deg, 8deg);
}

.vebinar .modal-content-text.entry {
    padding-top: 40px;
}

.vebinar .modal-content-wrapper {
    overflow: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
	overflow-x: hidden;
}

#addedToBasket.vebinar .modal-content {
    top: 20px;
    left: 0;
    transform: none;
    background: black;
    right: 0;
    margin: auto;
}

.overhid {
	overflow: hidden;
}

.menutop .basket_bl:hover {
	text-decoration: none;
}

.menutop .basket_bl {
    text-decoration: none;
}

.panel.woocommerce-Tabs-panel {
    background-color: rgb(255 255 255 / 0%);
	border: 0;
}

.center .add_info {
    margin-bottom: 70px;
	font-size: 14px;
}

.content .product .img .count_products.blue {
    background: #5055d9;
    padding: 0 20px;
    letter-spacing: 2.2pt;
}

.content .product .img .count_products {
    line-height: 41px;
    height: 41px;
    background: #1d1b25;
    position: absolute;
    top: 24px;
    left: -6px;
    font-size: 13px;
    color: #ffffff;
    text-transform: uppercase;
    padding-left: 34px;
    padding-right: 21px;
    -moz-transform: skew(-8deg, 0deg);
    -webkit-transform: skew(-8deg, 0deg);
    -o-transform: skew(-8deg, 0deg);
    -ms-transform: skew(-8deg, 0deg);
    transform: skew(-8deg, 0deg);
}

.archive .content .product .img {
    overflow: hidden;
    position: relative;
}

.content .product .img .count_products span {
    display: inline-block;
    -moz-transform: skew(8deg, 0deg);
    -webkit-transform: skew(8deg, 0deg);
    -o-transform: skew(8deg, 0deg);
    -ms-transform: skew(8deg, 0deg);
    transform: skew(8deg, 0deg);
}

.woovr-variations.woovr-variations-default {
    -moz-transform: skew(-8deg, 0deg);
    -webkit-transform: skew( -8deg, 0deg );
    -o-transform: skew(-8deg, 0deg);
    -ms-transform: skew(-8deg, 0deg);
    transform: skew( -8deg, 0deg );
    border: 1px solid #28272f;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 0;
	margin-bottom: 40px;
	display: inline-block;
}

.woovr-variations.woovr-variations-default input[type="radio"], input[type="checkbox"] {
    display: none;
}

.woovr-variation-radio .woovr-variation-selector {
    flex: 0;
    padding: 0!important;
}

.woovr-variation-radio .woovr-variation-name {
    display: block;
	cursor: pointer;
	font-size: 14px;
    color: #a09da8;
    font-weight: normal;
    line-height: 35px;
    -moz-transform: skew(8deg, 0deg);
    -webkit-transform: skew( 8deg, 0deg );
    -o-transform: skew(8deg, 0deg);
    -ms-transform: skew(8deg, 0deg);
    transform: skew( 8deg, 0deg );
	margin: 0 20px;
}

.woovr-variation-radio .woovr-variation-name:hover {
    color: #cfbfff;
	text-shadow: 0px 1px 18px #cfbfff;
}

.woovr-variations .woovr-variation:hover {
    background-color: rgb(249 249 249 / 0%);
}

.woovr-variations .woovr-variation {
    display: inline-block;
	position: relative;
	cursor: auto;
}

.woovr-variation-info, .woovr-variation-selector {
    flex-grow: 0;
}

.woovr-variations .woovr-variation-radio:not(:last-child) .woovr-variation-info:after {
    content: '';
    position: absolute;
    right: 4px;
    top: 13px;
    height: 20px;
    border-left: 1px solid rgba(250,250,250, 0.2);
    -moz-transform: skew(-8deg, 0deg);
    -webkit-transform: skew( -8deg, 0deg );
    -o-transform: skew(-8deg, 0deg);
    -ms-transform: skew(-8deg, 0deg);
    transform: skew( -8deg, 0deg );
}

.woovr-variations .woovr-variation.woovr-variation-active .woovr-variation-name {
	color: #ffffff;
}

.woocommerce-variation-add-to-cart button.single_add_to_cart_button.button.alt:before {
    content: "\f07a";
    font-family: 'FontAwesome';
    color: #302946;
    font-weight: 300;
    font-size: 18px;
	margin-right: 13px;
}

.woocommerce-variation-add-to-cart button.single_add_to_cart_button.button.alt {
    color: #302946;
	font-weight: 400;
}

.woocommerce-variation-add-to-cart button.single_add_to_cart_button.button.alt:hover  {
    color: #302946;
}


.woocommerce .woocommerce-pagination ul.page-numbers li, .woocommerce-page .woocommerce-pagination ul.page-numbers li {
    display: inline-block;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
    border: 1px solid #28272f;
    font-size: 18px;
    color: #a09da8;
    -moz-transform: skew(-8deg, 0deg);
    -webkit-transform: skew(-8deg, 0deg );
    -o-transform: skew(-8deg, 0deg);
	-ms-transform: skew(-8deg, 0deg);
    transform: skew( -8deg, 0deg );
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin: 0 5px;
}

.woocommerce nav.woocommerce-pagination.custom-pagination ul li .current:hover,	
.woocommerce nav.woocommerce-pagination.custom-pagination ul li a:focus,
.woocommerce nav.woocommerce-pagination.custom-pagination ul li a:hover {	
    text-shadow: 0px 1px 18px rgb(255 255 255 / 80%);
    color: #fff;
    border: 0;
    font-weight: 300;
}

.woocommerce nav.woocommerce-pagination.custom-pagination ul li .current,
.woocommerce nav.woocommerce-pagination.custom-pagination ul li a {
    -moz-transform: skew(8deg, 0deg);
    -webkit-transform: skew( 8deg, 0deg );
    -o-transform: skew(8deg, 0deg);
    -ms-transform: skew(8deg, 0deg);
    transform: skew( 8deg, 0deg );
	background: rgb(235 233 235 / 0%);
	border: 0;
    font-weight: 300;
}

.woocommerce nav.woocommerce-pagination ul li a:focus,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
    background: rgb(235 233 235 / 0%);
    text-shadow: 0px 1px 18px rgb(255 255 255 / 80%);
    color: #fff;
    border: 1px solid #9f9fa2;
}

.woocommerce nav.woocommerce-pagination ul {
    border: 0;
}

body.woocommerce nav.woocommerce-pagination ul li a:focus, body.woocommerce nav.woocommerce-pagination ul li a:hover, body.woocommerce nav.woocommerce-pagination ul li span, body.woocommerce nav.woocommerce-pagination ul li span.current, body.woocommerce nav.woocommerce-pagination ul li a {
    background: rgb(235 233 235 / 0%);
    text-shadow: 0px 1px 18px rgb(255 255 255 / 80%);
    color: #fff;
    border: 0;
    -moz-transform: skew(8deg, 0deg);
    -webkit-transform: skew( 8deg, 0deg );
    -o-transform: skew(8deg, 0deg);
    -ms-transform: skew(8deg, 0deg);
    transform: skew( 8deg, 0deg );
	font-weight: 300;
}

.web.woocommerce nav.woocommerce-pagination ul li a,
body.woocommerce nav.woocommerce-pagination ul li a {
    color: #a09da8;
    font-weight: 300;
}

@media (max-width: 1024px) {
	.woovr-variations.woovr-variations-default {
		display: inline-block;
		margin-right: 20px;
	}
}

body #ajaxsearchpro1_1, body #ajaxsearchpro2_1, body #ajaxsearchpro3_1, body #ajaxsearchpro4_1, body #ajaxsearchpro5_1, body #ajaxsearchpro6_1 {
    height: 46px;
    border: 1px solid #28272f;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 0;
    -moz-transform: skew(-8deg, 0deg);
    -webkit-transform: skew( -8deg, 0deg );
    -o-transform: skew(-8deg, 0deg);
    -ms-transform: skew(-8deg, 0deg);
    transform: skew( -8deg, 0deg );
    position: relative;
    float: left;
    margin-bottom: 10px;
    display: inline-block;
    margin-right: 15px;
	background-image: -webkit-radial-gradient(ellipse at center,rgb(8 7 15),rgb(8 7 15));
    background-image: -o-radial-gradient(ellipse at center,rgb(8 7 15),rgb(8 7 15));
    background-image: -ms-radial-gradient(ellipse at center,rgb(8 7 15),rgb(8 7 15));
    background-image: radial-gradient(ellipse at center,rgb(8 7 15),rgb(8 7 15));
}

body #ajaxsearchprobsettings6_1, body #ajaxsearchprobsettings5_1 {
    padding: 0;
    background: rgb(255 0 0 / 0%);
    box-shadow: none;
    -moz-transform: skew(-8deg, 0deg);
    -webkit-transform: skew( -8deg, 0deg );
    -o-transform: skew(-8deg, 0deg);
    -ms-transform: skew(-8deg, 0deg);
    transform: skew( -8deg, 0deg );
	border-radius: 5px;
}
body #ajaxsearchprobsettings6_1 fieldset legend, body #ajaxsearchprobsettings5_1 fieldset legend {
	display: none;
}

body #ajaxsearchprobsettings5_1 form, body #ajaxsearchprobsettings6_1 form {
	margin: 0!important;
}

#ajaxsearchpro5_1 .probox, #ajaxsearchpro6_1 .probox {
	margin-left: 0;
}
#ajaxsearchpro6_1 .probox .prosettings, #ajaxsearchpro5_1 .probox .prosettings {
	display: none;
}
body #ajaxsearchprobsettings6_1 fieldset select, body #ajaxsearchprobsettings5_1 fieldset select {
	-moz-transform: skew(8deg, 0deg);
    -webkit-transform: skew( 8deg, 0deg );
    -o-transform: skew(8deg, 0deg);
    -ms-transform: skew(8deg, 0deg);
    transform: skew( 8deg, 0deg );
	height: 44px;
	border: 0;
	background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0Ljk1IDEwIj48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2ZmZjt9LmNscy0ye2ZpbGw6IzQ0NDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFycm93czwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB3aWR0aD0iNC45NSIgaGVpZ2h0PSIxMCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxLjQxIDQuNjcgMi40OCAzLjE4IDMuNTQgNC42NyAxLjQxIDQuNjciLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMy41NCA1LjMzIDIuNDggNi44MiAxLjQxIDUuMzMgMy41NCA1LjMzIi8+PC9zdmc+) no-repeat 95% 50%;
	-moz-appearance: none; 
	-webkit-appearance: none; 
	appearance: none;
	filter: invert(97%);
    color: #5a5a5a;
	font-size: 17px;
}

body #ajaxsearchprobsettings6_1 fieldset, body #ajaxsearchprobsettings5_1 fieldset {
   margin: 0!important;
}

div.asp_m.ajaxsearchpro .probox .prosettings .innericon svg, div.asp_m.ajaxsearchpro .probox .promagnifier .innericon svg, div.asp_m.ajaxsearchpro .probox .prosettings .innericon {
    vertical-align: top;
}

#ajaxsearchpro1_1 .probox, #ajaxsearchpro1_2 .probox, div.asp_m.asp_m_1 .probox, #ajaxsearchpro2_1 .probox, #ajaxsearchpro3_1 .probox, #ajaxsearchpro4_1 .probox, #ajaxsearchpro5_1 .probox, #ajaxsearchpro6_1 .probox {
	height: 35px;
	background-image: -moz-radial-gradient(ellipse at center,rgb(8 7 15),rgb(8 7 15));
    background-image: -webkit-gradient(ellipse at center,rgb(8 7 15),rgb(8 7 15));
    background-image: -webkit-radial-gradient(ellipse at center,rgb(8 7 15),rgb(8 7 15));
    background-image: -o-radial-gradient(ellipse at center,rgb(8 7 15),rgb(8 7 15));
    background-image: -ms-radial-gradient(ellipse at center,rgb(8 7 15),rgb(8 7 15));
    background-image: radial-gradient(ellipse at center,rgb(8 7 15),rgb(8 7 15));
	border-radius: 3px 3px 3px 3px;
    box-shadow: none;
	border: 0;
}

#ajaxsearchpro1_1 .probox .proinput input.orig, #ajaxsearchpro1_2 .probox .proinput input.orig, div.asp_m.asp_m_1 .probox .proinput input.orig, #ajaxsearchpro2_1 .probox .proinput input.orig, #ajaxsearchpro3_1 .probox .proinput input.orig, #ajaxsearchpro4_1 .probox .proinput input.orig, #ajaxsearchpro6_1 .probox .proinput input.orig, #ajaxsearchpro5_1 .probox .proinput input.orig {
	-moz-transform: skew(8deg, 0deg);
    -webkit-transform: skew( 8deg, 0deg );
    -o-transform: skew(8deg, 0deg);
    -ms-transform: skew(8deg, 0deg);
    transform: skew( 8deg, 0deg );
    font-size: 18px;
    color: #a09da8;
}

#ajaxsearchpro1_1 .probox .promagnifier div.innericon, #ajaxsearchpro1_2 .probox .promagnifier div.innericon, div.asp_m.asp_m_1 .probox .promagnifier div.innericon, #ajaxsearchpro2_1 .probox .promagnifier div.innericon, #ajaxsearchpro3_1 .probox .promagnifier div.innericon, #ajaxsearchpro4_1 .probox .promagnifier div.innericon, #ajaxsearchpro5_1 .probox .promagnifier div.innericon, #ajaxsearchpro6_1 .probox .promagnifier div.innericon {
    width: 35px;
    height: 35px;
}

#ajaxsearchpro1_1 .probox .promagnifier, #ajaxsearchpro1_2 .probox .promagnifier, div.asp_m.asp_m_1 .probox .promagnifier, #ajaxsearchpro2_1 .probox .promagnifier, #ajaxsearchpro3_1 .probox .promagnifier, #ajaxsearchpro4_1 .probox .promagnifier, #ajaxsearchpro6_1 .probox .promagnifier, #ajaxsearchpro5_1 .probox .promagnifier {
    width: 33px;
    height: 33px;
	background-image: -webkit-linear-gradient(180deg,rgb(8 7 15),rgb(8 7 15));
			background-image: -moz-linear-gradient(180deg,rgb(8 7 15),rgb(8 7 15));
			background-image: -o-linear-gradient(180deg,rgb(8 7 15),rgb(8 7 15));
			background-image: -ms-linear-gradient(180deg,rgb(8 7 15),rgb(8 7 15));
			background-image: linear-gradient(180deg,rgb(8 7 15),rgb(8 7 15));
			border: 1px solid #28272f;
			border-radius: 2px;
			box-shadow: none;
}

div.asp_m.ajaxsearchpro .probox .prosettings .innericon {
	width: 33px;
    border: 1px solid;
    height: 33px;
}

#ajaxsearchpro1_1 .probox .prosettings, #ajaxsearchpro1_2 .probox .prosettings, div.asp_m.asp_m_1 .probox .prosettings, #ajaxsearchpro2_1 .probox .prosettings, #ajaxsearchpro3_1 .probox .prosettings, #ajaxsearchpro4_1 .probox .prosettings, #ajaxsearchpro5_1 .probox .prosettings, #ajaxsearchpro6_1 .probox .prosettings {
    width: 35px;
    height: 35px;
}

div.asp_m.asp_m_1 .probox .proclose, div.asp_m.asp_m_1 .probox .proloading, #ajaxsearchpro2_1 .probox .proloading {
	-moz-transform: skew(8deg, 0deg);
    -webkit-transform: skew( 8deg, 0deg );
    -o-transform: skew(8deg, 0deg);
    -ms-transform: skew(8deg, 0deg);
    transform: skew( 8deg, 0deg );
    top: 3px;
    right: 3px;
}

#ajaxsearchpro2_1 .probox .proclose svg, #ajaxsearchpro3_1 .probox .proclose svg, #ajaxsearchpro3_1 .probox .proloading, #ajaxsearchpro4_1 .probox .proloading, #ajaxsearchpro4_1 .probox .proclose svg, #ajaxsearchpro5_1 .probox .proclose, #ajaxsearchpro6_1 .probox .proclose, #ajaxsearchpro5_1 .probox .proloading, #ajaxsearchpro6_1 .probox .proloading  {
	-moz-transform: skew(8deg, 0deg);
    -webkit-transform: skew( 8deg, 0deg );
    -o-transform: skew(8deg, 0deg);
    -ms-transform: skew(8deg, 0deg);
    transform: skew( 8deg, 0deg );
}

.probox .proinput input.orig::placeholder {font-size: 18px; color: #a09da8;}

div.asp_m.asp_m_1 .probox .proinput input.orig::-webkit-input-placeholder {font-size: 18px; color: #a09da8;}
div.asp_m.asp_m_1 .probox .proinput input.orig::-moz-placeholder {font-size: 18px; color: #a09da8;}
div.asp_m.asp_m_1 .probox .proinput input.orig::-ms-input-placeholder {font-size: 18px; color: #a09da8;}

#ajaxsearchpro2_1 .probox .proinput input.orig::-webkit-input-placeholder {font-size: 18px; color: #a09da8;}
#ajaxsearchpro2_1 .probox .proinput input.orig::-moz-placeholder {font-size: 18px; color: #a09da8;}
#ajaxsearchpro2_1 .probox .proinput input.orig::-ms-input-placeholder {font-size: 18px; color: #a09da8;}

#ajaxsearchpro3_1 .probox .proinput input.orig::-webkit-input-placeholder {font-size: 18px; color: #a09da8;}
#ajaxsearchpro3_1 .probox .proinput input.orig::-moz-placeholder {font-size: 18px; color: #a09da8;}
#ajaxsearchpro3_1 .probox .proinput input.orig::-ms-input-placeholder {font-size: 18px; color: #a09da8;}

#ajaxsearchpro4_1 .probox .proinput input.orig::-webkit-input-placeholder, #ajaxsearchpro6_1 .probox .proinput input.orig::-webkit-input-placeholder, #ajaxsearchpro5_1 .probox .proinput input.orig::-webkit-input-placeholder {font-size: 18px; color: #a09da8;}
#ajaxsearchpro4_1 .probox .proinput input.orig::-moz-placeholder, #ajaxsearchpro6_1 .probox .proinput input.orig::-moz-placeholder, #ajaxsearchpro5_1 .probox .proinput input.orig::-moz-placeholder {font-size: 18px; color: #a09da8;}
#ajaxsearchpro4_1 .probox .proinput input.orig::-ms-input-placeholder, #ajaxsearchpro6_1 .probox .proinput input.orig::-ms-input-placeholder, #ajaxsearchpro5_1 .probox .proinput input.orig::-ms-input-placeholder {font-size: 18px; color: #a09da8;}

div.asp_m.asp_m_1 .probox .proloading, div.asp_m.asp_m_2 .probox .proloading {
    margin-top: 3px;
	margin-right: 3px;
}

#ajaxsearchprosettings1_1.searchsettings fieldset legend, #ajaxsearchprosettings1_2.searchsettings fieldset legend, div.asp_s.asp_s_1.searchsettings fieldset legend, div.asp_s.asp_s_2.searchsettings fieldset legend, #ajaxsearchprosettings2_1.searchsettings fieldset legend, div.asp_s.asp_s_3.searchsettings fieldset legend, div.asp_s.asp_s_4.searchsettings fieldset legend {
    color: rgb(255 255 255);
    font-size: 15px;
}

#ajaxsearchprosettings1_1.searchsettings div.asp_option_label, #ajaxsearchprosettings1_2.searchsettings div.asp_option_label, #ajaxsearchprosettings1_1.searchsettings .asp_label, #ajaxsearchprosettings1_2.searchsettings .asp_label, div.asp_s.asp_s_1.searchsettings div.asp_option_label, div.asp_s.asp_s_1.searchsettings .asp_label {
    font-family: 'Rubik';
    color: rgb(255,255,255);
    font-size: 13px;
    font-weight: 400;
}

div.asp_w.asp_s.searchsettings input[type='text']:not(.asp_select2-search__field), div.asp_w.asp_sb.searchsettings input[type='text']:not(.asp_select2-search__field) {
    background-color: #08070f !important;
    color: #ffffff;
    border: 1px solid #464646!important;
	padding: 6px 6px !important;
	border-radius: 3px;
}

div.asp_w.asp_s select, div.asp_w.asp_sb select {
    background: #08070f;
    color: #ffffff;
	border: 1px solid #464646;
    border-radius: 3px;
}

div.asp_w.asp_s.searchsettings {
	padding: 15px;
	border: 1px solid #303030;
}

.asp-try.asp-try-1, .asp-try.asp-try-2, .asp-try.asp-try-3, .asp-try.asp-try-4 {
    font-family: Rubik;
    font-size: 14px;
}

span.asp_nores_header {
    font-size: 20px;
    font-family: 'Rubik';
}

span.asp_keyword {
    font-size: 18px!important;
}

.asp_shortcodes_container {
    margin-top: 40px;
}

.archive .asp_shortcodes_container {
    position: relative;
}

#wpdreams_asp_results_3 {
	position: relative;
}

#ajaxsearchprores3_1 {
	position: absolute!important;
    left: 0!important;
    right: 0!important;
    top: 100px!important;
}

.asp-ui .ui-widget-header {
    background: #3c3c3c;
}

.asp-ui.ui-datepicker .ui-state-active {
    background: #3c3c3c;
}

.asp-ui.ui-datepicker select.ui-datepicker-month, .asp-ui.ui-datepicker select.ui-datepicker-year {
    color: #100a36;
}

.asp_filter_tax.asp_filter_tax_product_cat.asp_checkboxes_filter_box.asp_filter_id_2.asp_filter_n_1, .term-events #myForm {
	display: none;
}

.term-events .caption {
    background: #1d1b25;
    padding: 31px 35px 20px;
	margin-bottom: 0;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	gap: 20px;
}

.woocommerce.term-events ul.products li.product:hover {
	box-shadow: 0px 7px 60px 6px rgb(170 128 255 / 45%);
    transition: 0.3s;
}

.term-events .caption .ttl {
    font-size: 20px;
    color: #fff;
    display: inline-block;
    line-height: 28px;
/*     margin-bottom: 20px; */
	word-break: break-word;
}

.term-events .status {
    display: flex;
    flex-wrap: nowrap;
	align-items: center;
	color: #ffffff;
}

.term-events .status .lbl {
    text-transform: lowercase;
	margin-right: 20px;
}

.term-events .status .text img {
    width: 35px!important;
	height: auto!important;
}

.term-events .status .text span {
    color: #59ffe1;
	padding-right: 10px;
}

.term-events .status .text {
    font-weight: 400;
	display: flex;
    align-items: center;
}

.web.term-events .caption .description {
    padding-bottom: 10px;
}

.web.term-events .caption {
    padding: 31px 35px 35px;
}

.term-events .caption .description {
    font-size: 16px;
    color: rgba(250, 250, 250, 0.5);
    font-weight: 300;
    padding-bottom: 38px;
	display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.term-events .caption .description .lang {
    font-size: 13px;
    line-height: 23px;
    color: #fff;
}

.woocommerce.term-events ul.products li.product a img {
    margin: 0;
}

.woocommerce.term-events ul.products li.product .price {
	display: none;
}

.woocommerce form .password-input, .woocommerce-page form .password-input {
    display: inline;
    width: 100%;
}

.woocommerce form .show-password-input, .woocommerce-page form .show-password-input {
	position: absolute;
	right: 10px;
    top: auto;
    z-index: 9;
    height: 25px;
    bottom: 0;
    margin: auto;
}

.woocommerce form.woocommerce-ResetPassword.lost_reset_password .form-row input.input-text {
    height: 50%;
	border: 1px solid #28272f;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -moz-transform: skew(-8deg, 0deg);
    -webkit-transform: skew( -8deg, 0deg );
    -o-transform: skew(-8deg, 0deg);
    -ms-transform: skew(-8deg, 0deg);
    transform: skew( -8deg, 0deg );
    background: rgb(255 255 255 / 0%);
}

.woocommerce form .show-password-input::after, .woocommerce-page form .show-password-input::after {
    margin-left: 0;
}

.woocommerce form.login, .woocommerce form.register {
    border: 0;
	margin: 0;
}

.wrapper.sign .form_up {
    position: relative!important;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__submit, .woocommerce-lost-password .woocommerce button.button, .woocommerce #customer_login button.button {
    font-weight: 500;
	padding: 0 40px;
}

.woocommerce-lost-password .woocommerce form .form-row-first {
    width: 100%;
}

.woocommerce-lost-password .woocommerce form .form-row-first {
	height: 80px;
    width: 100%;
    border: 1px solid #28272f;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 0 20px;
    -moz-transform: skew(-8deg, 0deg);
    -webkit-transform: skew( -8deg, 0deg );
    -o-transform: skew(-8deg, 0deg);
    -ms-transform: skew(-8deg, 0deg);
    transform: skew( -8deg, 0deg );
    position: relative;
    float: left;
    margin-bottom: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: rgb(135 135 135 / 0%);
}

.woocommerce-lost-password .woocommerce form .form-row-last {
    width: 100%;
}

.woocommerce-lost-password .woocommerce form .form-row-last {
	height: 80px;
    width: 100%;
    border: 1px solid #28272f;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 0 20px;
    -moz-transform: skew(-8deg, 0deg);
    -webkit-transform: skew( -8deg, 0deg );
    -o-transform: skew(-8deg, 0deg);
    -ms-transform: skew(-8deg, 0deg);
    transform: skew( -8deg, 0deg );
    position: relative;
    float: left;
    margin-bottom: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: rgb(135 135 135 / 0%);
}

.woocommerce #customer_login  form .form-row .mess {
	position: absolute;
    top: -6px;
    left: 10px;
    color: #cf0000;
    background: #0c0b1a;
    padding: 0 5px;
    font-size: 13px;
	font-weight: 600;
    line-height: 10px;
	text-transform: lowercase;
}

.woocommerce #customer_login  form #sms_checkbox_field .optional,
.woocommerce #customer_login  form #email_checkbox_field .optional {
	display: none;
}

.woocommerce #customer_login  form .form-row .input-text  {
	height: 100%;
    background: rgb(14 12 30 / 0%);
    border: 0;
	-moz-transform: skew(8deg, 0deg);
    -webkit-transform: skew( 8deg, 0deg );
    -o-transform: skew(8deg, 0deg);
    -ms-transform: skew(8deg, 0deg);
    transform: skew( 8deg, 0deg );
}

.woocommerce form .form-row label {
    line-height: 27px;
}

.woocommerce-password-strength {
    position: absolute;
    bottom: 110px;
    font-size: 14px;
    left: 0;
    right: 0;
    margin: auto;
	line-height: 20px;
	color: #424242;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 1px solid #757575;
  -webkit-text-fill-color: #757575;
  /* -webkit-box-shadow: 0 0 0px 1000px #0e0c1c inset; */
  transition: background-color 5000s ease-in-out 0s;
} 

@media (max-width: 718px) {
.term-gallery .asp_shortcodes_container>div:first-child {
	flex-basis: 100%!important;
}
#ajaxsearchpro6_1 .probox .promagnifier, #ajaxsearchpro5_1 .probox .promagnifier {
	flex-basis: 33px!important; 
}
.term-gallery .asp_shortcodes_container>div:last-child {
	margin-top: 50px;
}
.menutop .basket_bl .cart {display: none;}
}

.term-gallery #myForm {
	display: none;
}

.content .product_cat-gallery  .good_card .flex_it.img {
	max-width: 30%;
}

.content .product_cat-gallery  .good_card .flex_it .slider_block_inpages {
    width: 300px;

}

/*.content .product_cat-gallery .good_card .flex_it.img .item img {
    max-height: 320px;
}*/

html {
	scroll-behavior: smooth;
}

.archive .content .term-description a, .content .tabs__content a {
    font-size: 20px;
}

.tabs__content b {
	font-weight: bolder;
}

.checkout.woocommerce-checkout .form-row>span {
    height: 53px;
    width: 100%;
    border: 1px solid #28272f;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 0 8px;
    -moz-transform: skew(-8deg, 0deg);
    -webkit-transform: skew( -8deg, 0deg );
    -o-transform: skew(-8deg, 0deg);
    -ms-transform: skew(-8deg, 0deg);
    transform: skew( -8deg, 0deg );
    position: relative;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.checkout.woocommerce-checkout .form-row select {
	-moz-transform: skew(8deg, 0deg);
    -webkit-transform: skew( 8deg, 0deg );
    -o-transform: skew(8deg, 0deg);
    -ms-transform: skew(8deg, 0deg);
    transform: skew( 8deg, 0deg );
    height: 51px;
    background: rgb(8 7 15 / 0%);
	border: 0;
}

.checkout.woocommerce-checkout .form-row:not(#resident_person_field) input.input-text, .woocommerce form .form-row textarea {
    box-sizing: border-box !important;
    width: 100% !important;
    margin: 0 !important;
    outline: 0;
    line-height: normal !important;
    -moz-transform: skew(8deg, 0deg);
    -webkit-transform: skew( 8deg, 0deg );
    -o-transform: skew(8deg, 0deg);
    -ms-transform: skew(8deg, 0deg);
    transform: skew( 8deg, 0deg ) !important;
    height: 51px !important;
    background-color: rgb(8 7 15 / 0%) !important;
    border: 0 !important;
}
.woocommerce form .form-row {
    margin: 0 0 20px;
}

.woocommerce form .form-row.required_fields {
    font-size: 15px;
}

#resident_person_field input:checked {
    background: #cfbfff;
}

#resident_person_field input:checked::before {
    height: 25px;
    width: 25px;
    position: absolute;
    content: '✔';
    display: inline-block;
    font-size: 24.66667px;
    text-align: center;
    line-height: 30px;
    top: -5px;
    left: 2px;
}

#resident_person_field input[type="checkbox"]::after {
    border-radius: 50%;
}
#resident_person_field input:checked::after {
    -webkit-animation: click-wave 0.65s;
    -moz-animation: click-wave 0.65s;
    animation: click-wave 0.65s;
    background: #835dff;
    content: '';
    display: block;
    position: relative;
    z-index: 100;
	border-radius: 50%;
}

/*@keyframes click-wave {
	0%{height:40px;width:40px;opacity:0.35;position:relative;}
	100%{height:200px;width:200px;margin-left:-80px;margin-top:-80px;opacity:0;}
}*/

#resident_person_field input {
	border-radius: 50%;
    outline: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    position: relative;
    top: -3px;
    right: 0;
    bottom: 0;
    left: 0;
    height: 25px;
    width: 25px;
    transition: all 0.15s ease-out 0s;
    background: #cbd1d8;
    border: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    margin-right: 0.5rem;
    outline: none;
    position: relative;
    z-index: 1000;
    float: left;
}

#resident_person_field input[type="radio"]:checked+label {
	color: #cfbfff;
	cursor: pointer;
	text-shadow: 0px 1px 18px #cfbfff;
}

.checkout.woocommerce-checkout #resident_person_field label {
	float: left;
	cursor: pointer;
	line-height: 9px;
	font-weight: 300;
	margin-right: 25px;
}

#resident_person_field span {
	-moz-transform: skew(0deg, 0deg);
    -webkit-transform: skew( 0deg, 0deg );
    -o-transform: skew(0deg, 0deg);
    -ms-transform: skew(0deg, 0deg);
	border: 0;
	height: auto;
    padding: 8px 0;
}

.checkout.woocommerce-checkout label {
    font-weight: 700;
}

#billing_person_field .optional, .checkout #billing_company_field, #inn_person_field {
    display: none;
}

#shipping_country_field .select2-container--default .select2-selection--single .select2-selection__rendered, 
#shipping_state_field .select2-container--default .select2-selection--single .select2-selection__rendered,
#billing_country_field .select2-container--default .select2-selection--single .select2-selection__rendered, 
#billing_state_field .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 52px;
}

.woocommerce-MyAccount-content #billing_country_field .select2-container--default .select2-selection--single .select2-selection__rendered, 
.woocommerce-MyAccount-content #billing_state_field .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 42px;
}

.woocommerce-MyAccount-content #billing_country_field .select2-container--default .select2-selection--single .select2-selection__arrow, 
.woocommerce-MyAccount-content #billing_state_field .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 42px;
}

#shipping_country_field .select2-container--default .select2-selection--single, 
#shipping_state_field .select2-container--default .select2-selection--single,
#billing_country_field .select2-container--default .select2-selection--single, 
#billing_state_field .select2-container--default .select2-selection--single {
    background-color: rgb(255 255 255 / 0%);
    border: 0;
    border-radius: 4px;
    -moz-transform: skew(8deg, 0deg);
    -webkit-transform: skew( 8deg, 0deg );
    -o-transform: skew(8deg, 0deg);
    -ms-transform: skew(8deg, 0deg);
    transform: skew( 8deg, 0deg );
    height: 52px;
}

#shipping_country_field .select-container--default .select-selection--single, 
#shipping_state_field .select-container--default .select-selection--single,
#billing_country_field .select-container--default .select-selection--single, 
#billing_state_field .select-container--default .select-selection--single {
    background-color: rgb(255 255 255 / 0%);
    border: 0;
    border-radius: 4px;
    -moz-transform: skew(8deg, 0deg);
    -webkit-transform: skew( 8deg, 0deg );
    -o-transform: skew(8deg, 0deg);
    -ms-transform: skew(8deg, 0deg);
    transform: skew( 8deg, 0deg );
    height: 52px;
}

#shipping_country_field .select2-container--default .select2-selection--single .select2-selection__arrow, 
#shipping_state_field .select2-container--default .select2-selection--single .select2-selection__arrow,
#billing_country_field .select2-container--default .select2-selection--single .select2-selection__arrow, 
#billing_state_field .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 52px;
}

.select2-results__option {
	color: #3a3a3a!important;
    background-color: #dfdfdf;
}

.select2-container--default .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-results__option--highlighted[data-selected] {
    color: #fff!important;
}

.select2-search__field {
	color: #000000;
}

.checkout.woocommerce-checkout.legal #payment ul.payment_methods li:not(.payment_method_bacs) {
	display: none;
}

.checkout_coupon.woocommerce-form-coupon .form-row.form-row-first {
	height: 53px;
    border: 1px solid #28272f;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 0 8px;
    -moz-transform: skew(-8deg, 0deg);
    -webkit-transform: skew( -8deg, 0deg );
    -o-transform: skew(-8deg, 0deg);
    -ms-transform: skew(-8deg, 0deg);
    transform: skew( -8deg, 0deg );
    position: relative;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.checkout_coupon.woocommerce-form-coupon .form-row.form-row-first input  {
	-moz-transform: skew(8deg, 0deg);
    -webkit-transform: skew( 8deg, 0deg );
    -o-transform: skew(8deg, 0deg);
    -ms-transform: skew(8deg, 0deg);
    transform: skew( 8deg, 0deg );
		height: 100%;
		border: 0;
		background: rgb(255 255 255 / 0%);
}

.checkout_coupon.woocommerce-form-coupon .form-row.form-row-last button {
	font-weight: 400;
	height: 53px;
}

label[for=alg_checkout_files_upload_1] {
    margin-top: 30px;
}

.content #alg_checkout_files_upload_form_1 table td {
    padding-bottom: 0; 
}

.alg-wc-checkout-files-upload-progress-wrapper .alg-wc-checkout-files-upload-progress-bar {
    background-color: #835dff;
}

#alg_checkout_files_upload_button_1 {
    border: 1px solid #363636;
    background: #08070f;
    padding: 5px 15px;
    border-radius: 5px;
}

.woocommerce-shipping-fields__field-wrapper,
.woocommerce-billing-fields__field-wrapper {
	display: flex;
    flex-direction: column;
}

.edit-account #billing_country_field .select2 {
	width: 100%!important;
}

.edit-account #billing_country_field .select2 #select2-billing_country-container {
    color: #a09da8;
    padding-left: 12px;
	line-height: 39px;
}

.edit-account #billing_country_field .select2 .select2-selection__arrow {
    height: 39px!important;
}

#billing_country_field {
	order: 1;
    width: 100%;
}

#billing_state_field {
	order: 2;
}

#billing_city_field {
	order: 3;
}

#billing_phone_field {
	order: 4;
	z-index: 9999;
}

#billing_email_field {
	order: 5;
}

#shipping_country_field {
	order: 1;
}

#shipping_state_field {
	order: 2;
}

#shipping_city_field {
	order: 3;
}

#shipping_address_1_field {
	order: 4;
}

#shipping_postcode_field {
	order: 5;
}

#ship-to-different-address {
	margin-bottom: 0;
    margin-top: 10px;
}

#ship-to-different-address label {
    font-weight: 300;
}
.cart_totals.calculated_shipping tr.cart-subtotal, .cart_totals .cart-subtotal, .cart_totals.calculated_shipping tr.woocommerce-shipping-totals.shipping, .cart_totals .woocommerce-shipping-totals.shipping {
	display: none;
}

.woocommerce-cart-form .actions button {
    height: 52px;
    font-weight: 500;
}

.woocommerce-cart-form .coupon input {
	background: transparent;
    display: inline-block;
    line-height: 50px;
    text-decoration: none;
    -moz-transform: skew(-8deg, 0deg);
    -webkit-transform: skew( -8deg, 0deg );
    -o-transform: skew(-8deg, 0deg);
    -ms-transform: skew(-8deg, 0deg);
    transform: skew( -8deg, 0deg );
    font-size: 18px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    padding: 0 22px!important;
    border: 1px solid!important;
    // width: 150px!important;
    margin-right: 20px!important;
}

.woocommerce a.button.alt,  .woocommerce button.button.alt {
    background-color: #ebe9eb;
    color: #515151;
	box-shadow: 0px 1px 13px 0px rgb(255 255 255 / 75%);
}

.woocommerce a.button.alt:hover,  .woocommerce button.button.alt:hover {
    box-shadow: 0px 1px 13px 0px rgb(255 255 255);
	background-color: #ebe9eb;
	color: #515151;
}

.woocommerce .quantity .qty {
    width: 3.631em;
    text-align: center;
    background: #08070f;
    border: 1px solid #626262;
    color: white;
    padding: 5px;
    border-radius: 5px;
}

.form-row.place-order {
    background: #08070f;
}

.mobile-lang a {
    text-transform: uppercase;
}

body.active .menutop {
    z-index: auto;
}

@media (min-width: 1025px) {
.menutop .menu ul li.mobile {
    display: none;
}
.woocommerce div.product form.cart {
    padding-right: 25px;
}
}

.home a.added_to_cart.wc-forward {
    display: none;
}

.home .link_lightslider-wrap a.link_lightslider {
	position: relative;
}

.home .link_lightslider-wrap .loading::after {
	font-family: WooCommerce;
    content: "\e01c";
    vertical-align: top;
    font-weight: 400;
    position: absolute;
    top: 0.618em;
    right: 1em;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    color: #ffffff;
    right: -25px;
    top: 0;
}

.woocommerce-loop-product__link .price .light-comment {
	display: none;
}

@media (max-width: 718px) {
.term-events.woocommerce ul.products[class*=columns-] li.product {
	width: 100%;
	margin: 0 0 1.2em;
}
}

.term-events.woocommerce ul.products li.first {
	clear: none;
}

@media (min-width: 1025px) {
.term-events.woocommerce ul.products li.product {
/* 	margin: 0 2% 1.2em 0; */
/* 	width: 23.5%; */
	width: 100%;
	margin: 0;
}
.term-events.woocommerce ul.products li.product:nth-child(4n) {
/* 	margin: 0 0 1.2em 0; */
}
.term-events.woocommerce ul.products li.product:nth-child(4n+1) {
	clear: both;
}
}

@media screen and (min-width: 719px) and (max-width: 1024px) {
	.term-events.woocommerce ul.products li.product {
/* 		margin: 0 2% 1.2em 0;
		width: 49%; */
		width: 100%;
	}	
	.term-events.woocommerce ul.products li.product:nth-child(2n) {
/* 		margin: 0 0 1.2em 0; */
	}
	.term-events.woocommerce ul.products li.product:nth-child(2n-1) {
		clear: both;
	}
}

.checkout.woocommerce-checkout:not(.legal) #payment ul.payment_methods li.payment_method_bacs {
   display: none;
}

.archive .caption .img-author {
    font-size: 16px;
}

.term-gallery .products .caption {
    margin-bottom: 0px;
}
.term-gallery .products .caption .ttl {
    margin-bottom: 10px;
    min-height: 60px;
}


@media (min-width: 769px) {
	.term-gallery.woocommerce ul.products li.product {
		width: 23.5%;
	}
	.term-gallery.woocommerce ul.products li.product:not(.last) {
		margin-right: 2%;
	}
	
}
	
@media (max-width: 560px) {
	.wrapper .footer .widjet.soc_w {
		margin-right: 0;
    	padding-right: 0;
	}
	.term-gallery.woocommerce ul.products li.product {
		width: 100%;
	}
	.term-gallery .products .caption .ttl {
		min-height: auto;
	}

	.header .center .crb_status {
		display: inline-block;
		top: 15px;
		position: relative;
	}

	#ajaxsearchprores3_1 {
		top: 115px!important;
	}

}

.woocommerce-info {
    border-top-color: #835dff;
}

.woocommerce-error, .woocommerce-info, .woocommerce-message {
    background-color: #080710;
	color: #c1c1c1;
}

.woocommerce-info::before {
    color: #835dff;
}

.logged-in.woocommerce-account .woocommerce .button {
    height: auto;
    padding: 10px 20px;
    font-weight: 500;
}

.logged-in.woocommerce-account .woocommerce form .form-row span.woocommerce-input-wrapper {
    -moz-transform: skew(-8deg, 0deg);
    -webkit-transform: skew( -8deg, 0deg );
	-o-transform: skew(-8deg, 0deg);
    -ms-transform: skew(-8deg, 0deg);
    transform: skew( -8deg, 0deg );
	display: block;
	height: 40px;
	border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    width: 100%;
}

.logged-in.woocommerce-account .woocommerce form .form-row span.woocommerce-input-wrapper input {
	border: 0;
	-moz-transform: skew(8deg, 0deg);
    -webkit-transform: skew( 8deg, 0deg );
	-o-transform: skew(8deg, 0deg);
    -ms-transform: skew(8deg, 0deg);
    transform: skew( 8deg, 0deg );
	background: rgb(255 0 0 / 0%);
	height: 100%;	
}

.logged-in.woocommerce-account #shipping_country_field .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 38px;
}
.logged-in.woocommerce-account #shipping_country_field .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 38px
}

body .wpuf-dashboard-container table.items-table tr, body .wpuf-dashboard-container table.items-table td a {
    color: #a09da8!important;
}

.wpuf-dashboard-navigation {
	display: none;
}

body .wpuf-dashboard-container div.wpuf-dashboard-content {
    width: 100%;
    float: none;
}
body .wpuf-dashboard-container div.wpuf-dashboard-content .items-table-container {
	width: 100%;
	margin-bottom: 20px;
}

body .wpuf-dashboard-container table.items-table thead tr th:first-child {
    width: 150px;
}

body .wpuf-dashboard-container table.items-table thead tr th, body .wpuf-dashboard-container table.items-table tbody tr td:nth-child(3), body .wpuf-dashboard-container table.items-table tbody tr td:nth-child(4) {
    text-align: center;
}

body .wpuf-dashboard-container table.items-table tr, body .wpuf-dashboard-container table.items-table {
    border: 1.0218px solid #323232!important;
}

body .wpuf-posts-edit, body .wpuf-posts-delete {
    padding: 9px!important;
	float: none!important;
    display: inline-block;
    width: 33px;
    height: 33px;
}

body .wpuf-pagination .page-numbers, body .wpuf-pagination .page-numbers.current, body .wpuf-pagination .page-numbers {
	display: inline-block;
    height: 40px;
    width: 40px;
    line-height: 32px;
    text-align: center;
    text-decoration: none;
	border: 1px solid #585858!important;
    background-color: rgb(0 0 0 / 0%)!important;
    font-size: 18px;
    color: #a09da8;
    -moz-transform: skew(-8deg, 0deg);
    -webkit-transform: skew(-8deg, 0deg );
    -o-transform: skew(-8deg, 0deg);
    -ms-transform: skew(-8deg, 0deg);
    transform: skew( -8deg, 0deg );
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin: 0 5px;
}

body .wpuf-pagination .page-numbers:not(.current) {
	color: #7e7e7e;
}

body .button_description .button.white {
    height: 46px;
    line-height: 29px;
    font-weight: 300!important;
}

.woocommerce-MyAccount-navigation ul {
	background: #1d1b25;
    max-width: 260px;
	padding: 30px 40px;
}

.content .woocommerce-MyAccount-navigation li a {
    color: #ffffff;
    font-size: 18px;
}

li.woocommerce-MyAccount-navigation-link {
    margin: 15px 0;
}

.woocommerce-MyAccount-content .form-add {
    display: none;
}

.woocommerce-MyAccount-content .form-add.current {
    display: block;
}

.mce-menu-item {
    color: #595959!important;
}

.content .woocommerce-MyAccount-navigation-link.is-active a {
    color: #5c5866;
}

.entry .button_description .txt_bl {
    max-width: calc(100% - 255px);
}

.form-add .mce-container-body iframe {
	height: 476px!important;
}

body .wpuf-form-add.wpuf-style ul.wpuf-form .wpuf-fields textarea:focus {
    color: #ffffff!important;
}

a.button.wc-backward {
    line-height: 38px;
    -webkit-box-shadow: 0px 1px 13px 0px rgb(255 255 255 / 75%)!important;
    -moz-box-shadow: 0px 1px 13px 0px rgba(255, 255, 255, 0.75)!important;
    box-shadow: 0px 1px 13px 0px rgb(255 255 255 / 75%)!important;
    font-weight: 400;
}

#authRequired.visible {
    opacity: 1;
    z-index: 999999;
}

#authRequired {
	display: block!important;
}

#authRequired .closemodal {
	cursor: pointer;
}

.competition_bl a.button.white {
    font-weight: 300;
    line-height: 44px;
}

#alg_checkout_files_upload_form_1 abbr.required {
    position: absolute;
    bottom: 5px;
    right: 10px;
}
#alg_checkout_files_upload_form_1 tbody tr:first-child {
	position: relative;
}

#inn_person_field label span {
	display: none;
}

#infolog .addedBtnList {
    text-align: center;
    height: 62px;
    display: block;
    line-height: 62px;
    text-decoration: none;
    -moz-transform: skew(-8deg, 0deg);
    -webkit-transform: skew(-8deg, 0deg);
    -o-transform: skew(-8deg, 0deg);
    -ms-transform: skew(-8deg, 0deg);
    transform: skew(-8deg, 0deg);
    font-size: 18px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    padding: 0 22px;
    -webkit-box-shadow: 0px 1px 13px 0px rgb(255 255 255 / 75%);
    -moz-box-shadow: 0px 1px 13px 0px rgba(255, 255, 255, 0.75);
    box-shadow: 0px 1px 13px 0px rgb(255 255 255 / 75%);
    cursor: pointer;
    border: 0;
    background: #f7f2ff;
    max-width: 215px;
	margin: 20px auto 0;
	color: #302946;
    text-decoration: none;
    width: 100%;
    font-weight: 500;
    font-size: 16px;
    font-family: 'Rubik';
}

#infolog .addedBtnList:hover {
    webkit-box-shadow: 0px 1px 13px 0px rgba(255, 255, 255, 1);
    -moz-box-shadow: 0px 1px 13px 0px rgba(255, 255, 255, 1);
    box-shadow: 0px 1px 13px 0px rgb(255 255 255);
}

#infolog .content {
	padding: 40px 30px 40px;
    color: rgb(255 0 0);
    font-weight: 600;
}

#infolog.modals.closeone.visible {
    opacity: 0;
    z-index: -1;
}

#infolog .modal-content {
	top:50%;
	left:50%;
	max-width: 460px;
	position: absolute;
	transform: translate(-50%,-50%);
	background: black;
}

.production a {
    color: #363636;
    margin-top: 10px;
    font-size: 13px;
}

.production {
    margin: 10px 0 0;
}

.production a:hover {
    color: #363636;
	text-decoration: none;
}

body form.register input::-webkit-input-placeholder {color:#757575!important; font-size: 20px; opacity: 1!important;}
body form.register input::-moz-placeholder          {color:#757575!important; font-size: 20px; opacity: 1!important;}
body form.register input::-moz-placeholder           {color:#757575!important; font-size: 20px; opacity: 1!important;}
body form.register input::-ms-input-placeholder      {color:#757575!important; font-size: 20px; opacity: 1!important;}
body form.register input {
	color:#757575!important;
	font-size: 20px!important;
}

form.register .password-input {
	width: 100%;
}

.archive .content a.return {
    margin-bottom: 0;
}

span.button.no-paid-web,
span.button.link-web,
span.button.sign-up {
    background: #f7f2ff;
    color: #302946;
}

span.button.link-web a {
	color: #302946;
}

span.button.link-web:hover a {
	text-decoration: none;
}

span.button.no-paid-web:hover,
span.button.link-web:hover,
span.button.sign-up:hover {
    box-shadow: 0px 1px 13px 0px rgb(255 255 255);
}

.agreement-modal .modal-content-wrapper {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    overflow: scroll;
}

body .agreement-modal .modal-content {
    top: 10%;
    left: 0;
    width: 460px;
    position: absolute;
    transform: none;
    right: 0;
    margin: auto;
}

body .agreement-modal .modal-content p, body .agreement-modal .modal-content li {
    text-align: left;
}

.agreement-modal .modal-content .button {
	color: #302946;
	font-weight: 400;
	color: #302946;
    font-weight: 400;
    padding: 0 22px;
    line-height: 62px;
    box-shadow: 0px 1px 13px 0px rgb(255 255 255 / 75%);
    font-size: 18px!important;
}

.agreement-modal .modal-content .button:hover {
	color: #302946;
}

a.button.close-modal.yes:hover {
    box-shadow: 0px 1px 13px 0px rgb(255 255 255);
}

.agreement-modal .notice {
	display: none;
	padding: 120px 50px;
    text-align: center;
	font-size: 20px;
}

.agreement-modal .notice.show {
	display: block;
}

.agreement-modal.default-modal .modal-content {
    max-width: 920px;
	width: 100%!important;
    min-height: 310px!important;
}

.agreement-modal.default-modal .button.close-modal.yes {
    margin-right: 15px;
	background: #efefef;
    color: #302946;
	font-weight: 400;
}

.agreement-modal.default-modal .button.close-modal.yes:hover {
	text-decoration: none;
}

.agreement-modal.default-modal .button.close-modal:hover {
	box-shadow: 0px 1px 13px 0px rgb(255 255 255);
}

.wpuf_submit_1539, .wpuf_submit_1557, #contract_field, #license_field {
	display: none;
}

.snaryji {
    display: inline-block;
}

.caption .event-date {
    position: relative;
    text-align: left;
    font-size: 18px;
}

.home .activity {
    padding-bottom: 90px;
}
.home .footer-wrapper {
    padding-top: 100px;
    background-position: 100% 100%;
}

.silder_wrap .lightSlider > li {
	height: 100%;
}	

.silder_wrap .lightSlider > li {
	position: relative;
}

.silder_wrap .lightSlider > li .lang {
	position: absolute;
	right: 50px;
    bottom: 60px;
    font-size: 21px;
	text-shadow: 0px 0px 33.8px rgb(203 216 255 / 95%), 0px 0px 58.4px rgb(51 102 255 / 95%);
}

@media (max-width:560px) {

	.silder_wrap .lightSlider > li .lang {
		position: absolute;
		right: auto;
		bottom: auto;
		font-size: 15px;
		margin-left: 30px;
		top: 110px;
	}

}

.single-product .lang {
    margin-bottom: 10px;
}

.crb_status span{
	webkit-transform: skew(8deg, 0deg);
    -o-transform: skew(8deg, 0deg);
    -ms-transform: skew(8deg, 0deg);
    transform: skew(8deg, 0deg);
    display: block;
}

.crb_status {
	position: absolute;
    text-align: center;
    line-height: 3.236;
    color: #fff;
    font-size: .857em;
    background: #5055d9;
    padding: 0 20px;
    letter-spacing: 2.2pt;
    webkit-transform: skew(-8deg, 0deg);
    -o-transform: skew(-8deg, 0deg);
    -ms-transform: skew(-8deg, 0deg);
    transform: skew(-8deg, 0deg);
    right: 0;
    top: 50px;
}

.archive .pa_vid-meropriyatiya_filter_box .asp_simplebar-content-wrapper br,
.archive #ajaxsearchprobsettings3_1.searchsettings fieldset input,
.archive #ajaxsearchprobsettings3_1.searchsettings fieldset legend,
.archive #ajaxsearchprobsettings4_1.searchsettings fieldset input,
.archive #ajaxsearchprobsettings4_1.searchsettings fieldset legend {
	display: none;
}

.archive #ajaxsearchprobsettings3_1.searchsettings fieldset,
.archive #ajaxsearchprobsettings4_1.searchsettings fieldset {
	width: 100%;
}

.archive #ajaxsearchprobsettings3_1.searchsettings fieldset label,
.archive #ajaxsearchprobsettings4_1.searchsettings fieldset label {
	font-size: 14px;
    color: #a09da8;
    font-weight: normal;
    -moz-transform: skew(8deg, 0deg);
    -webkit-transform: skew( 8deg, 0deg );
    -o-transform: skew(8deg, 0deg);
    -ms-transform: skew(8deg, 0deg);
    transform: skew( 8deg, 0deg );
	position: relative;
    margin-right: 20px;
	padding: 5px 0;
}

/* .searchsettings label.asp_label input:checked + span {
    color: #ffffff;
} */

.archive #ajaxsearchprobsettings4_1.searchsettings.form-filter fieldset label.active, 
.archive #ajaxsearchprobsettings3_1.searchsettings fieldset label:hover, 
.archive #ajaxsearchprobsettings4_1.searchsettings fieldset label:hover {
    color: #cfbfff;
    text-shadow: 0px 1px 18px #cfbfff;
}

.archive #ajaxsearchprobsettings3_1.searchsettings fieldset label:after,
.archive #ajaxsearchprobsettings4_1.searchsettings fieldset label:after {
    content: '';
    position: absolute;
    right: -12px;
    top: 7px;
    height: 20px;
    border-left: 1px solid rgba(250,250,250, 0.2);
    -moz-transform: skew(-8deg, 0deg);
    -webkit-transform: skew( -8deg, 0deg );
    -o-transform: skew(-8deg, 0deg);
    -ms-transform: skew(-8deg, 0deg);
    transform: skew( -8deg, 0deg );
}

.archive #ajaxsearchprobsettings3_1.searchsettings,
.archive #ajaxsearchprobsettings4_1.searchsettings {
	position: relative;
	-moz-transform: skew(-8deg, 0deg);
    -webkit-transform: skew( -8deg, 0deg );
    -o-transform: skew(-8deg, 0deg);
    -ms-transform: skew(-8deg, 0deg);
    transform: skew( -8deg, 0deg );
    border: 1px solid #28272f;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
	padding: 0 20px;
}

.archive #ajaxsearchprobsettings4_1.searchsettings.form-filter {
    border: 0;
	padding: 0;
	-moz-transform: skew(0deg, 0deg);
    -webkit-transform: skew( 0deg, 0deg );
    -o-transform: skew(0deg, 0deg);
    -ms-transform: skew(0deg, 0deg);
    transform: skew( 0deg, 0deg )
}

.archive #ajaxsearchprobsettings4_1.searchsettings.form-filter .asp_filter_tax_pa_vid-meropriyatiya {
	padding: 12px 20px!important;
	-moz-transform: skew(-8deg, 0deg);
    -webkit-transform: skew( -8deg, 0deg );
    -o-transform: skew(-8deg, 0deg);
    -ms-transform: skew(-8deg, 0deg);
    transform: skew( -8deg, 0deg );
	border: 1px solid #28272f;
	border-radius: 5px;	
    margin-bottom: 20px!important
}

.archive #ajaxsearchprobsettings4_1.searchsettings.form-filter .hasASP {
	-moz-transform: skew(-8deg, 0deg)!important;
    -webkit-transform: skew( -8deg, 0deg )!important;
    -o-transform: skew(-8deg, 0deg)!important;
    -ms-transform: skew(-8deg, 0deg)!important;
    transform: skew( -8deg, 0deg )!important;
	margin-right: 0;
}

.archive #ajaxsearchprobsettings4_1.searchsettings.form-filter .probox .proinput input.orig {
	font-size: 16px;
}

.archive #ajaxsearchpro3_1 div.asp_simple-circle,
.archive #ajaxsearchpro4_1 div.asp_simple-circle {
    border: 4px solid rgb(56 56 56);
	border-right-color: transparent;
    border-radius: 50%;
}

#billing_city_field label {
	color: #a09da8!important;
}

#billing_city_field label .required {
	display: none;
}

.woocommerce-account-fields p.create-account label {
    padding-left: 20px;
}
.woocommerce form .form-row .input-checkbox {
    margin: 5px 13px 0 -35px;
	border-radius: 50%;
    outline: 0;
	appearance: none;
    position: relative;
    top: -4px;
    right: 0;
    bottom: 0;
    left: 0;
    height: 25px;
    width: 25px;
    transition: all 0.15s ease-out 0s;
    background: #cbd1d8;
    border: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    outline: none;
    position: relative;
    z-index: 1000;
    float: left;
}

#privacy_police_field {
    padding-top: 20px;
}

.woocommerce form .form-row .input-checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}


.woocommerce form .form-row .checkbox-wrapper:before {
    content: "";
	display: inline-block;
	width: 22px;
	height: 22px;
	position: absolute;
	left: -35px;
	top: 0;
	transition: background 0.3s ease;
	border-radius: 50%;
	cursor: pointer;
	background: #ffffff;
}

.woocommerce form .form-row input:checked + .checkbox-wrapper:before {
	background: #8f6aff url(/assets/images/zendentistry/i/checkmark.svg);
}

.woocommerce form .placeholder {
	-moz-transform: skew(8deg, 0deg);
    -webkit-transform: skew( 8deg, 0deg );
    -o-transform: skew(8deg, 0deg);
    -ms-transform: skew(8deg, 0deg);
    transform: skew( 8deg, 0deg );
	color: #757575;
	position: absolute;
    padding: 12px 2px;
}

.valid {
	-moz-transform: skew(8deg, 0deg);
    -webkit-transform: skew( 8deg, 0deg );
    -o-transform: skew(8deg, 0deg);
    -ms-transform: skew(8deg, 0deg);
    transform: skew( 8deg, 0deg );
	color: #59ffe1;
	position: absolute;
	left: 230px;
	top: 12px;
}

.invalid .wpcf7-response-output {
	-moz-transform: skew(-8deg, 0deg);
    -webkit-transform: skew( -8deg, 0deg );
    -o-transform: skew(-8deg, 0deg);
    -ms-transform: skew(-8deg, 0deg);
    transform: skew( -8deg, 0deg );
	color: #cf0000;
}

.woocommerce form .dot {
	margin-right: 3px;
}

.woocommerce form .dot,
.woocommerce form .placeholder span {
	color: red;
}

.woocommerce-account .woocommerce form .form-row:not(#billing_country_field)>.woocommerce-input-wrapper {
	padding-left: 10px;
}

.woocommerce form .form-row .input-checkbox[type="checkbox"]::after {
    border-radius: 50%;
}


.woocommerce-MyAccount-content h3 {
	display: none;
}

.woocommerce-MyAccount-content .woocommerce-address-fields .woocommerce-address-fields__field-wrapper {
	display: flex;
	flex-direction: column;
}

.woocommerce-MyAccount-content .woocommerce-address-fields .woocommerce-address-fields__field-wrapper #billing_country_field {
	order: 1;
}

.woocommerce-MyAccount-content .woocommerce-address-fields .woocommerce-address-fields__field-wrapper #billing_state_field {
	order: 2;
}

.woocommerce-MyAccount-content .woocommerce-address-fields .woocommerce-address-fields__field-wrapper #billing_city_field {
	order: 3;
}

.woocommerce-MyAccount-content .woocommerce-address-fields .woocommerce-address-fields__field-wrapper select  {
    background: rgb(255 0 0 / 0%);
    border: 0;
	height: 100%;
	padding-left: 8px;
}

#customer_login #billing_country_field .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 44px;
	color: #757575;
	font-size: 20px;
}

#customer_login #billing_country_field .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 44px;
	right: 20px;
}

.wrapper.sign .bl_form .bl_input .input_text.select-country {
    padding: 0 0 0 10px;
}

.register>#billing_country_field {
	opacity: 0;
	visibility: hidden;
	height: 0;
}

.menutop .language .current {
	font-size: 18px;
    color: #cfbfff;
    text-shadow: 0px 1px 18px #cfbfff;
	-moz-transform: skew(8deg, 0deg);
    -webkit-transform: skew(8deg, 0deg);
    -o-transform: skew(8deg, 0deg);
    -ms-transform: skew(8deg, 0deg);
    transform: skew(8deg, 0deg);
	text-transform: uppercase;
	cursor: pointer;
}

.menutop .language li.current:after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px;
    border-color: #9f9f9f transparent transparent transparent;
    filter: drop-shadow(0 0 5px #000);
    content: "";
    position: absolute;
    top: 24px;
	right: -15px;
}

.menutop .language .list {
	-moz-transform: skew(8deg, 0deg);
    -webkit-transform: skew(8deg, 0deg);
    -o-transform: skew(8deg, 0deg);
    -ms-transform: skew(8deg, 0deg);
    transform: skew(8deg, 0deg);
	position: absolute;
    left: -3px;
    top: 63px;
    padding: 0 20px;
    border-radius: 3px;
    background: #0a0717;
    visibility: hidden;
    opacity: 0;
	-webkit-transition: opacity 0.2s ease-in-out;
	-moz-transition: opacity 0.2s ease-in-out;
	-o-transition: opacity 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out;
}

.menutop .language.active .list {
	opacity: 1;
	visibility: visible;
	z-index: 9;
}

.menutop .language .list li {
	-moz-transform: skew(-8deg, 0deg);
    -webkit-transform: skew(-8deg, 0deg);
    -o-transform: skew(-8deg, 0deg);
    -ms-transform: skew(-8deg, 0deg);
    transform: skew(-8deg, 0deg);
}

@media (max-width: 1450px) {
	.menutop .language .current, .menutop .basket_bl .cart {
		font-size: 12px;
	}
}

@media (max-width: 560px) {
	.menutop .center .language .current, .menutop .center .language .list li a {
		font-size: 18px;
	}
	.menutop .language.active .list {
		border: 1px solid rgb(76 74 81 / 40%);
	}
  }

  @media (min-width: 769px) and (max-width: 1450px) {
	body .menutop .logo {
		background-position: 16px center!important;
	}
  }

  @media (max-width: 768px) {
	body .menutop .logo {
		background-position: -4px center!important;
	}
  }

@media (max-width: 1450px) and (min-width: 1025px) {
	.center .activity-item_img {
		max-height: 193px;
        height: auto;
	}
}

@media (max-width: 1024px) {
	.center .activity-item_img {
        height: auto;
	}
}

@media (min-width: 719px) and (max-width: 1024px) {
	.center .activity-item_text {
		justify-content: center;
	}
}

.about-and-materials {
    margin-top: -90px;
}

@media (max-width: 560px) {
	.about-and-materials .about-project {
		padding-bottom: 70px;
	}

	.row .section .section_menu li {
		display: inline-block;
	}

	.row .section .section_menu li a {
		padding: 0 6px;
	}

	.header .caption .panel_b .left .light {
		display: block;
	}
	.header .caption .panel_b .left .sep::after {
		display: none;
	}

	.header .caption .panel_b .left .light .woocommerce-Price-amount.amount:after {
		content: "";
		position: absolute;
		width: 1px;
		height: 20px;
		right: -7px;
		top: 0px;
		background: rgb(250 250 250);
		-moz-transform: skew(-8deg, 0deg);
		-webkit-transform: skew(-8deg, 0deg);
		-o-transform: skew(-8deg, 0deg);
		-ms-transform: skew(-8deg, 0deg);
		transform: skew(-8deg, 0deg);
	}

	.header .caption .panel_b .left .light .woocommerce-Price-amount.amount {
		position: relative;
	}
}

.woocommerce form .woocommerce-billing-fields__field-wrapper .form-row-first, .woocommerce form .woocommerce-billing-fields__field-wrapper .form-row-last {
    width: 100%;
}

.activity-items .count_products.blue {
    background: #5055d9;
    padding: 0 20px;
    letter-spacing: 2.2pt;
    position: absolute;
    top: 24px;
    left: -6px;
    font-size: 13px;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 41px;
    height: 41px;
    -moz-transform: skew(-8deg, 0deg);
    -webkit-transform: skew(-8deg, 0deg);
    -o-transform: skew(-8deg, 0deg);
    -ms-transform: skew(-8deg, 0deg);
    transform: skew(-8deg, 0deg);
}

.activity-items .count_products.blue span  {
    display: inline-block;
    -moz-transform: skew(8deg, 0deg);
    -webkit-transform: skew(8deg, 0deg);
    -o-transform: skew(8deg, 0deg);
    -ms-transform: skew(8deg, 0deg);
    transform: skew(8deg, 0deg);
}

@media (max-width: 850px) {
	.contact_data .widjet {
		height: auto;
	}

	.contact_data .widjet:first-child {
		margin-bottom: 0;
	}
}

@media (max-width: 485px) {
	body #addedToBasket .modal-content {
		width: 95%;
		padding: 10px 20px;
	}

	body #addedToBasket .modal-content .addedBtnList {
		padding: 0;
	}

	body #addedToBasket .modal-content .addedBtnList {
		align-items: center;
	}

	body .addedBtnList .contShopping {
		height: auto;
		line-height: 19px;
	}
}

#resident_person_field .input_text_mod .wpcf7-list-item {
    margin: 0 0 0 10px;
	padding: 0;
	display: block;
}

.modals.vebinar #resident_person_field .wpcf7-form-control-wrap.radio-255, .modals.vebinar #resident_person_field .wpcf7-form-control-wrap.radio-254 {
    display: block;
}

.modals.vebinar .radio-block {
	margin: 0 -15px;
}

.modals.vebinar #resident_person_field .wpcf7-form-control-wrap label {
    margin-bottom: 0;
    font-weight: 400;
}

.modals.vebinar #resident_person_field .wpcf7-radio .wpcf7-list-item-label {
    display: block;
    margin-left: 35px;
    margin-top: -10px;
}

@media (max-width: 485px) {
	.modals.vebinar .modal-content-text {
		padding: 30px 15px 20px;
	}
}

.modals.vebinar .wpcf7 form.invalid .wpcf7-response-output {
	margin: 2em 0 1em;
}

#addedToBasket.vebinar .modal-content {
    min-height: 425px;
	max-width: 800px;
}

#addedToBasket.modals.vebinar .closemodal {
    top: 0;
    right: 0;
}

#addedToBasket.modals.vebinar .closemodal img {
    padding: 10px;
	max-width: 100%;
}

.modals.vebinar .modal-content-text {
    padding-bottom: 50px;
}

.success-ukassa .text-block strong {
	font-weight: 500;
	color: #b0b0b0;
}

.success-ukassa .text-block:not(:last-child) {
    margin: 0 0 5px;
}

#addedToBasket.modals.vebinar.success-ukassa .modal-content {
    top: 50%;
    min-height: auto;
    transform: translate(0, -50%);
    height: auto;
    background: rgb(12 12 26 / 0%);
    border: 0;
    border-radius: 10px;
    box-shadow: none;
}

#addedToBasket.modals.vebinar.success-ukassa .modal-content-wrapper .modal-content-wrapper__wrapper {
    -moz-transform: skew(0deg, 0deg)!important;
    -webkit-transform: skew( 0deg, 0deg )!important;
    -o-transform: skew(0deg, 0deg)!important;
    -ms-transform: skew(0deg, 0deg)!important;
    transform: skew( 0deg, 0deg )!important;
}

.modals.vebinar #resident_person_field input:checked {
    background: #5055d9;
}

.modals.vebinar .entry .form_lk .bl_input_mod.w_100 {
    width: 100%;
}

#addedToBasket.modals.vebinar.nopaid .modal-content {
    top: 50%;
    min-height: auto;
    transform: translate(0, -50%);
    height: auto;
    max-width: 475px;
    background: #0c0c1a00;
    border: 0;
    border-radius: 10px;
    box-shadow: none;
}

#addedToBasket.modals.vebinar .modal-content-wrapper .modal-content-wrapper__wrapper {
	-moz-transform: skew(-8deg, 0deg)!important;
    -webkit-transform: skew( -8deg, 0deg )!important;
    -o-transform: skew(-8deg, 0deg)!important;
    -ms-transform: skew(-8deg, 0deg)!important;
    transform: skew( -8deg, 0deg )!important;
	background: #0c0c1a;
    border: 2px solid #363636;
    border-radius: 10px;
}

#addedToBasket.modals.vebinar.nopaid .modal-content .text {
    line-height: 24px;
}

#addedToBasket.modals.vebinar.nopaid .modal-content .title {
    font-weight: 500;
}

#addedToBasket.modals.vebinar.nopaid .modal-content-text {
	padding: 20px 35px 25px;
    color: #ffffff;
	text-align: center;
	font-size: 17px;
	-moz-transform: skew(8deg, 0deg)!important;
    -webkit-transform: skew( 8deg, 0deg )!important;
    -o-transform: skew(8deg, 0deg)!important;
    -ms-transform: skew(8deg, 0deg)!important;
    transform: skew( 8deg, 0deg )!important;
}

@media (min-width: 820px) {
	.modals.vebinar .entry .form_lk .bl_input_mod {
		float: left;
		width: 50%;
		padding: 0 15px;
	}

	#addedToBasket.vebinar .modal-content {
		top: 100px;
		width: auto;
	}
}

body .section_lightslider .silder_wrap.loading {
	opacity: 0;
	overflow: hidden;	
}

body .section_lightslider .silder_wrap {
	opacity: 1;
	overflow: visible;
	-webkit-transition: opacity 0.3s ease-in-out;
	-moz-transition: opacity 0.3s ease-in-out;
	-o-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;	
}

@media (max-width: 852px) {
	#autoWidth {
		height: 529px!important;
	}
} 

#addedToBasket .modal-content-ok {
    top: 50%;
    left: 50%;
    max-width: 460px;
    position: absolute;
    transform: translate(-50%,-50%);
    background: #000000;
	width: 95%;
	border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 6px;
}

#addedToBasket .modal-content-ok .modal-content-text.entry {
	padding: 30px 30px 40px;
}

#zenden_pagination {
	display: inline-block;
	width: 100%;
}

.form-filter form>.ajaxsearchpro {
	-webkit-transform: skew( 0deg, 0deg )!important;
    -o-transform: skew(0deg, 0deg)!important;
    -ms-transform: skew(0deg, 0deg)!important;
    transform: skew( 0deg, 0deg )!important;
}

.products.columns-4.filtering {
    opacity: 0.2;
    pointer-events: none;
    z-index: -1;
    position: relative;
}

.single-webinar .content .title_m {
    margin-bottom: 0;
	padding-bottom: 10px;
}

.single-webinar .block .info {
    color: #bfa6cf;
    font-weight: 400;
}

.single-webinar .block .block__item {
    padding: 2px 0px;
}

.single-webinar .block .block__item.flex {
    display: flex;
}

.single-webinar .block.links a {
    color: #7f6ec8;
    font-weight: 500;
    display: block;
    line-height: 25px;
	float: left;
    clear: left;
}

.single-webinar .block.links a:hover {
	text-decoration: none;
}

.single-webinar .block.linkss a {
	text-decoration: blink;
    color: #ff0000;
    font-weight: 500;
    display: block;
    line-height: 25px;
	float: left;
    clear: left;
}

.single-webinar .block.linkss a:hover {
	text-decoration: none;
}

.single-webinar .block .text {
    color: #ffffff;
    font-weight: 400;
    min-width: 160px;
    display: inline-block;
}

.single-webinar .block,
.web .block {
	margin-bottom: 0px;
    padding-bottom: 15px;
    position: relative;
    padding-top: 15px;
}

.web .block:before,
.single-webinar .block:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(270deg, transparent, #333340);
	width: 80%;
    height: 1px;
}

.single-webinar .code input[type="text"] {
	background: #08070f;
	border: 0;
	-moz-transform: skew(8deg, 0deg);
    -webkit-transform: skew( 8deg, 0deg );
    -o-transform: skew(8deg, 0deg);
    -ms-transform: skew(8deg, 0deg);
    transform: skew( 8deg, 0deg );
	text-align: center;
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 2px;
    width: 100%;
    line-height: 20px;
}

.single-webinar .block__item.code {
    -moz-transform: skew(-8deg, 0deg);
    -webkit-transform: skew( -8deg, 0deg );
    -o-transform: skew(-8deg, 0deg);
    -ms-transform: skew(-8deg, 0deg);
    transform: skew( -8deg, 0deg );
	border: 1px solid #333340;
    padding: 10px;
    border-radius: 5px;
    max-width: 240px;
	height: 48px;
	margin: auto;
}

.single-webinar .block__item.code img{
	right: -33px;
    width: 21px;
    position: absolute;
    height: auto;
    cursor: pointer;
    top: 0;
    bottom: 0;
    margin: auto;
}

.single-webinar .block__item.code  .copy-text {
	left: 275px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    font-size: 13px;
    line-height: 45px;
}

.single-webinar .block__item .label-item {
    color: #bfa6cf;
    font-size: 15px;
    font-weight: 400;
    text-transform: lowercase;
	display: block;
}

.single-webinar .block__item .descr {
    font-size: 13px;
    text-transform: lowercase;
    font-weight: 400;
	display: block;
}

.single-webinar .block__item.code-info{
    max-width: 320px;
    text-align: center;
}

.single-webinar .block__item.content p {
    color: #ffffff;
	font-size: 16px;
	margin-bottom: 5px;
}

.single-webinar .block__item.content {
	padding: 15px 0 10px;
}

.single-webinar .block__item .link {
	max-width: 400px;
    border: 1px solid #535353;
    text-align: center;
    -webkit-transform: skew( -8deg, 0deg ) !important;
    -o-transform: skew(-8deg, 0deg) !important;
    -ms-transform: skew(-8deg, 0deg) !important;
    transform: skew( -8deg, 0deg ) !important;
    border-radius: 5px;
    display: block;
    font-size: 20px;
    text-transform: lowercase;
    margin-bottom: 35px;
	margin-top: 35px;
}

.single-webinar .block__item .link:hover, .single-webinar .block__item .link:focus {
    text-decoration: none;
	text-shadow: 0px 0px 32.8px rgb(203 216 255), 0px 0px 57.4px rgb(51 102 255);
    transition: 0.3s;
    -webkit-transition: 0.3s;
}

.single-webinar .block__item .link span {
    -webkit-transform: skew( 8deg, 0deg ) !important;
    -o-transform: skew(8deg, 0deg) !important;
    -ms-transform: skew(8deg, 0deg) !important;
    transform: skew( 8deg, 0deg ) !important;
    padding: 23px 0;
    line-height: 21px;
    display: block;
	color: #bfa6cf;
}

:not(:lang(ru-RU)) .ru-sorry,
:lang(ru-RU) .en-sorry {
    display: none;
}

.web .title_m {
    display: flex;
    justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
}

@media (max-width: 767px) {
	.web .title_m {
		flex-wrap: wrap;
	}

	.wrapper.sign .bl_form {
		padding: 47px 20px;
	}
}

@media (max-width: 852px) {
	.web .title_m .back {
		position: relative!important;
		right: auto!important;
		top: auto!important;
	}
}

.web .title_m .title {
    font-size: 45px;
}


.web .title_m .back {
    color: #bfa6cf;
    font-size: 21px;
    text-transform: lowercase;
    font-family: 'Rubik';
    font-weight: 400;
	position: relative;
    text-align: center;
	z-index: 99;
}

.web .title_m .back:after {
	content: "";
    position: absolute;
    left: 1px;
    top: -28px;
    background: radial-gradient(113% 84%, rgb(173 159 214 / 33%), rgb(8 7 16 / 0%), rgb(9 8 18 / 0%));
    width: 265px;
    height: 92px;
    z-index: -1;
}

.web .title_m .back:hover {
    /* text-decoration: none; */
    text-shadow: none;
}

.section.web p {
    font-size: 19px;
    color: #ffffff;
    font-weight: 300;
    line-height: 28px;
    margin-bottom: 20px;
}

.nopaid-info {
    color: #ffffff;
}

.nopaid-info .title {
    font-weight: 500;
    margin-bottom: 5px;
    color: #ffffff;
}

.web .log-in {
	max-width: 170px;
	border: 1px solid #535353;
	text-align: center;
	-webkit-transform: skew( -8deg, 0deg ) !important;
	-o-transform: skew(-8deg, 0deg) !important;
	-ms-transform: skew(-8deg, 0deg) !important;
	transform: skew( -8deg, 0deg ) !important;
	border-radius: 5px;
	display: block;
	font-size: 17px;
	text-transform: uppercase;
}

.web .log-in .log-in__button{
	-webkit-transform: skew( 8deg, 0deg ) !important;
	-o-transform: skew(8deg, 0deg) !important;
	-ms-transform: skew(8deg, 0deg) !important;
	transform: skew( 8deg, 0deg ) !important;
	padding: 15px 0;
	line-height: 21px;
}

.web .log-in:focus,
.web .log-in:hover {
	text-decoration: none;
	color: #cfbfff;
}

.modals.vebinar.tech .signature {
	display: none;
}

.modals.vebinar.tech .form_question {
    padding-top: 0;
    padding-bottom: 0px;
}

.modals.vebinar.tech form.submitting .wpcf7-spinner {
    -moz-transform: skew(0deg, 0deg);
    -webkit-transform: skew( 0deg, 0deg);
    -o-transform: skew(0deg, 0deg);
    -ms-transform: skew(0deg, 0deg);
    transform: skew( 0deg, 0deg);
}

.modals.vebinar.tech .form_question .form {
    background: rgb(183 0 255 / 19%);
	width: auto;
}

.modals.vebinar.tech .modal-content {
    min-height: auto!important;
}

.tech .form_question .form .textarea_bl {
	height: auto;
	-moz-transform: skew(-3deg, 0deg);
    -webkit-transform: skew(-3deg, 0deg);
    -o-transform: skew(-3deg, 0deg);
    -ms-transform: skew(-3deg, 0deg);
    transform: skew(-3deg, 0deg);
}

.tech .form_question .form .textarea_bl textarea {
    -moz-transform: skew(3deg, 0deg);
    -webkit-transform: skew(3deg, 0deg);
    -o-transform: skew(3deg, 0deg);
    -ms-transform: skew(3deg, 0deg);
    transform: skew(3deg, 0deg);
}

@media (max-width: 819px) and (min-width: 561px) {
	.modals.vebinar.tech .form_question .form .input_bl,
	.modals.vebinar.tech .form_question .form .input_bl {
		width: 100%;
	}
}

.single-webinar .mobile-info {
	display: none;
}

@media (max-width: 767px) {
	.single-webinar .mobile-info {
		display: block;
	}

	.single-webinar .m-hidden {
		display: none;
	}
}

.single-webinar .mobile-info p {
    margin-bottom: 10px;
    color: #e10b76;
    font-size: 18px;
    font-weight: 500;
}

.single-webinar .mobile-info p a  {
    font-style: italic;
    font-size: 18px;
    font-weight: 400;
}

.single-webinar .mobile-info {
	margin: 20px 0 0;
}

.user-stat {
    list-style: auto;
    color: #ffffff;
	margin: 0 0 0 15px;
}

.user-stat li {
    margin-bottom: 15px;
}

.user-stat li .id {
    color: #7e7e7e;
}

form.search-users {
    display: flex;
    margin-bottom: 40px;
    flex-wrap: wrap;
    align-content: center;
    align-items: flex-start;
}

.search-users select {
	background: #000000;
    color: #ffffff;
    padding: 10px 5px;
    font-weight: 500;
    border-radius: 5px;
    max-width: 500px;
    margin-right: 20px;
    width: 100%;
    border: 1px dotted;
}

form.search-users .item {
    width: 49%;
    display: flex;
    margin: 0 10px 25px 0;
}

form.search-users .item:first-child {
    width: 50%;
}

@media (max-width: 1024px) {
	form.search-users .item,
	form.search-users .item:first-child {
		width: 100%;
	}
}

.user-stat .item .no-paid {
    background: rgb(255 0 0);
	padding: 2px 10px;
}

.user-stat .item .paid {
    background: rgb(46 179 8);
	padding: 2px 10px;
}

.user-stat .item {
    display: flex;
    align-items: center;
	margin-bottom: 5px;
}

.user-stat.updating {
    opacity: 0.3;
    z-index: -1;
    position: relative;
}

a.download {
    border-radius: 5px;
    background: #000000;
    border: 1px dotted #4f4f4f;
    padding: 0 20px;
    display: inline-block;
    line-height: 37px;
    color: #cfbfff;
    text-shadow: 0px 1px 18px #cfbfff;
    margin-bottom: 30px;
}

a.download:hover {
    box-shadow: 0 0 8px 2px rgb(255 255 255 / 55%);
	text-decoration: none;
}

a.download:focus {
    color: #cfbfff;
    text-decoration: none;
}

.user-stat input[type="checkbox"] {
	display: inline-block;
    width: 21px;
    height: 20px;
    margin: 0 10px 0 0;
}

.user-stat label {
    margin-bottom: 0;
}

.search-users input[type="checkbox"] {
	height: 20px;
    width: 20px;
    display: inline-block;
    margin: 0 10px 0 0;
}

.search-users label {
    margin-bottom: 0;
    line-height: 20px;
	margin-right: 20px;
	color: #ffffff;
}

.search-users button {
    height: 41px;
    border-radius: 5px;
    background: #000000;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 0 20px;
}

.single-product .modals.vebinar:not(.free) .free,
.single-product .modals.vebinar.free .paid,
.vebinar.events_webinar:not(.free) .free,
.vebinar.events_webinar.free .paid,
.modals.ok:not(.free) .free,
.modals.ok.free .paid {
	display: none;
}

.block__item .certificate  {
    max-width: 200px;
}

.block__item-col .title,
.block__item-col a,
.block__item-col a:hover,
.block__item-col a:focus {
	color: #ffffff;
}

.block__item-col a:hover {	
    text-decoration: none;
	text-shadow: 0px 1px 18px #cfbfff;
	color: #ece6ff;
}

.block__item-col .title,
.block__item-col img.certificate,
.block__item-col video {
    margin-bottom: 5px;
}

.block__item-col {
    display: flex;
    flex-direction: column;
    align-items: center;
	margin-bottom: 20px;
}

.block__item-col .dl {
    display: flex;
    align-items: center;
}

.block__item-col .dl span {
	margin-right: 5px;
    padding-top: 5px;
}

.block__item .block__item-col:first-child  {
    margin-right: 50px;
}

.block .certificate-block {
    margin: 20px 0 5px;
	position: relative;
	padding: 15px 0 0!important;
	flex-wrap: wrap;
}

.block__item.flex.certificate-block:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(270deg, transparent, #333340);
    width: 80%;
    height: 1px;
}

.block__item.flex.certificate-block:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(270deg, transparent, #333340);
    width: 80%;
    height: 1px;
}

.block__item.flex.certificate-block.end_time:after {
	display: none;
}

.block__item.flex.certificate-block.end_time {
	margin: 20px 0 0;
}

.list-user .iksweb {
	border-radius: 5px;
    display: inline-block;
	border: 1px dotted;
}

.list-user .iksweb td {
    padding-bottom: 0px;
    padding-right: 30px;
    padding: 5px 10px;
	color: #d8d8d8;
}

.list-user .iksweb tbodt tr:first-child{
    border-bottom: 1px dotted;
    display: table-row;
}

#users_online {
    display: flex;
    align-items: center;
	margin-bottom: 20px;
}

#users_online select {
    background: #000000;
    color: #fcfcfc;
    padding: 10px 5px;
    font-weight: 500;
    border-radius: 5px;
    max-width: 500px;
    margin-right: 20px;
    width: 100%;
    border: 1px dotted;
}

#users_online button {
	height: 43px;
    border-radius: 5px;
    background: #000000;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 0 20px;
}

.users-online.updating .iksweb {
    background: url(/assets/images/zendentistry/update.svg);
	background-repeat: no-repeat;
    background-size: 90px;
    background-position: 60% 50%;
	transition: 200ms all;
}

.users-online .iksweb {
    background-repeat: no-repeat;
    background-size: 90px;
    background-position: 0% 50%;
	transition: 200ms all;
}

.users-online.updating .iksweb tbody {
    opacity: 0.2;
}

.list-user .iksweb td.green {
    color: #00ff39;
}

.woocommerce-checkout-review-order .button.connect {
	background-color: #ebe9eb;
    color: #515151;
    box-shadow: 0px 1px 13px 0px rgb(255 255 255 / 75%);
    font-weight: 700;
    float: right;
}

.woocommerce-checkout-review-order .button.connect:hover {
	box-shadow: 0px 1px 13px 0px rgb(255 255 255);
    background-color: #ebe9eb;
    color: #515151;
}

.form-row.place-order.sending {
	position: relative;
}

.form-row.place-order.sending.sending:after {
    background: rgb(8 7 15 / 72%);
    left: 0;
    right: 0;
    position: absolute;
    width: 100%;
    height: 93px;
    top: 0;
    z-index: 9;
	transition: 200ms all;
}

.sending .connect::before {
  height: 1em;
  width: 1em;
  display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -0.5em;
  margin-top: -0.5em;
  content: "";
  animation: spin 1s ease-in-out infinite;
  background: url(/assets/images/zendentistry/i/loading_animation_icon.svg) center center;
  background-size: cover;
  line-height: 1;
  text-align: center;
  font-size: 2em;
    color: rgba(0,0,0,.75);
}

.tabs>input[type="radio"] {
	display: none;
  }

  .tabs>div {
	/* скрыть контент по умолчанию */
	display: none;
	padding: 10px 0px;
  }

  /* отобразить контент, связанный с вабранной радиокнопкой (input type="radio") */
  #tab-btn-1:checked~#content-1,
  #tab-btn-2:checked~#content-2,
  #tab-btn-3:checked~#content-3 {
	display: block;
  }

  .tabs>label {
	display: inline-block;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    padding: 0;
    font-size: 16px;
    line-height: 1.5;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
    cursor: pointer;
    position: relative;
    opacity: 0.4;
    margin-right: 10px;
    font-weight: 500;
    letter-spacing: 1px;
	color: #ffffff;
	margin-bottom: 25px;
  }

  .tabs>input[type="radio"]:checked+label {
	border-bottom: 1px dotted #ededed;
    opacity: 1;
  }

.date_lightslider.started {
    border: 1px solid #ffffff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    padding: 8px 20px 6px;
    -moz-transform: skew(-8deg, 0deg);
    -webkit-transform: skew(-8deg, 0deg);
    -o-transform: skew(-8deg, 0deg);
    -ms-transform: skew(-8deg, 0deg);
    transform: skew(-8deg, 0deg);
    background: none;
    width: auto;
    display: inline-block;
}

@media (min-width: 1451px) {
	.tabs_block .summary_message {
		margin-top: -30px;
	}
}

.tel1 {
	z-index: 9999;
}

.selectcount {
	background: rgb(255 0 0 / 0%);
    border: 0;
    border-radius: 4px;
    color: #757575;
    height: 45px;
	-moz-transform: skew(4deg, 0deg);
    -webkit-transform: skew( 4deg, 0deg );
    -o-transform: skew(4deg, 0deg);
    -ms-transform: skew(4deg, 0deg);
    transform: skew( 4deg, 0deg );
}

.selectcountedit {
	background: rgb(255 0 0 / 0%);
    border: 0;
    border-radius: 4px;
    color: #a09da8;
    height: 40px;
	-moz-transform: skew(4deg, 0deg);
    -webkit-transform: skew( 4deg, 0deg );
    -o-transform: skew(4deg, 0deg);
    -ms-transform: skew(4deg, 0deg);
    transform: skew( 4deg, 0deg );
}

.acctel {
	padding: 5px 0;
}

.regphone {
	position: absolute;
    top: -6px;
    left: 10px;
    color: #757575;
    background: #0c0b1a;
    padding: 0 5px;
    font-size: 15px;
    line-height: 10px;
	text-transform: lowercase;
}

.woocommerce form .regphone span {
	color: red;
}

.legendpass {
	color: #a09da8;
}

.woocommerce table.shop_table td input-checkbox{
	background: white;
}

.plus {
	position: relative;
	top: 3px;
  border-width: 2px;
  border-style: solid;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s all;
}

.plus:before {
	border-bottom-width: 2px;
    border-bottom-style: solid;
    border-left-width: 2px;
    border-left-style: solid;
    left: 9px;
    top: 5px;
}

.plus:after {
    border-top-width: 2px;
    border-top-style: solid;
    border-right-width: 2px;
    border-right-style: solid;
    left: 5px;
    top: 9px;
}

.plus--active {
	border-color: #cfbfff;
	box-shadow: 0px 1px 18px #cfbfff;
}

.plus--active:before,
.plus--active:after {
	border-color: #cfbfff;
	box-shadow: 0px 1px 18px #cfbfff;
}
    
.plus--active:hover{
	background:rgba(2, 104, 190, 0.10);
}

.minus {
	position: relative;
	top: 3px;
  border-width: 2px;
  border-style: solid;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s all;
}

.minus:after {
    border-top-width: 2px;
    border-top-style: solid;
    border-right-width: 2px;
    border-right-style: solid;
    left: 50px;
    top: 50px;
}

.minus--active {
	border-color: #cfbfff;
	box-shadow: 0px 1px 18px #cfbfff;
}

.minus--active:before,
.minus--active:after {
	border-color: #cfbfff;
	box-shadow: 0px 1px 18px #cfbfff;
}
    
.minus--active:hover{
	background:rgba(2, 104, 190, 0.10);
}

.image1, .image2 {
	position: absolute;
	top: 0;
	left: 0;
}

.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
	width: 100%;
	margin: 0;
}

@media(max-width: 768px) {
	.woocommerce ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product {
		width: 100%;
		margin: 0;
	}
}

.section_lightslider .item-a { position: relative; overflow: hidden; }
.section_lightslider .item-a .slide-bg {
  position: absolute; inset: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  will-change: transform, opacity;
}

.woocommerce ul.products li.product a .img {
	position: relative;
}

.content .good_card .flex_it .slider_block_inpages .item a img {
	width: 100%;
	height: 418px;
	object-fit: contain;
}

#add_payment_method table.cart img, .woocommerce-cart table.cart img, .woocommerce-checkout table.cart img {
	height: auto;
}

.woocommerce .woocommerce-cart-form .coupon {
	width: 40%;
	float: left !important;
}

.woocommerce .woocommerce-cart-form button[name="empty-cart"] {
	width: auto !important;
	float: right !important;
}

.woocommerce .cart-collaterals {
	width: 50%;
	float: right;
}

.woocommerce form .show-password-input::before,
.woocommerce-page form .show-password-input::before {
	background-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M17.3 3.3C16.9 2.9 16.2 2.9 15.7 3.3L13.3 5.7C12.2437 5.3079 11.1267 5.1048 10 5.1C6.2 5.2 2.8 7.2 1 10.5C1.2 10.9 1.5 11.3 1.8 11.7C2.6 12.8 3.6 13.7 4.7 14.4L3 16.1C2.6 16.5 2.5 17.2 3 17.7C3.4 18.1 4.1 18.2 4.6 17.7L17.3 4.9C17.7 4.4 17.7 3.7 17.3 3.3ZM6.7 12.3L5.4 13.6C4.2 12.9 3.1 11.9 2.3 10.7C3.5 9 5.1 7.8 7 7.2C5.7 8.6 5.6 10.8 6.7 12.3ZM10.1 9C9.6 8.5 9.7 7.7 10.2 7.2C10.7 6.8 11.4 6.8 11.9 7.2L10.1 9ZM18.3 9.5C17.8 8.8 17.2 8.1 16.5 7.6L15.5 8.6C16.3 9.2 17 9.9 17.6 10.8C15.9 13.4 13 15 9.9 15H9.1L8.1 16C8.8 15.9 9.4 16 10 16C13.3 16 16.4 14.4 18.3 11.7C18.6 11.3 18.8 10.9 19.1 10.5C18.8 10.2 18.6 9.8 18.3 9.5ZM14 10L10 14C12.2 14 14 12.2 14 10Z" fill="%23FFFFFF"/></svg>')
}

.woocommerce form .show-password-input.display-password::before,
.woocommerce-page form .show-password-input.display-password::before {
	background-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18.3 9.49999C15 4.89999 8.50002 3.79999 3.90002 7.19999C2.70002 8.09999 1.70002 9.29999 0.900024 10.6C1.10002 11 1.40002 11.4 1.70002 11.8C5.00002 16.4 11.3 17.4 15.9 14.2C16.8 13.5 17.6 12.8 18.3 11.8C18.6 11.4 18.8 11 19.1 10.6C18.8 10.2 18.6 9.79999 18.3 9.49999ZM10.1 7.19999C10.6 6.69999 11.4 6.69999 11.9 7.19999C12.4 7.69999 12.4 8.49999 11.9 8.99999C11.4 9.49999 10.6 9.49999 10.1 8.99999C9.60003 8.49999 9.60003 7.69999 10.1 7.19999ZM10 14.9C6.90002 14.9 4.00002 13.3 2.30002 10.7C3.50002 8.99999 5.10002 7.79999 7.00002 7.19999C6.30002 7.99999 6.00002 8.89999 6.00002 9.89999C6.00002 12.1 7.70002 14 10 14C12.2 14 14.1 12.3 14.1 9.99999V9.89999C14.1 8.89999 13.7 7.89999 13 7.19999C14.9 7.79999 16.5 8.99999 17.7 10.7C16 13.3 13.1 14.9 10 14.9Z" fill="%23FFFFFF"/></svg>')
}
/* source: bridge.css */
/* Laravel bridge for zendentistry skin */
:root {
  --zenden-container: 1400px;
}

body.zenden-theme {
  overflow-x: hidden;
  background: #0e0c14;
  color: #fff;
}

html:has(body.zenden-theme) {
  background: #0e0c14;
}

body.zenden-theme .wrapper {
  min-height: 100vh;
  background-color: #0e0c14;
}

body.zenden-theme .wrapper-gradient-bg {
  background: url("/assets/images/zendentistry/background-gradient.png") 427px 0 no-repeat;
}

body.zenden-theme .header-content {
  width: calc(100% - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 10px 0;
}

body.zenden-theme .menu_toggle {
  display: none;
}

body.zenden-theme .menu_toggle.is-open {
  display: block;
}

body.zenden-theme .menutop .menu ul {
  display: flex;
  align-items: center;
  gap: 8px;
}

body.zenden-theme .menutop .menu ul li {
  float: none;
}

@media (min-width: 1025px) {
  body.zenden-theme .menutop .menu ul li.mobile {
    display: none !important;
  }
}

body.zenden-theme .buttons_right .sep {
  margin: 0 10px;
  display: initial;
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,.2);
  vertical-align: middle;
}

body.zenden-theme .basket-btn__counter {
  position: absolute;
  top: -8px;
  right: -10px;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #7f8bff;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  padding: 0 4px;
}

body.zenden-theme .menutop .menu {
  flex: 1 1 auto;
  min-width: 0;
}

body.zenden-theme .menutop .basket_bl,
body.zenden-theme .menutop .buttons_right {
  position: relative;
  z-index: 25;
  flex: 0 0 auto;
}

body.zenden-theme .menutop .basket_bl {
  border: 0;
  padding: 0;
  background-color: transparent;
  display: block;
  width: 33px;
  height: 33px;
  min-width: 33px;
  line-height: 33px;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
}

body.zenden-theme .menutop ul.language {
  position: relative;
  z-index: 30;
}

body.zenden-theme .menutop .language .list {
  z-index: 35;
}

body.zenden-theme .menutop .language.active .list {
  opacity: 1;
  visibility: visible;
}

/* Themed mini-cart dropdown (zendentistry header) */
body.zenden-theme .zenden-cart-wrap {
  position: relative;
  z-index: 1200;
  flex: 0 0 auto;
}

body.zenden-theme #zenden-mini-cart {
  position: absolute;
  top: calc(100% + 14px);
  right: -12px;
  width: min(420px, 92vw);
  max-height: 72vh;
  overflow: hidden;
  border: 1px solid #4c4a51;
  border-radius: 8px;
  background: linear-gradient(180deg, #0f0d1b 0%, #090713 100%);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.48);
  color: #fff;
  z-index: 2500;
}

body.zenden-theme #mini-cart-header,
body.zenden-theme #mini-cart-footer {
  border-color: #4c4a51 !important;
  padding: 14px 16px;
}

body.zenden-theme .zenden-mini-cart__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #4c4a51;
}

body.zenden-theme .zenden-mini-cart__header h3 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}

body.zenden-theme .zenden-mini-cart__header button {
  border: 0;
  background: transparent;
  color: #b4afc2;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

body.zenden-theme .zenden-mini-cart__body {
  max-height: 44vh;
  overflow-y: auto;
  padding: 14px 16px;
}

body.zenden-theme .zenden-mini-cart__footer {
  border-top: 1px solid #4c4a51;
}

body.zenden-theme .zenden-mini-cart__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

body.zenden-theme #mini-cart-items > div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  margin-bottom: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(76, 74, 81, 0.9);
}

body.zenden-theme #mini-cart-items > div img {
  width: 64px;
  height: 64px;
  border-radius: 4px;
  object-fit: cover;
  flex: 0 0 64px;
}

body.zenden-theme #mini-cart-items > div p {
  margin: 0;
}

body.zenden-theme #mini-cart-items > div .text-sm {
  font-size: 14px;
  line-height: 1.35;
}

body.zenden-theme #mini-cart-items > div .text-xs {
  font-size: 12px;
  color: #8f899d !important;
}

body.zenden-theme #mini-cart-items > div .font-medium {
  color: #fff !important;
}

body.zenden-theme #mini-cart-items > p {
  color: #8f899d !important;
}

body.zenden-theme #mini-cart-total {
  color: #cfbfff;
  text-shadow: 0 0 20px rgba(207, 191, 255, 0.45);
}

body.zenden-theme #mini-cart-footer a,
body.zenden-theme #mini-cart-footer button {
  width: 100%;
  max-width: 100%;
  border: 1px solid #4c4a51;
  border-radius: 4px;
  padding: 11px 14px;
  background: transparent;
  color: #cfbfff !important;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.3;
  display: block;
  box-sizing: border-box;
  margin-right: 0;
  transition: 0.25s ease;
}

body.zenden-theme #mini-cart-footer a:hover,
body.zenden-theme #mini-cart-footer button:hover {
  color: #fff !important;
  text-shadow: 0 0 32px rgba(203, 216, 255, 0.95), 0 0 57px rgba(51, 102, 255, 0.95);
  border-color: #6b6390;
}

@media (max-width: 560px) {
  body.zenden-theme #zenden-mini-cart {
    right: -28px;
    width: min(360px, 94vw);
  }
}

body.zenden-theme .shop-main-content {
  position: relative;
  z-index: 2;
  background: transparent;
}

body.zenden-theme .zenden-footer {
  position: relative;
  z-index: 2;
}

/* Footer styles ported from original theme */
body.zenden-theme .footer-wrapper {
  background: url("/assets/images/zendentistry/footer_bg.jpg") center 0 no-repeat;
  background-size: cover;
  padding-bottom: 40px;
}

body.zenden-theme.home .footer-wrapper {
  padding-top: 100px;
  background-position: 100% 100%;
}

body.zenden-theme .footer-footer {
  position: relative;
}

body.zenden-theme .phone-and-email {
  display: flex;
  margin-bottom: 115px;
  padding: 0 100px;
  box-sizing: border-box;
}

body.zenden-theme .bottom_phone {
  position: relative;
  top: -36px;
  width: 50%;
  font-family: "Oswald", sans-serif;
  font-size: 60px;
  font-weight: 300;
  text-shadow: 0 0 57.4px rgba(51, 102, 255, 0.5), 0 0 32.8px rgba(203, 216, 255, 0.5);
}

body.zenden-theme .bottom_phone p {
  margin-bottom: 0;
}

body.zenden-theme .bottom_phone span {
  display: block;
  font-size: 22px;
  line-height: 24px;
  margin-bottom: 10px;
}

body.zenden-theme .bottom_mail {
  position: relative;
  width: 50%;
  text-align: right;
  font-family: "Oswald", sans-serif;
  font-size: 60px;
  font-weight: 300;
  text-shadow: 0 0 57.4px rgba(51, 102, 255, 0.5), 0 0 32.8px rgba(203, 216, 255, 0.5);
}

body.zenden-theme .bottom_mail::before {
  position: absolute;
  top: -20px;
  left: -75px;
  width: 22px;
  height: 145px;
  content: "";
  background: url("/assets/images/zendentistry/line_phone_bot.png") 100% 0 no-repeat;
}

body.zenden-theme .bottom_work_wrap {
  display: flex;
  padding-left: 100px;
}

body.zenden-theme .bottom_work {
  color: #c0bcc9;
  font-size: 18px;
  line-height: 26px;
  margin-right: 58px;
}

body.zenden-theme .bottom_work span {
  color: #7b7687;
  font-size: 16px;
}

body.zenden-theme .politica-and-copyright {
  display: flex;
  align-items: center;
}

body.zenden-theme .politica_title a {
  color: #827c90;
  display: inline-block;
  margin-right: 29px;
  font-family: "Rubik", sans-serif;
  font-weight: 300;
  text-decoration: none !important;
}

body.zenden-theme .politica_links {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0;
  white-space: nowrap;
}

body.zenden-theme .politica_links a {
  display: inline-flex !important;
  align-items: center;
  white-space: nowrap;
}

body.zenden-theme .politica_links br {
  display: none !important;
}

body.zenden-theme .politica_address {
  margin-top: 16px;
  color: #827c90;
  font-family: "Rubik", sans-serif;
  font-weight: 300;
  line-height: 1.45;
}

body.zenden-theme .copyright {
  color: #827c90;
  margin-left: auto;
  font-family: "Rubik", sans-serif;
  font-weight: 300;
}

body.zenden-theme .double-phone .bottom_phone-item,
body.zenden-theme .bottom_phone .bottom_phone-item {
  position: relative;
}

body.zenden-theme .bottom_phone .bottom_phone-item {
  height: 85.7px;
}

body.zenden-theme .double-phone .bottom_phone-item {
  height: 36px;
}

body.zenden-theme .double-phone .bottom_phone-item.active .messengers,
body.zenden-theme .bottom_phone .bottom_phone-item.active .messengers {
  opacity: 1;
  z-index: 100;
  visibility: visible;
  transform: translateY(50px);
}

body.zenden-theme .double-phone .bottom_phone-item.active .messengers {
  transform: translateY(44px);
  background: #0e0c14;
}

body.zenden-theme .double-phone .messengers,
body.zenden-theme .bottom_phone .messengers {
  position: absolute;
  top: -10px;
  display: flex;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  transition: all 0.4s;
}

body.zenden-theme .double-phone .messengers {
  top: 0;
  width: 100%;
  padding: 5px 0 20px;
}

body.zenden-theme .double-phone .bottom_phone-item p,
body.zenden-theme .bottom_phone .bottom_phone-item p {
  width: max-content;
  cursor: pointer;
}

body.zenden-theme .double-phone .bottom_phone-item p:hover,
body.zenden-theme .bottom_phone .bottom_phone-item p:hover {
  text-shadow: 0 0 29.6px rgba(238, 233, 253, 0.95);
}

body.zenden-theme .double-phone .bottom_phone-item.active p,
body.zenden-theme .bottom_phone .bottom_phone-item.active p {
  cursor: auto;
}

body.zenden-theme .bottom_phone-item::before {
  content: "";
  position: absolute;
  left: -21px;
  width: 3px;
  height: 100%;
  opacity: 0;
  border-radius: 134px;
  background: #baace6;
  transition: all 0.4s;
}

body.zenden-theme .double-phone .bottom_phone-item::before {
  top: 7px;
  height: 240%;
}

body.zenden-theme .bottom_phone-item.active::before {
  opacity: 1;
}

body.zenden-theme .double-phone .messengers a,
body.zenden-theme .bottom_phone .messengers a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 41px;
  height: 41px;
  flex: 0 0 41px;
  line-height: 0;
}

body.zenden-theme .double-phone .messengers a:not(:last-child),
body.zenden-theme .bottom_phone .messengers a:not(:last-child) {
  margin-right: 20px;
}

body.zenden-theme .double-phone .messengers a img,
body.zenden-theme .bottom_phone .messengers a img {
  display: block;
  width: 41px;
  height: 41px;
  max-width: none;
  object-fit: contain;
  flex-shrink: 0;
}

/* Slider system extracted from legacy main/style.css, adapted for Swiper */
body.zenden-theme.home .section_lightslider {
  margin-top: 30px;
  margin-bottom: 90px;
}

body.zenden-theme.home .section_lightslider .silder_wrap {
  width: 120%;
  position: relative;
  opacity: 1;
  overflow: visible;
  transition: opacity 0.3s ease-in-out;
}

body.zenden-theme.home .section_lightslider .item-a {
  min-height: 529px;
  position: relative;
  overflow: hidden;
  background-position: 0 0;
  background-size: cover;
}

body.zenden-theme.home .section_lightslider .zenden-swiper {
  overflow: hidden;
}

body.zenden-theme.home .section_lightslider .zenden-swiper .swiper-wrapper {
  align-items: stretch;
}

body.zenden-theme.home .section_lightslider .zenden-swiper .swiper-slide.item-a {
  width: 876px;
  flex-shrink: 0;
}

body.zenden-theme.home .section_lightslider .lightslider_title {
  width: 628px;
  color: #fff;
  font-size: 32px;
  padding: 40px 50px 7px;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  word-break: break-word;
  white-space: normal;
  overflow: visible;
  margin-bottom: 22px;
}

body.zenden-theme.home .section_lightslider .date_lightslider {
  border: 1px solid #fff;
  border-radius: 4px;
  transform: skew(-8deg, 0deg);
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  width: 154px;
  margin: 30px 0 30px 50px;
  text-align: center;
  padding: 8px 20px 6px;
  background: none;
}

body.zenden-theme.home .section_lightslider .link_lightslider-wrap {
  display: flex !important;
  padding-bottom: 133px;
  margin-top: 12px;
}

body.zenden-theme.home .section_lightslider .link_lightslider,
body.zenden-theme.home .section_lightslider .link_lightslider2 {
  font-size: 22px;
  color: #fff;
  display: block;
  text-decoration: none;
}

body.zenden-theme.home .section_lightslider .link_lightslider {
  padding-left: 50px;
}

body.zenden-theme.home .section_lightslider .link_lightslider2 {
  position: relative;
  padding-left: 40px;
}

body.zenden-theme.home .section_lightslider .link_lightslider2::before {
  position: absolute;
  top: 3px;
  left: 17px;
  height: 26px;
  width: 5px;
  background: url(/assets/images/zendentistry/line_reg.png) 100% 0 no-repeat;
  content: "";
}

body.zenden-theme.home .section_lightslider .link_lightslider:hover,
body.zenden-theme.home .section_lightslider .link_lightslider2:hover {
  text-shadow: 0 0 33.8px rgb(203 216 255 / 95%), 0 0 58.4px rgb(51 102 255 / 95%);
  color: #fff;
  text-decoration: none;
}

/* Slider language badge: migrated from legacy style.css (.silder_wrap .lightSlider > li .lang) */
body.zenden-theme.home .section_lightslider .item-a .lang {
  position: absolute;
  right: 50px;
  bottom: 60px;
  font-size: clamp(15px, 1.15vw, 21px);
  line-height: 1.2;
  text-shadow: 0 0 33.8px rgb(203 216 255 / 95%), 0 0 58.4px rgb(51 102 255 / 95%);
  pointer-events: none;
}

body.zenden-theme.home .section_lightslider .lSAction > a.lSNext {
  display: block;
  width: 100%;
  height: 100%;
  background: url(/assets/images/zendentistry/lightslider_arrow.png) 0 0 no-repeat;
  background-size: cover;
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  z-index: 11;
}

body.zenden-theme.home .section_lightslider .lSAction {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-1%, -50%);
  width: 185px;
  height: 257px;
  z-index: 10;
  pointer-events: none;
}

body.zenden-theme.home .section_lightslider .lSAction > a:hover {
  opacity: 0.8;
}

body.zenden-theme.home .section_lightslider .lSAction > a {
  pointer-events: auto;
}

body.zenden-theme.home .hoverImage__img,
body.zenden-theme.home .hoverImage__img2 {
  max-width: 100%;
  opacity: 1;
  transition: opacity .3s ease-in-out;
}

body.zenden-theme.home .hoverImage {
  z-index: 4;
  pointer-events: none;
}

body.zenden-theme.home .hoverImage2 {
  z-index: 0;
  pointer-events: none;
}

body.zenden-theme.home .section_lightslider,
body.zenden-theme.home .section_lightslider .silder_wrap,
body.zenden-theme.home .section_lightslider .zenden-swiper {
  position: relative;
  z-index: 3;
}

body.zenden-theme.home .section_lightslider .silder_wrap.loading {
  opacity: 0;
  overflow: hidden;
}

/* About project socials alignment + instagram dropdown */
body.zenden-theme .about-project .social_block_wrap.d-flex {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 18px;
}

body.zenden-theme .about-project .social_block_wrap.d-flex .social_title {
  margin-right: 0;
  margin-bottom: 10px;
  white-space: nowrap;
}

body.zenden-theme .about-project .social_block.soc {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

body.zenden-theme .about-project .social_block.soc > a {
  width: 41px;
  height: 41px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

body.zenden-theme .about-project .social_block.soc > a img {
  width: 41px !important;
  min-width: 41px;
  max-width: 41px;
  height: 41px;
  object-fit: contain;
}

body.zenden-theme .inst-list {
  width: auto;
  position: relative;
  margin-right: 20px;
  margin-bottom: 10px;
}

body.zenden-theme .inst-list .insta {
  cursor: pointer;
  width: 41px !important;
  min-width: 41px;
  max-width: 41px;
  height: 41px;
  object-fit: contain;
}

body.zenden-theme .inst-list .inst {
  display: flex;
  padding: 25px 25px;
  margin-bottom: 0;
  background: #0a0717;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  z-index: -9999;
  visibility: hidden;
  max-height: 0;
  position: absolute;
  top: 110%;
  left: -100%;
  transition: all 0.5s;
}

body.zenden-theme .inst-list .inst li a {
  text-align: center;
  margin: 0;
  line-height: normal;
}

body.zenden-theme .inst-list .inst.visible {
  opacity: 1;
  z-index: 9999;
  visibility: visible;
  max-height: fit-content;
}

body.zenden-theme .soc .inst-list .inst li a {
  font-size: 20px !important;
}

@media (max-width: 1024px) {
  body.zenden-theme #zenden-mobile-menu,
  body.zenden-theme #zenden-mobile-menu.is-open {
    display: block !important;
  }

  body.zenden-theme #zenden-mobile-menu {
    top: 0 !important;
    transform: translate3d(0, -110%, 0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
      opacity 0.3s ease,
      visibility 0s linear 0.45s;
    will-change: transform, opacity;
  }

  body.zenden-theme.active #zenden-mobile-menu.is-open {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition:
      transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
      opacity 0.3s ease,
      visibility 0s linear 0s;
  }

  body.zenden-theme .wrapper-gradient-bg {
    background-position: top right;
  }

  body.zenden-theme .center {
    width: min(94vw, var(--zenden-container));
  }

  body.zenden-theme .menutop {
    height: 90px;
    padding: 0;
    text-align: center;
  }

  body.zenden-theme .menutop .menu {
    display: none;
  }

  body.zenden-theme .menutop .menu.is-open {
    display: none !important;
  }

  body.zenden-theme .header-content {
    justify-content: flex-start;
    gap: 6px;
    flex-wrap: nowrap;
    width: calc(100% - 20px);
    height: 90px;
    padding: 0;
    position: relative;
  }

  body.zenden-theme .menutop .logo {
    order: 1;
    flex: 0 0 auto;
    width: 174px;
    height: 90px;
    background-size: auto 70px !important;
    background-position: left center !important;
  }

  body.zenden-theme .menutop .buttons_right {
    order: 2;
    flex: 0 0 auto;
    margin-left: auto;
    margin-top: 0 !important;
    border: 0;
    padding: 0 6px;
  }

  body.zenden-theme .menutop .buttons_right .contacts-link,
  body.zenden-theme .menutop .buttons_right .account-link,
  body.zenden-theme .menutop .buttons_right .sep {
    display: none !important;
  }

  body.zenden-theme .menutop .buttons_right ul.language {
    margin: 0;
  }

  body.zenden-theme .zenden-cart-wrap {
    order: 3;
    flex: 0 0 auto;
    margin-top: 0 !important;
    margin-left: 16px;
  }

  body.zenden-theme .menutop .basket_bl {
    margin-top: 0 !important;
    margin-right: 0 !important;
  }

  body.zenden-theme .wrapper .button_menu,
  body.zenden-theme .button_menu {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    order: 4;
    position: static;
    width: 36px;
    height: 36px;
    line-height: 1;
    font-size: 32px;
    cursor: pointer;
    z-index: 1300;
    margin-left: 14px;
  }

  body.zenden-theme.active .wrapper .button_menu,
  body.zenden-theme.active .button_menu {
    position: fixed;
    right: 14px;
    top: 14px;
    z-index: 2147483646;
    pointer-events: auto;
  }

  body.zenden-theme #zenden-mobile-menu {
    z-index: 2147483640;
  }

  body.zenden-theme #zenden-mobile-menu .menu_toggle_close {
    position: fixed;
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    z-index: 2147483647;
    pointer-events: auto;
  }

  body.zenden-theme #zenden-mobile-menu .menu_toggle_close i {
    pointer-events: none;
  }

  body.zenden-theme .wrapper .button_menu .fa-times,
  body.zenden-theme .button_menu .fa-times {
    display: none;
    color: #fff;
  }

  body.zenden-theme .wrapper .button_menu .fa-bars,
  body.zenden-theme .button_menu .fa-bars {
    display: inline-block;
    color: #fff;
  }

  body.zenden-theme .wrapper .button_menu.is-clicked .fa-times,
  body.zenden-theme .button_menu.is-clicked .fa-times {
    display: inline-block;
  }

  body.zenden-theme .wrapper .button_menu.is-clicked .fa-bars,
  body.zenden-theme .button_menu.is-clicked .fa-bars {
    display: none;
  }

  /* On mobile we use overlay menu (#zenden-mobile-menu), keep header menu hidden */
  body.zenden-theme .menutop .menu.is-open,
  body.zenden-theme .menutop .menu.is-open ul,
  body.zenden-theme .menutop .menu.is-open ul li a {
    display: none !important;
  }

  body.zenden-theme.home .section_lightslider .zenden-swiper .swiper-slide.item-a {
    width: 768px;
  }

  body.zenden-theme.home .section_lightslider .lSAction {
    left: 720px;
  }

  body.zenden-theme.home .hoverImage {
    display: none;
  }

  body.zenden-theme .phone-and-email {
    flex-wrap: wrap;
    padding: 0;
  }

  body.zenden-theme .bottom_phone,
  body.zenden-theme .bottom_mail {
    width: 100%;
  }

  body.zenden-theme .bottom_mail {
    text-align: left;
  }

  body.zenden-theme .bottom_mail::before {
    display: none;
  }

  body.zenden-theme .bottom_work_wrap {
    padding-left: 0;
  }

  /* Home responsive parity (original front-page) */
  body.zenden-theme.home .activity-items {
    flex-wrap: wrap;
  }

  body.zenden-theme.home .activity-item {
    width: calc(100% - 30px);
    margin-bottom: 30px;
  }

  body.zenden-theme.home .activity-item a {
    display: flex;
  }

  body.zenden-theme.home .activity-item_img {
    width: 50%;
    flex-shrink: 0;
  }

  body.zenden-theme.home .activity-item_text {
    height: 100%;
  }

  body.zenden-theme.home .social_block_wrap.d-flex {
    flex-wrap: wrap;
  }

  body.zenden-theme.home .social_block {
    margin-top: 15px;
  }
}

@media (max-width: 852px) {
  body.zenden-theme.home .section_lightslider .item-a {
    min-height: 529px;
  }

  body.zenden-theme.home .section_lightslider .zenden-swiper .swiper-slide.item-a {
    width: 560px;
  }

  body.zenden-theme.home .section_lightslider .lSAction {
    left: 510px;
  }

  body.zenden-theme.home .section_lightslider .lightslider_title {
    width: 100%;
    font-size: 40px;
    line-height: 1.2;
  }

  body.zenden-theme .bottom_work_wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  body.zenden-theme .bottom_work {
    margin-right: 0;
    margin-bottom: 20px;
  }

  body.zenden-theme .politica-and-copyright {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  body.zenden-theme .politica_links {
    margin-bottom: 0;
    justify-content: center;
    flex-wrap: wrap;
  }

  body.zenden-theme .copyright {
    margin-left: 0;
    margin-top: 20px;
    text-align: center;
  }

  body.zenden-theme .phone-and-email {
    justify-content: center;
    text-align: center;
  }

  body.zenden-theme .bottom_phone,
  body.zenden-theme .bottom_mail {
    text-align: center;
  }

  body.zenden-theme.home .about-project_text {
    font-size: 20px;
    line-height: 30px;
  }
}

@media (max-width: 718px) {
  body.zenden-theme.home .section_lightslider .zenden-swiper .swiper-slide.item-a {
    width: 460px;
  }

  body.zenden-theme.home .section_lightslider .lSAction {
    left: 410px;
  }

  body.zenden-theme .bottom_phone,
  body.zenden-theme .bottom_mail {
    font-size: 40px;
  }

  body.zenden-theme .phone-and-email {
    margin-bottom: 60px;
  }

  body.zenden-theme .bottom_phone .bottom_phone-item {
    height: 57.14px;
  }

  body.zenden-theme .bottom_phone .bottom_phone-item.active p {
    font-size: 13px;
  }

  body.zenden-theme .bottom_phone .bottom_phone-item.active .messengers {
    transform: translateY(30px);
  }

  body.zenden-theme .bottom_phone-item::before {
    left: -12px;
  }

  body.zenden-theme .bottom_phone .messengers a img {
    max-width: 35px;
  }

  body.zenden-theme .bottom_phone .messengers a:not(:last-child) {
    margin-right: 15px;
  }

  body.zenden-theme.home .activity-items {
    justify-content: center;
  }

  body.zenden-theme.home .activity-item {
    max-width: 400px;
  }

  body.zenden-theme.home .activity-item a {
    flex-direction: column;
  }

  body.zenden-theme.home .activity-item_img {
    width: 100%;
  }

  body.zenden-theme.home .activity-item_text {
    height: auto;
  }

  body.zenden-theme.home .activity-title,
  body.zenden-theme.home .activity-crumbs {
    text-align: center;
  }

  body.zenden-theme.home .activity-title br {
    display: block;
  }

  body.zenden-theme.home .activity-crumbs a {
    margin: 0 10px;
  }

  body.zenden-theme.home .social_title {
    font-size: 20px;
  }
}

@media (max-width: 560px) {
  body.zenden-theme .center {
    width: calc(100% - 20px);
  }

  body.zenden-theme .menutop .logo {
    width: 174px;
    height: 90px;
    background-size: auto 70px !important;
    background-position: -4px center !important;
  }

  body.zenden-theme .menutop .buttons_right {
    padding: 0 4px;
  }

  body.zenden-theme.home .section_lightslider .silder_wrap {
    width: 100%;
  }

  body.zenden-theme .about-project .social_block_wrap.d-flex {
    flex-wrap: wrap;
  }

  body.zenden-theme .about-project .social_block_wrap.d-flex .social_title {
    white-space: normal;
    width: 100%;
    margin-bottom: 12px;
  }

  body.zenden-theme.home .about-and-materials .about-project {
    padding-bottom: 70px;
  }

  body.zenden-theme.home .section_lightslider .item-a {
    min-height: 500px;
    background-color: rgba(0, 0, 0, 0.4);
    background-blend-mode: darken;
  }

  body.zenden-theme.home .section_lightslider .zenden-swiper .swiper-slide.item-a {
    width: 320px;
  }

  body.zenden-theme.home .section_lightslider .lSAction {
    width: 50px;
    height: 70px;
    left: 300px;
  }

  body.zenden-theme.home .section_lightslider .link_lightslider,
  body.zenden-theme.home .section_lightslider .link_lightslider2 {
    font-size: 19px;
  }

  body.zenden-theme.home .section_lightslider .date_lightslider {
    margin-left: 30px;
  }

  body.zenden-theme.home .section_lightslider .lightslider_title {
    width: auto;
    padding-left: 30px;
    padding-right: 30px;
  }

  body.zenden-theme.home .section_lightslider .link_lightslider {
    padding-left: 30px;
  }

  body.zenden-theme.home .section_lightslider .item-a .lang {
    right: auto;
    bottom: auto;
    left: 30px;
    top: 110px;
    font-size: 15px;
  }

  body.zenden-theme.home .activity-crumbs a {
    font-size: 14px;
    margin: 0 9px;
  }

  body.zenden-theme .bottom_phone,
  body.zenden-theme .bottom_mail {
    font-size: 30px;
    text-align: center !important;
  }

  body.zenden-theme .bottom_phone .bottom_phone-item {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  body.zenden-theme .bottom_phone .bottom_phone-item p {
    width: 100%;
    text-align: center !important;
  }

  body.zenden-theme .bottom_phone .bottom_phone-item {
    height: 48.84px;
    margin-bottom: 10px;
  }

  body.zenden-theme .bottom_phone .bottom_phone-item.active p {
    top: -10px;
    font-size: 11px;
    position: relative;
  }

  body.zenden-theme .bottom_phone .messengers {
    top: -50px;
  }

  body.zenden-theme .bottom_phone .bottom_phone-item.active .messengers {
    transform: translateY(61px);
  }

  body.zenden-theme .bottom_phone-item::before {
    left: -10px;
    top: -9px;
    height: calc(100% + 10px);
  }

  body.zenden-theme .double-phone .bottom_phone-item::before {
    top: 0;
    height: 187%;
  }

  body.zenden-theme .double-phone .bottom_phone-item.active .messengers {
    transform: translateY(30px);
  }

  body.zenden-theme .double-phone .messengers {
    padding: 5px 0 5px;
  }

  body.zenden-theme.home .silder_wrap {
    width: 100%;
  }

  body.zenden-theme.home .social_block_wrap.d-flex {
    flex-wrap: wrap;
  }

  body.zenden-theme.home .social_block_wrap.d-flex .social_title {
    width: 100%;
    white-space: normal;
    margin-bottom: 12px;
  }

  body.zenden-theme .politica_title a,
  body.zenden-theme .politica_links a,
  body.zenden-theme a.politica_link {
    margin-right: 0 !important;
  }
}

@media (max-width: 320px) {
  body.zenden-theme.home .section_lightslider .zenden-swiper .swiper-slide.item-a {
    width: 300px;
  }

  body.zenden-theme.home .section_lightslider .lSAction {
    width: 50px;
    height: 70px;
    left: 270px;
  }
}

/* Catalog (zendentistry) */
body.zenden-theme .zenden-catalog-page {
  padding-top: 30px;
  padding-bottom: 40px;
  background: transparent;
}

body.zenden-theme .zenden-catalog-page .center {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}

body.zenden-theme .zenden-catalog-header {
  margin-bottom: 30px;
}

body.zenden-theme .zenden-catalog-header .title_m {
  margin-bottom: 6px;
  color: #fff;
  font-size: 60px;
  line-height: 1.05;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
}

body.zenden-theme .zenden-catalog-meta {
  color: #a09da8;
  font-size: 16px;
  line-height: 1.35;
}

body.zenden-theme .zenden-learning-catalog-page .zenden-catalog-header .title_m {
  margin-bottom: 0;
}

body.zenden-theme .zenden-learning-catalog-page .zenden-catalog-header {
  margin-bottom: 34px;
}

body.zenden-theme .zenden-categories-grid {
  margin-bottom: 24px;
}

body.zenden-theme .zenden-categories-grid .overflow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

body.zenden-theme .zenden-categories-grid .item {
  width: 100% !important;
  max-width: 100%;
  float: none;
  margin: 0;
  display: block;
  position: relative;
  overflow: hidden;
}

body.zenden-theme .zenden-categories-grid .item.active {
  box-shadow: 0 7px 30px 2px rgb(170 128 255 / 38%);
}

body.zenden-theme .zenden-categories-grid .item::before {
  display: none !important;
}

body.zenden-theme .zenden-categories-grid .item .img {
  aspect-ratio: 560 / 360;
  margin: 0;
  line-height: 0;
  position: relative;
  z-index: 2;
}

body.zenden-theme .zenden-categories-grid .item .img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(41, 38, 70, 0.35);
  z-index: 1;
  pointer-events: none;
}

body.zenden-theme .zenden-categories-grid .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
  opacity: 1;
}

body.zenden-theme .zenden-categories-grid .item .layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(180deg, rgba(13, 11, 22, 0.05) 34%, rgba(13, 11, 22, 0.75) 100%);
  pointer-events: none;
}

body.zenden-theme .zenden-categories-grid .item .layer .description {
  max-width: 85%;
}

body.zenden-theme .zenden-catalog-toolbar-line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
  margin-bottom: 26px;
}

body.zenden-theme .zenden-catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 34px;
}

body.zenden-theme .zenden-catalog-toolbar__left,
body.zenden-theme .zenden-catalog-toolbar__right {
  display: flex;
  align-items: center;
}

body.zenden-theme .zenden-currency-form,
body.zenden-theme .zenden-sort-form {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

body.zenden-theme .zenden-currency-form label,
body.zenden-theme .zenden-sort-form label {
  color: #a09da8;
  font-size: 14px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

body.zenden-theme .zenden-currency-form select,
body.zenden-theme .zenden-sort-form select {
  height: 40px;
  min-width: 170px;
  border: 1px solid #3c3947;
  border-radius: 4px;
  background: #1a1824;
  color: #fff;
  padding: 0 12px;
  font-size: 15px;
  outline: none;
}

body.zenden-theme .zenden-currency-form select:focus,
body.zenden-theme .zenden-sort-form select:focus {
  border-color: #6b6390;
  box-shadow: 0 0 0 2px rgba(107, 99, 144, 0.25);
}

body.zenden-theme .zenden-catalog-filters {
  margin-bottom: 34px;
  border: 1px solid #28272f;
  border-radius: 6px;
  background: rgba(13, 11, 22, 0.75);
  padding: 18px 20px;
}

body.zenden-theme .zenden-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

body.zenden-theme .zenden-filter-row--top {
  align-items: flex-end;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.zenden-theme .zenden-filter-block {
  min-width: 180px;
  flex: 1 1 180px;
}

body.zenden-theme .zenden-filter-block label,
body.zenden-theme .zenden-filter-group-title {
  display: block;
  color: #fff;
  font-size: 14px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

body.zenden-theme .zenden-filter-block select,
body.zenden-theme .zenden-filter-block input[type="number"] {
  width: 100%;
  height: 42px;
  border: 1px solid #3c3947;
  border-radius: 4px;
  background: #1a1824;
  color: #fff;
  padding: 0 12px;
  font-size: 15px;
  outline: none;
}

body.zenden-theme .zenden-filter-block select:focus,
body.zenden-theme .zenden-filter-block input[type="number"]:focus {
  border-color: #6b6390;
  box-shadow: 0 0 0 2px rgba(107, 99, 144, 0.25);
}

body.zenden-theme .zenden-filter-price-range {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

body.zenden-theme .zenden-filter-block--actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}

body.zenden-theme .zenden-filter-block--actions .button {
  min-height: 42px;
  line-height: 40px;
  padding: 0 20px;
  margin-bottom: 0;
  white-space: nowrap;
}

body.zenden-theme .zenden-filter-block--actions .button.secondary {
  border-color: #3c3947;
  color: #a09da8;
}

body.zenden-theme .zenden-filter-row--bottom {
  gap: 14px 22px;
}

body.zenden-theme .zenden-filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 180px;
  max-height: 240px;
  overflow: auto;
  padding-right: 6px;
}

body.zenden-theme .zenden-filter-group--stock {
  min-width: 140px;
}

body.zenden-theme .zenden-choice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a09da8;
  font-size: 14px;
  line-height: 1.3;
}

body.zenden-theme .zenden-choice input {
  accent-color: #cfbfff;
}

body.zenden-theme .zenden-choice:hover span {
  color: #cfbfff;
}

body.zenden-theme .zenden-catalog-results ul.products.columns-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
}

body.zenden-theme .zenden-catalog-results ul.products li.product {
  width: 100%;
  margin: 0;
  list-style: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

body.zenden-theme .zenden-catalog-results ul.products li.product a.woocommerce-LoopProduct-link {
  display: block;
  margin: 0;
  padding: 0;
}

body.zenden-theme .zenden-catalog-results ul.products li.product:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 60px 6px rgb(170 128 255 / 45%);
}

body.zenden-theme .zenden-catalog-results ul.products li.product .img {
  background: #120f1d;
  overflow: hidden;
  aspect-ratio: 560 / 420;
  margin: 0;
  padding: 0;
  line-height: 0;
  position: relative;
}

body.zenden-theme .zenden-catalog-results ul.products li.product .img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.35s ease;
}

body.zenden-theme .zenden-catalog-results ul.products li.product:hover .img img {
  transform: scale(1.03);
}

body.zenden-theme .zenden-catalog-results .caption .name {
  color: rgba(250, 250, 250, 0.5);
  font-size: 14px;
  max-width: 72%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.zenden-theme .zenden-catalog-results .caption .description {
  padding-bottom: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}

body.zenden-theme .zenden-catalog-results .caption .description .lang {
  color: #ffffff;
  font-size: 13px;
  line-height: 1.3;
  white-space: nowrap;
  text-align: right;
}

body.zenden-theme .zenden-catalog-results .caption .description .lang--in-stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #59ffe1;
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
}

body.zenden-theme .zenden-catalog-results .caption .description .lang--in-stock i {
  color: #59ffe1;
  font-size: 12px;
  text-shadow: 0 0 8px rgba(89, 255, 225, 0.45);
}

body.zenden-theme .zenden-catalog-results ul.products li.product .count_products {
  line-height: 41px;
  height: 41px;
  background: #1d1b25;
  position: absolute;
  top: 24px;
  left: -6px;
  font-size: 13px;
  color: #ffffff;
  text-transform: uppercase;
  padding-left: 34px;
  padding-right: 21px;
  transform: skew(-8deg, 0deg);
  z-index: 4;
}

body.zenden-theme .zenden-catalog-results ul.products li.product .count_products span {
  display: inline-block;
  transform: skew(8deg, 0deg);
}

body.zenden-theme .zenden-catalog-results ul.products li.product .count_products.blue {
  background: #5055d9;
  padding: 0 20px;
  letter-spacing: 2.2pt;
}

body.zenden-theme .zenden-catalog-results .status {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
  padding-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body.zenden-theme .zenden-catalog-results .status .lbl {
  text-transform: lowercase;
  color: #a09da8;
}

body.zenden-theme .zenden-catalog-results .status .text span {
  color: #59ffe1;
  font-weight: 500;
}

body.zenden-theme .zenden-catalog-pagination {
  margin-top: 30px;
}

body.zenden-theme .zenden-catalog-pagination nav {
  display: flex;
  justify-content: center;
}

body.zenden-theme .zenden-learning-catalog-page .zenden-learning-filter .term_filter_box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

body.zenden-theme .zenden-learning-catalog-page .zenden-learning-filter form {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

body.zenden-theme .zenden-learning-catalog-page .zenden-learning-filter fieldset,
body.zenden-theme .zenden-learning-catalog-page .zenden-learning-filter .pa_vid-meropriyatiya_filter_box,
body.zenden-theme .zenden-learning-catalog-page .zenden-learning-filter .categoryfilter {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

body.zenden-theme .zenden-learning-catalog-page .zenden-learning-filter .asp_filter_tax_pa_vid-meropriyatiya {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0 !important;
  padding: 12px 20px !important;
  box-sizing: border-box;
  overflow: hidden;
}

body.zenden-theme .zenden-learning-catalog-page .zenden-learning-filter .asp_label {
  position: relative;
  margin: 0;
  padding: 5px 0;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.2;
}

body.zenden-theme .zenden-learning-catalog-page .zenden-learning-filter .asp_label:after {
  content: "";
  position: absolute;
  right: -12px;
  top: 5px;
  height: 20px;
  border-left: 1px solid rgba(250, 250, 250, 0.2);
  transform: skew(-8deg, 0deg);
}

body.zenden-theme .zenden-learning-catalog-page .zenden-learning-filter .asp_label:last-child:after {
  display: none;
}

body.zenden-theme .zenden-learning-catalog-page .zenden-learning-filter .asp_label a {
  display: inline-flex;
  max-width: 100%;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

body.zenden-theme .zenden-learning-catalog-page .zenden-learning-filter .asp_label span {
  display: inline-block;
  transform: none;
}

body.zenden-theme .zenden-learning-catalog-page .zenden-learning-filter .hasASP {
  width: 100%;
  max-width: 100%;
  margin-top: 6px;
  transform: none !important;
  box-sizing: border-box;
}

body.zenden-theme .zenden-learning-catalog-page .zenden-learning-filter .probox {
  height: 54px !important;
  display: flex;
  align-items: center;
  width: 100%;
  border: 1px solid #28272f !important;
  border-radius: 5px !important;
  background: #08070f !important;
  padding: 0 8px 0 18px;
  box-sizing: border-box;
}

body.zenden-theme .zenden-learning-catalog-page .zenden-learning-filter .proinput {
  flex: 1 1 auto;
  min-width: 0;
}

body.zenden-theme .zenden-learning-catalog-page .zenden-learning-filter .probox .proinput input.orig {
  width: 100% !important;
  height: 52px !important;
  line-height: 52px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  font-size: 18px !important;
  color: #a09da8 !important;
  transform: none !important;
}

body.zenden-theme .zenden-learning-catalog-page .zenden-learning-filter .probox .proinput input.orig::placeholder {
  color: #a09da8;
  opacity: 1;
}

body.zenden-theme .zenden-learning-catalog-page .zenden-learning-filter .promagnifier {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  background: #08070f !important;
  border: 1px solid #3a3744 !important;
  border-radius: 3px !important;
  box-shadow: none !important;
  padding: 0;
  cursor: pointer;
}

body.zenden-theme .zenden-learning-catalog-page .zenden-learning-filter .promagnifier .innericon,
body.zenden-theme .zenden-learning-catalog-page .zenden-learning-filter .promagnifier .innericon svg {
  width: 24px !important;
  height: 24px !important;
}

body.zenden-theme .zenden-learning-catalog-page .zenden-learning-filter .promagnifier .innericon svg {
  fill: #ffffff;
}

body.zenden-theme .zenden-learning-catalog-page .summary_message {
  margin-top: 18px;
  margin-bottom: 38px;
  font-size: 17px;
  line-height: 1.5;
}

body.zenden-theme .zenden-learning-catalog-page .summary_message a {
  display: inline-block;
  margin-top: 8px;
  color: #cfbfff;
  text-decoration: none;
}

body.zenden-theme .zenden-learning-catalog-page .summary_message a:hover {
  text-shadow: 0px 1px 18px #cfbfff;
}

body.zenden-theme .zenden-learning-catalog-page .zenden-catalog-results ul.products.columns-4 {
  gap: 28px 24px;
}

body.zenden-theme .zenden-learning-catalog-page .zenden-catalog-results ul.products li.product {
  display: block;
}

body.zenden-theme .zenden-learning-catalog-page .zenden-catalog-results ul.products li.product a.woocommerce-LoopProduct-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

body.zenden-theme .zenden-learning-catalog-page .zenden-catalog-results ul.products li.product .img {
  aspect-ratio: 560 / 360;
  background: #0f0d16;
}

body.zenden-theme .zenden-learning-catalog-page .zenden-catalog-results ul.products li.product .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.zenden-theme .zenden-learning-catalog-page .zenden-learning-badge {
  position: absolute;
  top: 12px;
  left: 14px;
  z-index: 5;
  max-width: calc(100% - 28px);
  pointer-events: none;
}

body.zenden-theme .zenden-learning-catalog-page .zenden-learning-badge.has-stock-ribbon {
  top: 76px;
}

body.zenden-theme .zenden-learning-catalog-page .zenden-learning-badge span {
  display: inline-block;
  padding: 3px 10px 4px;
  font-size: 13px;
  line-height: 1.15;
  text-transform: lowercase;
  color: #ffffff;
  border-radius: 2px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

body.zenden-theme .zenden-learning-catalog-page .zenden-learning-badge.is-course span {
  background: rgba(0, 197, 255, 0.86);
}

body.zenden-theme .zenden-learning-catalog-page .zenden-learning-badge.is-webinar span {
  background: rgba(215, 72, 102, 0.88);
}

body.zenden-theme .zenden-learning-catalog-page .zenden-catalog-results .caption {
  min-height: 150px;
  display: flex;
  flex-direction: column;
}

body.zenden-theme .zenden-learning-catalog-page .zenden-catalog-results .caption .ttl {
  margin-bottom: 18px;
  min-height: 84px;
  font-size: 19px;
  line-height: 1.35;
}

body.zenden-theme .zenden-learning-catalog-page .zenden-catalog-results .caption .description {
  margin-top: auto;
  padding-bottom: 6px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 8px 16px;
}

body.zenden-theme .zenden-learning-catalog-page .zenden-catalog-results .caption .name {
  flex: 1 1 160px;
  min-width: 0;
  max-width: none;
  font-size: 15px;
}

body.zenden-theme .zenden-learning-catalog-page .zenden-catalog-results .caption .description .lang {
  flex: 1 1 140px;
  min-width: 0;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
}

@media (max-width: 1200px) {
  body.zenden-theme .zenden-learning-catalog-page .zenden-catalog-results .caption .ttl {
    min-height: 76px;
  }
}

@media (max-width: 1024px) {
  body.zenden-theme .zenden-learning-catalog-page .zenden-catalog-header {
    margin-bottom: 26px;
  }

  body.zenden-theme .zenden-learning-catalog-page .zenden-learning-filter .asp_filter_tax_pa_vid-meropriyatiya {
    padding: 12px 16px !important;
  }

  body.zenden-theme .zenden-learning-catalog-page .zenden-learning-filter .term_filter_box {
    gap: 14px;
  }

  body.zenden-theme .zenden-learning-catalog-page .summary_message {
    margin-top: 16px;
    margin-bottom: 30px;
    font-size: 16px;
  }

  body.zenden-theme .zenden-learning-catalog-page .zenden-catalog-results .caption {
    min-height: 132px;
  }

  body.zenden-theme .zenden-learning-catalog-page .zenden-catalog-results ul.products.columns-4 {
    gap: 24px 18px;
  }
}

@media (max-width: 718px) {
  body.zenden-theme .zenden-learning-catalog-page .zenden-catalog-header {
    margin-bottom: 22px;
  }

  body.zenden-theme .zenden-learning-catalog-page .zenden-learning-filter .asp_filter_tax_pa_vid-meropriyatiya {
    padding: 12px 14px !important;
  }

  body.zenden-theme .zenden-learning-catalog-page .zenden-learning-badge {
    top: 10px;
    left: 10px;
  }

  body.zenden-theme .zenden-learning-catalog-page .zenden-learning-badge.has-stock-ribbon {
    top: 66px;
  }

  body.zenden-theme .zenden-learning-catalog-page .zenden-learning-badge span {
    font-size: 12px;
    padding: 3px 8px;
  }

  body.zenden-theme .zenden-learning-catalog-page .zenden-catalog-results .caption {
    min-height: 0;
  }

  body.zenden-theme .zenden-learning-catalog-page .zenden-catalog-results .caption .ttl {
    min-height: 0;
    font-size: 17px;
  }

  body.zenden-theme .zenden-learning-catalog-page .zenden-catalog-results .caption .description {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
    padding-bottom: 0;
  }

  body.zenden-theme .zenden-learning-catalog-page .zenden-catalog-results .caption .name,
  body.zenden-theme .zenden-learning-catalog-page .zenden-catalog-results .caption .description .lang {
    max-width: 100%;
    text-align: left;
    white-space: normal;
  }
  body.zenden-theme .zenden-learning-catalog-page .summary_message {
    margin-top: 14px;
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.45;
  }

  body.zenden-theme .zenden-learning-catalog-page .summary_message a {
    margin-top: 10px;
  }

  body.zenden-theme .zenden-learning-catalog-page .zenden-catalog-results ul.products.columns-4 {
    gap: 20px;
  }
}

@media (max-width: 1024px) {
  body.zenden-theme .zenden-learning-catalog-page .zenden-learning-filter .term_filter_box {
    gap: 16px;
  }
}

@media (max-width: 767px) {
  body.zenden-theme .zenden-learning-catalog-page .zenden-learning-filter .term_filter_box {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }

  body.zenden-theme .zenden-learning-catalog-page .zenden-learning-filter .asp_label {
    display: inline-flex;
    margin-bottom: 0;
  }

  body.zenden-theme .zenden-learning-catalog-page .zenden-learning-filter .asp_label:after {
    display: none;
  }

  body.zenden-theme .zenden-learning-catalog-page .zenden-learning-filter .probox {
    height: 50px !important;
    padding-left: 14px;
  }

  body.zenden-theme .zenden-learning-catalog-page .zenden-learning-filter .probox .proinput input.orig {
    height: 48px !important;
    line-height: 48px !important;
    font-size: 16px !important;
  }
}

body.zenden-theme .zenden-pagination-list {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Product page (zendentistry) */
body.zenden-theme .zenden-product-page {
  padding-top: 18px;
}

body.zenden-theme .zenden-product-page .center {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}

body.zenden-theme .zenden-product-page .zenden-product-card {
  margin-bottom: 48px;
}

body.zenden-theme .zenden-product-page .zenden-product-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

body.zenden-theme .zenden-product-page .zenden-product-panel .left {
  flex: 0 0 auto;
}

body.zenden-theme .zenden-product-page .zenden-product-panel .buttons {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
}

body.zenden-theme .zenden-product-page .zenden-cart-row {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  justify-content: flex-end;
}

body.zenden-theme .zenden-product-page .zenden-qty {
  display: inline-flex;
  align-items: stretch;
  min-width: 170px;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .02);
}

body.zenden-theme .zenden-product-page .zenden-qty button {
  width: 48px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

body.zenden-theme .zenden-product-page .zenden-qty button:hover {
  color: #cfbfff;
}

body.zenden-theme .zenden-product-page .zenden-qty input {
  width: 72px;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, .12);
  border-right: 1px solid rgba(255, 255, 255, .12);
  background: transparent;
  color: #fff;
  text-align: center;
  font-size: 22px;
  outline: 0;
  box-shadow: none;
}

body.zenden-theme .zenden-product-page .zenden-add-to-cart {
  min-width: 290px;
  margin: 0;
  background: #e9e6ed !important;
  color: #302946 !important;
  text-align: center;
}

body.zenden-theme .zenden-product-page .zenden-add-to-cart.is-in-cart {
  background: #d7d3db !important;
  color: #302946 !important;
}

body.zenden-theme .zenden-product-page .zenden-product-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

body.zenden-theme .zenden-product-page .zenden-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .02);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: .2s ease;
}

body.zenden-theme .zenden-product-page .zenden-action-btn:hover,
body.zenden-theme .zenden-product-page .zenden-action-btn.is-active {
  border-color: rgba(207, 191, 255, .55);
  color: #cfbfff;
  box-shadow: 0 7px 24px rgba(170, 128, 255, .18);
}

body.zenden-theme .zenden-product-page .zenden-compare-active {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

body.zenden-theme .zenden-product-page .zenden-product-tabs .section_menu {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
}

body.zenden-theme .zenden-product-page .zenden-product-tabs .section_menu li {
  flex: 0 0 auto;
}

body.zenden-theme .zenden-product-speaker .center {
  width: 100%;
}

body.zenden-theme .zenden-product-speaker__card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .03);
  padding: 26px;
}

body.zenden-theme .zenden-product-speaker__media {
  min-height: 320px;
  background: rgba(255, 255, 255, .04);
  overflow: hidden;
}

body.zenden-theme .zenden-product-speaker__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.zenden-theme .zenden-product-speaker__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

body.zenden-theme .zenden-product-speaker__eyebrow {
  margin-bottom: 10px;
  color: rgba(207, 191, 255, .8);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

body.zenden-theme .zenden-product-speaker__body h2 {
  margin: 0 0 10px;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
}

body.zenden-theme .zenden-product-speaker__meta,
body.zenden-theme .zenden-product-speaker__body p {
  color: rgba(255, 255, 255, .72);
}

body.zenden-theme .zenden-product-speaker__body p {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.6;
}

body.zenden-theme .zenden-product-speaker__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: #e9e6ed;
  color: #302946;
  text-decoration: none;
  transition: .2s ease;
  align-self: flex-start;
}

body.zenden-theme .zenden-product-speaker__link:hover {
  box-shadow: 0 16px 36px rgba(170, 128, 255, .18);
  transform: translateY(-2px);
}

body.zenden-theme .zenden-product-linked-webinars ul.products,
body.zenden-theme .zwebinar-linked-products ul.products,
body.zenden-theme .zenden-learning-related ul.products {
  margin-top: 18px;
}

body.zenden-theme .zenden-product-linked-webinars ul.products li.product .img,
body.zenden-theme .zwebinar-linked-products ul.products li.product .img,
body.zenden-theme .zenden-learning-related ul.products li.product .img {
  aspect-ratio: 560 / 360;
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
}

body.zenden-theme .zenden-linked-carousel__swiper .swiper-wrapper li.product .img {
  aspect-ratio: 560 / 360;
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
}

body.zenden-theme .zenden-product-linked-webinars ul.products li.product .img img,
body.zenden-theme .zwebinar-linked-products ul.products li.product .img img,
body.zenden-theme .zenden-learning-related ul.products li.product .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.zenden-theme .zenden-linked-carousel__swiper .swiper-wrapper li.product .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.zenden-theme .zenden-product-linked-webinars .caption,
body.zenden-theme .zwebinar-linked-products .caption,
body.zenden-theme .zenden-learning-related .caption {
  min-height: 96px;
  padding: 20px 26px 22px;
  gap: 12px;
}

body.zenden-theme .zenden-product-linked-webinars .caption .ttl,
body.zenden-theme .zwebinar-linked-products .caption .ttl,
body.zenden-theme .zenden-learning-related .caption .ttl {
  font-size: 18px;
  line-height: 1.35;
}

body.zenden-theme .zwebinar-linked-products {
  margin-top: 12px;
}

body.zenden-theme .zwebinar-linked-products__inner {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

body.zenden-theme .zenden-learning-related__inner,
body.zenden-theme .zenden-product-linked-webinars__inner {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

body.zenden-theme .zenden-linked-carousel {
  position: relative;
  margin-top: 18px;
  padding: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

body.zenden-theme .zenden-linked-carousel__swiper {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

body.zenden-theme .zenden-linked-carousel__swiper .swiper-wrapper {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: stretch;
  gap: 0;
  margin-top: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

body.zenden-theme .zenden-linked-carousel__swiper .swiper-wrapper li.product {
  width: auto;
  margin: 0;
  height: auto;
  flex-shrink: 0;
}

body.zenden-theme .zwebinar-linked-products .zenden-linked-carousel__swiper .swiper-slide,
body.zenden-theme .zwebinar-linked-products .zenden-linked-carousel__slide {
  width: auto;
  height: auto !important;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  display: flex;
}

body.zenden-theme .zenden-learning-related .zenden-linked-carousel__swiper .swiper-slide,
body.zenden-theme .zenden-learning-related .zenden-linked-carousel__slide,
body.zenden-theme .zenden-product-linked-webinars .zenden-linked-carousel__swiper .swiper-slide,
body.zenden-theme .zenden-product-linked-webinars .zenden-linked-carousel__slide {
  width: auto;
  height: auto !important;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  display: flex;
}

body.zenden-theme .zwebinar-linked-products .zenden-linked-carousel__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  text-decoration: none;
  color: inherit;
  background: transparent;
  transition: box-shadow .3s ease, transform .3s ease;
}

body.zenden-theme .zenden-learning-related .zenden-linked-carousel__link,
body.zenden-theme .zenden-product-linked-webinars .zenden-linked-carousel__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  text-decoration: none;
  color: inherit;
  background: transparent;
  transition: box-shadow .3s ease, transform .3s ease;
}

body.zenden-theme .zwebinar-linked-products .zenden-linked-carousel__image {
  aspect-ratio: 560 / 360;
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
  border-radius: 0;
}

body.zenden-theme .zenden-learning-related .zenden-linked-carousel__image,
body.zenden-theme .zenden-product-linked-webinars .zenden-linked-carousel__image {
  aspect-ratio: 560 / 360;
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
  border-radius: 0;
}

body.zenden-theme .zwebinar-linked-products .zenden-linked-carousel__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.zenden-theme .zenden-learning-related .zenden-linked-carousel__image img,
body.zenden-theme .zenden-product-linked-webinars .zenden-linked-carousel__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.zenden-theme .zwebinar-linked-products .zenden-linked-carousel__caption {
  min-height: 96px;
  padding: 31px 35px 20px;
  gap: 12px;
  background: #1d1b25;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: flex-start;
}

body.zenden-theme .zenden-learning-related .zenden-linked-carousel__caption,
body.zenden-theme .zenden-product-linked-webinars .zenden-linked-carousel__caption {
  min-height: 96px;
  padding: 31px 35px 20px;
  gap: 12px;
  background: #1d1b25;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: flex-start;
}

body.zenden-theme .zwebinar-linked-products .zenden-linked-carousel__title {
  font-size: 20px;
  color: #fff;
  display: inline-block;
  line-height: 28px;
  word-break: break-word;
}

body.zenden-theme .zenden-learning-related .zenden-linked-carousel__title,
body.zenden-theme .zenden-product-linked-webinars .zenden-linked-carousel__title {
  font-size: 20px;
  color: #fff;
  display: inline-block;
  line-height: 28px;
  word-break: break-word;
}

body.zenden-theme .zwebinar-linked-products .zenden-linked-carousel__slide:hover .zenden-linked-carousel__link {
  box-shadow: 0px 7px 60px 6px rgb(170 128 255 / 45%);
}

body.zenden-theme .zenden-learning-related .zenden-linked-carousel__slide:hover .zenden-linked-carousel__link,
body.zenden-theme .zenden-product-linked-webinars .zenden-linked-carousel__slide:hover .zenden-linked-carousel__link {
  box-shadow: 0px 7px 60px 6px rgb(170 128 255 / 45%);
}

body.zenden-theme .zwebinar-linked-products .zenden-linked-carousel__slide:hover .zenden-linked-carousel__image img {
  transform: scale(1.02);
  transition: transform .3s ease;
}

body.zenden-theme .zenden-learning-related .zenden-linked-carousel__slide:hover .zenden-linked-carousel__image img,
body.zenden-theme .zenden-product-linked-webinars .zenden-linked-carousel__slide:hover .zenden-linked-carousel__image img {
  transform: scale(1.02);
  transition: transform .3s ease;
}

body.zenden-theme .zenden-linked-carousel__swiper.is-single-slide .swiper-wrapper {
  justify-content: flex-start;
  width: auto !important;
}

body.zenden-theme .zenden-linked-carousel.is-single-card {
  max-width: 380px;
}

body.zenden-theme .zenden-linked-carousel.is-single-card .zenden-linked-carousel__swiper {
  max-width: 380px;
}

body.zenden-theme .zenden-linked-carousel.is-single-card .swiper-wrapper {
  width: 100% !important;
}

body.zenden-theme .zenden-linked-carousel__swiper.is-single-slide .swiper-slide {
  width: min(380px, 100%) !important;
}

body.zenden-theme .zenden-linked-carousel__swiper.is-single-slide .swiper-wrapper li.product {
  max-width: min(380px, 100%);
  width: 100%;
}

body.zenden-theme .zenden-linked-carousel__swiper .swiper-slide {
  height: auto;
}

body.zenden-theme .zenden-linked-carousel__prev,
body.zenden-theme .zenden-linked-carousel__next {
  top: 50%;
  width: 95px;
  height: 138px;
  margin-top: -69px;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  border: 0;
  box-shadow: none;
  color: transparent;
}

body.zenden-theme .zenden-linked-carousel__prev::after,
body.zenden-theme .zenden-linked-carousel__next::after {
  display: none;
}

body.zenden-theme .zenden-linked-carousel__prev {
  left: -76px;
  background-image: url(/assets/images/zendentistry/arrow-left.png);
}

body.zenden-theme .zenden-linked-carousel__next {
  right: -76px;
  background-image: url(/assets/images/zendentistry/arrow-right.png);
}

body.zenden-theme .zenden-linked-carousel__prev.swiper-button-disabled,
body.zenden-theme .zenden-linked-carousel__next.swiper-button-disabled {
  opacity: .28;
}

body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews {
  padding: 34px 38px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .03);
}

body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__title,
body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__author,
body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__item-title,
body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__reply-author {
  color: #fff;
}

body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__title {
  font-family: "Oswald", sans-serif;
  font-size: 42px;
  line-height: 1;
  margin: 0 0 12px;
}

body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__rating-meta,
body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__meta,
body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__count,
body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__distribution-count,
body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__empty-note,
body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__locked p {
  color: rgba(255, 255, 255, .65);
}

body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__avg {
  color: #cfbfff;
  font-size: 24px;
}

body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__stars i,
body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__distribution-label i {
  color: #cfbfff;
}

body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 26px;
  border: 1px solid rgba(255, 255, 255, .16);
  text-decoration: none;
  transition: .2s ease;
}

body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__btn--primary,
body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__btn--muted {
  background: #e9e6ed;
  color: #302946;
}

body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__btn--disabled {
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .45);
}

body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__distribution {
  margin-bottom: 28px;
}

body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__distribution-row {
  display: grid;
  grid-template-columns: 56px 1fr 40px;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__distribution-track {
  height: 8px;
  background: rgba(255, 255, 255, .08);
}

body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__distribution-fill {
  height: 100%;
  background: linear-gradient(90deg, #cfbfff 0%, #7d6cff 100%);
}

body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__item {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__avatar {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(207, 191, 255, .18);
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 28px;
}

body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__item-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
}

body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__comment,
body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__reply p,
body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__empty p,
body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__locked p {
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
}

body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__pros-cons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 16px 0;
}

body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__pros,
body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__cons,
body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__reply {
  padding: 18px 20px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
}

body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__pros-title,
body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__cons-title {
  color: #cfbfff;
  margin-bottom: 10px;
}

body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__pros ul,
body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__cons ul {
  margin: 0;
  padding-left: 18px;
  color: #fff;
}

body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__images {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__image img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  display: block;
}

body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__vote-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  color: rgba(255, 255, 255, .7);
}

body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__vote-buttons {
  display: flex;
  gap: 10px;
}

body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__vote-btn {
  min-width: 52px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  color: #fff;
}

body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__reply {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  margin-top: 18px;
}

body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__reply-icon {
  color: #cfbfff;
  font-size: 20px;
}

body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__empty {
  padding: 18px 0 6px;
  text-align: center;
}

body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__more {
  margin-top: 28px;
}

body.zenden-theme .zenden-pagination-item {
  margin: 0;
}

body.zenden-theme .zenden-pagination-link {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #3c3947;
  border-radius: 5px;
  background: #1a1824;
  color: #a09da8;
  font-size: 18px;
  text-decoration: none;
  transform: skew(-8deg, 0deg);
  transition: all 0.2s ease;
}

body.zenden-theme .zenden-pagination-link:hover {
  color: #cfbfff;
  border-color: #6b6390;
  text-shadow: 0 1px 18px #cfbfff;
}

body.zenden-theme .zenden-pagination-link > * {
  transform: skew(8deg, 0deg);
}

body.zenden-theme .zenden-pagination-item.active .zenden-pagination-link {
  color: #fff;
  border-color: rgba(250, 250, 250, 0.45);
  text-shadow: 0 1px 18px rgba(255, 255, 255, 0.95);
}

body.zenden-theme .zenden-pagination-item.disabled .zenden-pagination-link {
  color: rgba(160, 157, 168, 0.45);
  border-color: #2a2831;
  cursor: default;
  pointer-events: none;
}

body.zenden-theme .zenden-cart-page {
  padding-top: 30px;
  padding-bottom: 84px;
}

body.zenden-theme .zenden-cart-page .zenden-cart-hero {
  margin-bottom: 38px;
}

body.zenden-theme .zenden-cart-page .zenden-cart-hero__title {
  margin: 0 0 12px;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 72px;
  font-weight: 300;
  line-height: 0.95;
}

body.zenden-theme .zenden-cart-page .zenden-cart-hero__hint {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-family: "Rubik", sans-serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.45;
}

body.zenden-theme .zenden-cart-page .zenden-cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 36px;
  align-items: start;
}

body.zenden-theme .zenden-cart-page .zenden-cart-items,
body.zenden-theme .zenden-cart-page .zenden-cart-summary,
body.zenden-theme .zenden-cart-page .zenden-cart-empty {
  border: 1px solid rgba(119, 113, 136, 0.38);
  background: rgba(25, 20, 38, 0.94);
  box-shadow: 0 18px 55px rgba(8, 5, 18, 0.35);
}

body.zenden-theme .zenden-cart-page .zenden-cart-items {
  padding: 20px 24px 24px;
}

body.zenden-theme .zenden-cart-page .zenden-cart-item {
  display: grid;
  grid-template-columns: 34px 112px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(119, 113, 136, 0.26);
}

body.zenden-theme .zenden-cart-page .zenden-cart-item:first-child {
  padding-top: 8px;
}

body.zenden-theme .zenden-cart-page .zenden-cart-item:last-of-type {
  border-bottom: 0;
}

body.zenden-theme .zenden-cart-page .zenden-cart-item__select {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
}

body.zenden-theme .zenden-cart-page .zenden-cart-item__checkbox {
  display: inline-block !important;
  width: 20px;
  height: 20px;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(207, 191, 255, 0.7);
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(32, 24, 52, 0.96), rgba(11, 8, 20, 0.98));
  position: relative;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 0 14px rgba(109, 92, 164, 0.18);
  vertical-align: middle;
}

body.zenden-theme .zenden-cart-page .zenden-cart-item__checkbox:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, #e8dcff 0%, #cfbfff 100%);
  box-shadow: 0 0 10px rgba(207, 191, 255, 0.6);
  transform: translate(-50%, -50%);
}

body.zenden-theme .zenden-cart-page .zenden-cart-item__image,
body.zenden-theme .zenden-cart-page .zenden-cart-item__image picture {
  width: 112px;
}

body.zenden-theme .zenden-cart-page .zenden-cart-item__image-img,
body.zenden-theme .zenden-cart-page .zenden-cart-item__image-placeholder {
  display: block;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(119, 113, 136, 0.38);
  background: rgba(18, 14, 29, 0.96);
  object-fit: cover;
}

body.zenden-theme .zenden-cart-page .zenden-cart-item__image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 30px;
}

body.zenden-theme .zenden-cart-page .zenden-cart-item__content {
  min-width: 0;
}

body.zenden-theme .zenden-cart-page .zenden-cart-item__title {
  margin: 0 0 8px;
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.2;
}

body.zenden-theme .zenden-cart-page .zenden-cart-item__title a {
  color: inherit;
  text-decoration: none;
}

body.zenden-theme .zenden-cart-page .zenden-cart-item__title a:hover {
  color: #cfbfff;
}

body.zenden-theme .zenden-cart-page .zenden-cart-item__meta,
body.zenden-theme .zenden-cart-page .zenden-cart-item__sku {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.68);
  font-family: "Rubik", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.45;
}

body.zenden-theme .zenden-cart-page .zenden-cart-item__sku {
  margin-bottom: 18px;
}

body.zenden-theme .zenden-cart-page .zenden-cart-item__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

body.zenden-theme .zenden-cart-page .zenden-cart-item__left,
body.zenden-theme .zenden-cart-page .zenden-cart-item__right {
  display: flex;
  align-items: center;
  gap: 18px;
}

body.zenden-theme .zenden-cart-page .zenden-cart-item__right {
  justify-content: flex-end;
}

body.zenden-theme .zenden-cart-page .zenden-cart-qty {
  display: inline-flex;
  align-items: stretch;
  min-width: 164px;
  border: 1px solid rgba(126, 112, 173, 0.42);
  background: rgba(14, 11, 24, 0.98);
}

body.zenden-theme .zenden-cart-page .zenden-cart-qty__btn {
  width: 46px;
  min-width: 46px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: color 0.25s ease, background-color 0.25s ease;
}

body.zenden-theme .zenden-cart-page .zenden-cart-qty__btn:hover:not(:disabled) {
  background: rgba(207, 191, 255, 0.12);
  color: #cfbfff;
}

body.zenden-theme .zenden-cart-page .zenden-cart-qty__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

body.zenden-theme .zenden-cart-page .zenden-cart-qty__input {
  width: 72px;
  min-width: 72px;
  border: 0;
  border-left: 1px solid rgba(126, 112, 173, 0.24);
  border-right: 1px solid rgba(126, 112, 173, 0.24);
  background: transparent;
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  box-shadow: none;
  outline: none;
}

body.zenden-theme .zenden-cart-page .zenden-cart-item__price,
body.zenden-theme .zenden-cart-page .zenden-cart-item__total {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: #fff;
  font-family: "Rubik", sans-serif;
}

body.zenden-theme .zenden-cart-page .zenden-cart-item__price-value,
body.zenden-theme .zenden-cart-page .zenden-cart-item__total {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

body.zenden-theme .zenden-cart-page .zenden-cart-item__price-multiplier {
  color: rgba(255, 255, 255, 0.56);
  font-size: 16px;
  font-weight: 300;
}

body.zenden-theme .zenden-cart-page .zenden-cart-item__remove {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid rgba(126, 112, 173, 0.42);
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Rubik", sans-serif;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease;
}

body.zenden-theme .zenden-cart-page .zenden-cart-item__remove:hover {
  border-color: rgba(207, 191, 255, 0.7);
  color: #cfbfff;
  background: rgba(207, 191, 255, 0.08);
}

body.zenden-theme .zenden-cart-page .zenden-cart-back-wrap {
  padding-top: 18px;
}

body.zenden-theme .zenden-cart-page .zenden-cart-back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-family: "Rubik", sans-serif;
  font-size: 18px;
  font-weight: 300;
  text-decoration: none;
}

body.zenden-theme .zenden-cart-page .zenden-cart-back-link:hover {
  color: #cfbfff;
}

body.zenden-theme .zenden-cart-page .zenden-cart-summary {
  position: sticky;
  top: 112px;
  padding: 26px 24px 24px;
}

body.zenden-theme .zenden-cart-page .zenden-cart-summary__title {
  margin: 0 0 20px;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 46px;
  font-weight: 300;
  line-height: 1;
}

body.zenden-theme .zenden-cart-page .zenden-cart-summary__rows {
  display: grid;
  gap: 14px;
}

body.zenden-theme .zenden-cart-page .zenden-cart-summary__row,
body.zenden-theme .zenden-cart-page .zenden-cart-summary__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.45;
}

body.zenden-theme .zenden-cart-page .zenden-cart-summary__shipping-free,
body.zenden-theme .zenden-cart-page .zenden-cart-summary__discount {
  color: #cfbfff;
}

body.zenden-theme .zenden-cart-page .zenden-cart-summary__total-wrap {
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(119, 113, 136, 0.26);
}

body.zenden-theme .zenden-cart-page .zenden-cart-summary__total {
  font-size: 24px;
  font-weight: 500;
}

body.zenden-theme .zenden-cart-page .zenden-cart-coupon {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(119, 113, 136, 0.26);
}

body.zenden-theme .zenden-cart-page .zenden-cart-coupon__label {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 17px;
  font-weight: 400;
}

body.zenden-theme .zenden-cart-page .zenden-cart-coupon__form {
  display: flex;
  align-items: stretch;
  gap: 12px;
}

body.zenden-theme .zenden-cart-page .zenden-cart-coupon__input {
  flex: 1 1 auto;
  min-width: 0;
  height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(126, 112, 173, 0.42);
  background: rgba(14, 11, 24, 0.98);
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 17px;
  font-weight: 300;
  box-shadow: none;
  outline: none;
}

body.zenden-theme .zenden-cart-page .zenden-cart-coupon__input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

body.zenden-theme .zenden-cart-page .zenden-cart-coupon__apply,
body.zenden-theme .zenden-cart-page .zenden-cart-coupon__remove,
body.zenden-theme .zenden-cart-page .zenden-cart-checkout-btn,
body.zenden-theme .zenden-cart-page .zenden-cart-empty__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  background: #e9e6ed;
  color: #383455;
  font-family: "Rubik", sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
  max-width: 100%;
  box-shadow: 0 0 22px rgba(233, 230, 237, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

body.zenden-theme .zenden-cart-page .zenden-cart-coupon__apply:hover,
body.zenden-theme .zenden-cart-page .zenden-cart-coupon__remove:hover,
body.zenden-theme .zenden-cart-page .zenden-cart-checkout-btn:hover,
body.zenden-theme .zenden-cart-page .zenden-cart-empty__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 28px rgba(233, 230, 237, 0.55);
}

body.zenden-theme .zenden-cart-page .zenden-cart-coupon__feedback {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Rubik", sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.45;
}

body.zenden-theme .zenden-cart-page .zenden-cart-coupon__remove {
  margin-top: 14px;
  min-height: 48px;
}

body.zenden-theme .zenden-cart-page .zenden-cart-checkout-btn {
  width: 100%;
  margin-top: 26px;
  min-height: 62px;
  font-size: 22px;
  font-weight: 500;
}

body.zenden-theme .zenden-cart-page .zenden-cart-checkout-btn.is-disabled {
  opacity: 0.45;
  box-shadow: none;
}

body.zenden-theme .zenden-cart-page .zenden-cart-empty {
  padding: 60px 28px;
  text-align: center;
}

body.zenden-theme .zenden-cart-page .zenden-cart-empty__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin-bottom: 18px;
  border: 1px solid rgba(126, 112, 173, 0.42);
  color: #cfbfff;
  font-size: 34px;
}

body.zenden-theme .zenden-cart-page .zenden-cart-empty__title {
  margin: 0 0 12px;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 44px;
  font-weight: 300;
  line-height: 1;
}

body.zenden-theme .zenden-cart-page .zenden-cart-empty__text {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Rubik", sans-serif;
  font-size: 19px;
  font-weight: 300;
  line-height: 1.55;
}

body.zenden-theme .zenden-cart-page .zenden-cart-empty__btn {
  min-width: 240px;
}

body.zenden-theme .zenden-checkout-page {
  padding-top: 24px;
  padding-bottom: 84px;
}

body.zenden-theme .zenden-checkout-breadcrumbs {
  margin-bottom: 22px;
}

body.zenden-theme .zenden-checkout-breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.58);
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  font-weight: 300;
}

body.zenden-theme .zenden-checkout-breadcrumbs__list a,
body.zenden-theme .zenden-checkout-breadcrumbs__list span {
  color: inherit;
  text-decoration: none;
}

body.zenden-theme .zenden-checkout-wrap {
  max-width: 1400px;
}

body.zenden-theme .zenden-checkout-title {
  margin: 0 0 28px;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 72px;
  font-weight: 300;
  line-height: 0.95;
}

body.zenden-theme .zenden-checkout-alert {
  margin-bottom: 22px;
  padding: 18px 22px;
  border: 1px solid rgba(196, 87, 111, 0.4);
  background: rgba(86, 20, 37, 0.25);
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.55;
}

body.zenden-theme .zenden-checkout-alert ul {
  margin: 0;
  padding-left: 18px;
}

body.zenden-theme .zenden-checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
}

body.zenden-theme .zenden-checkout-main {
  display: grid;
  gap: 24px;
}

body.zenden-theme .zenden-checkout-card,
body.zenden-theme .zenden-checkout-sidebar {
  border: 1px solid rgba(119, 113, 136, 0.38);
  background: rgba(25, 20, 38, 0.94);
  box-shadow: 0 18px 55px rgba(8, 5, 18, 0.35);
}

body.zenden-theme .zenden-checkout-card {
  padding: 24px;
}

body.zenden-theme .zenden-checkout-card h2,
body.zenden-theme .zenden-checkout-sidebar h2 {
  margin: 0 0 18px;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
}

body.zenden-theme .zenden-checkout-grid {
  display: grid;
  gap: 18px;
}

body.zenden-theme .zenden-checkout-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.zenden-theme .zenden-field {
  min-width: 0;
}

body.zenden-theme .zenden-field--full {
  grid-column: 1 / -1;
}

body.zenden-theme .zenden-field--mb {
  margin-bottom: 18px;
}

body.zenden-theme .zenden-field label,
body.zenden-theme .zenden-checkbox span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-weight: 300;
}

body.zenden-theme .zenden-field input,
body.zenden-theme .zenden-field select,
body.zenden-theme .zenden-checkout-card textarea {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(126, 112, 173, 0.42);
  background: rgba(14, 11, 24, 0.98);
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 17px;
  font-weight: 300;
  box-sizing: border-box;
  outline: none;
  box-shadow: none;
}

body.zenden-theme .zenden-checkout-card textarea {
  min-height: 140px;
  padding-top: 16px;
  padding-bottom: 16px;
  resize: vertical;
}

body.zenden-theme .zenden-field input::placeholder,
body.zenden-theme .zenden-checkout-card textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

body.zenden-theme .zenden-field__hint,
body.zenden-theme .zenden-field__error {
  margin: 8px 0 0;
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.45;
}

body.zenden-theme .zenden-field__hint {
  color: rgba(255, 255, 255, 0.56);
}

body.zenden-theme .zenden-field__error {
  color: #f0a9c0;
}

body.zenden-theme .zenden-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

body.zenden-theme .zenden-checkbox input {
  width: 20px;
  height: 20px;
  min-height: 20px;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(207, 191, 255, 0.52);
  background: rgba(14, 11, 24, 0.98);
  position: relative;
}

body.zenden-theme .zenden-checkbox input:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  width: 5px;
  height: 10px;
  border-right: 2px solid #cfbfff;
  border-bottom: 2px solid #cfbfff;
  transform: rotate(45deg);
}

body.zenden-theme .zenden-checkbox span {
  margin: 0;
}

body.zenden-theme .zenden-options-list {
  display: grid;
  gap: 14px;
}

body.zenden-theme .zenden-option-row {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(126, 112, 173, 0.28);
  background: rgba(255, 255, 255, 0.03);
}

body.zenden-theme .zenden-option-row input[type="radio"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #cfbfff;
}

body.zenden-theme .zenden-option-row__title {
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 18px;
  font-weight: 400;
}

body.zenden-theme .zenden-option-row__desc,
body.zenden-theme .zenden-option-row__value,
body.zenden-theme .zenden-option-row i {
  color: rgba(255, 255, 255, 0.62);
  font-family: "Rubik", sans-serif;
  font-size: 15px;
  font-weight: 300;
}

body.zenden-theme .zenden-checkout-sidebar {
  position: sticky;
  top: 112px;
  padding: 24px;
}

body.zenden-theme .zenden-checkout-items {
  display: grid;
  gap: 12px;
}

body.zenden-theme .zenden-checkout-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(119, 113, 136, 0.22);
}

body.zenden-theme .zenden-checkout-item:last-child {
  border-bottom: 0;
}

body.zenden-theme .zenden-checkout-item img {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: cover;
  border: 1px solid rgba(119, 113, 136, 0.38);
}

body.zenden-theme .zenden-checkout-item__name {
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}

body.zenden-theme .zenden-checkout-item__attrs,
body.zenden-theme .zenden-checkout-item__qty {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-family: "Rubik", sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.4;
}

body.zenden-theme .zenden-checkout-item__total {
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-align: right;
}

body.zenden-theme .zenden-checkout-summary {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(119, 113, 136, 0.26);
}

body.zenden-theme .zenden-checkout-summary__row,
body.zenden-theme .zenden-checkout-summary__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 7px 0;
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.4;
}

body.zenden-theme .zenden-checkout-summary__row--discount {
  color: #cfbfff;
}

body.zenden-theme .zenden-checkout-summary__total {
  margin-top: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(119, 113, 136, 0.26);
  font-size: 24px;
  font-weight: 500;
}

body.zenden-theme .zenden-checkout-submit {
  width: 100%;
  margin-top: 20px;
  min-height: 62px;
  padding: 0 24px;
  border: 0;
  background: #e9e6ed;
  color: #383455;
  font-family: "Rubik", sans-serif;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  box-sizing: border-box;
  box-shadow: 0 0 22px rgba(233, 230, 237, 0.45);
  cursor: pointer;
}

body.zenden-theme .zenden-checkout-safe {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  font-weight: 300;
}

body.zenden-theme .zenden-add-popup-overlay,
body.zenden-theme .zenden-modal-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(5, 3, 11, 0.72);
  backdrop-filter: blur(8px);
  z-index: 999999;
}

body.zenden-theme .zenden-add-popup,
body.zenden-theme .zenden-modal {
  width: min(560px, calc(100vw - 32px));
  border: 1px solid rgba(119, 113, 136, 0.42);
  background: linear-gradient(180deg, rgba(19, 15, 31, 0.98) 0%, rgba(11, 8, 20, 0.98) 100%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
  color: #fff;
}

body.zenden-theme .zenden-add-popup {
  padding: 30px 28px 26px;
  text-align: center;
}

body.zenden-theme .zenden-add-popup__icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(207, 191, 255, 0.34);
  background: rgba(207, 191, 255, 0.08);
  color: #cfbfff;
  font-size: 28px;
  box-shadow: 0 0 28px rgba(207, 191, 255, 0.22);
}

body.zenden-theme .zenden-add-popup__title,
body.zenden-theme .zenden-modal__title {
  margin: 0 0 16px;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
}

body.zenden-theme .zenden-add-popup__product {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin: 0 auto 24px;
  padding: 20px 18px;
  border: 1px solid rgba(119, 113, 136, 0.3);
  background: rgba(255, 255, 255, 0.03);
}

body.zenden-theme .zenden-add-popup__product img {
  display: block;
  width: 180px;
  height: 180px;
  object-fit: cover;
  border: 1px solid rgba(119, 113, 136, 0.34);
  background: rgba(13, 10, 23, 0.95);
}

body.zenden-theme .zenden-add-popup__product-meta {
  width: 100%;
}

body.zenden-theme .zenden-add-popup__product-name,
body.zenden-theme .zenden-add-popup__product-qty,
body.zenden-theme .zenden-modal__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-family: "Rubik", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.55;
}

body.zenden-theme .zenden-add-popup__product-name {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 8px;
}

body.zenden-theme .zenden-add-popup__actions,
body.zenden-theme .zenden-modal__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

body.zenden-theme .zenden-add-popup__btn,
body.zenden-theme .zenden-modal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid rgba(119, 113, 136, 0.42);
  background: transparent;
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
  transition: all 0.25s ease;
}

body.zenden-theme .zenden-add-popup__btn--primary,
body.zenden-theme .zenden-add-popup__btn--muted,
body.zenden-theme .zenden-modal__btn--muted {
  background: #e9e6ed;
  color: #383455;
  border-color: transparent;
  box-shadow: 0 0 22px rgba(233, 230, 237, 0.45);
}

body.zenden-theme .zenden-modal {
  padding: 28px 26px 24px;
  text-align: center;
}

body.zenden-theme .zenden-modal__text {
  margin-bottom: 22px;
}

body.zenden-theme .zenden-modal__btn--danger {
  border-color: rgba(205, 88, 112, 0.4);
  color: #ffcad7;
  background: rgba(124, 28, 49, 0.22);
}

body.zenden-theme .zenden-flash-wrap {
  position: relative;
  z-index: 40;
  padding-top: 18px;
}

body.zenden-theme .zenden-flash {
  margin-bottom: 14px;
  padding: 18px 22px;
  border: 1px solid rgba(119, 113, 136, 0.38);
  background: rgba(25, 20, 38, 0.94);
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.55;
  box-shadow: 0 12px 34px rgba(8, 5, 18, 0.28);
}

body.zenden-theme .zenden-flash--success {
  border-color: rgba(111, 196, 152, 0.34);
  color: #d7ffea;
}

body.zenden-theme .zenden-flash--error {
  border-color: rgba(196, 87, 111, 0.4);
  color: #ffd5df;
}

body.zenden-theme .zenden-flash ul {
  margin: 0;
  padding-left: 18px;
}

@media (max-width: 980px) {
  body.zenden-theme .zenden-cart-page .zenden-cart-layout {
    grid-template-columns: 1fr;
  }

  body.zenden-theme .zenden-cart-page .zenden-cart-summary {
    position: static;
  }
}

@media (max-width: 720px) {
  body.zenden-theme .zenden-cart-page {
    padding-top: 18px;
    padding-bottom: 56px;
  }

  body.zenden-theme .zenden-cart-page .zenden-cart-hero {
    margin-bottom: 24px;
  }

  body.zenden-theme .zenden-cart-page .zenden-cart-hero__title {
    font-size: 48px;
  }

  body.zenden-theme .zenden-cart-page .zenden-cart-hero__hint {
    font-size: 16px;
  }

  body.zenden-theme .zenden-cart-page .zenden-cart-items,
  body.zenden-theme .zenden-cart-page .zenden-cart-summary,
  body.zenden-theme .zenden-cart-page .zenden-cart-empty {
    padding-left: 16px;
    padding-right: 16px;
  }

  body.zenden-theme .zenden-cart-page .zenden-cart-item {
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 14px;
  }

  body.zenden-theme .zenden-cart-page .zenden-cart-item__select {
    padding-top: 8px;
    align-items: flex-start;
  }

  body.zenden-theme .zenden-cart-page .zenden-cart-item__image {
    width: 100%;
    margin-bottom: 14px;
    text-align: center;
  }

  body.zenden-theme .zenden-cart-page .zenden-cart-item__image picture {
    display: inline-block;
    width: auto;
  }

  body.zenden-theme .zenden-cart-page .zenden-cart-item__footer,
  body.zenden-theme .zenden-cart-page .zenden-cart-item__left,
  body.zenden-theme .zenden-cart-page .zenden-cart-item__right,
  body.zenden-theme .zenden-cart-page .zenden-cart-coupon__form {
    flex-direction: column;
    align-items: stretch;
  }

  body.zenden-theme .zenden-cart-page .zenden-cart-item__content {
    text-align: center;
  }

  body.zenden-theme .zenden-cart-page .zenden-cart-item__title {
    font-size: 24px;
  }

  body.zenden-theme .zenden-cart-page .zenden-cart-item__meta,
  body.zenden-theme .zenden-cart-page .zenden-cart-item__sku {
    font-size: 15px;
  }

  body.zenden-theme .zenden-cart-page .zenden-cart-qty,
  body.zenden-theme .zenden-cart-page .zenden-cart-item__remove,
  body.zenden-theme .zenden-cart-page .zenden-cart-coupon__apply,
  body.zenden-theme .zenden-cart-page .zenden-cart-coupon__remove,
  body.zenden-theme .zenden-cart-page .zenden-cart-checkout-btn,
  body.zenden-theme .zenden-cart-page .zenden-cart-empty__btn {
    width: 100%;
  }

  body.zenden-theme .zenden-cart-page .zenden-cart-summary__row,
  body.zenden-theme .zenden-cart-page .zenden-cart-summary__total {
    font-size: 16px;
  }

  body.zenden-theme .zenden-checkout-page {
    padding-top: 18px;
    padding-bottom: 56px;
  }

  body.zenden-theme .zenden-checkout-title {
    font-size: 48px;
    margin-bottom: 20px;
  }

  body.zenden-theme .zenden-checkout-layout,
  body.zenden-theme .zenden-checkout-grid--2,
  body.zenden-theme .zenden-option-row,
  body.zenden-theme .zenden-checkout-item {
    grid-template-columns: 1fr;
  }

  body.zenden-theme .zenden-checkout-card,
  body.zenden-theme .zenden-checkout-sidebar {
    padding: 18px 16px;
  }

  body.zenden-theme .zenden-checkout-sidebar {
    position: static;
  }

  body.zenden-theme .zenden-option-row {
    gap: 8px;
  }

  body.zenden-theme .zenden-checkout-item {
    text-align: center;
  }

  body.zenden-theme .zenden-checkout-item img {
    margin: 0 auto;
  }

  body.zenden-theme .zenden-checkout-item__total {
    text-align: center;
  }

  body.zenden-theme .zenden-checkout-summary__row,
  body.zenden-theme .zenden-checkout-summary__total {
    font-size: 16px;
  }

  body.zenden-theme .zenden-checkout-submit {
    min-height: 56px;
    font-size: 19px;
  }

  body.zenden-theme .zenden-add-popup,
  body.zenden-theme .zenden-modal {
    padding-left: 18px;
    padding-right: 18px;
  }

  body.zenden-theme .zenden-add-popup__title,
  body.zenden-theme .zenden-modal__title {
    font-size: 34px;
  }

  body.zenden-theme .zenden-add-popup__actions,
  body.zenden-theme .zenden-modal__actions {
    flex-direction: column;
  }

  body.zenden-theme .zenden-add-popup__btn,
  body.zenden-theme .zenden-modal__btn {
    width: 100%;
  }

  body.zenden-theme .zenden-add-popup__product img {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 1200px) {
  body.zenden-theme .zenden-categories-grid .overflow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.zenden-theme .zenden-catalog-results ul.products.columns-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.zenden-theme .zenden-catalog-header .title_m {
    font-size: 52px;
  }
}

@media (max-width: 1024px) {
  body.zenden-theme .zenden-catalog-toolbar {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 12px;
  }

  body.zenden-theme .zenden-catalog-toolbar__left,
  body.zenden-theme .zenden-catalog-toolbar__right {
    width: 100%;
    justify-content: space-between;
  }

  body.zenden-theme .zenden-filter-block--actions {
    justify-content: flex-start;
    width: 100%;
  }

  body.zenden-theme .zenden-catalog-results ul.products.columns-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.zenden-theme .zenden-catalog-header .title_m {
    font-size: 44px;
  }
}

@media (max-width: 718px) {
  body.zenden-theme .zenden-catalog-page .center {
    padding: 0 12px;
  }

  body.zenden-theme .zenden-categories-grid .overflow {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  body.zenden-theme .zenden-catalog-toolbar__left,
  body.zenden-theme .zenden-catalog-toolbar__right {
    justify-content: flex-start;
  }

  body.zenden-theme .zenden-currency-form,
  body.zenden-theme .zenden-sort-form {
    width: 100%;
  }

  body.zenden-theme .zenden-currency-form select,
  body.zenden-theme .zenden-sort-form select {
    min-width: 0;
    width: 100%;
  }

  body.zenden-theme .zenden-catalog-page {
    padding-top: 12px;
  }

  body.zenden-theme .zenden-catalog-filters {
    padding: 14px;
  }

  body.zenden-theme .zenden-filter-row--top {
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  body.zenden-theme .zenden-filter-group {
    min-width: 100%;
    max-height: none;
    overflow: visible;
  }

  body.zenden-theme .zenden-catalog-results ul.products.columns-4 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  body.zenden-theme .zenden-catalog-header .title_m {
    font-size: 36px;
  }
}

body.zenden-theme .zenden-learning-product-page {
  padding-top: 0;
}

body.zenden-theme .zenden-learning-header {
  position: relative;
  height: 610px;
  overflow: hidden;
  background: #090714;
}

body.zenden-theme .zenden-learning-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .52);
  z-index: 1;
}

body.zenden-theme .zenden-learning-header__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

body.zenden-theme .zenden-learning-header__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.zenden-theme .zenden-learning-header .center {
  position: relative;
  z-index: 2;
  height: 100%;
}

body.zenden-theme .zenden-learning-header .center .breadcrumbs {
  padding-top: 65px;
}

body.zenden-theme .zenden-learning-header .center .breadcrumbs a {
  font-size: 14px;
  text-transform: uppercase;
}

body.zenden-theme .zenden-learning-header .center .breadcrumbs a i {
  margin-right: 13px;
}

body.zenden-theme .zenden-learning-header .caption {
  width: 100%;
  bottom: 30px;
}

body.zenden-theme .zenden-learning-header .headline {
  padding-right: 320px;
  border-bottom: 1px solid rgba(250, 250, 250, .2);
}

body.zenden-theme .zenden-learning-header .headline .title {
  max-width: 980px;
  font-size: 60px;
  line-height: 1;
  margin-bottom: 20px;
}

body.zenden-theme .zenden-learning-header .headline .description {
  max-width: 940px;
  font-size: 20px;
  margin-bottom: 46px;
}

body.zenden-theme .zenden-learning-header .event-date.is-hidden {
  display: none;
}

body.zenden-theme .zenden-learning-header .is-countdown.visible {
  display: block;
}

body.zenden-theme .zenden-learning-header .is-countdown {
  position: absolute;
  right: 0;
  top: 15px;
}

body.zenden-theme .zenden-learning-header .is-countdown span {
  display: block;
}

body.zenden-theme .zenden-learning-header .is-countdown .countdown-section {
  float: left;
  margin-right: 22px;
}

body.zenden-theme .zenden-learning-header .is-countdown .countdown-section:nth-last-of-type(1) {
  margin-right: 0;
}

body.zenden-theme .zenden-learning-header .is-countdown .countdown-section:nth-last-of-type(1) .countdown-amount::after {
  display: none;
}

body.zenden-theme .zenden-learning-header .is-countdown .countdown-section .countdown-amount {
  width: 60px;
  padding-bottom: 12px;
  font-family: "Oswald", sans-serif;
  font-size: 50px;
  font-weight: 300;
  text-align: center;
  position: relative;
}

body.zenden-theme .zenden-learning-header .is-countdown .countdown-section .countdown-amount::after {
  content: ":";
  position: absolute;
  left: 130%;
  top: 0;
}

body.zenden-theme .zenden-learning-header .is-countdown .countdown-section .countdown-period {
  font-size: 15px;
  font-weight: 300;
  text-align: center;
  text-transform: lowercase;
  color: #fff;
}

body.zenden-theme .zenden-learning-header .event-date {
  position: relative;
  text-align: left;
  font-size: 18px;
}

body.zenden-theme .zenden-learning-header .panel_b {
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

body.zenden-theme .zenden-learning-header .panel_b .left {
  max-width: 70%;
  color: #fff;
  font-size: 20px;
  padding-top: 0;
  display: flex;
  align-items: center;
  min-height: 62px;
}

body.zenden-theme .zenden-learning-header .zenden-learning-prices {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0;
}

body.zenden-theme .zenden-learning-header .zenden-learning-prices--inline {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  column-gap: 18px;
  row-gap: 0;
  white-space: nowrap;
}

body.zenden-theme .zenden-learning-header .zenden-learning-prices__date,
body.zenden-theme .zenden-learning-header .zenden-learning-prices__fulltext,
body.zenden-theme .zenden-learning-header .zenden-learning-prices__prepayment {
  display: inline-block;
  color: #fff;
  font-size: 20px;
  line-height: 1.25;
}

body.zenden-theme .zenden-learning-header .zenden-learning-prices__fulltext {
  font-weight: 300;
}

body.zenden-theme .zenden-learning-header .zenden-learning-prices__prepayment {
  font-weight: 300;
  font-size: 18px;
  opacity: .95;
  white-space: nowrap;
}

body.zenden-theme .zenden-learning-header .zenden-learning-prices .sep {
  display: inline-block;
  width: 38px;
  height: 51px;
  position: relative;
  flex: 0 0 38px;
}

body.zenden-theme .zenden-learning-header .zenden-learning-prices .sep::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 45px;
  left: 18px;
  top: 1px;
  background: rgba(250, 250, 250, .2);
  transform: skew(-8deg, 0deg);
}

body.zenden-theme .zenden-learning-header .zenden-learning-prices__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

body.zenden-theme .zenden-learning-header .zenden-learning-prices__item--secondary .zenden-learning-prices__value {
  color: #cfbfff;
  font-size: 26px;
  line-height: 1.1;
}

body.zenden-theme .zenden-learning-header .zenden-learning-prices__label {
  color: #8d8799;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

body.zenden-theme .zenden-learning-header .panel_b .buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 0;
  min-height: 62px;
  flex: 0 0 auto;
}

body.zenden-theme .zenden-learning-header .panel_b .buttons .button {
  margin: 0;
  background: #e9e6ed !important;
  color: #302946 !important;
  min-width: 270px;
  text-align: center;
}

body.zenden-theme .zenden-learning-sign-up.is-in-cart {
  background: #e9e6ed;
  color: #302946;
}

body.zenden-theme .zenden-learning-countdown .countdown-amount,
body.zenden-theme .zenden-learning-header .event-date {
  text-shadow: 0 0 18px rgba(255, 255, 255, .22);
}

body.zenden-theme .zenden-learning-body {
  padding-top: 52px;
}

body.zenden-theme .zenden-learning-body .tabs_block {
  min-height: 220px;
}

body.zenden-theme .zenden-learning-body .section_menu {
  margin-bottom: 34px;
}

body.zenden-theme .zenden-learning-tabs .tabs__content {
  display: none;
  padding-top: 14px;
}

body.zenden-theme .zenden-learning-tabs .tabs__content.current {
  display: block;
}

body.zenden-theme .zenden-learning-body .summary_message {
  margin-top: 50px;
}

body.zenden-theme .zenden-learning-program__day-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

body.zenden-theme .zenden-learning-program__day-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .04);
  color: #ffffff;
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: .2s ease;
}

body.zenden-theme .zenden-learning-program__day-tab:hover,
body.zenden-theme .zenden-learning-program__day-tab.is-active {
  border-color: rgba(233, 230, 237, .85);
  background: #e9e6ed;
  color: #302946;
}

body.zenden-theme .zenden-learning-program__day {
  margin-bottom: 34px;
}

body.zenden-theme .zenden-learning-program__day:last-child {
  margin-bottom: 0;
}

body.zenden-theme .zenden-learning-program__day-title {
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 34px;
  line-height: 1;
  margin-bottom: 18px;
}

body.zenden-theme .zenden-learning-program__item {
  margin-bottom: 18px;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .03);
}

body.zenden-theme .zenden-learning-program__item:last-child {
  margin-bottom: 0;
}

body.zenden-theme .zenden-learning-program__day-panel[x-cloak] {
  display: none !important;
}

body.zenden-theme .zenden-learning-program__time {
  color: #cfbfff;
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 12px;
}

body.zenden-theme .zenden-learning-program__content,
body.zenden-theme .zenden-learning-program__content p,
body.zenden-theme .zenden-learning-program__content li,
body.zenden-theme .zenden-learning-body .article,
body.zenden-theme .zenden-learning-body .article p,
body.zenden-theme .zenden-learning-body .article li {
  color: #fff;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 300;
}

body.zenden-theme .zenden-learning-related {
  padding-top: 24px;
}

body.zenden-theme .zenden-learning-related .products.columns-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.zenden-theme .zenden-learning-related .product {
  margin: 0;
}

body.zenden-theme .zenden-learning-related .img {
  height: 240px;
  overflow: hidden;
}

body.zenden-theme .zenden-learning-related .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.zenden-theme .zenden-learning-related .caption {
  min-height: 126px;
}

body.zenden-theme .zenden-learning-comments {
  padding-top: 28px;
}

body.zenden-theme .zenden-learning-comments .zenden-reviews {
  padding: 34px 38px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .03);
}

body.zenden-theme .zenden-learning-comments .zenden-reviews__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

body.zenden-theme .zenden-learning-comments .zenden-reviews__title,
body.zenden-theme .zenden-learning-comments .zenden-reviews__author,
body.zenden-theme .zenden-learning-comments .zenden-reviews__item-title,
body.zenden-theme .zenden-learning-comments .zenden-reviews__reply-author {
  color: #fff;
}

body.zenden-theme .zenden-learning-comments .zenden-reviews__title {
  font-family: "Oswald", sans-serif;
  font-size: 42px;
  line-height: 1;
  margin: 0 0 12px;
}

body.zenden-theme .zenden-learning-comments .zenden-reviews__rating-meta,
body.zenden-theme .zenden-learning-comments .zenden-reviews__meta,
body.zenden-theme .zenden-learning-comments .zenden-reviews__count,
body.zenden-theme .zenden-learning-comments .zenden-reviews__distribution-count,
body.zenden-theme .zenden-learning-comments .zenden-reviews__empty-note,
body.zenden-theme .zenden-learning-comments .zenden-reviews__locked p {
  color: rgba(255, 255, 255, .65);
}

body.zenden-theme .zenden-learning-comments .zenden-reviews__avg {
  color: #cfbfff;
  font-size: 24px;
}

body.zenden-theme .zenden-learning-comments .zenden-reviews__stars i,
body.zenden-theme .zenden-learning-comments .zenden-reviews__distribution-label i {
  color: #cfbfff;
}

body.zenden-theme .zenden-learning-comments .zenden-reviews__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 26px;
  border: 1px solid rgba(255, 255, 255, .16);
  text-decoration: none;
  transition: .2s ease;
}

body.zenden-theme .zenden-learning-comments .zenden-reviews__btn--primary,
body.zenden-theme .zenden-learning-comments .zenden-reviews__btn--muted {
  background: #e9e6ed;
  color: #302946;
}

body.zenden-theme .zenden-learning-comments .zenden-reviews__btn--disabled {
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .45);
}

body.zenden-theme .zenden-learning-comments .zenden-reviews__distribution {
  margin-bottom: 28px;
}

body.zenden-theme .zenden-learning-comments .zenden-reviews__distribution-row {
  display: grid;
  grid-template-columns: 56px 1fr 40px;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

body.zenden-theme .zenden-learning-comments .zenden-reviews__distribution-track {
  height: 8px;
  background: rgba(255, 255, 255, .08);
}

body.zenden-theme .zenden-learning-comments .zenden-reviews__distribution-fill {
  height: 100%;
  background: linear-gradient(90deg, #cfbfff 0%, #7d6cff 100%);
}

body.zenden-theme .zenden-learning-comments .zenden-reviews__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

body.zenden-theme .zenden-learning-comments .zenden-reviews__item {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

body.zenden-theme .zenden-learning-comments .zenden-reviews__avatar {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(207, 191, 255, .18);
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 28px;
}

body.zenden-theme .zenden-learning-comments .zenden-reviews__item-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
}

body.zenden-theme .zenden-learning-comments .zenden-reviews__comment,
body.zenden-theme .zenden-learning-comments .zenden-reviews__reply p,
body.zenden-theme .zenden-learning-comments .zenden-reviews__empty p,
body.zenden-theme .zenden-learning-comments .zenden-reviews__locked p {
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
}

body.zenden-theme .zenden-learning-comments .zenden-reviews__pros-cons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 16px 0;
}

body.zenden-theme .zenden-learning-comments .zenden-reviews__pros,
body.zenden-theme .zenden-learning-comments .zenden-reviews__cons,
body.zenden-theme .zenden-learning-comments .zenden-reviews__reply {
  padding: 18px 20px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
}

body.zenden-theme .zenden-learning-comments .zenden-reviews__pros-title,
body.zenden-theme .zenden-learning-comments .zenden-reviews__cons-title {
  color: #cfbfff;
  margin-bottom: 10px;
}

body.zenden-theme .zenden-learning-comments .zenden-reviews__pros ul,
body.zenden-theme .zenden-learning-comments .zenden-reviews__cons ul {
  margin: 0;
  padding-left: 18px;
  color: #fff;
}

body.zenden-theme .zenden-learning-comments .zenden-reviews__images {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

body.zenden-theme .zenden-learning-comments .zenden-reviews__image img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  display: block;
}

body.zenden-theme .zenden-learning-comments .zenden-reviews__vote-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  color: rgba(255, 255, 255, .7);
}

body.zenden-theme .zenden-learning-comments .zenden-reviews__vote-buttons {
  display: flex;
  gap: 10px;
}

body.zenden-theme .zenden-learning-comments .zenden-reviews__vote-btn {
  min-width: 52px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  color: #fff;
}

body.zenden-theme .zenden-learning-comments .zenden-reviews__reply {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  margin-top: 18px;
}

body.zenden-theme .zenden-learning-comments .zenden-reviews__reply-icon {
  color: #cfbfff;
  font-size: 20px;
}

body.zenden-theme .zenden-learning-comments .zenden-reviews__empty {
  padding: 18px 0 6px;
  text-align: center;
}

body.zenden-theme .zenden-learning-comments .zenden-reviews__more {
  margin-top: 28px;
}

body.zenden-theme .zenden-learning-location {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

body.zenden-theme .zenden-learning-location__address,
body.zenden-theme .zenden-learning-location__map {
  padding: 24px 28px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .03);
}

body.zenden-theme .zenden-learning-location__label {
  margin-bottom: 12px;
  color: #cfbfff;
  font-family: "Oswald", sans-serif;
  font-size: 28px;
  line-height: 1;
}

body.zenden-theme .zenden-learning-location__text,
body.zenden-theme .zenden-learning-location__text p {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.55;
}

body.zenden-theme .zenden-learning-location__map iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}

body.zenden-theme .zenden-learning-modal {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

body.zenden-theme .zenden-learning-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .74);
}

body.zenden-theme .zenden-learning-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 0;
  background: #0e0a1c;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 20px;
  padding: 38px 34px 34px;
  z-index: 1;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .52);
}

body.zenden-theme .zenden-learning-modal__close {
  position: absolute;
  right: 16px;
  top: 16px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

body.zenden-theme .zenden-learning-modal__title {
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 44px;
  line-height: 1;
  margin-bottom: 24px;
}

body.zenden-theme .zenden-learning-form-row {
  margin-bottom: 14px;
}

body.zenden-theme .zenden-learning-webinar-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 16px;
  row-gap: 0;
  width: 100%;
  min-width: 0;
}

body.zenden-theme .zenden-learning-form-row--full {
  grid-column: 1 / -1;
}

body.zenden-theme .zenden-learning-webinar-form .zenden-learning-form-row,
body.zenden-theme .zenden-learning-webinar-form .zenden-learning-modal__actions {
  min-width: 0;
}

body.zenden-theme .zenden-learning-form-row input,
body.zenden-theme .zenden-learning-form-row textarea {
  width: 100%;
  min-height: 62px;
  box-sizing: border-box;
  padding: 18px 22px;
  color: #fff;
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .16);
  outline: 0;
}

body.zenden-theme .zenden-learning-form-row textarea {
  min-height: 160px;
  resize: vertical;
}

body.zenden-theme .zenden-learning-form-row input::placeholder,
body.zenden-theme .zenden-learning-form-row textarea::placeholder {
  color: #a09da8;
}

body.zenden-theme .zenden-learning-modal__actions.zenden-learning-form-row--full {
  padding-top: 10px;
}

body.zenden-theme .zenden-learning-modal__actions.zenden-learning-form-row--full .zenden-learning-button {
  width: 100%;
  box-sizing: border-box;
  justify-content: center;
}

body.zenden-theme .zenden-learning-form-actions {
  padding-top: 8px;
}

body.zenden-theme .zenden-learning-form-actions .zenden-learning-button {
  background: #e9e6ed !important;
  color: #302946 !important;
}

@media (max-width: 1200px) {
  body.zenden-theme .zenden-learning-header .headline {
    padding-right: 0;
  }

  body.zenden-theme .zenden-learning-related .products.columns-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  body.zenden-theme .zenden-learning-header {
    height: auto;
    min-height: 610px;
  }

  body.zenden-theme .zenden-learning-header .caption {
    position: relative;
    bottom: auto;
    padding: 170px 0 30px;
  }

  body.zenden-theme .zenden-learning-header .is-countdown,
  body.zenden-theme .zenden-learning-header .event-date {
    text-align: left;
    margin-bottom: 20px;
  }

  body.zenden-theme .zenden-learning-header .is-countdown {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0 auto 24px;
  }

  body.zenden-theme .zenden-learning-header .is-countdown .countdown-row {
    display: flex;
    justify-content: center;
  }

  body.zenden-theme .zenden-learning-header .panel_b .left,
  body.zenden-theme .zenden-learning-header .panel_b .buttons {
    max-width: none;
  }

  body.zenden-theme .zenden-learning-header .panel_b {
    display: block;
  }

  body.zenden-theme .zenden-learning-header .panel_b .buttons {
    padding-top: 16px;
    min-height: 0;
    justify-content: center;
  }

  body.zenden-theme .zenden-learning-header .panel_b .left {
    max-width: none;
    min-height: 0;
    justify-content: center;
  }

  body.zenden-theme .zenden-learning-header .zenden-learning-prices--inline {
    flex-wrap: wrap;
    gap: 10px 0;
    white-space: normal;
  }

  body.zenden-theme .zenden-learning-header .zenden-learning-prices .sep::after {
    display: none;
  }

  body.zenden-theme .zenden-learning-header .panel_b .buttons .button {
    min-width: 0;
  }
}

@media (max-width: 720px) {
  body.zenden-theme .zenden-product-page .zenden-product-panel {
    display: block;
  }

  body.zenden-theme .zenden-product-page .zenden-product-panel .buttons {
    display: block;
    margin-top: 14px;
  }

  body.zenden-theme .zenden-product-page .zenden-cart-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  body.zenden-theme .zenden-product-page .zenden-qty {
    width: 100%;
    min-width: 0;
  }

  body.zenden-theme .zenden-product-page .zenden-qty input {
    width: 100%;
    min-width: 0;
  }

  body.zenden-theme .zenden-product-page .zenden-add-to-cart {
    width: 100%;
    min-width: 0;
  }

  body.zenden-theme .zenden-product-page .zenden-product-actions {
    justify-content: center;
  }

  body.zenden-theme .zenden-product-page .zenden-product-tabs .section_menu {
    gap: 0;
  }

  body.zenden-theme .zenden-product-page .zenden-product-tabs .section_menu li {
    margin-right: 18px;
  }

  body.zenden-theme .zenden-product-page .zenden-product-tabs .section_menu li:last-child {
    margin-right: 0;
  }

  body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews {
    padding: 24px 20px;
  }

  body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__header,
  body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__item-header,
  body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__vote-row,
  body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__pros-cons {
    display: block;
  }

  body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__item {
    grid-template-columns: 1fr;
  }

  body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__avatar {
    margin-bottom: 12px;
  }

  body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__title {
    font-size: 32px;
  }

  body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__comment,
  body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__reply p,
  body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__empty p,
  body.zenden-theme .zenden-product-page .zenden-reviews-theme .zenden-reviews__locked p {
    font-size: 16px;
  }

  body.zenden-theme .zenden-product-speaker__card {
    grid-template-columns: 1fr;
  }

  body.zenden-theme .zenden-linked-carousel__prev {
    left: -52px;
  }

  body.zenden-theme .zenden-linked-carousel__next {
    right: -52px;
  }

  body.zenden-theme .zenden-product-speaker__media {
    min-height: 260px;
  }

  body.zenden-theme .zenden-product-speaker__body h2 {
    font-size: 38px;
  }

  body.zenden-theme .zenden-learning-body {
    padding-top: 34px;
  }

  body.zenden-theme .zenden-learning-header .center .breadcrumbs {
    padding-top: 28px;
  }

  body.zenden-theme .zenden-learning-header .headline .title {
    font-size: 44px;
    margin-bottom: 16px;
  }

  body.zenden-theme .zenden-learning-header .headline .description {
    margin-bottom: 28px;
  }

  body.zenden-theme .zenden-learning-header .is-countdown .countdown-section {
    margin-right: 14px;
  }

  body.zenden-theme .zenden-learning-header .is-countdown .countdown-section .countdown-amount {
    width: 42px;
    font-size: 34px;
  }

  body.zenden-theme .zenden-learning-header .is-countdown .countdown-section .countdown-period {
    font-size: 12px;
  }

  body.zenden-theme .zenden-learning-header .zenden-learning-prices__date,
  body.zenden-theme .zenden-learning-header .zenden-learning-prices__fulltext,
  body.zenden-theme .zenden-learning-header .zenden-learning-prices__prepayment {
    font-size: 17px;
  }

  body.zenden-theme .zenden-learning-body .section_menu {
    margin-bottom: 26px;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    gap: 0;
  }

  body.zenden-theme .zenden-learning-body .section_menu li {
    flex: 0 0 auto;
    margin-right: 18px;
  }

  body.zenden-theme .zenden-learning-body .section_menu li:last-child {
    margin-right: 0;
  }

  body.zenden-theme .zenden-learning-header .headline .description,
  body.zenden-theme .zenden-learning-program__content,
  body.zenden-theme .zenden-learning-program__content p,
  body.zenden-theme .zenden-learning-program__content li,
  body.zenden-theme .zenden-learning-body .article,
  body.zenden-theme .zenden-learning-body .article p,
  body.zenden-theme .zenden-learning-body .article li {
    font-size: 16px;
  }

  body.zenden-theme .zenden-learning-program__day-title {
    font-size: 28px;
  }

  body.zenden-theme .zenden-learning-program__day-tabs {
    gap: 8px;
    margin-bottom: 18px;
  }

  body.zenden-theme .zenden-learning-program__day-tab {
    min-height: 42px;
    padding: 10px 14px;
    font-size: 18px;
  }

  body.zenden-theme .zenden-learning-program__time {
    font-size: 21px;
  }

  body.zenden-theme .zenden-learning-location__address,
  body.zenden-theme .zenden-learning-location__map {
    padding: 18px;
  }

  body.zenden-theme .zenden-learning-location__label {
    font-size: 22px;
  }

  body.zenden-theme .zenden-learning-location__text,
  body.zenden-theme .zenden-learning-location__text p {
    font-size: 16px;
  }

  body.zenden-theme .zenden-learning-location__map iframe {
    min-height: 300px;
  }

  body.zenden-theme .zenden-linked-carousel__prev,
  body.zenden-theme .zenden-linked-carousel__next {
    width: 58px;
    height: 84px;
    margin-top: -42px;
  }

  body.zenden-theme .zenden-linked-carousel__prev {
    left: -18px;
  }

  body.zenden-theme .zenden-linked-carousel__next {
    right: -18px;
  }

  body.zenden-theme .zenden-learning-related .products.columns-4 {
    grid-template-columns: 1fr;
  }

  body.zenden-theme .zenden-learning-modal__dialog {
    padding: 28px 18px 22px;
  }

  body.zenden-theme .zenden-learning-modal__title {
    font-size: 34px;
  }

  body.zenden-theme .zenden-learning-webinar-form {
    grid-template-columns: minmax(0, 1fr);
  }

  body.zenden-theme .zenden-learning-comments .zenden-reviews {
    padding: 24px 20px;
  }

  body.zenden-theme .zenden-learning-comments .zenden-reviews__header,
  body.zenden-theme .zenden-learning-comments .zenden-reviews__item-header,
  body.zenden-theme .zenden-learning-comments .zenden-reviews__vote-row,
  body.zenden-theme .zenden-learning-comments .zenden-reviews__pros-cons {
    display: block;
  }

  body.zenden-theme .zenden-learning-comments .zenden-reviews__item {
    grid-template-columns: 1fr;
  }

  body.zenden-theme .zenden-learning-comments .zenden-reviews__avatar {
    margin-bottom: 12px;
  }

  body.zenden-theme .zenden-learning-comments .zenden-reviews__title {
    font-size: 32px;
  }

  body.zenden-theme .zenden-learning-comments .zenden-reviews__comment,
  body.zenden-theme .zenden-learning-comments .zenden-reviews__reply p,
  body.zenden-theme .zenden-learning-comments .zenden-reviews__empty p,
  body.zenden-theme .zenden-learning-comments .zenden-reviews__locked p {
    font-size: 16px;
  }
}
