@charset "UTF-8";
/* ➤➤➤ InfoBlock ➤➤➤ */
/* Product   = Zeelant Layout
/* Module    = Controls
/* Copyright = Marat Ismaev
/* Evolution = 2022-02-22
/* ▲▲▲ InfoBlock ▲▲▲ */
/* ➤➤➤ Common ➤➤➤ */
.zlnt-scroller {
  overflow: hidden auto;
  scrollbar-width: thin;
  scrollbar-color: #d8d8d8 transparent;
  scrollbar-color: var(--zlnt-color-btn, #d8d8d8) transparent;
}
.zlnt-scroller::-webkit-scrollbar {
  width: 10px;
}
.zlnt-scroller::-webkit-scrollbar-track {
  background: transparent;
}
.zlnt-scroller::-webkit-scrollbar-thumb {
  background-color: #d8d8d8;
  background-color: var(--zlnt-color-btn, #d8d8d8);
}

.zlnt-scroller_hover {
  overflow: hidden auto;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}
.zlnt-scroller_hover:hover {
  scrollbar-color: #d8d8d8 transparent;
  scrollbar-color: var(--zlnt-color-btn, #d8d8d8) transparent;
}
.zlnt-scroller_hover::-webkit-scrollbar {
  width: 10px;
}
.zlnt-scroller_hover::-webkit-scrollbar-track {
  background: transparent;
}
.zlnt-scroller_hover::-webkit-scrollbar-thumb {
  background-color: transparent;
}
.zlnt-scroller_hover:hover::-webkit-scrollbar-thumb {
  background-color: #d8d8d8;
  background-color: var(--zlnt-color-btn, #d8d8d8);
}

/* ▲▲▲ Common ▲▲▲ */
/* ➤➤➤ Forms ➤➤➤ */
.zlnt-form {
  font-family: TikTok Sans, sans-serif;
  font-family: var(--zlnt-font-family, TikTok Sans, sans-serif);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  max-width: 800px;
  /*& > &__row:first-child,
  &__band-container > &__row:first-child
  {
  	padding-top: 0;
  }
  & > &__row:last-child,
  &__band-container > &__row:last-child
  {
  	padding-bottom: 0;
  }*/
}
.zlnt-form__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 8px 0 8px;
  padding: 4px 0 12px;
}
.zlnt-form__row:hover {
  background-color: rgba(0, 0, 0, 0.027);
}
@media screen and (max-width: 480px) {
  .zlnt-form__row {
    background-color: unset;
  }
  .zlnt-form__row:first-child {
    padding-top: 0;
  }
  .zlnt-form__row:last-child {
    padding-bottom: 0;
  }
}
.zlnt_compact-view .zlnt-form__row {
  background-color: unset;
}
.zlnt_compact-view .zlnt-form__row:first-child {
  padding-top: 0;
}
.zlnt_compact-view .zlnt-form__row:last-child {
  padding-bottom: 0;
}
.zlnt-form__name {
  width: 38%;
  margin-right: 8px;
  color: #75808e;
  color: var(--zlnt-color-land-humble, #75808e);
  font-size: 14px;
  font-weight: 500;
  line-height: inherit;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .zlnt-form__name {
    font-size: 12px;
    line-height: 20px;
    margin-right: 0;
  }
}
.zlnt_compact-view .zlnt-form__name {
  font-size: 12px;
  line-height: 20px;
  margin-right: 0;
}
.zlnt-form__value, .zlnt-form__editor {
  width: 62%;
  color: #192a43;
  color: var(--zlnt-color-land-loud, #192a43);
}
.zlnt-form__desc {
  font-size: 12px;
  line-height: 14px;
  padding-top: 4px;
  color: #75808e;
  color: var(--zlnt-color-land-humble, #75808e);
}
.zlnt-form__band {
  padding: 1px 0;
}
.zlnt-form__band-header {
  position: relative;
  padding: 8px 0 8px 0;
  color: #0070cc;
  color: var(--zlnt-color-link, #0070cc);
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.zlnt-form__band_collapsible .zlnt-form__band-header {
  cursor: pointer;
  padding-left: 1.5em;
}
.zlnt-form__band-header:hover {
  background-color: rgba(0, 0, 0, 0.027);
}
@media screen and (max-width: 480px) {
  .zlnt-form__band-header {
    background-color: unset;
  }
}
.zlnt_compact-view .zlnt-form__band-header {
  background-color: unset;
}
.zlnt-form__collapsible-icon {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -0.5em;
  width: 1em;
  height: 1em;
  line-height: 1em;
  font-size: 1em;
}
.zlnt-form__collapsible-icon::before {
  display: block;
  width: 1em;
  height: 1em;
  text-align: center;
  border-radius: 256px;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  content: "▴";
}
.zlnt-form__band.zlnt_collapsed .zlnt-form__collapsible-icon::before {
  content: "▾";
}

.zlnt-form__band.zlnt_collapsed .zlnt-form__band-container {
  display: none;
}
.zlnt-form__action-container:not(:first-child) {
  margin-top: 16px;
}
.zlnt-form__action-container:not(:last-child) {
  margin-bottom: 16px;
}
@media screen and (max-width: 480px) {
  .zlnt-form__band-title {
    padding: 9px 0 2px;
  }
  .zlnt-form__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .zlnt-form__name {
    width: 100%;
    margin-bottom: 0px;
  }
  .zlnt-form__value {
    width: 100%;
  }
  .zlnt-form__editor {
    width: 100%;
  }
  .zlnt-form__desc {
    padding-top: 2px;
  }
}
.zlnt_compact-view .zlnt-form__band-title {
  padding: 9px 0 2px;
}
.zlnt_compact-view .zlnt-form__row {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.zlnt_compact-view .zlnt-form__name {
  width: 100%;
  margin-bottom: 6px;
}
.zlnt_compact-view .zlnt-form__value {
  width: 100%;
}
.zlnt_compact-view .zlnt-form__editor {
  width: 100%;
}
.zlnt_compact-view .zlnt-form__desc {
  padding-top: 2px;
}
.zlnt-form a, .zlnt-form a:active {
  text-decoration: none;
}

/* ▲▲▲ Forms ▲▲▲ */
/* ➤➤➤ Dashboard ➤➤➤ */
.zlnt-dashboard {
  font-family: TikTok Sans, sans-serif;
  font-family: var(--zlnt-font-family, TikTok Sans, sans-serif);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  overflow: hidden;
}
.zlnt-dashboard__category {
  margin: 0 0 8px 24px;
  color: #192a43;
  color: var(--zlnt-color-primary, #192a43);
  font-size: 20px;
  font-size: var(--zlnt-font-size-h3, 20px);
  line-height: 28px;
  line-height: var(--zlnt-font-line-h3, 28px);
  font-weight: 400;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .zlnt-dashboard__category {
    margin: 0 0 0 16px;
  }
}
.zlnt-dashboard__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .zlnt-dashboard__items {
    gap: 10px;
  }
}
@media screen and (max-width: 480px) {
  .zlnt-dashboard__items {
    gap: 8px;
  }
}
.zlnt-dashboard__item {
  position: relative !important;
  border-radius: 4px;
  padding: 8px 24px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .zlnt-dashboard__item {
    padding: 16px 16px;
  }
}
.zlnt-dashboard__item_clickable:hover {
  background-color: rgba(0, 0, 0, 0.027);
}
.zlnt-dashboard_fixed .zlnt-dashboard__item {
  width: 210px;
}
.zlnt-dashboard__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.zlnt-dashboard__main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  overflow: hidden;
}
.zlnt-dashboard__num {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #192a43;
  color: var(--zlnt-color-primary, #192a43);
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
}
@media screen and (max-width: 1023px) {
  .zlnt-dashboard__num {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .zlnt-dashboard__num {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  .zlnt-dashboard__num {
    font-size: 24px;
  }
}
.zlnt-dashboard__measure {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #475569;
  color: var(--zlnt-color-secondary, #475569);
  font-size: 24px;
  font-weight: 600;
}
@media screen and (max-width: 1023px) {
  .zlnt-dashboard__measure {
    font-size: 20px;
  }
}
@media screen and (max-width: 480px) {
  .zlnt-dashboard__measure {
    font-size: 14px;
  }
}
.zlnt-dashboard__delta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 2px 10px;
  border-radius: 24px;
  margin-top: 6px;
  color: #192a43;
  background: #edeff0;
  background: rgba(25, 42, 67, 0.08);
  font-family: TikTok Sans, sans-serif;
  font-family: var(--zlnt-font-family-mono, TikTok Sans, sans-serif);
  font-weight: 500;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 0.36px;
  text-transform: uppercase;
  white-space: nowrap;
}
.zlnt-dashboard__delta_up {
  color: #fff;
  background: #40DF93;
}
.zlnt-dashboard__delta_down {
  color: #fff;
  background: #EA5E5E;
}
@media screen and (max-width: 1023px) {
  .zlnt-dashboard__delta {
    margin-top: 4px;
  }
}
@media screen and (max-width: 767px) {
  .zlnt-dashboard__delta {
    margin-top: 2px;
  }
}
@media screen and (max-width: 480px) {
  .zlnt-dashboard__delta {
    margin-top: 0;
  }
}
.zlnt-dashboard__desc {
  display: block;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #75808e;
  color: var(--zlnt-color-tertiary, #75808e);
}
@media screen and (max-width: 1023px) {
  .zlnt-dashboard__desc {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .zlnt-dashboard__desc {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .zlnt-dashboard__desc {
    font-size: 13px;
  }
}
.zlnt-dashboard_fixed .zlnt-dashboard__desc {
  white-space: normal;
  height: 48px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.zlnt-dashboard a, .zlnt-dashboard a:active, .zlnt-dashboard a:hover, .zlnt-dashboard a:focus {
  text-decoration: none;
}
.zlnt-dashboard a.zlnt-dashboard__main::after,
.zlnt-dashboard a.zlnt-dashboard__num::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.zlnt-dashboard a.zlnt-dashboard__delta {
  position: relative;
}

/* ▲▲▲ Dashboard ▲▲▲ */
/* ➤➤➤ Nav panel ➤➤➤ */
.zlnt-navpan {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .zlnt-navpan {
    gap: 8px;
  }
}
.zlnt-navpan__group {
  padding: 0 0 0 24px;
}
@media screen and (max-width: 767px) {
  .zlnt-navpan__group {
    padding: 0 0 0 8px;
  }
}
.zlnt-navpan__category {
  margin: 0 0 8px 0;
  color: #192a43;
  color: var(--zlnt-color-primary, #192a43);
  font-size: 20px;
  font-size: var(--zlnt-font-size-h3, 20px);
  line-height: 28px;
  line-height: var(--zlnt-font-line-h3, 28px);
  font-weight: 400;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .zlnt-navpan__category {
    margin: 0 0 4px 0;
  }
}
.zlnt-navpan__items {
  color: #0070cc;
  color: var(--zlnt-color-link, #0070cc);
}
.zlnt-navpan__item {
  white-space: nowrap;
}
.zlnt-navpan a, .zlnt-navpan a:active, .zlnt-navpan a:hover, .zlnt-navpan a:focus {
  text-decoration: none;
  color: inherit;
}

/* ▲▲▲ Nav panel ▲▲▲ */
/* ➤➤➤ FaceView, FaceCarousel ➤➤➤ */
.zlnt-face-grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 24px;
}
@media screen and (max-width: 480px) {
  .zlnt-face-grid {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
  }
  .zlnt-face-grid:not(.zlnt_img-xl):not(.zlnt_img-l):not(.zlnt_img-m):not(.zlnt_img-s):not(.zlnt_img-xs) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.zlnt-face-grid__item {
  display: inline-block;
}
.zlnt-face-grid .zlnt-face-card {
  height: 100%;
}
.zlnt-face-carousel__item {
  display: inline-block;
  margin: 0 12px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.zlnt-face-carousel .zlnt-face-card {
  height: 100%;
}

.zlnt-face-card {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 4px;
  max-width: 300px;
  margin: 0;
  padding: 16px 16px 8px;
  text-align: center;
  overflow: hidden;
  font-size: 16px;
  font-size: var(--zlnt-font-size, 16px);
  font-weight: 400;
  line-height: 24px;
  line-height: var(--zlnt-font-line, 24px);
  color: #475569;
  color: var(--color-secondary, #475569);
  width: 143px;
}
.zlnt_img-xs .zlnt-face-card {
  width: 143px;
}
.zlnt_img-s .zlnt-face-card {
  width: 143px;
}
.zlnt_img-m .zlnt-face-card {
  width: 143px;
}
.zlnt_img-l .zlnt-face-card {
  width: 171px;
}
@media screen and (max-width: 767px) {
  .zlnt_img-l .zlnt-face-card {
    width: 150px;
  }
}
@media screen and (max-width: 480px) {
  .zlnt_img-l .zlnt-face-card {
    width: 138px;
  }
}
.zlnt_img-xl .zlnt-face-card {
  width: 210px;
}
@media screen and (max-width: 767px) {
  .zlnt_img-xl .zlnt-face-card {
    width: 150px;
  }
}
@media screen and (max-width: 480px) {
  .zlnt_img-xl .zlnt-face-card {
    width: 138px;
  }
}
.zlnt_img-xxl .zlnt-face-card {
  width: 268px;
}
.zlnt_solid .zlnt-face-card, .zlnt-face-card.zlnt_solid {
  background-color: #fff;
  background-color: var(--zlnt-color-land, #fff);
}
.zlnt-face-card__link,
.zlnt-face-card a.zlnt-face-card__link {
  color: inherit;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  cursor: pointer;
}
.zlnt-face-card a.zlnt-face-card__link::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.zlnt-face-card__attr a,
.zlnt-face-card a.zlnt-face-card__attr {
  position: relative;
  color: #0070cc;
  color: var(--zlnt-color-link, #0070cc);
  text-decoration: none;
}
.zlnt-face-card:hover a.zlnt-face-card__link::after {
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: rgba(0, 0, 0, 0.027);
}
.zlnt-face-card__mediabox {
  margin-bottom: 6px;
  overflow: hidden;
}
.zlnt_img-xs .zlnt-face-card__mediabox {
  width: 20px;
  max-height: 20px;
}
.zlnt_img-s .zlnt-face-card__mediabox {
  width: 32px;
  max-height: 32px;
}
.zlnt_img-m .zlnt-face-card__mediabox {
  width: 50px;
  max-height: 50px;
}
.zlnt_img-l .zlnt-face-card__mediabox {
  width: 80px;
  max-height: 80px;
}
.zlnt_img-xl .zlnt-face-card__mediabox {
  width: 128px;
  max-height: 128px;
}
.zlnt_img-xxl .zlnt-face-card__mediabox {
  width: 200px;
  max-height: 200px;
}
.zlnt-face-card__img {
  border-radius: 4px;
  width: inherit;
}
.zlnt-faces_man .zlnt-face-card__img {
  border-radius: 256px;
}
.zlnt-face-card__name, .zlnt-face-card__bio, .zlnt-face-card__attr {
  display: block;
  color: inherit;
}
.zlnt-face-card__name {
  font-weight: 500;
}
.zlnt-face-card__bio, .zlnt-face-card__attr {
  font-size: 14px;
  font-size: var(--zlnt-font-size-xs, 14px);
  line-height: 21px;
  line-height: var(--zlnt-font-line-xs, 21px);
  color: #75808e;
  color: var(--color-tertiary, #75808e);
}
.zlnt-face-card a, .zlnt-face-card a:active, .zlnt-face-card a:hover, .zlnt-face-card a:focus,
.zlnt-face-card a.zlnt-face-card__link, .zlnt-face-card a:active.zlnt-face-card__link, .zlnt-face-card a:hover.zlnt-face-card__link, .zlnt-face-card a:focus.zlnt-face-card__link {
  text-decoration: none;
}
@media screen and (max-width: 480px) {
  .zlnt-face-card {
    height: auto;
  }
}

/* ▲▲▲ FaceView, FaceCarousel ▲▲▲ */
/* ➤➤➤ ImageCarousel ➤➤➤ */
.zlnt-carousel__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  margin: 12px 24px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  overflow: hidden;
  max-width: 250px;
}
@media screen and (max-width: 767px) {
  .zlnt-carousel__item {
    margin: 12px 12px;
  }
}
.zlnt_img-xs .zlnt-carousel__item {
  width: 20px;
}
.zlnt_img-s .zlnt-carousel__item {
  width: 32px;
}
.zlnt_img-m .zlnt-carousel__item {
  width: 50px;
}
.zlnt_img-l .zlnt-carousel__item {
  width: 80px;
}
.zlnt_img-xl .zlnt-carousel__item {
  width: 128px;
}
.zlnt_img-xxl .zlnt-carousel__item {
  width: 200px;
}
.zlnt-carousel__item.zlnt_solid {
  background-color: #fff;
  background-color: var(--zlnt-color-land, #fff);
  margin: 12px;
  padding: 24px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.zlnt-carousel__item.zlnt_animate {
  opacity: 0.3;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.zlnt-carousel__item.zlnt_animate:hover {
  opacity: 1;
}
.zlnt-carousel__card {
  height: 100%;
  width: inherit;
}
.zlnt-carousel__card img {
  display: inline-block;
  width: inherit;
}
.zlnt_img-xs .zlnt-carousel__card > img {
  width: 20px;
}
.zlnt_img-s .zlnt-carousel__card > img {
  width: 32px;
}
.zlnt_img-m .zlnt-carousel__card > img {
  width: 50px;
}
.zlnt_img-l .zlnt-carousel__card > img {
  width: 80px;
}
.zlnt_img-xl .zlnt-carousel__card > img {
  width: 128px;
}
.zlnt_img-xxl .zlnt-carousel__card > img {
  width: 200px;
}

/* ▲▲▲ ImageCarousel ▲▲▲ */
/* ➤➤➤ Cards ➤➤➤ */
.zlnt-card-list {
  list-style: none;
  margin: 0;
}
.zlnt-card-list .zlnt-card + .zlnt-card {
  margin-top: 26px;
}
@media screen and (max-width: 1023px) {
  .zlnt-card-list .zlnt-card + .zlnt-card {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .zlnt-card-list .zlnt-card + .zlnt-card {
    margin-top: 14px;
  }
}
@media screen and (max-width: 480px) {
  .zlnt-card-list .zlnt-card + .zlnt-card {
    margin-top: 8px;
  }
}
.zlnt_compact-view .zlnt-card-list .zlnt-card + .zlnt-card, .zlnt-card-list.zlnt_compact-view .zlnt-card + .zlnt-card {
  margin-top: 0;
}
.zlnt_compact-view .zlnt-card-list .zlnt-card, .zlnt-card-list.zlnt_compact-view .zlnt-card {
  padding: 8px;
}

.zlnt-card {
  display: block;
  position: relative;
  background-color: #fff;
  background-color: var(--zlnt-color-land, #fff);
  border-radius: 4px;
  padding: 16px;
}
.zlnt-card_framed {
  background-color: #fff;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
          box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
}
.zlnt_flat .zlnt-card_framed {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0);
}
.zlnt-card_framed.zlnt-card_clickable {
  -webkit-transition: -webkit-box-shadow 0.2s linear;
  transition: -webkit-box-shadow 0.2s linear;
  transition: box-shadow 0.2s linear;
  transition: box-shadow 0.2s linear, -webkit-box-shadow 0.2s linear;
}
.zlnt-card_framed.zlnt-card_clickable:hover {
  -webkit-box-shadow: 0 6px 18px rgba(0, 0, 0, 0.09);
          box-shadow: 0 6px 18px rgba(0, 0, 0, 0.09);
}
.zlnt_flat .zlnt-card_framed.zlnt-card_clickable:hover {
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: rgba(0, 0, 0, 0.027);
}
.zlnt_inv .zlnt-card, .zlnt-card_inv {
  background-color: #192a43;
  background-color: var(--zlnt-color-primary, #192a43);
  color: #fff;
  color: var(--zlnt-color-primary-text, #fff);
}
.zlnt_inv .zlnt-card *, .zlnt-card_inv * {
  color: inherit;
}
.zlnt-card a.zlnt-card__primary-link::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.zlnt-card__buttons a, .zlnt-card__links a, .zlnt-card__attrs a, .zlnt-card__tags a {
  position: relative;
}
.zlnt-card__body {
  display: block;
  max-width: 100%;
  padding: 0 8px;
}
@media screen and (max-width: 768px) {
  .zlnt-card__body {
    padding: 0;
  }
}
@media screen and (max-width: 480px) {
  .zlnt-card__body {
    width: 100%;
  }
}
.zlnt-card__aside {
  padding: 0 8px;
}
@media screen and (max-width: 1024px) {
  .zlnt-card__aside {
    padding: 16px;
  }
}
@media screen and (max-width: 480px) {
  .zlnt-card__aside {
    width: 100%;
  }
}
.zlnt-card__details {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.zlnt-card__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.zlnt-card__row + .zlnt-card__row {
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .zlnt-card__row + .zlnt-card__row {
    margin-top: 4px;
  }
}
.zlnt-card__item {
  width: 100%;
}
.zlnt-card__title {
  margin: 0;
  padding: 0;
}
.zlnt-card__sub-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: 0.8px;
  color: #aaa;
}
.zlnt-card__date {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  opacity: 0.5;
}
.zlnt-card__date_small {
  font-size: 14px;
}
.zlnt-card__status {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  opacity: 0.5;
}
.zlnt-card__price {
  font-size: 32px;
  font-weight: 400;
}
.zlnt-card__price_small {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .zlnt-card__price {
    font-size: 24px;
    width: 100%;
    text-align: left;
  }
}
.zlnt-card__mediabox {
  max-width: 340px;
  overflow: hidden;
  margin-top: 5px;
  margin-right: 20px;
}
.zlnt-card__mediabox img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
.zlnt_img-xs .zlnt-card__mediabox img {
  width: 20px;
  max-height: 20px;
}
.zlnt_img-s .zlnt-card__mediabox img {
  width: 32px;
  max-height: 32px;
}
.zlnt_img-m .zlnt-card__mediabox img {
  width: 50px;
  max-height: 50px;
}
.zlnt_img-l .zlnt-card__mediabox img {
  width: 80px;
  max-height: 80px;
}
.zlnt_img-xl .zlnt-card__mediabox img {
  width: 128px;
  max-height: 128px;
}
.zlnt_img-xxl .zlnt-card__mediabox img {
  width: 200px;
  max-height: 200px;
}
@media screen and (max-width: 1024px) {
  .zlnt-card__mediabox {
    margin-right: 14px;
  }
}
@media screen and (max-width: 768px) {
  .zlnt-card__mediabox {
    margin-right: 12px;
  }
}
@media screen and (max-width: 480px) {
  .zlnt-card__mediabox {
    text-align: center;
    margin-right: 10px;
  }
}
.zlnt-card_man .zlnt-card__mediabox img {
  border-radius: 50%;
}
.zlnt-card__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  margin-bottom: 6px;
  padding-top: 0;
  padding-bottom: 0;
}
.zlnt-card__text p {
  margin-bottom: 6px;
  padding-top: 0;
  padding-bottom: 0;
}
.zlnt-card__text label {
  font-size: 18px;
  display: block;
}
.zlnt-card__text_small {
  font-size: 14px;
  line-height: 20px;
}
.zlnt-card__text_small label {
  font-size: 16px;
  margin-bottom: 8px;
}
.zlnt-card__text_large {
  font-size: 18px;
  line-height: 24px;
}
.zlnt-card__tags {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.zlnt-card__tag {
  display: inline-block;
  background-color: #e6e6e6;
  font-size: 14px;
  line-height: 20px;
  height: 20px;
  padding: 0 8px;
}
.zlnt-card__row .zlnt-card__tag {
  margin-right: 8px;
  margin-bottom: 8px;
}
.zlnt-card__attrs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.zlnt-card__attr {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 20px;
  margin-right: 27px;
  margin-bottom: 5px;
}
.zlnt-card__attr_small {
  font-size: 14px;
}
.zlnt-card__attr_large {
  font-size: 18px;
}
.zlnt-card__attr i {
  font-size: 16px;
  position: relative;
  top: -1px;
  display: inline-block;
  margin-right: 4px;
  vertical-align: middle;
}
.zlnt-card img {
  max-width: 100%;
}
.zlnt-card p {
  margin: 0;
  padding: 0;
}
.zlnt-card.zlnt_off {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  opacity: 0.62;
}
.zlnt-card a, .zlnt-card a:active, .zlnt-card a:hover, .zlnt-card a:focus {
  text-decoration: none;
}

/* ▲▲▲ Cards ▲▲▲ */
/* ➤➤➤ Slider ➤➤➤ */
.zlnt-slider {
  position: relative;
  width: 100%;
  height: 40vw;
  min-height: 45vh;
  max-height: min(65vh, 65vw);
  overflow: hidden;
}
.zlnt-slider__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  margin: 0;
  padding: 0;
}
.zlnt-slider__bg:after {
  position: absolute;
  _z-index: 10;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  opacity: 0.5;
  background-image: linear-gradient(45deg, #1f2126 0, #302f2d 100%);
}
.zlnt-slider__img {
  display: none;
}
.zlnt-slider__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: translateX(1px);
      -ms-transform: translateX(1px);
          transform: translateX(1px);
}
.zlnt-slider__caption {
  max-width: 75%;
  margin: 0 auto;
  padding: 0 0 40px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.zlnt-slider__title, .zlnt-slider__text {
  display: block;
  color: white;
  margin: 0;
  padding: 0;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.7s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.7s ease;
  transition: opacity 0.3s ease, transform 0.7s ease;
  transition: opacity 0.3s ease, transform 0.7s ease, -webkit-transform 0.7s ease;
}
.zlnt-slider__title {
  font-size: 32px;
  font-size: var(--zlnt-font-size-h1, 32px);
  line-height: 44px;
  line-height: var(--zlnt-font-line-h1, 44px);
  font-weight: 500;
}
.zlnt-slider__text {
  padding-top: 16px;
  font-size: 20px;
  font-size: var(--zlnt-font-size-h3, 20px);
  line-height: 28px;
  line-height: var(--zlnt-font-line-h3, 28px);
  font-weight: 400;
}
.zlnt-slider__buttons {
  padding-top: 24px;
}
.zlnt-slider__buttons:empty {
  display: none;
}
.zlnt-slider__pagination {
  display: block;
  right: 50%;
  width: 100%;
  max-width: 1224px;
  margin: 0 auto;
  padding: 0 1.14286rem;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: right;
}
.zlnt-slider__pagination .swiper-pagination-bullet {
  position: relative;
  width: 16px;
  height: 16px;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.zlnt-slider__pagination .swiper-pagination-bullet::before {
  position: absolute;
  background-color: #ddd;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: -4px 0 0 -4px;
  content: "";
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}
.zlnt-slider__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active, .zlnt-slider__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  background-color: #f0f0f0;
}
.zlnt-slider.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  background-color: #192a43;
  background-color: var(--zlnt-color-primary, #192a43);
  opacity: 0.5;
}
.zlnt-slider.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #dcf972;
  background-color: var(--zlnt-color-highlight, #dcf972);
  opacity: 1;
}

/* ▲▲▲ Slider ▲▲▲ */
/* ➤➤➤ Story ➤➤➤ */
.zlnt-introduction {
  margin: 0;
  padding: 20px 0;
  text-align: center;
}
.zlnt-introduction h1 {
  margin: 20px 0;
  padding: 0;
}
.zlnt-introduction__tagline {
  margin: 20px 0 10px;
  padding: 0;
}
.zlnt-introduction__img {
  max-width: 60%;
  max-height: 200px;
}
.zlnt-introduction__cta {
  margin: 27px 0 10px;
  padding: 0;
}
.zlnt-introduction__cta > a {
  margin: 0 5px;
}
.zlnt-introduction a, .zlnt-introduction a:active, .zlnt-introduction a:hover {
  text-decoration: none;
}

.zlnt-story {
  margin: 0;
  padding: 20px 0;
  text-align: center;
}
.zlnt-story__user {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.zlnt-story__user > img {
  display: inline-block;
  max-width: 125px;
  max-height: 125px;
  background-color: #fff;
  background-color: var(--zlnt-color-land, #fff);
  border-radius: 100%;
}
.zlnt-story__user > span {
  opacity: 0.5;
}
.zlnt-story__img {
  max-width: 250px;
  max-height: 250px;
}
.zlnt-story__message {
  color: #181818;
  background-color: #d9edf7;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  border-radius: 20px;
  padding: 16px 24px;
}
.zlnt-story__message h3 {
  color: inherit;
  margin: 0;
  padding: 0;
}
.zlnt-story__message p {
  color: inherit;
  margin: 0;
  padding: 0;
}
.zlnt-story__message > *:not(:last-child) {
  margin-bottom: 8px;
}
.zlnt-story__message > .zlnt-story__cta {
  margin-top: 24px;
}
.zlnt-story__msg-layout {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-flex-wrap: wrap-reverse;
      -ms-flex-wrap: wrap-reverse;
          flex-wrap: wrap-reverse;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.zlnt-story__msg-layout .zlnt-story__user {
  margin: 0 18px 18px 0;
}
.zlnt-story__msg-layout .zlnt-story__message {
  margin: 18px 0;
}
.zlnt-story .zlnt-btn-grp,
.zlnt-story .zlnt-btn-list,
.zlnt-story .zlnt-btn-panel {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.zlnt-story a, .zlnt-story a:active, .zlnt-story a:hover {
  text-decoration: none;
}

.zlnt-story1 {
  margin: 0;
  padding: 20px 0;
  text-align: center;
}
.zlnt-story1 h1 {
  margin: 20px 0;
  padding: 0;
}
.zlnt-story1__tagline {
  margin: 20px 0 10px;
  padding: 0;
}
.zlnt-story1__img {
  max-width: 60%;
  max-height: 200px;
}
.zlnt-story1__cta {
  margin: 27px 0 10px;
  padding: 0;
}
.zlnt-story1__cta > a {
  margin: 0 5px;
}
.zlnt-story1__info {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0 auto;
}
.zlnt-story1__user {
  display: inline-block;
  max-width: 125px;
  max-height: 125px;
  margin: 0 20px;
  border-radius: 100%;
}
.zlnt-story1__message {
  border: 1px solid #ccc;
  border-radius: 0 16px 16px 16px;
  background-color: #f8f8f8;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  padding: 22px;
}
.zlnt-story1__message h3 {
  margin: 0;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.5;
}
.zlnt-story1__message p {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

/* ▲▲▲ Story ▲▲▲ */
/* ➤➤➤ Alerts ➤➤➤ */
.zlnt-alert-grp .zlnt-alert:not(:first-child) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.zlnt-alert-grp .zlnt-alert:not(:last-child) {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.zlnt-alert {
  padding: 16px;
  border-radius: 4px;
  border-radius: var(--zlnt-border-radius, 4px);
}
.zlnt-alert_success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.zlnt-alert_success hr {
  border-top-color: #c9e2b3;
}
.zlnt-alert_error {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.zlnt-alert_error hr {
  border-top-color: #e4b9c0;
}
.zlnt-alert_warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.zlnt-alert_warning hr {
  border-top-color: #f7e1b5;
}
.zlnt-alert_info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.zlnt-alert_info hr {
  border-top-color: #a6e1ec;
}
.zlnt-alert_dismissable {
  padding-right: 35px;
}
.zlnt-alert__close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
  padding: 0px;
  cursor: pointer;
  background: none repeat scroll 0% 0% transparent;
  border: 0px none;
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  text-shadow: 0px 1px 0px #FFF;
}
.zlnt-alert__close:hover, .zlnt-alert__close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
}
.zlnt-alert a {
  color: inherit;
}

/* ▲▲▲ Alerts ▲▲▲ */
/* ➤➤➤ ➤➤➤ */
/* ▲▲▲ ▲▲▲ */