.air-datepicker-cell.-year-.-other-decade-,
.air-datepicker-cell.-day-.-other-month- {
  color: var(--adp-color-other-month);
}
.air-datepicker-cell.-year-.-other-decade-:hover,
.air-datepicker-cell.-day-.-other-month-:hover {
  color: var(--adp-color-other-month-hover);
}
.-disabled-.-focus-.air-datepicker-cell.-year-.-other-decade-,
.-disabled-.-focus-.air-datepicker-cell.-day-.-other-month- {
  color: var(--adp-color-other-month);
}
.-selected-.air-datepicker-cell.-year-.-other-decade-,
.-selected-.air-datepicker-cell.-day-.-other-month- {
  color: #fff;
  background: var(--adp-background-color-selected-other-month);
}
.-selected-.-focus-.air-datepicker-cell.-year-.-other-decade-,
.-selected-.-focus-.air-datepicker-cell.-day-.-other-month- {
  background: var(--adp-background-color-selected-other-month-focused);
}
.-in-range-.air-datepicker-cell.-year-.-other-decade-,
.-in-range-.air-datepicker-cell.-day-.-other-month- {
  background-color: var(--adp-background-color-in-range);
  color: var(--adp-color);
}
.-in-range-.-focus-.air-datepicker-cell.-year-.-other-decade-,
.-in-range-.-focus-.air-datepicker-cell.-day-.-other-month- {
  background-color: var(--adp-background-color-in-range-focused);
}
.air-datepicker-cell.-year-.-other-decade-:empty,
.air-datepicker-cell.-day-.-other-month-:empty {
  background: none;
  border: none;
}
.air-datepicker-cell {
  border-radius: var(--adp-cell-border-radius);
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.air-datepicker-cell.-focus- {
  background: var(--adp-cell-background-color-hover);
}
.air-datepicker-cell.-current- {
  color: var(--adp-color-current-date);
}
.air-datepicker-cell.-current-.-focus- {
  color: var(--adp-color);
}
.air-datepicker-cell.-current-.-in-range- {
  color: var(--adp-color-current-date);
}
.air-datepicker-cell.-disabled- {
  cursor: default;
  color: var(--adp-color-disabled);
}
.air-datepicker-cell.-disabled-.-focus- {
  color: var(--adp-color-disabled);
}
.air-datepicker-cell.-disabled-.-in-range- {
  color: var(--adp-color-disabled-in-range);
}
.air-datepicker-cell.-disabled-.-current-.-focus- {
  color: var(--adp-color-disabled);
}
.air-datepicker-cell.-in-range- {
  background: var(--adp-cell-background-color-in-range);
  border-radius: 0;
}
.air-datepicker-cell.-in-range-:hover,
.air-datepicker-cell.-in-range-.-focus- {
  background: var(--adp-cell-background-color-in-range-hover);
}
.air-datepicker-cell.-range-from- {
  border: 1px solid var(--adp-cell-border-color-in-range);
  background-color: var(--adp-cell-background-color-in-range);
  border-radius: var(--adp-cell-border-radius) 0 0 var(--adp-cell-border-radius);
}
.air-datepicker-cell.-range-to- {
  border: 1px solid var(--adp-cell-border-color-in-range);
  background-color: var(--adp-cell-background-color-in-range);
  border-radius: 0 var(--adp-cell-border-radius) var(--adp-cell-border-radius) 0;
}
.air-datepicker-cell.-range-to-.-range-from- {
  border-radius: var(--adp-cell-border-radius);
}
.air-datepicker-cell.-selected- {
  color: #fff;
  border: none;
  background: var(--adp-cell-background-color-selected);
}
.air-datepicker-cell.-selected-.-current- {
  color: #fff;
  background: var(--adp-cell-background-color-selected);
}
.air-datepicker-cell.-selected-.-focus- {
  background: var(--adp-cell-background-color-selected-hover);
}
.air-datepicker-body {
  transition: all var(--adp-transition-duration) var(--adp-transition-ease);
}
.air-datepicker-body.-hidden- {
  display: none;
}
.air-datepicker-body--day-names {
  display: grid;
  grid-template-columns: repeat(7, var(--adp-day-cell-width));
  margin: 8px 0 3px;
}
.air-datepicker-body--day-name {
  color: var(--adp-day-name-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.8em;
}
.air-datepicker-body--day-name.-clickable- {
  cursor: pointer;
}
.air-datepicker-body--day-name.-clickable-:hover {
  color: var(--adp-day-name-color-hover);
}
.air-datepicker-body--cells {
  display: grid;
}
.air-datepicker-body--cells.-days- {
  grid-template-columns: repeat(7, var(--adp-day-cell-width));
  grid-auto-rows: var(--adp-day-cell-height);
}
.air-datepicker-body--cells.-months- {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: var(--adp-month-cell-height);
}
.air-datepicker-body--cells.-years- {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: var(--adp-year-cell-height);
}
.air-datepicker-nav {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--adp-border-color-inner);
  min-height: var(--adp-nav-height);
  padding: var(--adp-padding);
  box-sizing: content-box;
}
.-only-timepicker- .air-datepicker-nav {
  display: none;
}
.air-datepicker-nav--title,
.air-datepicker-nav--action {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.air-datepicker-nav--action {
  width: var(--adp-nav-action-size);
  border-radius: var(--adp-border-radius);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.air-datepicker-nav--action:hover {
  background: var(--adp-background-color-hover);
}
.air-datepicker-nav--action:active {
  background: var(--adp-background-color-active);
}
.air-datepicker-nav--action.-disabled- {
  visibility: hidden;
}
.air-datepicker-nav--action svg {
  width: 32px;
  height: 32px;
}
.air-datepicker-nav--action path {
  fill: none;
  stroke: var(--adp-nav-arrow-color);
  stroke-width: 2px;
}
.air-datepicker-nav--title {
  border-radius: var(--adp-border-radius);
  padding: 0 8px;
}
.air-datepicker-nav--title i {
  font-style: normal;
  color: var(--adp-nav-color-secondary);
  margin-left: 0.3em;
}
.air-datepicker-nav--title:hover {
  background: var(--adp-background-color-hover);
}
.air-datepicker-nav--title:active {
  background: var(--adp-background-color-active);
}
.air-datepicker-nav--title.-disabled- {
  cursor: default;
  background: none;
}
.air-datepicker-buttons {
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.air-datepicker-button {
  display: inline-flex;
  color: var(--adp-btn-color);
  border-radius: var(--adp-btn-border-radius);
  cursor: pointer;
  height: var(--adp-btn-height);
  border: none;
  background: rgba(255, 255, 255, 0);
}
.air-datepicker-button:hover {
  color: var(--adp-btn-color-hover);
  background: var(--adp-btn-background-color-hover);
}
.air-datepicker-button:focus {
  color: var(--adp-btn-color-hover);
  background: var(--adp-btn-background-color-hover);
  outline: none;
}
.air-datepicker-button:active {
  background: var(--adp-btn-background-color-active);
}
.air-datepicker-button span {
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.air-datepicker-time {
  display: grid;
  grid-template-columns: max-content 1fr;
  grid-column-gap: 12px;
  align-items: center;
  position: relative;
  padding: 0 var(--adp-time-padding-inner);
}
.-only-timepicker- .air-datepicker-time {
  border-top: none;
}
.air-datepicker-time--current {
  display: flex;
  align-items: center;
  flex: 1;
  font-size: 14px;
  text-align: center;
}
.air-datepicker-time--current-colon {
  margin: 0 2px 3px;
  line-height: 1;
}
.air-datepicker-time--current-hours,
.air-datepicker-time--current-minutes {
  line-height: 1;
  font-size: 19px;
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  position: relative;
  z-index: 1;
}
.air-datepicker-time--current-hours:after,
.air-datepicker-time--current-minutes:after {
  content: "";
  background: var(--adp-background-color-hover);
  border-radius: var(--adp-border-radius);
  position: absolute;
  left: -2px;
  top: -3px;
  right: -2px;
  bottom: -2px;
  z-index: -1;
  opacity: 0;
}
.air-datepicker-time--current-hours.-focus-:after,
.air-datepicker-time--current-minutes.-focus-:after {
  opacity: 1;
}
.air-datepicker-time--current-ampm {
  text-transform: uppercase;
  align-self: flex-end;
  color: var(--adp-time-day-period-color);
  margin-left: 6px;
  font-size: 11px;
  margin-bottom: 1px;
}
.air-datepicker-time--row {
  display: flex;
  align-items: center;
  font-size: 11px;
  height: 17px;
  background: linear-gradient(
      to right,
      var(--adp-time-track-color),
      var(--adp-time-track-color)
    )
    left 50%/100% var(--adp-time-track-height) no-repeat;
}
.air-datepicker-time--row:first-child {
  margin-bottom: 4px;
}
.air-datepicker-time--row input[type="range"] {
  background: none;
  cursor: pointer;
  flex: 1;
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
}
.air-datepicker-time--row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
}
.air-datepicker-time--row input[type="range"]::-ms-tooltip {
  display: none;
}
.air-datepicker-time--row input[type="range"]:hover::-webkit-slider-thumb {
  border-color: var(--adp-time-track-color-hover);
}
.air-datepicker-time--row input[type="range"]:hover::-moz-range-thumb {
  border-color: var(--adp-time-track-color-hover);
}
.air-datepicker-time--row input[type="range"]:hover::-ms-thumb {
  border-color: var(--adp-time-track-color-hover);
}
.air-datepicker-time--row input[type="range"]:focus {
  outline: none;
}
.air-datepicker-time--row input[type="range"]:focus::-webkit-slider-thumb {
  background: var(--adp-cell-background-color-selected);
  border-color: var(--adp-cell-background-color-selected);
}
.air-datepicker-time--row input[type="range"]:focus::-moz-range-thumb {
  background: var(--adp-cell-background-color-selected);
  border-color: var(--adp-cell-background-color-selected);
}
.air-datepicker-time--row input[type="range"]:focus::-ms-thumb {
  background: var(--adp-cell-background-color-selected);
  border-color: var(--adp-cell-background-color-selected);
}
.air-datepicker-time--row input[type="range"]::-webkit-slider-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid var(--adp-time-track-color);
  background: #fff;
  cursor: pointer;
  -webkit-transition: background var(--adp-transition-duration);
  transition: background var(--adp-transition-duration);
}
.air-datepicker-time--row input[type="range"]::-moz-range-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid var(--adp-time-track-color);
  background: #fff;
  cursor: pointer;
  -moz-transition: background var(--adp-transition-duration);
  transition: background var(--adp-transition-duration);
}
.air-datepicker-time--row input[type="range"]::-ms-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid var(--adp-time-track-color);
  background: #fff;
  cursor: pointer;
  -ms-transition: background var(--adp-transition-duration);
  transition: background var(--adp-transition-duration);
}
.air-datepicker-time--row input[type="range"]::-webkit-slider-thumb {
  margin-top: calc(var(--adp-time-thumb-size) / 2 * -1);
}
.air-datepicker-time--row input[type="range"]::-webkit-slider-runnable-track {
  border: none;
  height: var(--adp-time-track-height);
  cursor: pointer;
  color: rgba(0, 0, 0, 0);
  background: rgba(0, 0, 0, 0);
}
.air-datepicker-time--row input[type="range"]::-moz-range-track {
  border: none;
  height: var(--adp-time-track-height);
  cursor: pointer;
  color: rgba(0, 0, 0, 0);
  background: rgba(0, 0, 0, 0);
}
.air-datepicker-time--row input[type="range"]::-ms-track {
  border: none;
  height: var(--adp-time-track-height);
  cursor: pointer;
  color: rgba(0, 0, 0, 0);
  background: rgba(0, 0, 0, 0);
}
.air-datepicker-time--row input[type="range"]::-ms-fill-lower {
  background: rgba(0, 0, 0, 0);
}
.air-datepicker-time--row input[type="range"]::-ms-fill-upper {
  background: rgba(0, 0, 0, 0);
}
.air-datepicker {
  --adp-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol";
  --adp-font-size: 14px;
  --adp-width: 246px;
  --adp-z-index: 100;
  --adp-padding: 4px;
  --adp-grid-areas: "nav" "body" "timepicker" "buttons";
  --adp-transition-duration: 0.3s;
  --adp-transition-ease: ease-out;
  --adp-transition-offset: 8px;
  --adp-background-color: #fff;
  --adp-background-color-hover: #f0f0f0;
  --adp-background-color-active: #eaeaea;
  --adp-background-color-in-range: rgba(92, 196, 239, 0.1);
  --adp-background-color-in-range-focused: rgba(92, 196, 239, 0.2);
  --adp-background-color-selected-other-month-focused: #8ad5f4;
  --adp-background-color-selected-other-month: #a2ddf6;
  --adp-color: #4a4a4a;
  --adp-color-secondary: #9c9c9c;
  --adp-accent-color: #4eb5e6;
  --adp-color-current-date: var(--adp-accent-color);
  --adp-color-other-month: #dedede;
  --adp-color-disabled: #aeaeae;
  --adp-color-disabled-in-range: #939393;
  --adp-color-other-month-hover: #c5c5c5;
  --adp-border-color: #dbdbdb;
  --adp-border-color-inner: #efefef;
  --adp-border-radius: 4px;
  --adp-border-color-inline: #d7d7d7;
  --adp-nav-height: 32px;
  --adp-nav-arrow-color: var(--adp-color-secondary);
  --adp-nav-action-size: 32px;
  --adp-nav-color-secondary: var(--adp-color-secondary);
  --adp-day-name-color: #ff9a19;
  --adp-day-name-color-hover: #8ad5f4;
  --adp-day-cell-width: 1fr;
  --adp-day-cell-height: 32px;
  --adp-month-cell-height: 42px;
  --adp-year-cell-height: 56px;
  --adp-pointer-size: 10px;
  --adp-poiner-border-radius: 2px;
  --adp-pointer-offset: 14px;
  --adp-cell-border-radius: 4px;
  --adp-cell-background-color-hover: var(--adp-background-color-hover);
  --adp-cell-background-color-selected: #5cc4ef;
  --adp-cell-background-color-selected-hover: #45bced;
  --adp-cell-background-color-in-range: rgba(92, 196, 239, 0.1);
  --adp-cell-background-color-in-range-hover: rgba(92, 196, 239, 0.2);
  --adp-cell-border-color-in-range: var(--adp-cell-background-color-selected);
  --adp-btn-height: 32px;
  --adp-btn-color: var(--adp-accent-color);
  --adp-btn-color-hover: var(--adp-color);
  --adp-btn-border-radius: var(--adp-border-radius);
  --adp-btn-background-color-hover: var(--adp-background-color-hover);
  --adp-btn-background-color-active: var(--adp-background-color-active);
  --adp-time-track-height: 1px;
  --adp-time-track-color: #dedede;
  --adp-time-track-color-hover: #b1b1b1;
  --adp-time-thumb-size: 12px;
  --adp-time-padding-inner: 10px;
  --adp-time-day-period-color: var(--adp-color-secondary);
  --adp-mobile-font-size: 16px;
  --adp-mobile-nav-height: 40px;
  --adp-mobile-width: 320px;
  --adp-mobile-day-cell-height: 38px;
  --adp-mobile-month-cell-height: 48px;
  --adp-mobile-year-cell-height: 64px;
}
.air-datepicker-overlay {
  --adp-overlay-background-color: rgba(0, 0, 0, 0.3);
  --adp-overlay-transition-duration: 0.3s;
  --adp-overlay-transition-ease: ease-out;
  --adp-overlay-z-index: 99;
}
.air-datepicker {
  background: var(--adp-background-color);
  border: 1px solid var(--adp-border-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: var(--adp-border-radius);
  box-sizing: content-box;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4, max-content);
  grid-template-areas: var(--adp-grid-areas);
  font-family: var(--adp-font-family), sans-serif;
  font-size: var(--adp-font-size);
  color: var(--adp-color);
  width: var(--adp-width);
  position: absolute;
  transition: opacity var(--adp-transition-duration) var(--adp-transition-ease),
    transform var(--adp-transition-duration) var(--adp-transition-ease);
  z-index: var(--adp-z-index);
}
.air-datepicker:not(.-custom-position-) {
  opacity: 0;
}
.air-datepicker.-from-top- {
  transform: translateY(calc(var(--adp-transition-offset) * -1));
}
.air-datepicker.-from-right- {
  transform: translateX(var(--adp-transition-offset));
}
.air-datepicker.-from-bottom- {
  transform: translateY(var(--adp-transition-offset));
}
.air-datepicker.-from-left- {
  transform: translateX(calc(var(--adp-transition-offset) * -1));
}
.air-datepicker.-active-:not(.-custom-position-) {
  transform: translate(0, 0);
  opacity: 1;
}
.air-datepicker.-active-.-custom-position- {
  transition: none;
}
.air-datepicker.-inline- {
  border-color: var(--adp-border-color-inline);
  box-shadow: none;
  position: static;
  left: auto;
  right: auto;
  opacity: 1;
  transform: none;
}
.air-datepicker.-inline- .air-datepicker--pointer {
  display: none;
}
.air-datepicker.-is-mobile- {
  --adp-font-size: var(--adp-mobile-font-size);
  --adp-day-cell-height: var(--adp-mobile-day-cell-height);
  --adp-month-cell-height: var(--adp-mobile-month-cell-height);
  --adp-year-cell-height: var(--adp-mobile-year-cell-height);
  --adp-nav-height: var(--adp-mobile-nav-height);
  --adp-nav-action-size: var(--adp-mobile-nav-height);
  position: fixed;
  width: var(--adp-mobile-width);
  border: none;
}
.air-datepicker.-is-mobile- * {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.air-datepicker.-is-mobile- .air-datepicker--pointer {
  display: none;
}
.air-datepicker.-is-mobile-:not(.-custom-position-) {
  transform: translate(-50%, calc(-50% + var(--adp-transition-offset)));
}
.air-datepicker.-is-mobile-.-active-:not(.-custom-position-) {
  transform: translate(-50%, -50%);
}
.air-datepicker.-custom-position- {
  transition: none;
}
.air-datepicker-global-container {
  position: absolute;
  left: 0;
  top: 0;
}
.air-datepicker--pointer {
  --pointer-half-size: calc(var(--adp-pointer-size) / 2);
  position: absolute;
  width: var(--adp-pointer-size);
  height: var(--adp-pointer-size);
  z-index: -1;
}
.air-datepicker--pointer:after {
  content: "";
  position: absolute;
  background: #fff;
  border-top: 1px solid var(--adp-border-color-inline);
  border-right: 1px solid var(--adp-border-color-inline);
  border-top-right-radius: var(--adp-poiner-border-radius);
  width: var(--adp-pointer-size);
  height: var(--adp-pointer-size);
  box-sizing: border-box;
}
.-top-left- .air-datepicker--pointer,
.-top-center- .air-datepicker--pointer,
.-top-right- .air-datepicker--pointer,
[data-popper-placement^="top"] .air-datepicker--pointer {
  top: calc(100% - var(--pointer-half-size) + 1px);
}
.-top-left- .air-datepicker--pointer:after,
.-top-center- .air-datepicker--pointer:after,
.-top-right- .air-datepicker--pointer:after,
[data-popper-placement^="top"] .air-datepicker--pointer:after {
  transform: rotate(135deg);
}
.-right-top- .air-datepicker--pointer,
.-right-center- .air-datepicker--pointer,
.-right-bottom- .air-datepicker--pointer,
[data-popper-placement^="right"] .air-datepicker--pointer {
  right: calc(100% - var(--pointer-half-size) + 1px);
}
.-right-top- .air-datepicker--pointer:after,
.-right-center- .air-datepicker--pointer:after,
.-right-bottom- .air-datepicker--pointer:after,
[data-popper-placement^="right"] .air-datepicker--pointer:after {
  transform: rotate(225deg);
}
.-bottom-left- .air-datepicker--pointer,
.-bottom-center- .air-datepicker--pointer,
.-bottom-right- .air-datepicker--pointer,
[data-popper-placement^="bottom"] .air-datepicker--pointer {
  bottom: calc(100% - var(--pointer-half-size) + 1px);
}
.-bottom-left- .air-datepicker--pointer:after,
.-bottom-center- .air-datepicker--pointer:after,
.-bottom-right- .air-datepicker--pointer:after,
[data-popper-placement^="bottom"] .air-datepicker--pointer:after {
  transform: rotate(315deg);
}
.-left-top- .air-datepicker--pointer,
.-left-center- .air-datepicker--pointer,
.-left-bottom- .air-datepicker--pointer,
[data-popper-placement^="left"] .air-datepicker--pointer {
  left: calc(100% - var(--pointer-half-size) + 1px);
}
.-left-top- .air-datepicker--pointer:after,
.-left-center- .air-datepicker--pointer:after,
.-left-bottom- .air-datepicker--pointer:after,
[data-popper-placement^="left"] .air-datepicker--pointer:after {
  transform: rotate(45deg);
}
.-top-left- .air-datepicker--pointer,
.-bottom-left- .air-datepicker--pointer {
  left: var(--adp-pointer-offset);
}
.-top-right- .air-datepicker--pointer,
.-bottom-right- .air-datepicker--pointer {
  right: var(--adp-pointer-offset);
}
.-top-center- .air-datepicker--pointer,
.-bottom-center- .air-datepicker--pointer {
  left: calc(50% - var(--adp-pointer-size) / 2);
}
.-left-top- .air-datepicker--pointer,
.-right-top- .air-datepicker--pointer {
  top: var(--adp-pointer-offset);
}
.-left-bottom- .air-datepicker--pointer,
.-right-bottom- .air-datepicker--pointer {
  bottom: var(--adp-pointer-offset);
}
.-left-center- .air-datepicker--pointer,
.-right-center- .air-datepicker--pointer {
  top: calc(50% - var(--adp-pointer-size) / 2);
}
.air-datepicker--navigation {
  grid-area: nav;
}
.air-datepicker--content {
  box-sizing: content-box;
  padding: var(--adp-padding);
  grid-area: body;
}
.-only-timepicker- .air-datepicker--content {
  display: none;
}
.air-datepicker--time {
  grid-area: timepicker;
}
.air-datepicker--buttons {
  grid-area: buttons;
}
.air-datepicker--buttons,
.air-datepicker--time {
  padding: var(--adp-padding);
  border-top: 1px solid var(--adp-border-color-inner);
}
.air-datepicker-overlay {
  position: fixed;
  background: var(--adp-overlay-background-color);
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0;
  transition: opacity var(--adp-overlay-transition-duration)
      var(--adp-overlay-transition-ease),
    left 0s, height 0s, width 0s;
  transition-delay: 0s, var(--adp-overlay-transition-duration),
    var(--adp-overlay-transition-duration),
    var(--adp-overlay-transition-duration);
  z-index: var(--adp-overlay-z-index);
}
.air-datepicker-overlay.-active- {
  opacity: 1;
  width: 100%;
  height: 100%;
  transition: opacity var(--adp-overlay-transition-duration)
      var(--adp-overlay-transition-ease),
    height 0s, width 0s;
}

*:where(
    :not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)
  ) {
  all: unset;
  display: revert;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
a,
button {
  cursor: revert;
}
ol,
ul,
menu {
  list-style: none;
}
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}
table {
  border-collapse: collapse;
}
input,
textarea {
  -webkit-user-select: auto;
}
textarea {
  white-space: revert;
}
meter {
  appearance: revert;
}
:where(pre) {
  all: revert;
}
:-ms-input-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}
::marker {
  content: initial;
}
:where([hidden]) {
  display: none;
}
:where([contenteditable]:not([contenteditable="false"])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}
:where([draggable="true"]) {
  -webkit-user-drag: element;
}
:where(dialog:modal) {
  all: revert;
}
:root {
  --color-black: #1b1b1b;
  --color-black--rgb: 27, 27, 27;
  --color-white: #fff;
  --color-white--rgb: 255, 255, 255;
  --color-gray: #d6d5da;
  --color-gray--rgb: 214, 213, 218;
  --color-gray-light: #f5f5f7;
  --color-gray-light--rgb: 13, 17, 38;
  --color-gray-50: #fbfaf9;
  --color-gray-150: #faf9f8;
  --color-gray-200: #f8f8f8;
  --color-gray-250: #f5f5f7;
  --color-gray-300: #ededed;
  --color-gray-350: #d7d8e1;
  --color-gray-400: #abadbd;
  --color-gray-450: #515259;
  --color-gray-500: #292a31;
  --color-blue: #3548fe;
  --color-blue--rgb: 53, 72, 254;
  --color-blue-dark: #242eb3;
  --color-blue-soft: #495cf5;
  --color-blue-soft--rgb: 73, 92, 245;
  --color-blue-light: #f8f9fc;
  --color-blue-light--rgb: 248, 249, 252;
  --color-blue-background: #f8f9fc;
  --color-blue-150: #f4f6fe;
  --color-blue-200: #f0f4ff;
  --color-blue-300: #dadcf7;
  --color-blue-350: #b9bbca;
  --color-blue-400: #abadbd;
  --color-blue-450: #6a6b7a;
  --color-blue-500: #6f707d;
  --color-blue-tab: #edf0fc;
  --color-inactive: #b9bbca;
  --color-inactive--rgb: 185, 187, 202;
  --color-breadcrumb-inactive: #b3b5c5;
  --color-purple: #8927ff;
  --color-pink: #fda3ca;
  --color-pink--rgb: 253, 163, 202;
  --color-pink-100: #ffbaff;
  --color-green-light: #dfeef2;
  --link: var(--color-blue);
  --link-hover: var(--color-blue-soft);
  --color-green: #16ab59;
  --color-green--rgb: 22, 171, 89;
  --color-green-350: #98b909;
  --color-green-150: #bfe90b;
  --color-red: #e11b1b;
  --color-red--rgb: 225, 27, 27;
  --color-orange: #e16540;
  --color-orange--rgb: 225, 101, 64;
  --color-green--form: #10994d;
  --color-yellow: #ffc72f;
  --color-error-bg--rgb: 221, 10, 10;
  --color-error: var(--color-red);
  --color-warning: var(--color-yellow);
  --color-success: var(--color-green);
  --font-inter: "Inter", sans-serif;
  --font-almaz: "Almaz", sans-serif;
  --font-default: var(--font-inter);
  --font-heading: var(--font-almaz);
  --transition-default: all 0.35s ease-in-out;
}
html {
  width: 100%;
  max-width: 100%;
  overflow: auto;
  scroll-behavior: smooth;
}
html.mobile-menu-opened {
  overflow: hidden;
}
body {
  color: var(--color-black);
  background: var(--color-blue-light);
}
div {
  box-sizing: border-box;
}
img {
  display: block;
  max-width: 100%;
}
@media (max-width: 480px) {
  #wpadminbar {
    display: none !important;
  }
}
html {
  color: var(--color-black);
  font-size: 16px;
  font-family: var(--font-default);
}
@media screen and (min-width: 2048px) {
  html {
    font-size: 20px;
  }
}
@media screen and (min-width: 3024px) {
  html {
    font-size: 32px;
  }
}
h1,
.heading-1 {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 100%;
  letter-spacing: -0.03px;
  font-family: var(--font-heading);
}
@media (max-width: 769px) {
  h1,
  .heading-1 {
    font-size: 2.5rem;
  }
}
h2,
.heading-2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 100%;
}
@media (max-width: 769px) {
  h2,
  .heading-2 {
    font-size: 2rem;
  }
}
h3,
.heading-3 {
  font-size: 2rem;
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 100%;
}
@media (max-width: 769px) {
  h3,
  .heading-3 {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
h4,
.heading-4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 2rem;
}
@media (max-width: 769px) {
  h4,
  .heading-4 {
    font-size: 1.25rem;
    line-height: 1.6875rem;
  }
}
h5,
.heading-5 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  line-height: 1.6875rem;
}
@media (max-width: 769px) {
  h5,
  .heading-5 {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }
}
h6,
.heading-6 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  line-height: 1.5rem;
}
b,
strong {
  font-weight: 500;
}
p {
  font-family: var(--font-default);
  font-weight: 400;
  line-height: 150%;
}
a {
  transition: var(--transition-default);
}
a:hover,
a:focus {
  color: var(--color-blue);
}
.typo a {
  color: var(--link);
  text-decoration: none;
  transition: var(--transition-default);
}
.typo a:hover {
  color: var(--link-hover);
}
.typo p {
  margin-bottom: 0.75rem;
}
@media (max-width: 769px) {
  .typo p {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    letter-spacing: -0.225px;
    margin-bottom: 0.5rem;
  }
}
.typo p:last-child {
  margin-bottom: 0;
}
.typo--lesson > :last-child {
  margin-bottom: 0 !important;
}
.typo--lesson h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}
@media (max-width: 769px) {
  .typo--lesson h1 {
    font-size: 2rem;
    line-height: 100%;
    letter-spacing: -0.64px;
  }
}
.typo--lesson h2 {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.8px;
  margin-bottom: 1.5rem;
  margin-top: 3rem;
}
@media (max-width: 769px) {
  .typo--lesson h2 {
    font-size: 2rem;
    line-height: 100%;
    letter-spacing: -0.64px;
    margin-bottom: 1.75rem;
    margin-top: 2.25rem;
  }
}
.typo--lesson h3 {
  font-size: 2rem;
  line-height: 100%;
  letter-spacing: -0.64px;
  font-weight: 500;
  margin-bottom: 1rem;
}
@media (max-width: 769px) {
  .typo--lesson h3 {
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: -0.48px;
  }
}
.typo--lesson p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.375rem;
  letter-spacing: -0.24px;
  margin-bottom: 1rem;
}
@media (max-width: 769px) {
  .typo--lesson p {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    letter-spacing: -0.225px;
  }
}
.typo--lesson p.has-small-font-size {
  font-size: 0.875rem;
}
.typo--lesson p.has-medium-font-size {
  font-size: 1.125rem;
}
.typo--lesson p.has-large-font-size {
  font-size: 1.5rem;
  line-height: 2rem;
  letter-spacing: -0.48px;
}
.typo--lesson p:last-child {
  margin-bottom: 0;
}
@media (max-width: 769px) {
  .typo--lesson p + ul,
  .typo--lesson p + ol {
    margin: 1.25rem auto;
  }
}
.typo--lesson ol,
.typo--lesson ul {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.375rem;
  letter-spacing: -0.24px;
  margin: 0 0 1rem;
  padding-left: 1.5rem;
}
@media (max-width: 769px) {
  .typo--lesson ol,
  .typo--lesson ul {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    letter-spacing: -0.225px;
  }
}
.typo--lesson ol li,
.typo--lesson ul li {
  margin: 0;
}
.typo--lesson ul {
  list-style: disc;
}
.typo--lesson ol {
  list-style: arabic;
}
.typo--lesson hr {
  color: var(--color-gray-300);
  background: var(--color-gray-300);
  display: block;
  height: 1px;
  width: 100%;
  margin: 2.75rem auto;
}
@media (max-width: 769px) {
  .typo--lesson hr {
    margin: 2rem auto;
  }
}
.typo--lesson blockquote {
  background: var(--color-blue-200);
  border-left: 0.5625rem solid var(--color-blue);
  padding: 2rem 2rem 2rem 1.3125rem;
  margin: 2.25rem auto;
}
@media (max-width: 769px) {
  .typo--lesson blockquote {
    border-left-width: 0.375rem;
    padding: 1.25rem 1.25rem 1.25rem 0.875rem;
    margin: 2rem auto;
  }
}
.typo--lesson .wp-block-image {
  margin-bottom: 1rem;
}
.typo--lesson .wp-block-columns {
  gap: 0.625rem;
}
.typo--lesson .wp-block-columns .wp-block-column {
  padding: 1.875rem;
}
@media (max-width: 769px) {
  .typo--lesson .wp-block-columns .wp-block-column {
    padding: 0.75rem 1.375rem 0.75rem 0;
  }
}
.typo--lesson .wp-block-columns .wp-block-column p {
  margin-bottom: 0.5rem;
}
.typo--lesson .wp-block-table {
  margin: 2.25rem auto;
}
.typo--lesson .wp-block-table td,
.typo--lesson .wp-block-table th {
  border-color: var(--color-black);
  font-size: 0.8125rem;
  line-height: 1.1875rem;
  letter-spacing: -0.13px;
  padding: 0.8125rem 0.875rem;
}
.typo--lesson strong {
  font-weight: 700;
}
ul.check-list li:last-child {
  margin-right: 0;
}
textarea,
input[type="url"],
input[type="tel"],
input[type="text"],
input[type="email"],
input[type="search"],
input[type="password"],
select {
  color: var(--color-black);
  border: 1px solid var(--color-gray-300);
  border-radius: 3.125rem;
  display: block;
  font-family: var(--font-default);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.375rem;
  padding: 0.75rem;
  width: 100%;
}
textarea:-ms-input-placeholder,
input[type="url"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="text"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
select:-ms-input-placeholder {
  color: var(--color-blue-350);
}
textarea::placeholder,
input[type="url"]::placeholder,
input[type="tel"]::placeholder,
input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="search"]::placeholder,
input[type="password"]::placeholder,
select::placeholder {
  color: var(--color-blue-350);
}
textarea:hover,
textarea:focus,
input[type="url"]:hover,
input[type="url"]:focus,
input[type="tel"]:hover,
input[type="tel"]:focus,
input[type="text"]:hover,
input[type="text"]:focus,
input[type="email"]:hover,
input[type="email"]:focus,
input[type="search"]:hover,
input[type="search"]:focus,
input[type="password"]:hover,
input[type="password"]:focus,
select:hover,
select:focus {
  color: inherit;
}
button {
  cursor: pointer;
  pointer-events: auto;
}
select {
  display: block;
  width: 100%;
}
textarea {
  resize: vertical;
  min-height: 4rem;
  max-height: 7rem;
}
.btn,
button.btn,
input[type="submit"],
input[type="button"],
button[type="submit"] {
  color: var(--btn-text);
  background: var(--btn-color);
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 100px;
  display: inline-block;
  cursor: pointer;
  font-family: var(--font-default);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5rem;
  letter-spacing: -0.27px;
  padding: 0.9375rem 2rem;
  text-align: center;
  text-decoration: none;
  transition: var(--transition-default);
}
@media (max-width: 769px) {
  .btn,
  button.btn,
  input[type="submit"],
  input[type="button"],
  button[type="submit"] {
    font-size: 1rem;
    line-height: 1.375rem;
    letter-spacing: -0.24px;
    padding: 0.875rem 2rem;
  }
}
.btn:not(:disabled):hover,
.btn:not(:disabled):focus,
.btn:not(:disabled).active,
button.btn:not(:disabled):hover,
button.btn:not(:disabled):focus,
button.btn:not(:disabled).active,
input[type="submit"]:not(:disabled):hover,
input[type="submit"]:not(:disabled):focus,
input[type="submit"]:not(:disabled).active,
input[type="button"]:not(:disabled):hover,
input[type="button"]:not(:disabled):focus,
input[type="button"]:not(:disabled).active,
button[type="submit"]:not(:disabled):hover,
button[type="submit"]:not(:disabled):focus,
button[type="submit"]:not(:disabled).active {
  color: var(--btn-text-hover);
  background: var(--btn-hover);
  border: var(--btn-border-hover);
}
.btn:not(:disabled):active,
button.btn:not(:disabled):active,
input[type="submit"]:not(:disabled):active,
input[type="button"]:not(:disabled):active,
button[type="submit"]:not(:disabled):active {
  background: var(--btn-active);
  box-shadow: var(--btn-hover-box-shadow);
}
.btn:disabled,
button.btn:disabled,
input[type="submit"]:disabled,
input[type="button"]:disabled,
button[type="submit"]:disabled {
  cursor: not-allowed;
  background: #d6dae3;
  color: var(--color-gray-250);
}
.btn-primary {
  --btn-text: var(--color-white);
  --btn-text-hover: var(--color-white);
  --btn-color: var(--color-blue);
  --btn-hover: #242eb3;
  --btn-active: #242eb3;
  --btn-hover-box-shadow: 0px 0px 0px 4px rgba(53, 72, 254, 0.2);
  --btn-border-hover: 1px solid transparent;
}
.btn-secondary {
  --btn-text: var(--color-black);
  --btn-text-hover: var(--color-blue);
  --btn-color: transparent;
  --btn-hover: var(--color-gray-50);
  --btn-active: transparent;
  --btn-hover-box-shadow: none;
  --btn-border-hover: 1px solid transparent;
  padding: 0;
  border-radius: 0;
}
.btn-white {
  --btn-text: var(--color-black);
  --btn-text-hover: var(--color-black);
  --btn-color: var(--color-white);
  --btn-hover: var(--color-white);
  --btn-active: var(--color-white);
  --btn-hover-box-shadow: 0px 0px 0px 4px rgba(53, 72, 254, 0.2);
  --btn-border-hover: 1px solid var(--color-blue);
}
.btn-danger {
  --btn-text: var(--color-white);
  --btn-text-hover: var(--color-red);
  --btn-color: var(--color-red);
  --btn-hover: transparent;
  --btn-active: transparent;
  --btn-hover-box-shadow: none;
  --btn-border-hover: 1px solid var(--color-red);
}
.btn-full {
  width: 100%;
}
.btn-group {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
label.checkbox span:before,
input[type="checkbox"] + label:before,
.wpcf7-list-item-label.checkbox span:before,
input[type="checkbox"] + .wpcf7-list-item-label:before {
  content: "";
}
input[type="checkbox"]:checked + label:before,
label.checkbox input[type="checkbox"]:checked + span:before,
input[type="checkbox"]:checked + .wpcf7-list-item-label:before,
.wpcf7-list-item-label.checkbox input[type="checkbox"]:checked + span:before {
  color: inherit;
}
input[type="checkbox"]:checked + label:after,
label.checkbox input[type="checkbox"]:checked + span:after,
input[type="checkbox"]:checked + .wpcf7-list-item-label:after,
.wpcf7-list-item-label.checkbox input[type="checkbox"]:checked + span:after {
  opacity: 1;
}
.checkbox-ui {
  display: inline-block;
  position: relative;
  padding-left: 2rem;
  cursor: pointer;
  font-size: 0.9375rem;
  line-height: 1.25rem;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkbox-ui input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 1rem;
  height: 1rem;
  margin: 0;
  z-index: 2;
  cursor: pointer;
}
.checkbox-ui:before {
  background-color: var(--color-blue-tab);
  border: 2px solid var(--color-blue-tab);
  border-radius: 0.25rem;
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  height: 1.25rem;
  width: 1.25rem;
  transition: var(--transition-default);
}
.checkbox-ui:after {
  content: "";
  background-image: url("/wp-content/themes/zmist/assets/img/ok.svg");
  background-size: contain;
  background-position: center center;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 1.25rem;
  width: 1.25rem;
  opacity: 0;
  transform: rotate(-45deg) scale(0.8);
  transition: opacity 0.2s, transform 0.2s;
}
input[type="checkbox"]:checked ~ .checkbox-ui:before,
input[type="checkbox"]:checked + span + .checkbox-ui:before {
  border-color: var(--color-blue);
}
input[type="checkbox"]:checked ~ .checkbox-ui:after,
input[type="checkbox"]:checked + span + .checkbox-ui:after {
  opacity: 1;
  transform: scale(1);
}
.checkbox-ui:has(input[type="checkbox"]:checked):before {
  border-color: var(--color-blue);
}
.checkbox-ui:has(input[type="checkbox"]:checked):after {
  opacity: 1;
  transform: scale(1);
}
.radio-ui {
  display: inline-block;
  position: relative;
  padding-left: 1.5rem;
  cursor: pointer;
  font-size: 1rem;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.radio-ui input[type="radio"] {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 1rem;
  height: 1rem;
  margin: 0;
  z-index: 2;
  cursor: pointer;
}
.radio-ui:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1rem;
  height: 1rem;
  border: 2px solid var(--color-black);
  border-radius: 50%;
  background: var(--color-white);
  transition: border-color 0.2s, background 0.2s;
  box-sizing: border-box;
}
.radio-ui:after {
  content: "";
  display: block;
  position: absolute;
  left: 0.3rem;
  top: 0.3rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--color-blue, #007bff);
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  transform: scale(0.7);
}
.radio-ui:has(input[type="radio"]:checked):before {
  border-color: var(--color-blue, #007bff);
  background: var(--color-blue-soft, #e6f0fa);
}
.radio-ui:has(input[type="radio"]:checked):after {
  opacity: 1;
  transform: scale(1);
}
.button-group {
  display: flex;
  gap: 1.75rem;
}
.tag {
  display: inline-block;
  border-radius: 6.25rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5rem;
  letter-spacing: -0.21px;
  padding: 0 0.5rem;
}
.tag-black {
  color: var(--color-white);
  background: var(--color-black);
  border: 1px solid var(--color-black);
}
.tag-black--inverted {
  color: var(--color-black);
  background: rgba(0, 0, 0, 0);
}
.tag-white {
  background: var(--color-white);
  color: var(--color-black);
}
.tag-gray {
  background: var(--color-blue-tab);
  color: var(--color-black);
}
.tag-blue--outline {
  color: var(--color-blue);
  background: rgba(var(--color-blue--rgb), 0.04);
  border: 1px solid rgba(var(--color-blue--rgb), 0.5);
}
.tag-blue--outline svg {
  color: var(--color-blue);
}
.tag-transparent {
  background: var(--color-gray-50);
  border-color: rgba(0, 0, 0, 0);
  box-shadow: 0px 0px 1px 0px rgba(17, 17, 17, 0.05),
    1px 1px 1px 0px rgba(17, 17, 17, 0.04),
    2px 3px 2px 0px rgba(17, 17, 17, 0.03),
    4px 4px 2px 0px rgba(17, 17, 17, 0.01);
}
.tag img,
.tag svg,
.tag picture {
  display: inline-block;
  height: 1rem;
  width: 1rem;
  position: relative;
  top: 0.125rem;
  margin-right: 0.25rem;
}
.courses-filter input[type="radio"],
.courses-filter input[type="checkbox"] {
  width: auto;
  margin: 0;
}
.courses-filter .filter-form input[type="checkbox"] {
  margin-right: 0.5rem;
}
.filter-form .error {
  color: var(--color-red, #dc3545);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
.filter-form .success {
  color: var(--color-green, #28a745);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
form.validated .form-message {
  display: block;
}
.form-group {
  flex: 1;
  position: relative;
}
@media (max-width: 769px) {
  .form-group {
    flex: auto;
    width: 100%;
  }
}
.form-group label {
  display: block;
  color: var(--color-blue-500);
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: -0.21px;
}
.form-group label + input,
.form-group label + select,
.form-group label + textarea,
.form-group label + .datepicker {
  margin-top: 0.25rem;
}
.form-group label:has(.side-link) {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.form-group label .side-link {
  color: var(--color-blue);
  margin-left: auto;
}
.form-group label .side-link:hover,
.form-group label .side-link:focus {
  text-decoration: underline;
}
.form-group .help-text {
  display: block;
  color: var(--color-blue-500);
  font-size: 0.625rem;
  padding-left: 1.25rem;
  margin-top: 0.5rem;
}
.form-group .error-message {
  color: var(--color-red);
  font-size: 0.8125rem;
  margin-top: 0.25rem;
}
.form-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  max-width: 100%;
}
@media (max-width: 769px) {
  .form-block {
    margin-bottom: 1.5rem;
  }
}
.form-block--small {
  width: 15.5rem;
}
@media (max-width: 769px) {
  .form-block--small {
    width: 100%;
  }
}
.form-row {
  display: flex;
  margin-top: 1rem;
  flex-wrap: wrap;
  gap: 2rem;
}
@media (max-width: 769px) {
  .form-row {
    gap: 1rem;
  }
}
.form-row:first-child {
  margin-top: 0;
}
.form-row .form-group:first-child:last-child {
  flex: unset;
  width: calc(50% - 1rem);
}
@media (max-width: 769px) {
  .form-row .form-group:first-child:last-child {
    width: 100%;
  }
}
.form-footer {
  margin-top: 2rem;
}
@media (max-width: 480px) {
  .form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
}
.form-actions .btn {
  font-size: 0.9375rem;
  padding: 0.75rem 2rem;
}
.form-actions .btn:disabled,
.form-actions input[type="submit"]:disabled {
  color: #aeadb2;
  background: var(--color-gray-200);
}
@media (max-width: 769px) {
  .form-actions .btn:disabled,
  .form-actions input[type="submit"]:disabled {
    background: #f2f2f2;
    color: #a4a3a8;
  }
}
@media (max-width: 480px) {
  .form-actions .btn,
  .form-actions input[type="submit"] {
    width: calc(50% - 0.375rem);
  }
  .form-actions .btn:first-child:last-child,
  .form-actions input[type="submit"]:first-child:last-child {
    width: 100%;
  }
}
.checkbox-group {
  padding-bottom: 1.5rem;
}
.checkbox-group + .checkbox-group {
  border-top: 1px solid var(--color-gray-350);
  padding-top: 1.5rem;
}
.checkbox-group input[type="checkbox"] {
  display: none;
}
.checkbox-group + .form-footer {
  margin-top: 1.5rem;
}
.checkbox-label span {
  cursor: pointer;
  color: var(--color-black);
  font-size: 1rem;
  line-height: 1.375rem;
  letter-spacing: -0.24px;
  display: block;
  padding-left: 1.75rem;
  position: relative;
}
.checkbox-label span:after,
.checkbox-label span:before {
  content: "";
  display: block;
  position: absolute;
  height: 1.25rem;
  width: 1.25rem;
  left: 0;
  top: 0.0625rem;
  transition: var(--transition-default);
}
.checkbox-label span:after {
  background: url("/wp-content/themes/zmist/assets/img/Check.svg");
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: rotate(-45deg) scale(0.8);
}
.checkbox-label span:before {
  background: var(--color-blue-tab);
  border: 2px solid var(--color-blue-tab);
  border-radius: 0.25rem;
  height: 1.25rem;
  width: 1.25rem;
}
.checkbox-label input[type="checkbox"]:checked + span:before {
  border-color: var(--color-blue);
}
.checkbox-label input[type="checkbox"]:checked + span::after {
  opacity: 1;
  transform: scale(1);
}
.checkbox-content {
  margin-top: 0.8125rem;
}
.checkbox-content p {
  color: var(--color-gray-450);
  font-size: 0.9375rem;
  line-height: 1.25rem;
  letter-spacing: -0.225px;
}
@media (max-width: 769px) {
  .checkbox-content p {
    font-size: 0.875rem;
  }
}
.datepicker {
  position: relative;
}
.datepicker svg {
  color: var(--color-black);
  height: 1.125rem;
  width: 1.125rem;
  position: absolute;
  top: 0.9375rem;
  right: 0.9375rem;
  pointer-events: none;
}
.password-input {
  position: relative;
}
.password-input .toggle-password {
  display: block;
  height: 1.5rem;
  width: 1.5rem;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition-default);
}
.password-input .toggle-password .show-text,
.password-input .toggle-password .hide-text {
  position: absolute;
  left: 0;
  top: 0;
  transition: var(--transition-default);
}
.password-input .toggle-password .show-text svg,
.password-input .toggle-password .hide-text svg {
  color: var(--color-blue-350);
  height: 1.5rem;
  width: 1.5rem;
  transition: var(--transition-default);
}
.password-input .toggle-password:hover .show-text svg,
.password-input .toggle-password:hover .hide-text svg,
.password-input .toggle-password:focus .show-text svg,
.password-input .toggle-password:focus .hide-text svg {
  color: var(--color-black);
}
.password-input:has(input[type="password"]) .toggle-password .show-text {
  opacity: 0;
}
.password-input:has(input[type="password"]) .toggle-password .hide-text {
  opacity: 1;
}
.password-input:has(input[type="text"]) .toggle-password .show-text {
  opacity: 1;
}
.password-input:has(input[type="text"]) .toggle-password .hide-text {
  opacity: 0;
}
.form-message {
  display: none;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 0.25rem;
  margin: 0 auto 1rem;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.1875rem;
  letter-spacing: -0.13px;
}
.form-message:before {
  content: "";
  height: 1.25rem;
  width: 1.25rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: var(--transition-default);
  pointer-events: none;
}
.form-message.error {
  color: var(--color-red);
  padding: 0 0 0 1.75rem;
  position: relative;
}
.form-message.error:before {
  background: url("/wp-content/themes/zmist/assets/img/circle-warning.svg");
  opacity: 1;
}
.form-message.success {
  color: var(--color-green);
  background: rgba(var(--color-green--rgb), 0.1);
  border-color: var(--color-green);
}
.confirmation-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.confirmation__text {
  display: block;
  margin-bottom: 1rem;
}
.password-strength .strength-bar {
  margin-bottom: 0.25rem;
  display: flex;
  gap: 5px;
}
.password-strength .strength-bar span {
  background: var(--color-gray-250);
  border-radius: 10px;
  display: block;
  height: 4px;
  flex: 1;
}
.password-strength .strength-text {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.1875rem;
  letter-spacing: -0.13px;
}
.password-strength:has(.weak) .strength-bar span:nth-child(1) {
  background: var(--color-red);
}
.password-strength:has(.weak) .strength-text {
  color: var(--color-red);
}
.password-strength:has(.fair) .strength-bar span:nth-child(1),
.password-strength:has(.fair) .strength-bar span:nth-child(2) {
  background: var(--color-orange);
}
.password-strength:has(.fair) .strength-text {
  color: var(--color-orange);
}
.password-strength:has(.strong) .strength-bar span:nth-child(1),
.password-strength:has(.strong) .strength-bar span:nth-child(2),
.password-strength:has(.strong) .strength-bar span:nth-child(3) {
  background: var(--color-green--form);
}
.password-strength:has(.strong) .strength-text {
  color: var(--color-green--form);
}
.password-strength:not(:has(.weak)):not(:has(.fair)):not(:has(.strong)) {
  display: none;
}
.container {
  margin: 0 auto;
  max-width: 100%;
  width: 77.5rem;
}
.container.small {
  width: 1280px;
}
@media (max-width: 1280px) {
  .container.small {
    padding: 0 0.625rem;
  }
}
@media (max-width: 1280px) {
  .container:not(:has(.container)) {
    padding: 0 0.625rem;
  }
}
.container--large {
  width: 87.5rem;
}
@media screen and (max-width: 87.5rem) {
  .container--large:not(:has(.container)) {
    padding: 0 0.625rem;
  }
}
.row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 1201px) {
  .row {
    flex-wrap: wrap;
  }
}
.col-half {
  max-width: 100%;
  width: calc(50% - 0.5rem);
}
@media (max-width: 769px) {
  .col-half {
    width: calc(50% - 0.25rem);
  }
}
.hidden {
  display: none;
  opacity: 0;
  pointer-events: none;
  position: absolute;
}
main section {
  overflow: hidden;
}
main section.hide {
  display: none;
}
.block-editor main section.hide {
  display: block;
}
.header--home + main > section:first-child {
  padding-top: 8.25rem;
}
@media (max-width: 769px) {
  .header--home + main > section:first-child {
    padding-top: 7rem;
  }
}
@media screen and (max-width: 782px) {
  body.admin-bar .header--home + main > section:first-child {
    padding-top: 9.375rem;
  }
}
@media screen and (max-width: 480px) {
  body.admin-bar .header--home + main > section:first-child {
    padding-top: 7rem;
  }
}
.header--main + main > section:first-child {
  padding-top: 8.25rem;
}
@media (max-width: 769px) {
  .header--main + main > section:first-child {
    padding-top: 7rem;
  }
}
@media screen and (max-width: 782px) {
  body.admin-bar .header--main + main > section:first-child {
    padding-top: 9.375rem;
  }
}
@media screen and (max-width: 480px) {
  body.admin-bar .header--main + main > section:first-child {
    padding-top: 7rem;
  }
}
@media (max-width: 769px) {
  h1 br,
  .h1 br,
  h2 br,
  .h2 br,
  h3 br,
  .h3 br,
  h4 br,
  .h4 br,
  h5 br,
  .h5 br,
  h6 br,
  .h6 br {
    display: none;
  }
}
@media (max-width: 480px) {
  p br {
    display: none;
  }
}
.icon {
  height: 1.25rem;
  width: 1.25rem;
}
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA")
    format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(
    --swiper-wrapper-transition-timing-function,
    initial
  );
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  -ms-scroll-snap-type: none;
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal
  > .swiper-wrapper
  > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical
  > .swiper-wrapper
  > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: rgba(0, 0, 0, 0);
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.accordion {
  background: var(--color-white);
  border-radius: 1.25rem;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.accordion:last-child {
  margin-bottom: 0;
}
.accordion__head {
  font-size: 1.5rem;
  font-family: var(--font-default);
  font-weight: 500;
  line-height: 2rem;
  letter-spacing: -0.48px;
  padding: 1.75rem 3rem 1.75rem 1.5rem;
  cursor: pointer;
  position: relative;
  transition: var(--transition-default);
}
@media (max-width: 769px) {
.accordion__head {
    font-size: 1rem;
    line-height: 120%;
    letter-spacing: -0.27px;
    padding: 1.25rem 3.75rem 1.25rem 1.25rem;
  }
}
.accordion.opened .accordion__head,
.accordion.active .accordion__head {
  color: var(--color-blue);
}
.accordion.opened .accordion__head .icon,
.accordion.active .accordion__head .icon {
  transform: rotate(45deg);
}
.accordion__head .icon {
  color: var(--color-black) !important;
  transition: var(--transition-default);
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-primary);
  position: absolute;
  right: 1.5rem;
  top: calc(50% - 0.75rem);
}
.accordion__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 500ms;
  transition: grid-template-rows 500ms, -ms-grid-rows 500ms;
  padding: 0 1.5rem;
}
.accordion__body > div {
  overflow: hidden;
  max-width: 100%;
  width: 44.375rem;
}
@media (max-width: 769px) {
  .accordion__body > div {
    width: 100%;
  }
}
@media (max-width: 769px) {
  .accordion__body {
    padding: 0 1rem;
  }
}
.opened .accordion__body,
.active .accordion__body {
  padding-bottom: 1.5rem;
  grid-template-rows: 1fr;
}
@media (max-width: 769px) {
  .opened .accordion__body,
  .active .accordion__body {
    padding-bottom: 1rem;
  }
}
html:has(.popup.opened),
body:has(.popup.opened) {
  overflow: hidden;
}
.popup-wrap {
  padding: 0;
  position: fixed;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 300;
  transition: var(--transition-default);
  pointer-events: none;
  opacity: 0;
  overflow: auto;
}
.popup-wrap:has(.popup.opened) {
  opacity: 1;
  pointer-events: auto;
}
.popup-wrap:has(.lesson-pdf-modal.opened) .popup-wrap__inner {
  justify-content: flex-start;
}
.popup-wrap__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  overflow: auto;
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
}
.popup-wrap .popup {
  display: none;
  margin: 0 auto;
  max-height: 100%;
  max-width: 100%;
  position: relative;
}
.popup-wrap .popup.opened {
  display: block;
}
.popup-wrap .popup__overlay {
  background: rgba(0, 0, 0, 0.63);
  padding: 0;
  position: fixed;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}
.popup-wrap .popup__inner {
  position: relative;
  z-index: 3;
}
.popup-wrap .popup__head svg {
  color: var(--color-white);
  height: 1.25rem;
  width: 1rem;
}
.popup-wrap .popup__body {
  padding: 7px 0.813rem 0.813rem;
}
.popup-wrap .popup-content p {
  font-size: 0.563rem;
  font-weight: 400;
  line-height: 150%;
  text-transform: none;
}
.popup-wrap .popup-content p strong {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding-bottom: 3px;
}
.popup-wrap .popup-content ul {
  margin-top: 6px;
}
.popup-wrap .popup-content ul li {
  border: 1px solid var(--color-white);
  display: flex;
  justify-content: space-between;
  padding: 3px 12px;
}
.popup-wrap .popup-content ul li + li {
  border-top: none;
}
.popup-wrap .popup-content ul li span {
  display: inline-block;
  font-size: 0.563rem;
  font-weight: 400;
  line-height: 150%;
  text-transform: none;
}
.popup-wrap .popup-content ul li span:first-child:before {
  content: "+";
  display: inline-block;
  margin-right: 10px;
}
.popup-wrap .popup-content ul li span .radio-ui {
  top: 1px;
  position: relative;
}
.popup-wrap .popup__exit {
  cursor: pointer;
  display: block;
  position: absolute;
  right: -3rem;
  top: 1.8125rem;
  z-index: 2;
}
.popup-wrap .popup__exit svg {
  color: var(--color-white);
  height: 1.25rem;
  width: 1.25rem;
}
.popup-wrap .popup .buttons-row {
  display: flex;
  justify-content: center;
  margin: 1rem auto 0;
  gap: 1.313rem;
}
.popup-wrap .popup .buttons-row .btn {
  color: var(--color-black);
  background: var(--color-white);
  font-size: 0.563rem;
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  min-width: 0;
}
.popup-wrap .popup .buttons-row .btn:hover,
.popup-wrap .popup .buttons-row .btn:focus,
.popup-wrap .popup .buttons-row .btn:active,
.popup-wrap .popup .buttons-row .btn .active {
  color: var(--color-white) !important;
  background: rgba(0, 0, 0, 0) !important;
}
.lesson-pdf-modal {
  background: #333639;
  border-radius: 0.75rem;
  margin: 0 auto;
  max-width: 100%;
  width: 61rem;
  top: 0;
  position: relative;
}
.lesson-pdf-modal .popup__inner {
  overflow: hidden;
}
.lesson-pdf-modal a:hover svg,
.lesson-pdf-modal a:focus svg,
.lesson-pdf-modal button:hover svg,
.lesson-pdf-modal button:focus svg {
  color: var(--color-blue-tab);
}
.lesson-pdf-modal-viewer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.lesson-pdf-modal-viewer button {
  cursor: pointer;
  display: block;
  height: 1.5rem;
  width: 1.5rem;
}
.lesson-pdf-modal-viewer button svg {
  color: var(--color-white);
  height: 1.5rem;
  width: 1.5rem;
  transition: var(--transition-default);
}
.lesson-pdf-modal-viewer button:hover svg {
  color: var(--color-blue-tab);
  transform: translateX(-25%);
}
.lesson-pdf-modal-viewer button.lesson-pdf-next svg {
  transform: scale(-1, 1);
}
.lesson-pdf-modal-viewer button.lesson-pdf-next:hover svg {
  transform: scale(-1, 1) translateX(-25%);
}
.lesson-pdf-modal-toolbar {
  color: var(--color-white);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.24);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  gap: 1.5rem;
}
.lesson-pdf-modal-toolbar button {
  cursor: pointer;
  display: flex;
  height: 1.5rem;
  width: 1.5rem;
  margin: 0 1.5rem;
}
.lesson-pdf-modal-toolbar button svg {
  height: 1.5rem;
  width: 1.5rem;
}
.lesson-pdf-modal-toolbar button + button,
.lesson-pdf-modal-toolbar button:first-child {
  margin-left: 0;
}
.lesson-pdf-modal-toolbar button:last-child {
  margin-right: 0;
}
.lesson-pdf-modal-toolbar--left,
.lesson-pdf-modal-toolbar--right,
.lesson-pdf-modal-toolbar--center {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lesson-pdf-modal-toolbar--left {
  margin-left: 0;
  margin-right: auto;
}
.lesson-pdf-modal-toolbar--center {
  margin: 0 auto;
  padding: 2px 0;
}
.lesson-pdf-modal-toolbar--right {
  margin-left: auto;
  margin-right: 0;
}
.lesson-pdf-modal-viewer {
  padding: 2.5rem 0.75rem;
}
.lesson-pdf-modal-viewer canvas {
  display: block;
  max-width: calc(100% - 6rem);
}
.social-links {
  display: inline-flex;
  gap: 1rem;
}
.social-links li {
  display: block;
  height: 1.75rem;
  width: 1.75rem;
}
.social-links li a {
  display: block;
  height: 1.75rem;
  width: 1.75rem;
}
.social-links li a svg {
  color: var(--color-black);
  display: block;
  height: 1.75rem;
  width: 1.75rem;
}
.social-links + p {
  margin-top: 2.75rem;
}
@media (max-width: 769px) {
  .social-links + p {
    margin-top: 1.75rem;
  }
}
.breadcrumbs {
  color: var(--color-blue-350);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.1875rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 480px) {
  .breadcrumbs {
    display: none;
  }
}
.breadcrumbs.site-breadcrumbs a,
.breadcrumbs.site-breadcrumbs span {
  display: inline-block;
  text-overflow: ellipsis;
  max-width: 13.125rem;
  overflow: hidden;
  white-space: nowrap;
}
.breadcrumbs.site-breadcrumbs a {
  transition: var(--transition-default);
}
.breadcrumbs.site-breadcrumbs a:hover {
  color: var(--color-black);
}
.breadcrumbs.site-breadcrumbs span {
  color: var(--color-black);
  max-width: 100%;
}
.breadcrumbs.yoast-breadcrumbs a:hover {
  color: var(--color-black);
}
.breadcrumbs.yoast-breadcrumbs .breadcrumb_last {
  color: var(--color-black);
}
.tabs-nav {
  display: flex;
  gap: 1.5rem;
}
.tabs-nav .tab {
  cursor: pointer;
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.filter-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.filter-dropdown-toggle {
  width: 100%;
  color: var(--color-blue-450);
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  line-height: 1.25rem;
  font-weight: 500;
  text-transform: uppercase;
  padding: 0.375rem 0;
  position: relative;
  cursor: pointer;
}
.filter-dropdown-toggle svg.icon {
  color: var(--color-gray-500);
  height: 1.25rem;
  width: 1.25rem;
  position: absolute;
  right: 0;
  top: 0.25rem;
  transition: var(--transition-default);
}
.filter-dropdown-toggle > span {
  display: inline-block;
  margin-left: 0.25rem;
}
.filter-dropdown-toggle[aria-expanded="true"] svg.icon {
  transform: rotate(180deg);
}
.filter-dropdown-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1rem;
}
.filter-dropdown-toggle[aria-expanded="false"] + .filter-dropdown-list {
  display: none;
}
.filter-dropdown-toggle[aria-expanded="true"] + .filter-dropdown-list {
  display: flex;
}
.filter-dropdown-list:has(.checkbox-search) .filter-checkbox-label {
  display: none;
}
.filter-dropdown-list:has(.checkbox-search) .filter-checkbox-label:first-child {
  margin-top: 1.25rem;
}
.filter-dropdown-list:has(.checkbox-search) .filter-checkbox-label.active {
  display: block !important;
}
.filter-dropdown-list input[type="text"] {
  font-size: 0.9375rem;
  line-height: 1.25rem;
  border: 1px solid var(--color-gray-400);
  border-radius: 0.5625rem;
  padding: 0.625rem 0.75rem;
}
.comments-area .comments-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.comments-area .comment-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.comments-area .comment-list .children {
  margin-top: 1rem;
}
.comments-area .comment-list .comment,
.comments-area .comment-list .lesson_comment {
  margin-bottom: 1rem;
}
.comments-area .comment-list .comment.depth-2,
.comments-area .comment-list .lesson_comment.depth-2 {
  margin-left: 3rem;
  margin-top: 1rem;
}
.comments-area .comment-list .comment.depth-3,
.comments-area .comment-list .lesson_comment.depth-3 {
  margin-left: 3rem;
}
.comments-area .comment-list .comment.depth-4,
.comments-area .comment-list .lesson_comment.depth-4 {
  margin-left: 3rem;
}
.comments-area .comment-body .comment-meta {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}
.comments-area .comment-body .comment-meta .comment-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.comments-area
  .comment-body
  .comment-meta
  .comment-author
  .comment-author-avatar {
  flex-shrink: 0;
}
.comments-area
  .comment-body
  .comment-meta
  .comment-author
  .comment-author-avatar
  .profile-photo,
.comments-area
  .comment-body
  .comment-meta
  .comment-author
  .comment-author-avatar
  img {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  object-fit: cover;
}
.comments-area
  .comment-body
  .comment-meta
  .comment-author
  .comment-author-info
  .fn {
  color: var(--color-black);
  font-size: 1.125rem;
  font-weight: 600;
  font-style: normal;
  line-height: 1.5rem;
}
.comments-area
  .comment-body
  .comment-meta
  .comment-author
  .comment-author-info
  .comment-metadata {
  color: var(--color-blue-450);
  font-size: 0.8125rem;
  font-weight: 400;
  margin-top: 0.25rem;
}
.comments-area .comment-body .comment-content {
  color: var(--color-black);
  font-size: 0.9375rem;
  margin-bottom: 0.75rem;
  line-height: 1.25rem;
  letter-spacing: -0.225px;
  padding-left: 3rem;
}
.comments-area .comment-body .comment-content p {
  margin-bottom: 0.75rem;
}
.comments-area .comment-body .comment-content p:last-child {
  margin-bottom: 0;
}
.comments-area .comment-body .comment-reply {
  padding-left: 3rem;
}
.comments-area .comment-body .comment-reply .comment-reply-link {
  color: var(--color-blue-450);
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  transition: var(--transition-default);
}
.comments-area .comment-body .comment-reply .comment-reply-link:hover {
  color: var(--color-black);
}
.comments-area .comment-body .comment-reply .comment-reply-link .reply-icon {
  font-size: 1rem;
}
.comment-respond {
  margin-top: 2.25rem;
  background: var(--color-bg-secondary);
  border-radius: 8px;
  border: 1px solid var(--color-border);
}
.comment-respond .comment-reply-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--color-text-primary);
  font-weight: 600;
}
.comment-respond .comment-reply-title small {
  font-size: 0.875rem;
  font-weight: 400;
  margin-left: 1rem;
}
.comment-respond .comment-reply-title small a {
  color: var(--color-text-secondary);
  text-decoration: none;
}
.comment-respond .comment-reply-title small a:hover {
  color: var(--color-primary);
}
.comment-respond .comment-form .comment-form-user-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--color-bg-primary);
  border-radius: 6px;
}
.comment-respond .comment-form .comment-form-user-info .comment-author-photo {
  flex-shrink: 0;
}
.comment-respond
  .comment-form
  .comment-form-user-info
  .comment-author-photo
  .profile-photo,
.comment-respond
  .comment-form
  .comment-form-user-info
  .comment-author-photo
  img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.comment-respond
  .comment-form
  .comment-form-user-info
  .comment-author-details
  .comment-author-name {
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 0.25rem 0;
}
.comment-respond
  .comment-form
  .comment-form-user-info
  .comment-author-details
  .comment-author-email {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  margin: 0;
}
.comment-respond .comment-form .comment-form-field {
  position: relative;
}
.comment-respond .comment-form .comment-form-field .screen-reader-text {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.comment-respond .comment-form .comment-form-field textarea {
  color: var(--color-black);
  width: 100%;
  padding: 1rem;
  min-height: 3.625rem;
  height: 4rem;
  border: 1px solid var(--color-gray-300);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.375rem;
  resize: vertical;
  padding: 1.0625rem 1.25rem;
  transition: var(--transition-default);
}
.comment-respond .comment-form .comment-form-field textarea:focus {
  outline: none;
  border-color: var(--color-gray-400);
  box-shadow: 0 0 0 2px rgba(var(--color-primary-rgb), 0.1);
}
.comment-respond
  .comment-form
  .comment-form-field
  textarea:-ms-input-placeholder {
  color: var(--color-gray-400);
}
.comment-respond .comment-form .comment-form-field textarea::placeholder {
  color: var(--color-gray-400);
}
.comment-respond .comment-form .comment-form-field input[type="submit"],
.comment-respond .comment-form .comment-form-field button[type="submit"] {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  position: absolute;
  right: 0.5rem;
  top: 0.8125rem;
  padding: 0;
  height: 2rem;
  width: 2rem;
}
.comment-respond .comment-form .comment-form-field input[type="submit"] svg,
.comment-respond .comment-form .comment-form-field button[type="submit"] svg {
  height: 1.25rem;
  width: 1.25rem;
  transform: scale(-1, 1);
}
.comment-respond .comment-form .comment-form-actions {
  display: flex;
  justify-content: flex-end;
}
.comment-respond .comment-login-required {
  text-align: center;
  color: var(--color-text-secondary);
  font-size: 1rem;
}
.comment-respond .comment-login-required a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
}
.comment-respond .comment-login-required a:hover {
  text-decoration: underline;
}
.no-comments {
  text-align: center;
  color: var(--color-text-secondary);
  font-style: italic;
  margin-top: 2rem;
}
.comment-navigation {
  margin: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.comment-navigation .nav-previous a,
.comment-navigation .nav-next a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  transition: var(--transition-default);
}
.comment-navigation .nav-previous a:hover,
.comment-navigation .nav-next a:hover {
  color: var(--color-black);
}
.input-switcher {
  width: 100%;
  background: var(--color-blue-tab);
  border-radius: 6.25rem;
}
.input-switcher-display {
  display: flex;
  height: 44px;
  margin: 0 0.25rem;
  padding: 0.25rem 0;
  position: relative;
}
.input-switcher-display > span {
  display: block;
  height: calc(100% - 0.5rem);
  color: var(--color-white);
  background: var(--color-black);
  border-radius: 6.25rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
}
.light .input-switcher-display > span {
  border: 1px solid var(--color-gray-350);
  background: var(--color-white);
}
.black-and-white .input-switcher-display > span {
  background: var(--color-black);
  height: 2.25rem;
}
.input-switcher.initialized .input-switcher-display > span {
  transition: var(--transition-default);
}
.input-switcher label {
  flex: 1;
  line-height: 2.25rem;
  padding: 0;
  position: relative;
  text-align: center;
  transition: var(--transition-default);
  z-index: 3;
}
@media (max-width: 769px) {
  .input-switcher label {
    display: inline-block;
    width: auto;
  }
}
.input-switcher label:before,
.input-switcher label:after {
  content: none;
}
.input-switcher label.active,
.input-switcher label:has(input[type="radio"]:checked) {
  color: var(--color-white);
}
.input-switcher input[type="radio"] {
  display: none;
}
.input-switcher.light {
  color: var(--color-blue-350);
  background: var(--color-gray-250);
}
.input-switcher.light label.active,
.input-switcher.light label:has(input[type="radio"]:checked) {
  color: var(--color-blue);
}
.input-switcher.black-and-white {
  background: rgba(0, 0, 0, 0);
}
.input-switcher.black-and-white .input-switcher-display {
  padding: 0;
  height: 2.25rem;
}
.input-switcher.black-and-white label span {
  font-size: 0.875rem;
  line-height: 2.25rem;
  letter-spacing: -0.21px;
  padding: 0.5rem 1.125rem;
  white-space: nowrap;
}
.custom-select {
  width: 100%;
}
.select2-container {
  display: inline-block;
  z-index: 16;
}
.select2-container .select2-selection {
  color: var(--color-black);
  cursor: pointer;
  background: var(--color-white);
  border: 1px solid var(--color-gray-400);
  border-radius: 6.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.21px;
  padding: 0;
  position: relative;
  min-width: 8.75rem;
  max-width: 100%;
  transition: border-color 0.2s ease;
  display: block;
  width: 100%;
}
.select2-container .select2-selection:focus,
.select2-container .select2-selection:hover {
  border-color: var(--color-blue);
}
@media (max-width: 480px) {
  .select2-container .select2-selection:focus,
  .select2-container .select2-selection:hover {
    border-color: inherit;
  }
}
.select2-container .select2-selection--single .select2-selection__rendered {
  display: inline-block;
  padding: 0.625rem 2.5rem 0.625rem 0.75rem;
  line-height: 1.25rem;
  width: 100%;
  white-space: nowrap;
}
.select2-container .select2-selection--single .select2-selection__arrow {
  right: 0.75rem;
  top: calc(50% - 0.5rem);
  background: url("/wp-content/themes/zmist/assets/img/chevron-down.svg");
  position: absolute;
  display: block;
  height: 1rem;
  width: 1rem;
  transition: var(--transition-default);
}
.select2-container .select2-selection--single .select2-selection__arrow b {
  display: none;
}
.select2-container
  .select2-selection--single.select2-selection--open
  .select2-selection__arrow {
  transform: rotate(180deg);
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
  padding: 4px 8px;
}
.select2-container
  .select2-selection--multiple
  .select2-selection__rendered
  .select2-selection__choice {
  background-color: #007cba;
  border: 1px solid #006ba1;
  border-radius: 3px;
  color: #fff;
  margin: 2px 4px 2px 0;
  padding: 2px 8px;
}
.select2-container
  .select2-selection--multiple
  .select2-selection__rendered
  .select2-selection__choice
  .select2-selection__choice__remove {
  color: #fff;
  margin-right: 5px;
}
.select2-container
  .select2-selection--multiple
  .select2-selection__rendered
  .select2-selection__choice
  .select2-selection__choice__remove:hover {
  color: #ff6b6b;
}
.select2-dropdown {
  background: var(--color-white);
  border-radius: 0.5rem;
  box-shadow: 0px 1px 2px 0px rgba(46, 53, 95, 0.08),
    0px 4px 6px 0px rgba(46, 53, 95, 0.04),
    0px 24px 40px -16px rgba(46, 53, 95, 0.08);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.21px;
  display: block;
  z-index: 100;
  overflow: hidden;
  margin-top: 2.25rem;
}
@media (max-width: 480px) {
  .select2-dropdown {
    background: var(--color-gray-50);
    border: none;
    border-bottom: 1px solid var(--color-gray-300);
    border-radius: 0;
    box-shadow: none;
  }
}
.select2-dropdown .select2-search {
  display: none;
}
.select2-dropdown .select2-results {
  max-height: 200px;
}
@media (max-width: 480px) {
  .select2-dropdown .select2-results {
    max-height: unset;
  }
}
.select2-dropdown
  .select2-results
  .select2-results__options
  .select2-results__option {
  padding: 0.625rem 0.75rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
@media (max-width: 480px) {
  .select2-dropdown
    .select2-results
    .select2-results__options
    .select2-results__option {
    padding: 0.75rem 0;
    position: relative;
  }
  .select2-dropdown
    .select2-results
    .select2-results__options
    .select2-results__option:before {
    content: "";
    background: var(--color-gray-50);
    height: 100%;
    width: calc(100% + 1.5rem);
    z-index: -1;
    position: absolute;
    left: -0.75rem;
    top: 0;
    pointer-events: none;
  }
}
.select2-dropdown
  .select2-results
  .select2-results__options
  .select2-results__option--highlighted {
  background-color: var(--color-blue-150);
}
@media (max-width: 480px) {
  .select2-dropdown
    .select2-results
    .select2-results__options
    .select2-results__option--highlighted {
    background: rgba(0, 0, 0, 0);
  }
  .select2-dropdown
    .select2-results
    .select2-results__options
    .select2-results__option--highlighted:before {
    background: var(--color-blue-150);
  }
}
.select2-dropdown
  .select2-results
  .select2-results__options
  .select2-results__option--selected {
  background-color: var(--color-blue-200);
  color: #333;
}
@media (max-width: 480px) {
  .select2-dropdown
    .select2-results
    .select2-results__options
    .select2-results__option--selected {
    background: rgba(0, 0, 0, 0);
  }
  .select2-dropdown
    .select2-results
    .select2-results__options
    .select2-results__option--selected:before {
    background: var(--color-blue-200);
  }
}
.select2-dropdown
  .select2-results
  .select2-results__options
  .select2-results__option[aria-disabled="true"] {
  color: #999;
  cursor: not-allowed;
}
.select2-dropdown .select2-results .select2-results__message {
  padding: 8px 12px;
  color: var(--color-blue-400);
}
.select2-hidden-accessible {
  display: none;
}
.select2-container--open .select2-selection {
  border-color: var(--color-blue);
  box-shadow: 0 0 5px rgba(0, 124, 186, 0.3);
}
.select2-container--open .select2-selection__arrow {
  transform: rotate(180deg);
}
.select2-container--disabled .select2-selection {
  background-color: #f5f5f5;
  color: #999;
  cursor: not-allowed;
}
.select2-container--focus .select2-selection {
  border-color: var(--color-blue);
  box-shadow: 0 0 5px rgba(0, 124, 186, 0.3);
}
.select2-container .select2-selection__clear {
  display: none;
}
.select2-container .select2-selection__placeholder {
  color: var(--color-blue-400);
}
@media (max-width: 768px) {
  .select2-container .select2-selection {
    min-height: 44px;
  }
  .select2-container .select2-selection--single .select2-selection__rendered {
    padding: 10px 12px;
  }
}
.swiper-controls .swiper-button-next,
.swiper-controls .swiper-button-prev {
  cursor: pointer;
  color: var(--color-blue-350);
  background: var(--color-white);
  border-radius: 6.25rem;
  display: inline-block;
  height: 1.75rem;
  width: 3rem;
  line-height: 1.75rem;
  position: relative;
  transition: var(--transition-default);
}
.swiper-controls .swiper-button-next::after,
.swiper-controls .swiper-button-prev::after {
  font-size: 1.5rem;
  color: var(--color-white);
}
.swiper-controls .swiper-button-next svg,
.swiper-controls .swiper-button-prev svg {
  left: 50%;
  top: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}
.swiper-controls .swiper-button-next:not(.swiper-button-disabled):hover,
.swiper-controls .swiper-button-next:not(.swiper-button-disabled):focus,
.swiper-controls .swiper-button-prev:not(.swiper-button-disabled):hover,
.swiper-controls .swiper-button-prev:not(.swiper-button-disabled):focus {
  color: var(--color-white);
  background: var(--color-blue);
}
.swiper-controls .swiper-button-next:not(.swiper-button-disabled):active,
.swiper-controls .swiper-button-prev:not(.swiper-button-disabled):active {
  background: #2f3ed6;
}
.swiper-controls .swiper-button-disabled {
  pointer-events: none;
}
.swiper-controls .swiper-button-prev svg {
  transform: translate(-50%, -50%) scale(-1, 1);
}
.pagination {
  display: none;
  justify-content: center;
  margin: 2.5rem auto 0;
  gap: 0.5rem;
}
.pagination.disabled {
  display: none;
}
.pagination.initialized {
  display: flex;
}
.pagination-prev,
.pagination-next {
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 2.5rem;
  width: 2.5rem;
  transition: var(--transition-default);
}
.pagination-prev.disabled,
.pagination-next.disabled {
  display: none;
  opacity: 0.5;
}
.pagination-prev svg,
.pagination-next svg {
  transition: var(--transition-default);
}
.pagination-prev:not(.disabled):hover svg,
.pagination-prev:not(.disabled):focus svg {
  transform: translateX(-20%);
}
.pagination-next svg {
  transform: scale(-1, 1);
}
.pagination-next:not(.disabled):hover svg,
.pagination-next:not(.disabled):focus svg {
  transform: scale(-1, 1) translateX(-20%);
}
.pagination-numbers {
  display: inline-flex;
  justify-content: center;
  gap: 0.5rem;
}
.pagination-number {
  border-radius: 0.5625rem;
  color: var(--color-gray-450);
  cursor: pointer;
  height: 2.5rem;
  width: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  transition: var(--transition-default);
}
.pagination-number:hover,
.pagination-number:focus,
.pagination-number.active {
  background-color: var(--color-blue-tab);
  color: var(--color-black);
}
.pdf-viewer {
  max-width: 100%;
  margin: 0 auto;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}
.pdf-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  background: #f5f5f5;
  border-bottom: 1px solid #ddd;
  flex-wrap: wrap;
}
.pdf-btn {
  padding: 8px 12px;
  background: #007cba;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
}
.pdf-btn:hover {
  background: #005a87;
}
.pdf-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}
.pdf-page-info {
  margin: 0 10px;
  font-weight: 500;
}
.pdf-preview {
  padding: 15px;
  background: #fafafa;
  border-bottom: 1px solid #eee;
}
.pdf-preview h4 {
  margin: 0 0 10px 0;
  font-size: 16px;
  color: #333;
}
.pdf-thumbnails {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 5px 0;
}
.pdf-thumbnail {
  flex-shrink: 0;
  cursor: pointer;
  border: 2px solid rgba(0, 0, 0, 0);
  border-radius: 4px;
  padding: 5px;
  transition: all 0.2s;
  text-align: center;
}
.pdf-thumbnail:hover {
  border-color: #007cba;
  background: #f0f8ff;
}
.pdf-thumbnail.active {
  border-color: #007cba;
  background: #e6f3ff;
}
.pdf-thumbnail canvas {
  display: block;
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.pdf-thumbnail .page-number {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  color: #666;
}
.pdf-more-pages {
  padding: 20px;
  background: #e9ecef;
  border: 2px dashed #007cba;
  border-radius: 4px;
  color: #007cba;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
}
.pdf-more-pages:hover {
  background: #dee2e6;
}
.pdf-canvas-container {
  text-align: center;
  padding: 20px;
  background: #fff;
  overflow: auto;
  max-height: 80vh;
}
#pdfCanvas {
  border: 1px solid #ddd;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  height: auto;
}
.pdf-viewer.fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: #fff;
}
.pdf-viewer.fullscreen .pdf-canvas-container {
  max-height: calc(100vh - 120px);
}
@media (max-width: 768px) {
  .pdf-toolbar {
    flex-direction: column;
    gap: 5px;
  }
  .pdf-thumbnails {
    gap: 5px;
  }
  .pdf-thumbnail {
    padding: 3px;
  }
}
p.ql-left-displayed-equation {
  margin: 1.5rem 0 1.5rem;
}
p.ql-left-displayed-equation .ql-left-eqno,
p.ql-left-displayed-equation .ql-right-eqno {
  display: none !important;
}
p.ql-center-picture {
  margin: 1.5rem 0 2.25rem;
}
.lesson-search__results {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  overflow: auto;
  padding-bottom: 1.25rem;
}
@media (max-width: 769px) {
  .lesson-search__results {
    gap: 0;
  }
}
.lesson-search__results-wrapper {
  display: none;
  max-height: 50vh;
  padding: 0 0.25rem 0;
  overflow: auto;
}
@media (max-width: 769px) {
  .lesson-search__results-wrapper {
    max-height: calc(100% - 9.125rem);
  }
}
.lesson-search-form.has-results .lesson-search__results-wrapper {
  display: block;
}
.lesson-search__loading,
.lesson-search__no-results {
  padding: 0 1rem 1.75rem;
}
.lesson-search__loading > p,
.lesson-search__loading > span,
.lesson-search__no-results > p,
.lesson-search__no-results > span {
  color: var(--color-blue-450);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: -0.13px;
}
.lesson-search__loading {
  border-radius: 0.5rem;
  margin: 0 4px 1.25rem;
  padding: 0.625rem;
}
.search-form:has(.lesson-search-form.active.has-results)
  .lesson-search__results-wrapper,
.search-form:has(.lesson-search-form.active.has-error)
  .lesson-search__results-wrapper,
.search-form:has(.lesson-search-form.active.no-results)
  .lesson-search__results-wrapper {
  display: block;
}
.material-item {
  border-radius: 0.5rem;
  color: var(--color-black);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.25rem;
  letter-spacing: -0.225px;
  padding: 0.625rem;
  transition: var(--transition-default);
}
.material-item:hover,
.material-item:focus {
  background: var(--color-gray-200);
  color: var(--color-black);
}
.material-item__row {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 769px) {
  .material-item__row {
    flex-wrap: wrap;
  }
}
.material-item__icon {
  margin-right: 0.75rem;
}
@media (max-width: 769px) {
  .material-item__icon {
    margin-right: 0.5rem;
  }
}
.material-item__icon svg {
  color: var(--color-black);
  display: block;
  height: 1.25rem;
  width: 1.25rem;
}
.material-item__type {
  display: inline-flex;
  gap: 0.375rem;
  align-items: center;
  justify-content: flex-start;
  margin-right: 1rem;
  white-space: nowrap;
}
.material-item__type img,
.material-item__type picture {
  display: inline-block;
  height: 1.125rem;
  width: auto;
}
.material-item__type.type-video {
  min-width: 8.4375rem;
}
@media (max-width: 769px) {
  .material-item__name {
    margin-left: 1.9375rem;
    margin-top: 0.5rem;
  }
}
.material-item__name ul {
  margin-top: 0.0625rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.material-item__name ul li {
  color: var(--color-blue-500);
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.1875rem;
  letter-spacing: -0.13px;
  display: inline-block;
  position: relative;
}
.material-item__name ul li:not(:first-child) {
  padding-left: 0.4375rem;
}
.material-item__name ul li:not(:first-child):before {
  content: "";
  background: var(--color-blue-500);
  display: block;
  height: 0.1875rem;
  width: 0.1875rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.header {
  background: var(--color-blue-light);
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  transition: var(--transition-default);
  width: 100%;
  z-index: 10;
}
html:has(body.admin-bar) .header {
  top: 2rem;
}
@media screen and (max-width: 782px) {
  html:has(body.admin-bar) .header {
    top: 3rem;
  }
}
@media screen and (max-width: 600px) {
  html:has(body.admin-bar) .header {
    top: 0;
  }
}
.header--main {
  padding: 0.75rem 0;
}
.header--home {
  background: rgba(0, 0, 0, 0);
  padding: 1.25rem 0 0;
  z-index: 11;
}
@media (max-width: 769px) {
  .header--home {
    padding-top: 1rem;
  }
}
.header--home .header__toggle {
  display: none;
}
@media (max-width: 1025px) {
  .header--home .header__toggle {
    display: flex;
    margin-left: auto;
    margin-right: 0;
    top: 0;
  }
}
.header--home .header__wrapper {
  justify-content: space-between;
}
.header--home .header__content {
  flex: 1;
}
@media (max-width: 1025px) {
  .header--home .header__content {
    background: var(--color-white);
    border-radius: 1.5rem;
    box-shadow: 0px 3.2px 4px 0px rgba(18, 27, 151, 0.13);
    padding: 1.5rem 1.25rem;
    position: fixed;
    left: 0;
    top: 5rem;
    height: auto;
    width: 100%;
    transform: translateX(-120%);
  }
  body.nav-opened .header--home .header__content {
    transform: translateX(0);
    transition: var(--transition-default);
  }
}
@media (max-width: 769px) {
  .header--home .header__content {
    top: 4rem;
  }
}
@media (max-width: 1025px) {
  .header--home nav {
    width: 100%;
  }
  .header--home nav .menu {
    flex-wrap: wrap;
    flex-direction: column;
    width: 100%;
  }
}
.header--pinned::not(.sticky-disabled) {
  transform: translateY(0);
}
.header--unpinned:not(:has(.lesson-search-form.active)),
.header.sticky-disabled:not(:has(.lesson-search-form.active)) {
  transform: translateY(-100%);
}
.header--top {
  transform: translateY(0) !important;
}
@media screen and (max-width: 782px) {
  html:has(body.admin-bar) .header--top {
    top: 3rem !important;
  }
}
@media screen and (max-width: 480px) {
  html:has(body.admin-bar) .header--top {
    top: 0 !important;
  }
}
.header__toggle {
  margin-right: 1.25rem;
}
.header__content {
  display: flex;
  align-items: center;
}
@media (max-width: 1025px) {
  .header__content {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 2rem;
  }
}
.header__wrapper {
  background: var(--color-white);
  border-radius: 6.25rem;
  box-shadow: 0px 0.2rem 0.25rem 0px rgba(18, 27, 151, 0.13);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  position: relative;
  margin: 0 auto;
  max-width: 100%;
  padding: 1.25rem 2.5rem;
  width: 66.6875rem;
  pointer-events: all;
}
@media (max-width: 769px) {
  .header__wrapper {
    padding: 0.75rem 1.25rem;
  }
}
.header__wrapper nav {
  display: inline-block;
  margin: 0 auto 0 93px;
}
@media (max-width: 1025px) {
  .header__wrapper nav {
    margin-left: auto;
  }
}
.header__inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
@media (max-width: 769px) {
  .header__inner {
    flex-wrap: wrap;
  }
}
.header__inner .header__logo {
  top: 2px;
  position: relative;
}
@media (max-width: 769px) {
  .header__inner .header__logo {
    top: 0.4375rem;
  }
}
.header__inner .header__logo a svg {
  height: 2rem;
  width: 7rem;
}
@media (max-width: 769px) {
  .header__inner .header__logo a svg {
    height: auto;
    width: 4.9375rem;
  }
}
.header__logo {
  color: var(--color-blue);
  display: inline-flex;
  gap: 1.5rem;
  pointer-events: all;
}
.header__logo > a {
  display: block;
}
.header__logo > a svg {
  display: block;
  height: 1.75rem;
  width: 6rem;
}
@media (max-width: 769px) {
  .header__logo > a svg {
    height: 1.25rem;
    width: auto;
  }
}
body.single-course .header--main .header__logo {
  color: var(--color-white);
}
.header__logo_2 {
  max-width: 100%;
  height: 1.7rem;
  position: relative;
  top: 2px;
}
@media (max-width: 769px) {
  .header__logo_2 {
    top: -2px;
  }
}
.header__logo_2 svg,
.header__logo_2 img,
.header__logo_2 picture {
  display: block;
  height: 100%;
  width: auto;
}
.header .menu {
  display: flex;
  gap: 2rem;
}
.header .menu > li {
  font-family: var(--font-default);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
  position: relative;
}
.header .menu > li > a,
.header .menu > li > span {
  cursor: pointer;
}
.header .menu > li > .sub-menu {
  display: none;
  background: var(--color-white);
  border-radius: 1rem;
  box-shadow: 0px 3.2px 4px 0px rgba(18, 27, 151, 0.13);
  position: absolute;
  bottom: -2.5rem;
  left: 50%;
  transform: translate(-50%, 100%);
  width: 240px;
}
.header .menu > li > .sub-menu:after {
  content: "";
  position: absolute;
  top: -1rem;
  display: block;
  height: 1rem;
  width: 100%;
}
.header .menu > li > .sub-menu:before {
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  border-left: 0.5rem solid rgba(0, 0, 0, 0);
  border-right: 0.5rem solid rgba(0, 0, 0, 0);
  border-bottom: 0.5rem solid var(--color-white);
}
.header .menu > li > .sub-menu > li > a {
  display: block;
  padding: 0.5rem 1rem;
}
.header .menu > li > .sub-menu > li > a:hover,
.header .menu > li > .sub-menu > li > a:focus {
  background-color: var(--color-blue-150);
}
.header .menu > li > .sub-menu .sub-menu {
  display: none;
}
.header .menu > li > .sub-menu li:last-child .sub-menu {
  margin-bottom: 0;
}
.header .menu > li:has(.sub-menu):hover > a,
.header .menu > li:has(.sub-menu):hover > span,
.header .menu > li:has(.sub-menu):focus > a,
.header .menu > li:has(.sub-menu):focus > span {
  color: var(--color-blue);
}
.header .menu > li:has(.sub-menu):before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: -1.5rem;
  height: 70px;
  width: 100%;
}
.header .menu > li:hover > .sub-menu {
  display: block;
}
.header .menu > li.highlighted > a,
.header .menu > li.highlighted > span {
  color: var(--color-pink);
  border: 1px solid var(--color-pink);
  border-radius: 6.25rem;
  padding: 0.5rem 0.75rem;
}
.header .menu > li.highlighted > a:hover,
.header .menu > li.highlighted > a:focus,
.header .menu > li.highlighted > span:hover,
.header .menu > li.highlighted > span:focus {
  color: var(--color-white);
  background: var(--color-pink);
}
.header__profile {
  text-decoration: underline;
}
.header__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
@media (max-width: 769px) {
  .header__links {
    gap: 1rem;
    margin-left: auto;
  }
}
.header__links > a {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.375rem;
  pointer-events: all;
}
body.single-course .header__links > a:not(.icon-link) {
  color: var(--color-white);
}
.header__links .icon-link {
  color: var(--color-black);
  background: var(--color-white);
  border-radius: 100%;
  box-shadow: 0px 1px 2px 0px rgba(46, 53, 95, 0.08),
    0px 2px 2px 0px rgba(46, 53, 95, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
}
.header__links .icon-link svg {
  height: 1.25rem;
  width: 1.25rem;
}
.header__links .icon-link.icon-auth {
  color: var(--color-gray);
}
.header__links .icon-link.icon-auth svg {
  height: 1rem;
  width: 1rem;
}
.header .lesson-search-container {
  pointer-events: all;
}
@media (max-width: 769px) {
  .header .lesson-search-container {
    margin: 1rem auto 0;
    order: 5;
    width: 100%;
  }
}
body.single-course .header {
  background: var(--color-blue);
}
body.single-topic .header,
body.single-lesson .header {
  background: var(--color-pink);
}
@media (max-width: 1280px) {
  .header .container {
    padding: 0 1rem;
  }
}
.menu-sidebar {
  margin-top: 2.6875rem;
}
.menu-sidebar ul.menu {
  display: flex;
  flex-direction: column;
  gap: 1.1875rem;
}
.menu-sidebar ul.menu > li > a,
.menu-sidebar ul.menu > li > span {
  cursor: pointer;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  padding: 0.8125rem 0.75rem;
  color: var(--color-black);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.375rem;
  letter-spacing: -0.24px;
  position: relative;
  transition: var(--transition-default);
}
.menu-sidebar ul.menu > li > a svg,
.menu-sidebar ul.menu > li > span svg {
  display: inline-block;
  height: 1.25rem;
  width: 1.25rem;
  margin-right: 0.625rem;
  transition: var(--transition-default);
}
.menu-sidebar ul.menu > li > a svg:last-child,
.menu-sidebar ul.menu > li > span svg:last-child {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.menu-sidebar ul.menu > li > a.opened svg:last-child,
.menu-sidebar ul.menu > li > span.opened svg:last-child {
  transform: translateY(-50%) rotate(180deg);
}
.menu-sidebar ul.menu > li:hover > a,
.menu-sidebar ul.menu > li:hover > span,
.menu-sidebar ul.menu > li:focus > a,
.menu-sidebar ul.menu > li:focus > span,
.menu-sidebar ul.menu > li:active > a,
.menu-sidebar ul.menu > li:active > span,
.menu-sidebar ul.menu > li.current-menu-item > a,
.menu-sidebar ul.menu > li.current-menu-item > span,
.menu-sidebar ul.menu > li.current-menu-parent > a,
.menu-sidebar ul.menu > li.current-menu-parent > span {
  color: var(--color-blue);
  background: #eaecfd;
}
.menu-sidebar ul.menu .sub-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  margin-top: 0.25rem;
  padding-left: 0.75rem;
}
.menu-sidebar ul.menu .sub-menu > li > a,
.menu-sidebar ul.menu .sub-menu > li > span {
  color: var(--color-blue-500);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.225px;
  line-height: 1.25rem;
  display: block;
  padding: 0.625rem 0.75rem;
  transition: var(--transition-default);
}
.menu-sidebar ul.menu .sub-menu > li:hover > a,
.menu-sidebar ul.menu .sub-menu > li:hover > span,
.menu-sidebar ul.menu .sub-menu > li:focus > a,
.menu-sidebar ul.menu .sub-menu > li:focus > span,
.menu-sidebar ul.menu .sub-menu > li:active > a,
.menu-sidebar ul.menu .sub-menu > li:active > span {
  color: var(--color-black);
}
.menu-sidebar ul.menu .sub-menu > li.current-menu-item > a,
.menu-sidebar ul.menu .sub-menu > li.current-menu-item > span {
  color: var(--color-black);
  text-decoration: underline;
}
.search-form {
  background: var(--color-white);
  border-radius: 1.5rem;
  box-shadow: 0px 3.2px 4px 0px rgba(18, 27, 151, 0.13);
  overflow: hidden;
  position: relative;
  max-width: 100%;
  width: 100%;
}
.search-form__submit {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  height: 2.5rem;
  width: 2.5rem;
  padding: 0.625rem !important;
}
@media (max-width: 769px) {
  .search-form:has(.lesson-search-form.active) .search-form__submit {
    left: 3.25rem;
    top: 1.125rem;
    height: 1.25rem;
    width: 1.25rem;
    padding: 0 !important;
  }
}
.search-form__submit svg {
  color: var(--color-black);
  height: 1.25rem;
  width: 1.25rem;
}
.search-form__close {
  display: none;
  position: absolute;
  left: 1rem;
  top: 1.125rem;
  display: block;
  height: 1.25rem;
  width: 1.25rem;
  padding: 0 !important;
  opacity: 0;
  pointer-events: none;
}
.search-form__close svg {
  color: var(--color-black);
  height: 1.25rem;
  width: 1.25rem;
  transform: rotate(180deg) scale(-1, 1);
}
.search-form__input {
  display: block;
  text-align: center;
  line-height: 2.5rem;
  height: 2.5rem;
  padding: 0 0.875rem 0 2.5rem;
}
.search-form input[type="text"],
.search-form input[type="search"] {
  border: none;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.25rem;
  letter-spacing: -0.225px;
  transition: var(--transition-default);
}
.search-form .lesson-search-form.active input[type="text"],
.search-form .lesson-search-form.active input[type="search"] {
  background: var(--color-gray-200);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 0.875rem;
  border-top-right-radius: 0.875rem;
}
@media (max-width: 769px) {
  .search-form .lesson-search-form.active input[type="text"],
  .search-form .lesson-search-form.active input[type="search"] {
    height: auto;
    padding: 1.125rem 1rem 1.125rem 5.3125rem;
    text-align: left;
  }
}
.search-form__inner {
  display: none;
  padding: 0.875rem 0.875rem 1.25rem;
}
@media (max-width: 769px) {
  .search-form__inner {
    padding-bottom: 0.75rem;
    padding-top: 0.5rem;
  }
}
.search-form .input-switcher {
  margin-bottom: 0.75rem;
}
@media (max-width: 769px) {
  .search-form .input-switcher {
    background: rgba(0, 0, 0, 0);
    border-radius: 0;
    overflow: auto;
    padding: 0.5rem 0;
    margin: 0 -1rem;
    width: calc(100% + 2rem);
  }
  .search-form .input-switcher .input-switcher-display {
    gap: 0.375rem;
  }
  .search-form .input-switcher .input-switcher-display > span {
    display: none;
    background: rgba(53, 72, 254, 0.04);
    border: 1px solid rgba(53, 72, 254, 0.5);
    transition: none;
  }
  .search-form .input-switcher .radio-ui {
    border: 1px solid var(--Gray-400, #d6d5da);
    border-radius: 6.25rem;
    flex: unset;
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 0.8125rem;
    line-height: 2.125rem;
    white-space: nowrap;
  }
  .search-form .input-switcher .radio-ui:first-child {
    margin-left: 1rem;
  }
  .search-form .input-switcher .radio-ui:last-of-type {
    margin-right: 1rem;
  }
  .search-form .input-switcher .radio-ui.active {
    background: rgba(53, 72, 254, 0.04);
    border: 1px solid rgba(53, 72, 254, 0.5);
  }
}
.search-form:has(.lesson-search-form.active) {
  border-radius: 0.875rem;
}
@media (max-width: 769px) {
  .search-form:has(.lesson-search-form.active) {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 0;
    z-index: 9999;
    height: 100vh;
  }
  .search-form:has(.lesson-search-form.active) .search-form__close {
    opacity: 1;
    pointer-events: all;
  }
}
@media (max-width: 769px) {
  body.admin-bar
    header:not(.header--top)
    .search-form:has(.lesson-search-form.active):has(
      .lesson-search-form.active
    ) {
    top: 2.875rem;
  }
}
@media screen and (max-width: 600px) {
  body.admin-bar
    header.header--top
    .search-form:has(.lesson-search-form.active):has(
      .lesson-search-form.active
    ) {
    top: 2.875rem;
  }
}
@media screen and (max-width: 480px) {
  body.admin-bar
    .search-form:has(.lesson-search-form.active):has(
      .lesson-search-form.active
    ) {
    top: 0 !important;
  }
}
html:has(.lesson-search-form.active) {
  overflow: hidden;
}
.lesson-search-container {
  margin: 0 auto;
  width: 46.125rem;
}
.lesson-search-form.active {
  z-index: 10;
}
.lesson-search-form.active .search-form__inner {
  display: block;
}
header:has(.lesson-search-form.active) {
  background: rgba(0, 0, 0, 0);
}
body:has(.lesson-search-form.active):before {
  content: "";
  background: rgba(0, 0, 0, 0.13);
  display: block;
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: all;
  z-index: 4;
}
.header-faq-link svg {
  display: none;
}
.header-faq-link span {
  display: block;
}
@media (max-width: 1025px) {
  .header-faq-link {
    background: var(--color-white);
    border-radius: 100%;
    box-shadow: 0px 1px 2px 0px rgba(46, 53, 95, 0.08),
      0px 2px 2px 0px rgba(46, 53, 95, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    width: 2.5rem;
  }
  .header-faq-link svg {
    height: 1.25rem;
    width: 1.25rem;
  }
  .header-faq-link svg {
    display: block;
  }
  .header-faq-link span {
    display: none;
  }
}
.navigation-sidebar {
  background: var(--color-white);
  padding: 0.8125rem 2.5rem;
  transition: var(--transition-default);
  display: block;
  max-width: 100%;
  width: 23.5625rem;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  transform: translateX(-100%);
  z-index: 11;
  overflow: auto;
}
.navigation-sidebar .nav-toggle {
  opacity: 0;
}
body.nav-opened .navigation-sidebar {
  transform: translateX(0);
}
body.nav-opened .navigation-sidebar .nav-toggle {
  opacity: 1;
}
body.admin-bar .navigation-sidebar {
  height: calc(100vh - 2rem);
  top: 2rem;
}
@media screen and (max-width: 600px) {
  body.admin-bar .navigation-sidebar {
    height: 100vh;
    top: 0;
  }
}
.navigation-sidebar .navbar__header {
  display: flex;
  justify-content: space-between;
}
.navigation-sidebar .navbar__header .nav-toggle {
  margin-right: 0;
  top: 0.5rem;
}
.sidebar-logo {
  color: var(--color-blue);
  width: 7rem;
  height: auto;
  max-width: 100%;
}
.sidebar-logo svg {
  display: block;
}
.nav-toggle {
  cursor: pointer;
  display: flex;
  width: 1.5rem;
  height: 1.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  position: relative;
  pointer-events: all;
  top: 0.5625rem;
  z-index: 10;
}
.nav-toggle > span {
  display: block;
  background: var(--color-black);
  border-radius: 6.25rem;
  width: 1.25rem;
  height: 0.125rem;
  position: relative;
  transition: var(--transition-default);
}
body.single-course header .nav-toggle > span {
  background: var(--color-white);
}
body.nav-opened .nav-toggle > span:nth-child(1) {
  transform: rotate(45deg);
  top: 7px;
}
body.nav-opened .nav-toggle > span:nth-child(3) {
  transform: rotate(-45deg);
  top: -5px;
}
body.nav-opened .nav-toggle > span:nth-child(2) {
  opacity: 0;
}
html:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.13);
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-default);
}
.nav-opened {
  overflow: hidden;
}
html:has(.nav-opened) {
  overflow: hidden;
}
html:has(.nav-opened):before {
  opacity: 1;
  pointer-events: all;
}
@media (max-width: 1201px) {
  html:has(.nav-opened) .header__logo {
    z-index: 10;
  }
  html:has(.nav-opened) .header__logo .header__logo {
    pointer-events: all;
  }
}
html:has(.nav-opened .header--home):before {
  background: var(--color-blue-background);
}
.footer {
  background: var(--color-white);
  padding: 5.625rem 0 3.25rem;
}
@media (max-width: 769px) {
  .footer {
    padding: 2.5rem 0 1.75rem;
  }
}
.footer h3 {
  margin-bottom: 0.625rem;
}
.footer__logo {
  color: var(--color-blue);
  display: flex;
  gap: 1.5rem;
  align-items: center;
	margin-bottom: 5rem;
}
@media (max-width: 769px) {
  .footer__logo {
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
  }
}
.footer__logo > a {
  display: inline-block;
}
.footer__logo > a > svg {
  height: 2rem;
  width: auto;
}
.footer__logo_2 {
  height: 2.125rem;
}
.footer__logo_2 svg,
.footer__logo_2 img,
.footer__logo_2 picture {
  display: block;
  height: 100%;
  width: auto;
}

.footer__partner-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 2.5rem;
  width: 100%;
  margin-left: 1rem;
}
.footer__partner-logo {
  display: inline-block;
}
.footer__partner-logo img,
.footer__partner-logo svg,
.footer__partner-logo picture {
  height: 2.3125rem;
  width: auto;
  vertical-align: middle;
}
.footer__partner-logo:has(img[src$="профільна.png"]) {
  height: 1.5rem;
}
.footer-logo {
  color: rgba(var(--color-white--rgb), 0.5);
  margin-bottom: 1.875rem;
}
.footer-logo:hover {
  color: var(--color-white);
}
.footer-logo svg {
  display: block;
  height: auto;
  width: 10.625rem;
  transition: 0.35s ease-in-out;
}
.footer-logos {
  display: flex;
  gap: 1.125rem;
}
.footer-logos li a {
  color: rgba(var(--color-white--rgb), 0.5);
  display: block;
}
.footer-logos li a:hover {
  color: var(--color-white);
}
.footer-logos li img,
.footer-logos li svg,
.footer-logos li picture {
  height: 2.188rem;
  width: auto;
  transition: 0.35s ease-in-out;
}
.footer-menu {
  display: flex;
  justify-content: flex-start;
  gap: 0.813rem;
  margin-bottom: 1.938rem;
}
.footer-menu:last-child {
  margin-bottom: 0;
}
.footer-menu li {
  font-size: 0.625rem;
}
.footer-menu li:before {
  content: "//";
  margin-right: 0.813rem;
}
.footer-menu li:first-child:before {
  content: none;
}
.footer__top {
  padding-bottom: 4rem;
}
@media (max-width: 769px) {
  .footer__top {
    padding-bottom: 2.5rem;
  }
  .footer__partner-logos {
    margin-left: 0;
	  gap:1.5rem;
  }
}
@media (max-width: 480px) {
  .footer__top {
    padding-bottom: 2.25rem;
  }
	.footer__partner-logo img,
	.footer__partner-logo svg,
	.footer__partner-logo picture {
	  height: 1.75rem;
	}
}
.footer__top > .container > .row {
  align-items: flex-start;
}
@media (max-width: 1025px) {
  .footer__top > .container > .row {
    align-items: flex-start;
  }
}
@media (max-width: 1025px) {
  .footer__top > .container > .row {
    flex-wrap: wrap;
    gap: 40px;
  }
}
@media (max-width: 769px) {
  .footer__top > .container > .row {
    gap: 4rem;
  }
}
.footer__left,
.footer__right {
  width: 50%;
}
@media (max-width: 1025px) {
  .footer__left,
  .footer__right {
    width: 100%;
  }
}
.footer__left .menu {
  width: auto;
  display: inline-flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem 4.25rem;
  height: 14.6875rem;
}
.footer__left .menu li {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5rem;
  width: auto;
  flex: initial;
  max-width: 15.375rem;
}
@media (max-width: 480px) {
  .footer__left .menu {
    gap: 1rem;
    height: auto;
  }
  .footer__left .menu li {
    width: 100%;
  }
  .footer__left .menu li:nth-child(6n) {
    margin-bottom: 3rem;
  }
}
.footer__title {
  color: var(--color-gray-blue);
  font-size: 1rem;
  line-height: 1.375rem;
  text-transform: uppercase;
  min-height: 1.375rem;
}
.footer__title:not(:empty) {
  margin-bottom: 1.5rem;
}
@media (max-width: 480px) {
  .footer__title {
    min-height: 0;
  }
}
.footer__cols {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6875rem 3.375rem;
}
@media (max-width: 480px) {
  .footer__cols {
    gap: 2rem;
  }
}
.footer__col {
  width: calc(50% - 1.6875rem);
}
@media (max-width: 480px) {
  .footer__col {
    width: 100%;
  }
  .footer__col:last-child {
    margin-top: 2rem;
  }
}
.footer__col p:not(.footer__title) {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 2.125rem;
}
@media (max-width: 480px) {
  .footer__col p:not(.footer__title) {
    margin-bottom: 2rem;
	  font-size:1rem;
  }
}
.footer__col p:not(.footer__title) a {
  text-decoration: underline;
}
.footer__col p:not(.footer__title) br + a {
  display: inline-block;
  margin-top: 0.5rem;
}
.footer__col p:not(.footer__title) img,
.footer__col p:not(.footer__title) picture,
.footer__col p:not(.footer__title) a:has(img, picture) {
  margin-right: 0.6875rem;
  display: inline-block;
  height: 2.3125rem;
  width: auto;
  vertical-align: middle;
}
.footer__col p:not(.footer__title) img:last-child,
.footer__col p:not(.footer__title) picture:last-child,
.footer__col p:not(.footer__title) a:has(img, picture):last-child {
  margin-right: 0;
}
.footer__col p:not(.footer__title):last-child {
  margin-bottom: 0;
}
.footer__bottom ul.menu,
.footer__bottom .copyright {
  width: 50%;
}
@media (max-width: 769px) {
  .footer__bottom ul.menu,
  .footer__bottom .copyright {
    width: 100%;
  }
}
.footer__bottom ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 769px) {
  .footer__bottom ul {
    justify-content: center;
    margin-bottom: 1.5rem;
    order: 0;
  }
}
@media (max-width: 480px) {
  .footer__bottom ul {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    width: 204px;
  }
}
.footer__bottom ul li {
  color: rgba(var(--color-gray-light--rgb), 0.4);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.25rem;
}
@media (max-width: 480px) {
  .footer__bottom ul li:nth-child(3n):before {
    content: none;
  }
}
.footer .copyright {
  color: rgba(var(--color-black--rgb), 0.4);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.25rem;
  letter-spacing: -0.225px;
}
@media (max-width: 769px) {
  .footer .copyright {
    order: 1;
    text-align: center;
  }
}
.subscription-form {
  border-bottom: 1px solid var(--color-white);
  margin-bottom: 2.188rem;
  padding-right: 3rem;
  position: relative;
  width: 22.813rem;
}
@media (max-width: 769px) {
  .subscription-form {
    width: 100%;
  }
}
.subscription-form__submit {
  cursor: pointer;
  display: block;
  border-left: 1px solid var(--color-white);
  height: 3rem;
  width: 3rem;
  position: absolute;
  right: 0;
  top: 0;
  padding: 0.5rem;
}
.subscription-form__submit svg {
  height: 1.875rem;
  width: 1.875rem;
}
.subscription-form__submit input[type="submit"] {
  display: none;
  opacity: 0;
  position: absolute;
  visibility: hidden;
}
.subscription-form__submit .wpcf7-spinner {
  position: absolute;
  left: 0;
  bottom: -4px;
  transform: translateY(-100%);
}
.subscription-form .wpcf7-form-control-wrap {
  display: block;
  max-width: 100%;
  width: 100%;
}
.subscription-form input[type="text"],
.subscription-form input[type="email"] {
  line-height: 2.438rem;
  padding-bottom: 0.563rem;
}
.subscription-form .wpcf7-not-valid-tip {
  font-size: 0.75rem;
  position: absolute;
  bottom: -5px;
  transform: translateY(100%);
}
.wpcf7 .subscription-form + .wpcf7-response-output {
  border-width: 1px;
  font-size: 0.75rem;
  margin-left: 0;
}
.page-content {
  padding: 7.5rem 0 5rem;
}
.page-content h1 {
  font-size: 3rem;
  line-height: 100%;
  margin: 2rem auto;
  text-align: center;
}
.page-content .html-content {
  margin: 0 auto;
  max-width: 100%;
  width: 768px;
}
.page-content .html-content p {
  font-size: 1rem;
  line-height: 165%;
  margin-bottom: 1rem;
  text-transform: none;
}
.page-content .html-content a {
  text-decoration: underline;
}
.page-content .html-content h2 {
  font-size: 2rem;
  line-height: 100%;
  margin: 2.5rem auto 1.5rem;
}
.page-content .html-content h3 {
  font-size: 1.5rem;
  margin: 1.5rem auto 1rem;
}
.page-content .html-content ul {
  list-style: disc;
  margin: 1rem auto;
  padding-left: 1.25rem;
}
.page-content .html-content ul ul {
  list-style: circle;
}
.page-content .html-content ul li {
  margin-bottom: 1rem;
  text-transform: none;
}
.lesson-inner {
  padding-bottom: 2.5rem;
}
@media (max-width: 1280px) {
  .lesson-inner .container:not(:has(.container)) {
    padding: 0 1rem;
  }
}
.lesson-inner .flex {
  display: flex;
  gap: 1.25rem;
}
.lesson-inner .breadcrumbs {
  margin-bottom: 2.375rem;
}
.lesson-content {
  max-width: 100%;
  width: 51.25rem;
}
@media screen and (max-width: 1240px) {
  .lesson-content {
    width: calc(68% - 0.625rem);
  }
}
@media (max-width: 1025px) {
  .lesson-content {
    width: calc(68% - 0.625rem);
  }
}
@media (max-width: 769px) {
  .lesson-content {
    width: 100%;
  }
}
.lesson-sidebar {
  width: 25rem;
}
@media screen and (max-width: 1240px) {
  .lesson-sidebar {
    max-width: calc(32% - 0.625rem);
  }
}
@media (max-width: 1025px) {
  .lesson-sidebar {
    max-width: calc(32% - 0.625rem);
  }
}
@media (max-width: 769px) {
  .lesson-sidebar {
    display: none;
  }
}
.lesson-sidebar__links,
.lesson-sidebar__progress {
  border-radius: 1.5rem;
}
.lesson-sidebar__links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--color-blue-tab);
  padding: 1.5rem 2.25rem;
}
.lesson-sidebar__links a {
  color: var(--color-black);
  display: block;
  padding-left: 3.75rem;
  position: relative;
}
.lesson-sidebar__links a > span:not(.icon) {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--color-blue);
  font-size: 0.75rem;
  line-height: 1.125rem;
  text-transform: uppercase;
}
.lesson-sidebar__links a > .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1.625rem;
  width: 2.75rem;
  border-radius: 6.25rem;
  transition: var(--transition-default);
  position: absolute;
  left: 0;
  top: 0;
}
.lesson-sidebar__links a > .icon svg {
  color: var(--color-blue);
  width: 1.375rem;
  height: 0.75rem;
  transition: inherit;
}
.lesson-sidebar__links a:hover > .icon {
  background: var(--color-blue);
}
.lesson-sidebar__links a:hover > .icon svg {
  color: var(--color-white);
}
.lesson-sidebar__links a.lesson-next {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5rem;
}
.lesson-sidebar__links a.lesson-prev {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25rem;
}
.lesson-sidebar__links a.lesson-prev .icon svg {
  transform: scale(-1, 1);
}
.lesson-sidebar__progress {
  background: var(--color-white);
  height: 16.0625rem;
  margin-bottom: 1.25rem;
  margin-top: 3.875rem;
  padding: 1.125rem 1.5rem;
  position: relative;
}
.lesson-sidebar__progress_inner {
  max-width: 100%;
  width: 16.875rem;
  position: relative;
  z-index: 1;
}
.lesson-sidebar__progress_bg {
  border-radius: 1.5rem;
  object-fit: cover;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 0;
}
.lesson-sidebar__progress_decor {
  position: absolute;
  top: -54px;
  right: 4px;
}
.lesson-sidebar .progress-bar {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  margin-top: 2rem;
}
.lesson-sidebar .progress-bar > span {
  display: block;
}
.lesson-sidebar .progress-bar > span:last-child,
.lesson-sidebar .progress-bar > span:first-child {
  border-radius: 0.25rem;
  height: 1.25rem;
}
.lesson-sidebar .progress-bar > span:first-child {
  color: var(--color-white);
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.25rem;
  text-align: right;
  background: var(--color-green);
  padding-right: 0.4375rem;
  min-width: 4rem;
}
.lesson-sidebar .progress-bar > span:last-child {
  background: #bfe90b;
  flex: 1;
}
.lesson-sidebar .progress-bar > span.marker {
  position: relative;
  width: 1px;
}
.lesson-sidebar .progress-bar > span.marker:before {
  content: "";
  background: var(--color-green);
  display: block;
  height: 2.8125rem;
  width: 1px;
}
.lesson-sidebar .progress-bar > span.marker:after {
  content: "";
  display: block;
  height: 0.3125rem;
  width: 0.3125rem;
  border-radius: 100%;
  background: var(--color-green);
  position: absolute;
  left: 1px;
  top: 0;
  transform: translateX(-50%);
}
.lesson-sidebar .progress-bar > span.marker > span {
  width: 50px;
  position: absolute;
  right: -0.5rem;
  top: -0.25rem;
  transform: translateX(100%);
}
.lesson-sidebar .progress-bar--right .marker > span {
  left: -0.5rem;
  right: auto;
  transform: translateX(-100%) !important;
}
.lesson-sidebar .progress-bar__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 100%;
  font-weight: 800;
  margin-bottom: 0.5rem;
  margin-top: 3rem;
}
.lesson-sidebar .progress-bar__subtitle {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.25rem;
}
.lesson-block {
  background: var(--color-white);
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  border-radius: 1.5rem;
  margin-bottom: 1.25rem;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  max-width: 100%;
  width: 51.25rem;
}
.lesson-title {
  margin-bottom: 1.25rem;
}
@media (max-width: 769px) {
  .lesson-title {
    margin-bottom: 0.75rem;
  }
}
.lesson-title h1 {
  font-size: 2.5rem;
  line-height: 2.75rem;
  margin: 1rem auto 0 0;
  max-width: 100%;
  width: 41.25rem;
}
@media (max-width: 769px) {
  .lesson-title h1 {
    font-size: 2rem;
    line-height: 100%;
    letter-spacing: -0.64px;
  }
}
.lesson-title h2 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2rem;
  letter-spacing: -0.48px;
  margin-top: 1.25rem;
}
.lesson-title .tag {
  text-transform: uppercase;
  font-size: 0.8125rem;
}
.lesson-title__head {
  background: var(--color-blue-200);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.1875rem;
  letter-spacing: -0.13px;
  text-transform: uppercase;
  padding: 0.875rem 1.5rem;
}
@media (max-width: 1025px) {
  .lesson-title__head {
    padding-left: 3rem;
    position: relative;
  }
}
.lesson-title__head a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.lesson-title__head a:hover,
.lesson-title__head a:focus {
  color: inherit;
}
.lesson-title__head span {
  display: inline-block;
  color: var(--color-blue);
  margin-right: 0.25rem;
}
.lesson-title__head svg {
  color: var(--color-black);
  display: inline-block;
  height: 1.25rem;
  width: 1.25rem;
  margin-right: 0.5rem;
}
@media (max-width: 1025px) {
  .lesson-title__head svg {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
  }
}
.lesson-title__content {
  padding: 1.5rem 1.5rem 1.75rem;
}
@media (max-width: 769px) {
  .lesson-title__content {
    padding: 1.25rem 1.25rem 1.3125rem;
  }
}
.lesson-desc {
  background: var(--color-blue-150);
  border: 1px solid var(--color-green);
}
@media (max-width: 769px) {
  .lesson-desc {
    border-radius: 1rem;
  }
}
.lesson-desc__nav {
  background: var(--color-green-light);
  padding: 0 1.75rem;
}
@media (max-width: 769px) {
  .lesson-desc__nav {
    gap: 0.875rem;
  }
}
.lesson-desc__nav_item {
  border: none;
  background: rgba(0, 0, 0, 0);
  color: rgba(var(--color-green--rgb), 0.8);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5rem;
  padding: 0.9375rem 0.625rem;
  position: relative;
}
.lesson-desc__nav_item:after {
  content: "";
  background: var(--color-green);
  height: 2px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: var(--transition-default);
}
.lesson-desc__nav_item:hover,
.lesson-desc__nav_item.active {
  color: rgba(var(--color-green--rgb), 1);
}
.lesson-desc__nav_item:hover:after,
.lesson-desc__nav_item.active:after {
  opacity: 1;
}
.lesson-desc__content {
  padding: 2rem 1.5rem;
}
@media (max-width: 769px) {
  .lesson-desc__content {
    padding: 1.75rem 1.25rem;
  }
}
.lesson-main__wrapper {
  display: none;
  padding: 0 0 3.9375rem;
}
.block-editor .lesson-main__wrapper {
  display: block;
}
.lesson-main__wrapper > .material-controls:first-child {
  margin-top: 0;
  margin-bottom: 2.25rem;
}
.lesson-main__wrapper > .material-controls:last-child {
  margin-bottom: 0;
  margin-top: 2.25rem;
}
.lesson-tabs {
  margin-bottom: 3.5rem;
}
@media (max-width: 769px) {
  .lesson-tabs {
    border-radius: 0;
    padding: 0.5rem 0 0.5rem 1rem;
    margin: -0.5rem -1rem 2rem;
    overflow: auto;
  }
}
@media (max-width: 480px) {
  .lesson-tabs .radio-ui {
    flex: unset;
  }
}
.lesson-heading {
  background: linear-gradient(90deg, #f285b2 0%, rgba(242, 133, 178, 0) 100%);
  background: url("/wp-content/themes/zmist/assets/img/title-bg.png");
  background-size: 100% 100%;
  border-top-left-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
  padding: 0.875rem 0 0.875rem 1.5rem;
  position: relative;
  min-height: 4.25rem;
  margin-bottom: 1rem;
}
.lesson-heading img {
  display: none;
  border-top-left-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}
.lesson-heading:has(.icon) {
  padding-left: 6.75rem;
}
@media (max-width: 769px) {
  .lesson-heading {
    padding: 0.75rem !important;
  }
}
.lesson-heading > .icon {
  height: 4.25rem;
  width: 4.25rem;
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 769px) {
  .lesson-heading > .icon {
    display: none;
  }
}
.lesson-heading > span {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.8px;
  position: relative;
  z-index: 1;
}
@media (max-width: 769px) {
  .lesson-heading > span {
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: -0.48px;
  }
}
.lesson-tags {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 400;
  list-style: none !important;
  line-height: 1.375rem;
  letter-spacing: -0.24px;
  margin: 0 0 1rem;
  padding-left: 1.5rem;
}
.lesson-tags li {
  margin: 0;
}
.lesson-math-formula-block {
  margin: 1.5rem 0;
}
ul.lesson-tags {
  margin-bottom: 2.75rem;
  padding-left: 0;
}
@media (max-width: 769px) {
  ul.lesson-tags {
    margin-bottom: 2rem;
  }
}
ul.lesson-tags li {
  color: var(--color-blue);
  border: 1px solid var(--color-blue-300);
  border-radius: 0.625rem;
  background: var(--color-blue-background);
  margin-left: 0;
  padding: 0.625rem 1.5rem;
}
@media (max-width: 769px) {
  ul.lesson-tags li {
    font-size: 0.8125rem;
    line-height: 1.1875rem;
    letter-spacing: -0.13px;
    padding: 0.625rem 1rem;
  }
}
.topic-card {
  border-radius: 1.25rem;
  overflow: hidden;
}
.topic-card__head a {
  background: var(--color-blue-200);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0.875rem 1.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
}
.topic-card__head a span {
  color: var(--color-blue);
  display: inline-block;
  margin-right: 0.25rem;
}
.topic-card__head a svg {
  margin-right: 0.5rem;
}
.topic-card__content {
  padding: 1.5rem;
}
.topic-card__content h1 {
  font-size: 2.5rem;
  line-height: 2.75rem;
  letter-spacing: -0.8px;
}
.topic-card__meta {
  margin-bottom: 1.25rem;
}
.topic-card__lessons {
  margin-top: 2.5rem;
  line-height: 1.875rem;
  padding: 0 0.6875rem;
}
.topic-card .tag {
  text-transform: uppercase;
}
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, 18.4375rem);
  gap: 1.25rem;
}
@media (max-width: 768px) {
  .courses-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.courses-grid.not-found {
  display: block;
}
.courses-content-row {
  display: grid;
  grid-template-columns: 15.9375rem 1fr;
  gap: 1.25rem;
  align-items: start;
  margin-top: 2.375rem;
}
@media (max-width: 1024px) {
  .courses-content-row {
    grid-template-columns: 250px 1fr;
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .courses-content-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.courses-sidebar {
  background: var(--color-white);
  box-shadow: 0px 1px 2px 0px rgba(46, 53, 95, 0.08),
    0px 4px 6px 0px rgba(46, 53, 95, 0.04),
    0px 24px 40px -16px rgba(46, 53, 95, 0.08);
  border-radius: 1.25rem;
  padding: 1.25rem;
  position: sticky;
  top: 2rem;
}
.courses-sidebar__head #filtersCount {
  color: var(--color-black);
  font-size: 1rem;
  font-weight: 500;
}
.courses-sidebar__head #filtersCount span {
  display: inline-block;
  margin-left: 0.25rem;
  color: var(--color-gray-450);
}
.courses-sidebar__head #clearAll {
  display: none;
  cursor: pointer;
  color: var(--color-red);
  font-size: 0.875rem;
  font-weight: 500;
}
.courses-sidebar__head .flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.3125rem;
}
.courses-sidebar__pin {
  position: absolute;
  left: -65px;
  top: -24px;
}
.courses-sidebar:has(input[type="checkbox"]:checked) #clearAll {
  display: inline-block;
}
.courses-sidebar input[type="submit"],
.courses-sidebar button[type="submit"] {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.375rem;
  letter-spacing: -0.24px;
  margin-top: 2.625rem;
  padding-bottom: 0.6875rem;
  padding-top: 0.6875rem;
}
@media (max-width: 768px) {
  .courses-sidebar {
    position: static;
    padding: 1rem;
  }
}
.s-courses-filter {
  min-height: 100vh;
  padding: 2rem 0 8rem;
  position: relative;
}
@media (max-width: 769px) {
  .s-courses-filter {
    padding: 2rem 0 2.875rem;
  }
}
.s-courses-filter .filter-bg {
  position: absolute;
  pointer-events: none;
}
@media (max-width: 480px) {
  .s-courses-filter .filter-bg {
    display: none;
  }
}
.s-courses-filter .filter-bg--1 {
  left: -100px;
  bottom: -200px;
}
.s-courses-filter .filter-bg--2 {
  right: 0;
  top: 140px;
}
.courses-filter .input-switcher {
  width: 22.3125rem;
  display: inline-block;
  width: auto;
}
.courses-filter .input-switcher .radio-ui {
  width: 140px;
}
.courses-filter__selected {
  display: flex;
  margin-top: 1.25rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.courses-filter__selected .tag {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
  min-height: 2.25rem;
  padding: 0.4375rem 2.25rem 0.4375rem 0.75rem;
  position: relative;
}
.courses-filter__selected .tag svg {
  cursor: pointer;
  height: 1.25rem;
  width: 1.25rem;
  margin-left: 0.25rem;
  margin-right: 0;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}
.courses-filter .form-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.course-card {
  display: flex;
  flex-direction: column;
  border: 3px solid var(--color-white);
  background: #eaecfd;
  border-radius: 1rem;
  box-shadow: 0px 0px 2px 0px rgba(46, 53, 95, 0.04);
  overflow: hidden;
  transition: var(--transition-default);
  padding: 1.25rem;
}
.course-card:not(.course-card--hero):hover,
.course-card:not(.course-card--hero):focus {
  color: inherit;
  border-color: var(--color-blue);
  box-shadow: 0 1px 2px 0 rgba(46, 53, 95, 0.08),
    0 4px 6px 0 rgba(46, 53, 95, 0.04), 0 24px 40px -16px rgba(46, 53, 95, 0.08);
}
.course-card__curriculum {
  margin-top: auto;
}
.course-card__curriculum span {
  display: block;
  color: var(--color-blue-400);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.1875rem;
  letter-spacing: -0.13px;
  text-transform: uppercase;
}
.course-card__curriculum p {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.25rem;
  letter-spacing: -0.225px;
}
.course-card__developer {
  display: flex;
  align-items: center;
  margin-top: 0.75rem;
  gap: 0.5rem;
}
.course-card__developer-item {
  border: 1px solid var(--color-blue-300);
  border-radius: 6.25rem;
  padding: 0 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.75rem;
  letter-spacing: -0.21px;
}
.course-card__authors ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
.course-card__authors ul li {
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.375rem;
  letter-spacing: -0.255px;
}
.course-card__authors ul li:not(:last-child):after {
  content: "";
  background: var(--color-blue-400);
  border-radius: 100%;
  display: inline-block;
  height: 0.25rem;
  width: 0.25rem;
  margin-left: 0.375rem;
  position: relative;
  top: -4px;
}
.course-card--hero {
  background: var(--colow-white);
  min-height: 22.5rem;
}
.course-card--hero .tag {
  font-size: 1rem;
  line-height: 2rem;
  padding: 0 0.625rem;
}
.course-card--hero .course-card__authors,
.course-card--hero .course-card__developer,
.course-card--hero .course-card__curriculum {
  display: block;
  margin-top: 1.25rem;
}
@media (max-width: 769px) {
  .course-card--hero .course-card__authors,
  .course-card--hero .course-card__developer,
  .course-card--hero .course-card__curriculum {
    margin-top: 1rem;
  }
}
.course-card--hero .course-card__authors > span:first-child,
.course-card--hero .course-card__developer > span:first-child,
.course-card--hero .course-card__curriculum > span:first-child {
  display: block;
  margin-bottom: 0.25rem;
  width: 100%;
  color: var(--color-blue-400);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
  letter-spacing: -0.21px;
  text-transform: uppercase;
}
.course-card--hero .course-card__curriculum {
  margin-top: 2.5rem;
}
@media (max-width: 769px) {
  .course-card--hero .course-card__curriculum {
    margin-top: 2rem;
  }
}
.course-card--hero .course-card__developer img {
  display: inline-block;
  margin-right: 1.25rem;
  max-width: 100%;
  height: 3rem;
  width: auto;
}
.course-card--hero .course-card__developer img[alt="Криця"] {
  height: 4rem;
  transform: translateY(5px);
}
.course-card--hero .course-card__developer img:last-child {
  margin-right: 0;
}
.course-card--grid {
  position: relative;
}
.course-card--grid:after {
  content: "";
  background: var(--color-white);
  border-radius: 100%;
  box-shadow: -1px 2px 0px 0px rgba(25, 26, 100, 0.1) inset;
  display: block;
  height: 1rem;
  width: 1rem;
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
}
.course-card--grid:has(.tag-small):after {
  content: none;
}
.course-card--grid .tag-small {
  font-size: 0.8125rem;
  letter-spacing: -0.13px;
}
.course-card--grid .course-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.course-card--grid .course-card__terms {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1;
}
.course-card--grid .course-card__developer > span:first-child {
  display: block;
  border-right: 1px solid var(--color-blue-300);
  padding: 0.3125rem 0.5rem 0.3125rem 0;
}
.course-card--grid .course-card__developer > span:first-child svg {
  color: var(--color-black);
  height: 1.125rem;
  width: 1.125rem;
}
.course-card__head {
  border-bottom: 2px solid var(--color-white);
  padding-bottom: 1rem;
}
.course-card--hero .course-card__head {
  border-color: var(--color-blue-tab);
}
.course-card__image {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.course-card__image a {
  display: block;
  width: 100%;
  height: 100%;
}
.course-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.course-card__image:hover img {
  transform: scale(1.05);
}
.course-card__content {
  padding-top: 1.25rem;
}
.course-card h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 100%;
  letter-spacing: -0.8px;
  margin: 0.75rem 0 0;
  max-width: 100%;
  width: 38.75rem;
}
@media (max-width: 769px) {
  .course-card h1 {
    font-size: 2rem;
  }
}
.course-card h1 + p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.375rem;
  letter-spacing: -0.24px;
  margin-top: 1rem;
  max-width: 100%;
  width: 38.75rem;
}
@media (max-width: 769px) {
  .course-card h1 + p {
    font-size: 0.9375rem;
  }
}
.course-card h3 {
  margin: 0 0 0.75rem 0;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 500;
}
.course-card__dev ul,
.course-card__meta ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin: 0;
  padding: 0;
}
.course-card__dev ul li,
.course-card__meta ul li {
  display: block;
  position: relative;
}
.course-card__dev ul li:not(:first-child):before,
.course-card__meta ul li:not(:first-child):before {
  content: "";
  background-color: var(--color-blue-400);
  border-radius: 100%;
  display: block;
  height: 0.25rem;
  width: 0.25rem;
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
}
.course-card__meta {
  margin-bottom: 0.75rem;
}
.course-card__meta-item {
  color: var(--color-gray-450);
  display: flex;
  align-items: center;
  font-weight: 500;
  line-height: 1.25rem;
}
.course-card__meta-item.difficulty-item {
  font-size: 0.8125rem;
  text-transform: uppercase;
}
.course-card__meta-item.read-item {
  font-size: 0.875rem;
}
.course-card__meta-item svg {
  display: inline-block;
  height: 1.25rem;
  width: 1.25rem;
  margin-right: 0.25rem;
  vertical-align: top;
}
.course-card__dev ul {
  gap: 0.625rem;
}
.course-card__class {
  background: var(--color-blue-light) !important;
  color: var(--color-blue) !important;
  border-color: var(--color-blue-200) !important;
}
.course-card__difficulty {
  background: #f3e5f5 !important;
  color: var(--color-purple) !important;
  border-color: #e1bee7 !important;
}
.course-card__link {
  display: inline-block;
  background: var(--color-blue);
  color: var(--color-white);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
}
.course-card__link:hover {
  background: var(--color-blue-soft);
  color: var(--color-white);
}
.level-easy,
.level-medium,
.level-hard {
  display: inline-flex;
  gap: 2px;
  margin-right: 0.5rem;
}
.level-easy span,
.level-medium span,
.level-hard span {
  display: inline-block;
  height: 0.75rem;
  width: 0.75rem;
}
.level-easy span {
  background: var(--color-blue);
}
.level-easy span:nth-child(2),
.level-easy span:nth-child(3) {
  display: none;
}
.level-medium span {
  background: var(--color-green);
}
.level-medium span:nth-child(2) {
  display: none;
}
.level-hard span {
  background: var(--color-orange);
}
.courses-pagination {
  margin: 2rem 0;
  text-align: center;
}
.courses-pagination .page-numbers {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  margin: 0 0.25rem;
  background: var(--color-white);
  color: var(--color-black);
  text-decoration: none;
  border: 1px solid var(--color-gray);
  border-radius: 0.25rem;
  transition: all 0.3s ease;
}
.courses-pagination .page-numbers:hover,
.courses-pagination .page-numbers.current {
  background: var(--color-blue);
  color: var(--color-white);
  border-color: var(--color-blue);
}
.courses-pagination .page-numbers.dots {
  border: none;
  background: rgba(0, 0, 0, 0);
}
.courses-pagination .page-numbers.dots:hover {
  background: rgba(0, 0, 0, 0);
  color: var(--color-black);
}
.courses-list .loop > p {
  text-align: center;
  color: var(--color-black);
  font-size: 1.125rem;
  padding: 0.5rem 0;
  border-radius: 0.5rem;
  margin: 0;
}
@media (max-width: 480px) {
  .courses-filter {
    padding: 1rem 0;
  }
  .courses-filter .container {
    padding: 0 0.5rem;
  }
  .filter-row {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  .filter-radio-group {
    gap: 0.5rem;
  }
  .courses-sidebar {
    padding: 1rem;
  }
  .filter-group {
    gap: 1rem;
  }
  .courses-grid {
    gap: 0.75rem;
  }
}
.courses-grid.loading {
  opacity: 0.6;
  pointer-events: none;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media print {
  .courses-filter .courses-sidebar,
  .courses-filter .filter-row {
    display: none;
  }
  .courses-filter .courses-content-row {
    grid-template-columns: 1fr;
  }
  .courses-filter .course-card {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}
.subject-list {
  min-height: 75vh;
  padding-bottom: 2.5rem;
}
.subject-list__title {
  font-size: 2.5rem;
}
.subject-list__subtitle {
  margin-top: 0.5rem;
}
.subject-list__items {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin: 2.375rem auto 0;
}
.subject {
  display: inline-block;
  background: var(--color-white);
  border-radius: 0.75rem;
  box-shadow: 0px 1px 2px 0px rgba(var(--color-black--rgb), 0.05);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 7.125rem;
  max-width: 100%;
  width: 18.4375rem;
  overflow: hidden;
  padding: 1.25rem;
  position: relative;
  transition: var(--transition-default);
}
.subject:hover,
.subject:focus {
  box-shadow: 0px 1px 3px 0px rgba(var(--color-black--rgb), 0.16);
}
.subject__img {
  margin-bottom: 1.125rem;
  max-width: 100%;
  height: auto;
  width: 3.5rem;
}
.subject__color {
  position: absolute;
  right: 0;
  top: 0;
}
.subject__color span {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  transition: 0.5s ease-in-out;
}
.subject__color span:first-child {
  border-top: 32px solid rgba(0, 0, 0, 0);
  border-left-width: 32px;
  border-bottom-left-radius: 0.75rem;
}
.subject__color span:last-child {
  border-bottom: 32px solid rgba(0, 0, 0, 0);
  border-right-width: 32px;
  opacity: 0.35;
}
.subject:hover .subject__color span:first-child,
.subject:focus .subject__color span:first-child {
  border-top-width: 44px;
  border-left-width: 44px;
}
.subject:hover .subject__color span:last-child,
.subject:focus .subject__color span:last-child {
  border-bottom-width: 44px;
  border-right-width: 44px;
}
.s-404 {
  padding: 0 0 2.25rem;
}
@media (max-width: 1025px) {
  .s-404 {
    padding: 2.5rem 0rem;
  }
}
.s-404 .nothing-found-block {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border-radius: 2px;
  min-height: 27.125rem;
  padding: 2.5rem 0;
  text-align: center;
}
@media (max-width: 769px) {
  .s-404 .nothing-found-block {
    background-size: contain;
    min-height: 0;
  }
}
@media (max-width: 480px) {
  .s-404 .nothing-found-block {
    padding: 1.125rem 0;
  }
}
.s-404 .section-title h1 {
  font-size: 8rem;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 2.5rem;
}
@media (max-width: 769px) {
  .s-404 .section-title h1 {
    font-size: 6rem;
    margin-bottom: 1.5rem;
  }
}
.s-404 .section-title p {
  font-size: 1.5rem;
  line-height: 2rem;
  letter-spacing: -0.5px;
}
.s-404 .btn {
  margin-top: 1.5rem;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
@media (max-width: 769px) {
  .s-404 .btn {
    margin-top: 1.875rem;
  }
}
@media (max-width: 769px) {
  .profile-page .container {
    padding: 0;
  }
}
.profile-header {
  margin-bottom: 2.375rem;
}
@media (max-width: 769px) {
  .profile-header {
    margin-bottom: 1.25rem;
    padding: 0 1rem;
  }
}
.profile-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 100%;
  letter-spacing: -0.8px;
  margin-bottom: 0;
}
@media (max-width: 769px) {
  .profile-header h1 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 100%;
    letter-spacing: -0.64px;
  }
}
@media (max-width: 769px) {
  .profile-tabs {
    overflow: auto;
    padding-bottom: 0.875rem;
    width: 100%;
  }
}
.profile-tabs__inner {
  border-right: 1px solid var(--color-gray-300);
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
  width: 15.375rem;
  padding-right: 2.75rem;
  min-height: 25rem;
}
@media (max-width: 769px) {
  .profile-tabs__inner {
    align-items: flex-start;
    border-right: none;
    flex-direction: row;
    min-height: 0;
    max-width: unset;
    width: auto;
    gap: 0.5rem;
  }
}
.tab-link {
  color: var(--color-blue-350);
  border-radius: 2.5rem;
  padding: 0.8125rem 1.25rem 0.8125rem 3.125rem;
  position: relative;
  white-space: nowrap;
}
.tab-link:hover,
.tab-link:focus {
  color: var(--color-black);
}
.tab-link.active {
  color: var(--color-blue);
  background-color: var(--color-blue-150);
}
@media (max-width: 769px) {
  .tab-link.active {
    background-color: var(--color-blue-tab);
  }
}
.tab-link.delete-tab {
  color: var(--color-red);
  margin-top: 1.5rem;
}
@media (max-width: 769px) {
  .tab-link.delete-tab {
    margin-top: 0;
  }
}
.tab-link svg {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
}
.profile-content {
  display: flex;
  gap: 2.75rem;
  background-color: var(--color-white);
  background-image: url("/wp-content/themes/zmist/assets/img/profile-bg.png");
  background-repeat: no-repeat;
  background-position: left bottom;
  border-radius: 1.25rem;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  padding: 2.5rem;
  margin-bottom: 5.625rem;
}
@media (max-width: 769px) {
  .profile-content {
    background-color: rgba(0, 0, 0, 0);
    box-shadow: none;
    border-radius: 0;
    flex-wrap: wrap;
    overflow: visible;
    margin-bottom: 0;
    padding: 0 1rem 15rem;
    gap: 0.875rem;
  }
}
.profile-main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  max-width: 42.8125rem;
  position: relative;
}
.profile-main__actions {
  position: absolute;
  right: 0;
  top: 0;
}
.profile-main__actions button {
  color: var(--color-blue-500);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.375rem;
  text-decoration: underline;
  transition: var(--transition-default);
}
.profile-main__actions button:hover {
  color: var(--color-black);
}
.profile-main--secondary {
  position: relative;
}
@media (max-width: 769px) {
  .profile-main--secondary {
    border: 1px solid var(--color-gray-300);
    border-radius: 1rem;
    padding: 1.25rem;
    margin-top: 0.875rem;
  }
  .profile-main--secondary .profile-main__actions {
    top: 1.25rem;
    right: 1.25rem;
  }
}
@media (max-width: 769px) {
  .profile-main--notifications .form-title h2 {
    margin-bottom: 0.5rem;
    width: calc(100% - 6.1875rem);
  }
}
@media (max-width: 769px) {
  .profile-main--notifications .checkbox-group {
    padding-right: 2rem;
    position: relative;
  }
}
@media (max-width: 769px) {
  .profile-main--notifications .checkbox-label span {
    position: static;
    padding-left: 0;
  }
  .profile-main--notifications .checkbox-label span:after,
  .profile-main--notifications .checkbox-label span:before {
    left: unset;
    right: 0;
    top: 50%;
  }
  .profile-main--notifications .checkbox-label span:before {
    transform: translateY(-50%);
  }
  .profile-main--notifications .checkbox-label span:after {
    transform: translateY(-50%) scale(1) !important;
  }
}
@media (max-width: 480px) {
  .profile-main--delete .btn,
  .profile-main--delete [type="submit"] {
    width: 100% !important;
  }
}
@media (max-width: 480px) {
  .profile-main--delete .btn + btn,
  .profile-main--delete .btn + [type="submit"],
  .profile-main--delete [type="submit"] + btn,
  .profile-main--delete [type="submit"] + [type="submit"] {
    margin-top: 1rem !important;
  }
}
.personal-info {
  border: 1px solid var(--color-gray-300);
  border-radius: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 1.5rem;
  min-height: 8.125rem;
}
@media (max-width: 769px) {
  .personal-info {
    padding: 1.25rem;
  }
}
.personal-info__photo {
  border: 1px solid var(--color-gray-300);
  border-radius: 100%;
  height: 5.125rem;
  width: 5.125rem;
  margin-right: 1rem;
  position: relative;
}
@media (max-width: 769px) {
  .personal-info__photo {
    height: 4.25rem;
    width: 4.25rem;
  }
}
.personal-info__photo svg {
  color: var(--color-gray);
  height: 2.25rem;
  width: 2.25rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 769px) {
  .personal-info__photo svg {
    height: 2rem;
    width: 2rem;
  }
}
.personal-info__photo img,
.personal-info__photo picture {
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}
.personal-info__name {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.6875rem;
  letter-spacing: -0.3px;
  margin-bottom: 0.25rem;
}
.personal-info__role {
  color: var(--color-gray-450);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.375rem;
  letter-spacing: -0.24px;
  margin-bottom: 0.125rem;
}
.personal-info__location {
  color: var(--color-blue-500);
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: -0.21px;
}
.form-section {
  border: 1px solid var(--color-gray-300);
  border-radius: 1rem;
  padding: 1.5rem;
  position: relative;
}
.profile-content h2 {
  font-family: var(--font-default);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5rem;
  margin-bottom: 1.25rem;
  letter-spacing: -0.27px;
}
@media (max-width: 480px) {
  .profile-content h2 {
    margin-bottom: 1.5rem;
  }
}
.profile-content h2 + p {
  color: var(--color-blue-500);
  font-size: 0.9375rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
@media (max-width: 769px) {
  .profile-content h2 + p {
    margin-bottom: 0.25rem;
  }
}
@media (max-width: 1025px) {
  .profile-form--preview {
    padding-bottom: 4.5rem;
  }
}
.profile-form--preview .profile-edit-btn {
  display: block;
}
.profile-form--preview .form-group input,
.profile-form--preview .form-group .datepicker {
  display: none;
}
.profile-form--preview .form-group .real-value {
  display: block;
}
.profile-form--preview .form-footer {
  display: none;
}
@media (max-width: 1025px) {
  .profile-form--preview.edit-mode {
    padding-bottom: 0;
  }
}
.profile-form--preview.edit-mode .profile-edit-btn {
  display: none;
}
.profile-form--preview.edit-mode .form-group input,
.profile-form--preview.edit-mode .form-group .datepicker {
  display: block;
}
.profile-form--preview.edit-mode .form-group .real-value {
  display: none;
}
.profile-form--preview.edit-mode .form-footer {
  display: block;
}
.profile-form .profile-edit-btn {
  font-size: 0.875rem;
  line-height: 1.25rem;
  position: absolute;
  padding: 0.625rem 1rem 0.625rem 2.5rem;
  right: 1.25rem;
  top: 1.3125rem;
}
@media (max-width: 1025px) {
  .profile-form .profile-edit-btn {
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    top: unset;
    max-width: 100%;
    width: 15rem;
  }
}
@media (max-width: 769px) {
  .profile-form .profile-edit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.375rem;
    letter-spacing: -0.24px;
    padding: 0.8125rem 1rem;
  }
}
@media (max-width: 480px) {
  .profile-form .profile-edit-btn {
    width: calc(100% - 2.5rem);
  }
}
.profile-form .profile-edit-btn svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  width: 1.125rem;
  height: 1.125rem;
  transform: translateY(-50%);
}
@media (max-width: 769px) {
  .profile-form .profile-edit-btn svg {
    height: 1.25rem;
    width: 1.25rem;
    display: inline-block;
    position: static;
    transform: translateY(0);
    margin-right: 0.375rem;
  }
}
.real-value {
  font-size: 1rem;
  line-height: 1.375rem;
  letter-spacing: -0.24px;
}
.real-value.empty {
  background-color: var(--color-gray-200);
  border-radius: 0.25rem;
  min-height: 1.375rem;
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.25rem;
}
.profile-menu {
  position: relative;
  pointer-events: auto;
  z-index: 11;
}
.profile-menu-toggle {
  cursor: pointer;
}
.profile-menu .profile-photo {
  border-radius: 100%;
  box-shadow: 0px 1px 2px 0px rgba(46, 53, 95, 0.08),
    0px 2px 2px 0px rgba(46, 53, 95, 0.04);
  margin: 0 auto 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
  position: relative;
}
.profile-menu .profile-photo svg {
  display: block;
  color: var(--color-gray);
  height: 1rem;
  width: 1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.profile-menu .profile-name {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.375rem;
  letter-spacing: -0.24px;
  margin-bottom: 0.875rem;
  text-align: center;
}
.profile-menu-content {
  max-width: 100vw;
  width: 12.5625rem;
  background: var(--color-white);
  border-radius: 0.75rem;
  box-shadow: 0px 3.2px 4px 0px rgba(18, 27, 151, 0.13);
  position: absolute;
  right: 0;
  top: 3.625rem;
  padding: 0.75rem;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
}
.profile-menu-list {
  display: flex;
  flex-direction: column;
}
.profile-menu-list li a {
  display: block;
  padding: 0.875rem 0.875rem 0.875rem 1.875rem;
  position: relative;
}
.profile-menu-list li a svg {
  height: 1.25rem;
  width: 1.25rem;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.profile-menu-list li:last-child {
  position: relative;
  margin-top: 1rem;
}
.profile-menu-list li:last-child:before {
  content: "";
  background: var(--color-gray-300);
  display: block;
  height: 1px;
  width: 100%;
  position: absolute;
  top: -0.5rem;
  left: 0;
}
.profile-menu-list li:last-child a {
  padding-bottom: 0;
}
.profile-menu-list li:last-child a svg {
  top: unset;
  bottom: 0;
  transform: none;
}
.profile-menu.opened .profile-menu-content {
  pointer-events: auto;
  opacity: 1;
}
.hero-block {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  overflow: hidden;
  position: relative;
  padding: 12rem 0 10rem !important;
}
@media (max-width: 769px) {
  .hero-block {
    padding: 5rem 0 7rem !important;
  }
}
@media (max-width: 480px) {
  .hero-block {
    min-height: 0;
  }
}
.hero-block__bg {
  object-fit: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, calc(-50% + 4rem));
  max-width: unset;
}
@media (max-width: 769px) {
  .hero-block__bg {
    width: 62rem;
    top: 14.5rem;
  }
}
@media screen and (max-width: 570px) {
  .hero-block__bg {
    width: 36.0625rem;
    height: auto;
    top: 5.5rem;
  }
}
.hero-block__inner {
  width: 45.875rem;
  max-width: 100%;
  z-index: 1;
}
.hero-block__inner .btn {
  margin-top: 3rem;
}
.hero-block__logo-image {
  max-width: 100%;
  width: 10.625rem;
}
.hero-block__logos {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 11px;
  position: relative;
  z-index: 1;
  max-width: 100%;
}
@media (max-width: 1280px) {
  .hero-block__logos {
    padding: 0 1rem;
  }
}
@media (max-width: 1025px) {
  .hero-block__logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}
@media (max-width: 769px) {
  .hero-block__logos {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .hero-block__logos {
    gap: 0.75rem 0.875rem;
  }
}
@media (max-width: 480px) {
  .hero-block__logos > div,
  .hero-block__logos > img,
  .hero-block__logos > svg,
  .hero-block__logos > picture {
    max-width: 50%;
    width: 7.8125rem;
  }
}
.hero-block__title {
  font-size: 3.8rem;
  line-height: 120%;
  font-weight: 800;
  margin-top: 2.5rem;
}
@media (max-width: 769px) {
  .hero-block__title {
    font-size: 2rem;
    line-height: 100%;
    letter-spacing: -0.64px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;
    width: 18.8125rem;
  }
}
.hero-block__description {
  margin-top: 2rem;
}
.hero-block__description p {
  font-size: 1.5rem;
  line-height: 2rem;
}
@media (max-width: 769px) {
  .hero-block__description p {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }
}
.education-areas {
  padding: 9.5rem 0 6.25rem !important;
  position: relative;
  text-align: center;
}
@media (max-width: 769px) {
  .education-areas {
    padding-bottom: 3.75rem !important;
  }
}
@media (max-width: 480px) {
  .education-areas {
    padding-top: 7rem !important;
  }
}
.education-areas__title {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 100%;
  margin-bottom: 1.25rem;
}
@media (max-width: 769px) {
  .education-areas__title {
    font-size: 2.5rem;
  }
}
.education-areas__subtitle {
  font-family: var(--font-default);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.375rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
  max-width: 100%;
  width: 31.25rem;
}
.education-areas__swiper {
  color: var(--color-white);
  background: var(--color-green-350);
  border-radius: 1.5rem;
  padding: 1.75rem 0;
  text-align: left;
}
.education-areas__swiper .swiper-wrapper {
  align-items: stretch;
  justify-content: stretch;
}
@media (max-width: 769px) {
  .education-areas__swiper {
    padding: 1.5rem 0 2.8125rem 0;
  }
}
.education-areas__head {
  position: relative;
}
.education-areas__head_title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.75rem;
  margin-left: 1.75rem;
  line-height: 100%;
  letter-spacing: -0.8px;
}
@media (max-width: 769px) {
  .education-areas__head_title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.64px;
    margin-left: 1.5rem;
  }
}
.education-areas__head .swiper-controls {
  position: absolute;
  top: 0.375rem;
  right: 1.75rem;
}
@media (max-width: 480px) {
  .education-areas__head .swiper-controls {
    display: none;
  }
}
.education-areas__decor_1,
.education-areas__decor_2 {
  position: absolute;
  pointer-events: none;
  z-index: -1;
}
.education-areas__decor_1 {
  bottom: 1.0625rem;
  left: calc(50% - 42.375rem);
}
.education-areas__decor_2 {
  left: calc(50% + 17.8125rem);
  top: 3.25rem;
}
.education-areas .education-area {
  color: var(--color-black);
  background: var(--color-white);
  border-radius: 1rem;
  max-width: 100%;
  padding: 0.25rem;
  width: 16.25rem;
}
.education-areas .education-area:first-child {
  margin-left: 1.75rem;
}
@media (max-width: 769px) {
  .education-areas .education-area:first-child {
    margin-left: 1.5rem;
  }
}
.education-areas .education-area:last-child {
  margin-right: 1.75rem;
}
@media (max-width: 769px) {
  .education-areas .education-area:last-child {
    margin-right: 1.5rem;
  }
}
.education-areas .education-area__link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.education-areas .education-area__image {
  background: var(--color-gray-light);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 11.5rem;
}
.education-area__image img {
  max-height:150px;
  max-width:150px;
}
.education-areas .education-area__info {
  padding: 1.25rem;
}
.education-areas .education-area__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2rem;
  letter-spacing: -0.48px;
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: var(--transition-default);
}
.education-areas .education-area:hover .education-area__title,
.education-areas .education-area:focus .education-area__title {
  color: var(--color-blue);
}
.module-hero {
  padding-bottom: 2.75rem;
  position: relative;
  overflow: hidden;
}
@media (max-width: 480px) {
  .module-hero {
    padding-bottom: 290px;
  }
}
.module-hero .breadcrumbs {
  position: relative;
  z-index: 1;
}
.module-hero.topic-hero {
  background: var(--color-pink);
}
.module-hero.topic-hero .breadcrumbs {
  color: var(--color-blue-400);
}
.module-hero.topic-hero .breadcrumbs a {
  color: rgba(20, 20, 20, 0.44);
}
.module-hero.topic-hero .breadcrumbs a:hover {
  color: var(--color-black);
}
.module-hero.course-hero {
  background: var(--color-blue);
}
.module-hero.course-hero .breadcrumbs {
  color: var(--color-blue-400);
}
.module-hero.course-hero .breadcrumbs a {
  color: var(--color-blue-400);
}
.module-hero.course-hero .breadcrumbs a:hover {
  color: var(--color-white);
}
.module-hero.course-hero .breadcrumbs span {
  color: var(--color-white);
}
.module-hero.course-hero .module-hero__content {
  width: 51.3125rem;
}
.module-hero__bg {
  max-height: unset;
  height: auto;
  width: 35.5625rem;
  position: absolute;
  bottom: 0;
  left: 1280px;
  transform: translateX(-50%);
}
@media (max-width: 480px) {
  .module-hero__bg {
    bottom: 0;
    left: 50%;
    width: 90%;
  }
}
.module-hero__content {
  background: var(--color-white);
  border-radius: 1.25rem;
  margin-top: 5rem;
  max-width: 100%;
  position: relative;
  width: 31.5625rem;
  z-index: 1;
}
@media (max-width: 769px) {
  .module-hero__content {
    margin-top: 2rem;
  }
}
.module-posts {
  padding: 4rem 0;
}
@media (max-width: 769px) {
  .module-posts {
    padding: 1.75rem 0 3rem;
  }
}
.module-posts__head {
  margin-bottom: 2.375rem;
}
@media (max-width: 769px) {
  .module-posts__head {
    margin-bottom: 1.75rem;
  }
}
.module-posts__head h2 {
  font-size: 2rem;
  line-height: 100%;
  margin-bottom: 0.5rem;
}
@media (max-width: 769px) {
  .module-posts__head h2 {
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: -0.48x;
    margin-bottom: 0.125rem;
  }
}
.module-posts__head p {
  color: var(--color-gray-450);
  font-size: 0.875rem;
  font-weight: 500;
}
.module-posts__inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 100%;
  width: 51.3125rem;
}
.module-card:hover,
.module-card:focus {
  color: inherit;
}
.module-card__inner {
  background: var(--color-white);
  border-radius: 1rem;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  padding: 0.375rem;
}
@media (max-width: 769px) {
  .module-card__inner {
    display: block;
    position: relative;
    padding: 0;
  }
}
.module-card__number {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-blue-200);
  border-radius: 0.5rem;
  margin-right: 2rem;
  width: 7rem;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
}
@media (max-width: 769px) {
  .module-card__number {
    position: absolute;
    right: 1.25rem;
    top: 1.25rem;
    height: 3rem;
    width: 3rem;
    font-size: 18px;
    margin-right: 0;
  }
}
.module-card__number span {
  display: block;
  height: 2rem;
  line-height: 130%;
}
@media (max-width: 769px) {
  .module-card__number span {
    height: 1.3125rem;
    line-height: 1.3125rem;
  }
}
.module-card__content {
  flex: 1;
  padding: 0.75rem 1.625rem 0.75rem 0;
  position: relative;
}
@media (max-width: 769px) {
  .module-card__content {
    padding: 1.25rem 5.5rem 1.25rem 1.25rem;
  }
}
.module-topic .module-card__content {
  padding-right: 3.2rem;
}
@media (max-width: 769px) {
  .module-topic .module-card__content {
    padding-right: 5.5rem;
  }
}
.module-card__content h3 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2rem;
  letter-spacing: -0.48px;
  max-width: 33.6875rem;
}
@media (max-width: 769px) {
  .module-card__content h3 {
    font-size: 1.125rem;
    line-height: 1.5rem;
    letter-spacing: -0.27px;
  }
}
.module-card__content h3:last-child {
  margin-bottom: 0;
}
.module-card__content p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.375rem;
  letter-spacing: -0.24px;
  margin-top: 1.5rem;
  height: 4.125rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media (max-width: 769px) {
  .module-card__content p {
    height: auto;
  }
}
.module-card__content > .icon {
  height: 1.5rem;
  width: 1.5rem;
  position: absolute;
  right: 1.625rem;
  top: 1.125rem;
}
@media (max-width: 769px) {
  .module-card__content > .icon {
    display: none;
  }
}
.module-card__meta {
  max-width: 100%;
  width: 28.125rem;
}
.module-card__meta .tag {
  margin-top: 0.75rem;
}
.faq-block {
  padding: 8.3125rem 0 4.4375rem;
}
@media (max-width: 769px) {
  .faq-block {
    padding: 9rem 0 1.5rem;
  }
}
.faq-block.template-pink-bg {
  background: var(--color-pink-100);
  border-radius: 2rem;
  margin: 0 auto;
  padding: 6rem 0;
  width: 1400px;
  max-width: 100%;
  text-align: center;
}
@media screen and (max-width: 1400px) {
  .faq-block.template-pink-bg {
    margin: 0 0.625rem;
    width: calc(100% - 1.25rem);
  }
}
@media (max-width: 1025px) {
  .faq-block.template-pink-bg {
    padding: 4rem 1.25rem;
  }
}
@media (max-width: 480px) {
  .faq-block.template-pink-bg {
    padding: 2.5rem 1rem;
  }
}
.faq-block.template-pink-bg .container {
  padding: 0;
}
.faq-block.template-pink-bg .faq-block__title {
  font-size: 3.25rem;
  margin-bottom: 3rem;
}
@media (max-width: 769px) {
  .faq-block.template-pink-bg .faq-block__title {
    font-size: 2rem;
    margin: 0 auto 1.75rem;
    max-width: 100%;
    width: 19.75rem;
  }
}
.faq-block.template-pink-bg .faq-block__items {
  text-align: left;
}
.faq-block__title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  line-height: 100%;
  margin-bottom: 2.375rem;
}
@media (max-width: 769px) {
  .faq-block__title {
    font-size: 2rem;
    margin-bottom: 1.75rem;
  }
}
.faq-block__items {
  margin: 0 auto;
}
.faq-item__answer-content p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5rem;
  letter-spacing: -0.27px;
  margin-bottom: 0.5rem;
}
.about-platform {
  overflow: unset;
}
.about-platform .container {
  padding: 0;
}
.about-platform__inner {
  background: var(--color-white);
  border-radius: 2rem;
  box-shadow: 0px 1px 2px 0px rgba(46, 53, 95, 0.08),
    0px 2px 2px 0px rgba(46, 53, 95, 0.04);
  margin: 0 auto;
  max-width: 100%;
  padding: 8.25rem 0;
  width: 87.5rem;
}
@media screen and (max-width: 1400px) {
  .about-platform__inner {
    width: calc(100% - 1.25rem);
    margin: 0 auto;
    padding: 6rem 0.625rem;
  }
}
@media (max-width: 769px) {
  .about-platform__inner {
    border-radius: 1.5rem;
    padding: 2.5rem 1.25rem;
  }
}
.about-platform .container {
  width: 66.5625rem;
}
.about-platform__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 769px) {
  .about-platform__row {
    gap: 2rem;
    flex-direction: column;
    align-items: center;
  }
}
.about-platform__image {
  position: sticky;
  top: 1.5rem;
  width: 32.5625rem;
}
@media (max-width: 1025px) {
  .about-platform__image {
    width: 19.6875rem;
  }
}
@media (max-width: 769px) {
  .about-platform__image {
    position: relative;
    top: unset;
  }
}

.about-platform__items {
  display: grid;
	grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.about-platform__item {
  counter-increment: list-item;
}
.about-platform__item:first-child {
  margin-top: 0;
}
.about-platform__item_head {
  display: flex;
  align-items: center;
}
.about-platform__item_head:before {
  content: counter(list-item);
  background-image: url("/wp-content/themes/zmist/assets/img/circle-1.png");
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  line-height: 100%;
  height: 5rem;
  width: 5rem;
  padding-top: 0.625rem;
}
.about-platform__item_head:nth-child(2n + 1):before {
  background-image: url("/wp-content/themes/zmist/assets/img/circle-2.png");
}
.about-platform__item_head h3 {
  font-size: 24px;
  margin-left: 1rem;
  margin-top: 0.625rem;
}
.about-platform__item .item-text {
  margin-top: 1rem;
}
.about-platform__item p {
  font-family: var(--font-default);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 150%;
}
@media (max-width: 1025px) {
  .about-platform__item p {
    font-size: 1.125rem;
    line-height: 1.5rem;
    letter-spacing: -0.27px;
  }
}
.about-platform__title {
  font-size: 3.25rem;
  line-height: 100%;
  margin-bottom: 2rem;
  text-align: center;
}
@media (max-width: 769px) {
  .about-platform__title {
    font-size: 2rem;
    line-height: 100%;
    letter-spacing: -0.64px;
    margin-bottom: 1.5rem;
  }
.about-platform__items {
	grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 480px) {
.about-platform__items {
	grid-template-columns: repeat(1, 1fr);
}
}
.about-platform__subtitle {
  color: var(--color-gray-500);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6875rem;
  margin:auto;
  margin-bottom: 2rem;
  text-align:center;
  max-width:620px;
}
@media (max-width: 1025px) {
  .about-platform__subtitle {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }
}
.testimonial-section {
  padding-bottom: 140px;
  overflow: visible;
  position: relative;
  z-index: 2;
}
@media (max-width: 769px) {
  .testimonial-section {
    margin-left: 0.625rem;
    margin-right: 0.625rem;
    width: calc(100% - 1.25rem);
    padding-bottom: 93px;
  }
}
.testimonial__inner {
  background: var(--color-blue-light);
  position: relative;
  z-index: 1;
}
.testimonial__row {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 769px) {
  .testimonial__row {
    flex-wrap: wrap;
  }
}
.testimonial__left {
  position: relative;
}
@media (max-width: 1201px) {
  .testimonial__left {
    width: 320px;
  }
}
@media (max-width: 769px) {
  .testimonial__left {
    width: 100%;
    margin-bottom: 7rem;
  }
}
.testimonial__right {
  width: calc(100% - 542px);
}
@media (max-width: 1201px) {
  .testimonial__right {
    width: calc(100% - 360px);
  }
}
@media (max-width: 769px) {
  .testimonial__right {
    width: 100%;
  }
}
.testimonial__title {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 100%;
  text-align: center;
  margin-bottom: 5rem;
}
@media (max-width: 769px) {
  .testimonial__title {
    font-size: 2rem;
    line-height: 100%;
    letter-spacing: -0.64px;
    margin-bottom: 3.5rem;
  }
}
.testimonial__author {
  text-align: center;
}
.testimonial__author-info {
  width: 100%;
}
.testimonial__author-photo {
  display: inline-block;
  max-width: 100%;
  max-height: 32rem;
  width: 300px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1201px) {
  .testimonial__author-photo {
    width: 246px;
  }
}
.testimonial__author-photo:before {
  content: "";
  background-image: url("/wp-content/themes/zmist/assets/img/testimonial-bg.png");
  background-size: contain;
  background-repeat: no-repeat;
  height: calc(100% + 6.0625rem);
  width: calc(100% + 6.25rem);
  position: absolute;
  left: 1.375rem;
  top: -3.625rem;
  z-index: -1;
}
@media (max-width: 1201px) {
  .testimonial__author-photo:before {
    width: calc(100% + 2.4375rem);
    height: calc(100% + 1.8125rem);
    top: -1.75rem;
    left: 1.75rem;
  }
}
.testimonial__author-position {
  background: var(--color-green-150);
  border-radius: 6.25rem;
  max-width: 100%;
  width: 17.25rem;
  position: absolute;
  bottom: -90px;
  right: 0.75rem;
  padding: 0.8125rem 1rem;
  font-size: 1rem;
  line-height: 1.375rem;
  font-weight: 500;
  letter-spacing: -0.015rem;
  text-align: left;
}
@media (max-width: 769px) {
  .testimonial__author-position {
    font-size: 0.5rem;
    font-weight: 500;
    line-height: 0.6875rem;
    letter-spacing: -0.12px;
    width: 8.625rem;
    padding: 0.375rem 0.5rem;
    bottom: -0.9375rem;
    right: 0.375rem;
    transform: translateY(100%);
  }
}
.testimonial__author-name {
  background: var(--color-blue);
  border-radius: 6.25rem;
  display: inline-block;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  text-wrap: nowrap;
  line-height: 1.5rem;
  position: absolute;
  left: 50%;
  bottom: -1.75rem;
  padding: 1.8125rem 1.8125rem 1.1875rem;
  transform: translateX(-50%);
}
.testimonial__author-name svg {
  color: var(--color-blue);
  width: 3.5625rem;
  height: 2.6875rem;
  position: absolute;
  left: 2.1875rem;
  bottom: 0.75rem;
  transform: translateY(100%);
}
@media (max-width: 769px) {
  .testimonial__author-name {
    font-size: 0.625rem;
    line-height: 0.75rem;
    letter-spacing: -0.15px;
    padding: 0.9375rem 0.9375rem 0.625rem;
    bottom: 1.25rem;
    left: calc(50% - 0.375rem);
    transform: translate(-50%, 100%);
  }
  .testimonial__author-name svg {
    width: 28px;
    height: 25px;
  }
}
.testimonial__quote {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 3rem;
  letter-spacing: -1.56px;
  text-align: left;
}
@media (max-width: 769px) {
  .testimonial__quote {
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: -0.48px;
    text-align: center;
  }
}
.testimonial__quote-wrapper {
  padding: 3.375rem 0;
  position: relative;
  margin: -2.5rem auto 0;
  max-width: 100%;
  width: 57rem;
}
@media (max-width: 769px) {
  .testimonial__quote-wrapper {
    padding: 2.375rem 0;
  }
}
.testimonial__quote-wrapper svg {
  color: var(--color-blue);
  position: absolute;
  height: 2.8125rem;
  width: 3rem;
}
@media (max-width: 769px) {
  .testimonial__quote-wrapper svg {
    width: 2rem;
    height: 1.875rem;
  }
}
.testimonial__quote-wrapper svg:nth-child(1) {
  left: 0;
  top: 0;
}
.testimonial__quote-wrapper svg:nth-child(2) {
  right: 0;
  bottom: 0;
}
.testimonial__description {
  width: 100%;
  margin: 1.5rem auto 0;
}
.testimonial__description p {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.3px;
  margin-bottom: 1rem;
}
@media (max-width: 769px) {
  .testimonial__description {
    padding: 0 1rem;
  }
	.testimonial__description p {
	  font-size: 1.1rem;
	  margin-bottom: 1rem;
	  letter-spacing: 0px;
	}
}
.testimonial__description p:last-child {
  margin-bottom: 0;
}
.project-info + .testimonial-section .testimonial__inner {
  padding-top: 7.375rem;
}
@media (max-width: 769px) {
  .project-info + .testimonial-section .testimonial__inner {
    padding: 4rem 1.75rem 0 1.75rem;
  }
}
.project-info + .testimonial-section .testimonial__inner:before {
  content: "";
  background: var(--color-pink-100);
  display: block;
  height: 27.0625rem;
  width: 100%;
  position: absolute;
  top: -3.125rem;
  left: 0;
  z-index: -2;
}
.project-info + .testimonial-section .testimonial__inner:after {
  content: "";
  background: var(--color-blue-light);
  border-top-left-radius: 100%;
  border-top-right-radius: 100%;
  left: -4.1875rem;
  top: 0;
  display: block;
  width: calc(100% + 8.375rem);
  height: 43.9375rem;
  position: absolute;
  z-index: -1;
}
@media (max-width: 769px) {
  .project-info + .testimonial-section .testimonial__inner:after {
    left: 50%;
    height: 23.8125rem;
    width: 54.5rem;
    transform: translateX(-50%);
    top: 2px;
  }
}
.education-areas--fixed {
  position: absolute;
  left: 0;
  top: -111px;
  display: block;
  height: calc(100% + 111px);
  width: 100%;
  pointer-events: none;
  z-index: 3;
}
@media (max-width: 769px) {
  .education-areas--fixed {
    height: 100%;
    top: 0;
  }
}
.education-areas--progress {
  background: var(--color-blue-background);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  text-align: right;
}
@media (max-width: 769px) {
  .education-areas--progress {
    text-align: left;
  }
}
body.admin-bar .education-areas--progress {
  top: 2rem;
}
@media screen and (max-width: 782px) {
  body.admin-bar .education-areas--progress {
    top: 3rem;
  }
}
@media screen and (max-width: 600px) {
  body.admin-bar .education-areas--progress {
    top: 0;
  }
}
.education-areas--progress-bar {
  display: inline-block;
  background: var(--color-blue-300);
  border-radius: 100px;
  margin-bottom: 0.5rem;
  width: 32.625rem;
  max-width: 100%;
  height: 0.5rem;
}
@media (max-width: 769px) {
  .education-areas--progress-bar {
    width: 100%;
  }
}
.education-areas--progress-bar > span {
  display: block;
  background: var(--color-blue);
  border-radius: 100px;
  min-width: 5%;
  height: 100%;
  width: 0;
}
.education-areas--progress p {
  font-size: 1.25rem;
  line-height: 1.6875rem;
  font-weight: 400;
  letter-spacing: -0.3px;
  color: var(--color-black);
}
@media (max-width: 769px) {
  .education-areas--progress p {
    font-size: 1.25rem;
  }
}
.education-areas-list {
  margin: 2rem 0;
}
.education-areas-list-block {
  overflow: unset;
  padding-top: 10.5rem;
}
@media (max-width: 769px) {
  .education-areas-list-block {
    padding-top: 4rem;
  }
}
.education-areas-list-block .flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}
.education-areas-list-block .page-description {
  position: sticky;
  top: 5rem;
  max-width: 30%;
  width: 25rem;
}
body.admin-bar .education-areas-list-block .page-description {
  top: 7rem;
}
@media screen and (max-width: 782px) {
  body.admin-bar .education-areas-list-block .page-description {
    top: 4rem;
  }
}
@media screen and (max-width: 600px) {
  body.admin-bar .education-areas-list-block .page-description {
    top: 0;
  }
}
@media (max-width: 769px) {
  .education-areas-list-block .page-description {
    top: 0;
    position: static;
    max-width: 100%;
    margin-bottom: 1.5rem;
    width: 100%;
  }
}
.education-areas-list-block .page-description p {
  color: var(--color-gray-500);
  font-size: 1.25rem;
  line-height: 1.6875rem;
  letter-spacing: -0.3px;
  margin: 0 0 1rem;
}
@media (max-width: 1025px) {
  .education-areas-list-block .page-description p {
    font-size: 1.125rem;
    line-height: 1.5rem;
    letter-spacing: -0.27px;
  }
}
.education-areas-list-block .page-description p:last-child {
  margin-bottom: 0;
}
.education-areas-list-block .education-areas--content {
  max-width: 60%;
  position: relative;
  width: 52.9375rem;
}
@media (max-width: 769px) {
  .education-areas-list-block .education-areas--content {
    padding-top: 111px;
    max-width: 100%;
    width: 100%;
  }
}
.education-areas-list-block .education-areas--content .education-areas-title {
  color: var(--color-black);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 1rem;
}
.education-areas-list-block .education-areas--content .education-areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.education-areas-list-block
  .education-areas--content
  .education-areas-list
  .education-area-item {
  border-bottom: 1px solid var(--color-gray-350);
  padding-bottom: 1.75rem;
  display: block;
  text-align: left;
  width: 100%;
}
.education-areas-list-block
  .education-areas--content
  .education-areas-list
  .education-area-item
  .education-area-link {
  color: var(--color-black);
  display: block;
  width: 100%;
  margin-bottom: 0.5rem;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 3.25rem;
  letter-spacing: -1.56px;
  transition: var(--transition-default);
  position: relative;
  padding-right: 7.1875rem;
}
@media (max-width: 1025px) {
.education-areas-list-block
    .education-areas--content
    .education-areas-list
    .education-area-item
    .education-area-link {
    font-size: 1.5rem;
    line-height: 100%;
    letter-spacing: -0.64px;
    margin-bottom: 0.75rem;
    padding-right: 0;
    text-overflow: ellipsis;
    overflow: hidden;
  }
.education-areas-list-block
  .education-areas--content
  .education-areas-list
  .education-area-item {
  padding-bottom: 1.5rem;
}
}
.education-areas-list-block
  .education-areas--content
  .education-areas-list
  .education-area-item
  .education-area-link:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-30%);
  display: block;
  width: 3rem;
  height: 3rem;
  background-image: url("/wp-content/themes/zmist/assets/img/checkbox-vector.svg");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  transition: var(--transition-default);
}
.education-areas-list-block
  .education-areas--content
  .education-areas-list
  .education-area-item
  .education-area-link:hover,
.education-areas-list-block
  .education-areas--content
  .education-areas-list
  .education-area-item
  .education-area-link:focus {
  color: var(--color-blue);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.25rem;
}
.education-areas-list-block
  .education-areas--content
  .education-areas-list
  .education-area-item
  .education-area-link:hover:after,
.education-areas-list-block
  .education-areas--content
  .education-areas-list
  .education-area-item
  .education-area-link:focus:after {
  opacity: 1;
}
.project-info__inner {
  background: var(--color-pink-100);
  border-radius: 2rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  width: 87.5rem;
  max-width: 100%;
  margin: 0 auto;
  padding: 8.3125rem 0;
}
.project-info__inner .container {
  width: 66.25rem;
  padding: 0;
}
@media screen and (max-width: 87.5rem) {
  .project-info__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media (max-width: 769px) {
  .project-info__inner {
    padding: 2.5rem 1.25rem 2rem;
    width: calc(100% - 1.25rem);
    margin: 0 auto;
  }
}
.project-info__head {
  margin-bottom: 4.25rem;
  text-align: center;
}
@media (max-width: 769px) {
  .project-info__head {
    margin-bottom: 1.5rem;
  }
}
.project-info__title {
  font-size: 3.25rem;
  line-height: 100%;
  letter-spacing: -1.56px;
  width: 33.75rem;
  margin: 0 auto;
  max-width: 100%;
}
@media (max-width: 769px) {
  .project-info__title {
    font-size: 2rem;
    line-height: 100%;
    letter-spacing: -0.64px;
    margin: 0 auto;
    width: 19.625rem;
  }
}
.project-info__subtitle {
  color: var(--color-gray-500);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6875rem;
  margin-top: 1rem;
}
.project-info__sections .project-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 4.25rem;
}
@media (max-width: 769px) {
  .project-info__sections .project-section {
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.75rem;
    gap: 1.5rem;
  }
}
.project-info__sections .project-section:last-child {
  margin-bottom: 0;
}
.project-info__sections .project-section .section-image {
  width: 18.875rem;
}
@media (max-width: 769px) {
  .project-info__sections .project-section .section-image {
    max-width: 100%;
    width: 100%;
  }
}
.project-info__sections .project-section .section-content {
  max-width: 58%;
  width: 32.5625rem;
}
@media (max-width: 769px) {
  .project-info__sections .project-section .section-content {
    max-width: 100%;
    width: 100%;
  }
}
.project-info__sections .project-section--image_left .section-image {
  max-width: 40%;
  width: 25.375rem;
}
@media (max-width: 769px) {
  .project-info__sections .project-section--image_left .section-image {
    max-width: 100%;
    width: 100%;
  }
}
.project-info__sections .project-section--image_right .section-image {
  max-width: 40%;
  width: 18.875rem;
}
@media (max-width: 769px) {
  .project-info__sections .project-section--image_right .section-image {
    max-width: 100%;
    width: 100%;
  }
}
.project-info__sections .project-section--image_right .section-content {
  max-width: 58%;
  width: 39.1875rem;
}
@media (max-width: 769px) {
  .project-info__sections .project-section--image_right .section-content {
    max-width: 100%;
    width: 100%;
  }
}
.project-info__sections .project-section p {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2rem;
  margin-bottom: 0.75rem;
}
@media (max-width: 769px) {
  .project-info__sections .project-section p {
    font-size: 1.125rem;
    line-height: 1.5rem;
    letter-spacing: -0.27px;
  }
}
.project-info__sections .project-section p:last-child {
  margin-bottom: 0;
}
.project-info__sections .project-section ul {
  margin-top: 2rem;
}
.project-info__sections .project-section ul li {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5rem;
  letter-spacing: -0.27px;
  margin-bottom: 1.25rem;
  padding-left: 3.875rem;
  position: relative;
}
.project-info__sections .project-section ul li:last-child {
  margin-bottom: 0;
}
.project-info__sections .project-section ul li:before {
  content: "";
  background-image: url("/wp-content/themes/zmist/assets/img/heart-img.png");
  display: block;
  height: 2.875rem;
  width: 2.875rem;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 769px) {
  .project-info__sections .project-section ul li {
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.25rem;
    letter-spacing: -0.225px;
  }
}
.project-info .section-image img {
  margin: 0 auto;
  display: block;
}
.cta-block {
  margin-top: 1.875rem;
}
.cta-block .container {
  width: 55.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.cta-block__inner {
  color: var(--color-white);
  background-color: var(--color-blue);
  background-image: url("/wp-content/themes/zmist/assets/img/cta-decor.png");
  border-radius: 2rem;
  text-align: center;
  width: 1400px;
  max-width: 100%;
  margin: 0 auto;
  padding: 8.25rem 0;
}
@media screen and (max-width: 1400px) {
  .cta-block__inner {
    margin: 0 0.625rem;
    width: calc(100% - 1.25rem);
  }
}
@media (max-width: 769px) {
  .cta-block__inner {
    padding: 3rem 2.75rem;
  }
  .cta-block__inner .container {
    padding: 0;
  }
}
@media (max-width: 480px) {
  .cta-block__inner {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 0 46px;
  }
}
.cta-block__inner svg {
  color: var(--color-green-150);
  margin-bottom: 2.75rem;
}
.cta-block__title {
  font-size: 3.5rem;
  line-height: 4.75rem;
  letter-spacing: -2.16px;
}
@media (max-width: 769px) {
  .cta-block__title {
    font-size: 2rem;
    line-height: 100%;
    letter-spacing: -0.64px;
  }
}
.cta-block__subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2rem;
  letter-spacing: -0.48px;
  margin-top: 1rem;
}
@media (max-width: 769px) {
  .cta-block__subtitle {
    margin-top: 0.75rem;
    font-size: 1.125rem;
    line-height: 1.5rem;
    letter-spacing: -0.27px;
  }
}
.cta-block__btn {
  margin-top: 3rem;
}
@media (max-width: 769px) {
  .cta-block__btn {
    margin-top: 2rem;
  }
}
.partners-block {
  padding: 10.5rem 0;
}
@media (max-width: 769px) {
  .partners-block {
    padding: 4rem 1rem;
  }
}
.partners-block .container {
  width: 65rem;
  margin: 0 auto;
}
.partners-block .partners-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 769px) {
  .partners-block .partners-list {
    justify-content: center;
    gap: 1rem;
  }
}
@media (max-width: 480px) {
  .partners-block .partners-list {
    flex-direction: column;
  }
}
@media (max-width: 769px) {
  .partners-block .partners-list .partner {
    width: calc(50% - 0.5rem);
  }
}
@media (max-width: 480px) {
  .partners-block .partners-list .partner {
    height: auto;
    width: 10rem;
  }
}
.partner:nth-child(1) .partner-logo {
  width:149px;
  height:auto;
  max-width:100%;
}
.partner:nth-child(2) .partner-logo {
  width:280px;
  height:auto;
  max-width:100%;
}
.partner:nth-child(3) .partner-logo  {
  width:220px;
  height:auto;
  max-width:100%;
}
.partners-block .partners-description {
  margin-top: 5.625rem;
  text-align: center;
}
@media (max-width: 480px) {
  .partners-block .partners-description {
    margin-top: 2.5rem;
	  text-align:left;
  }
}
.partners-block .partners-description p {
  color: var(--color-gray-500);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6875rem;
  margin-bottom: 0.75rem;
}
@media (max-width: 480px) {
  .partners-block .partners-description p {
    font-size: 0.9375rem;
    line-height: 1.25rem;
    letter-spacing: -0.225px;
  }
}
.partners-block .partners-description p:last-child {
  margin-bottom: 0;
}
.video-block {
  padding: 10.5rem 0 6rem;
}
@media (max-width: 769px) {
  .video-block {
    padding: 4rem 0;
  }
}
.video-block__inner {
  position: relative;
  text-align: center;
}
.video-block__inner:after,
.video-block__inner:before {
  content: "";
  display: block;
  position: absolute;
}
@media (max-width: 769px) {
  .video-block__inner:after,
  .video-block__inner:before {
    display: none;
  }
}
.video-block__inner:before {
  background-image: url("/wp-content/themes/zmist/assets/img/video-decor-1.svg");
  height: 41.0625rem;
  width: 24.5625rem;
  left: -4.0625rem;
  top: -5.4375rem;
  z-index: -1;
}
.video-block__inner:after {
  background-image: url("/wp-content/themes/zmist/assets/img/video-decor-2.svg");
  height: 10.0625rem;
  width: 10.0625rem;
  top: calc(50% + 35px);
  right: -57px;
  z-index: -1;
}
.video-block__title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 100%;
  margin: auto;
  max-width: 1100px;
  letter-spacing: 0px;
  margin-bottom: 2rem;
}
.video-block__description {
  color: var(--color-gray-500);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6875rem;
  letter-spacing: -0.3px;
  max-width: 800px;
  margin: auto;
}
@media (max-width: 769px) {
.video-block__title {
    font-size: 1.65rem;
    line-height: 110%;
    letter-spacing: -0.64px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
	.video-block__description {
	  color: var(--color-gray-500);
	  font-size: 1rem;
	  font-weight: 400;
	  line-height: 120%;
	  letter-spacing: -0.3px;
	  max-width: 800px;
	  margin: auto;
	}
}
.video-block__player-wrapper {
  border-radius: 1.25rem;
  width: 60rem;
  margin: 4rem auto 3rem;
  max-width: 100%;
  overflow: hidden;
}
@media (max-width: 480px) {
  .video-block__player-wrapper {
    margin: 1.5rem 0;
  }
}
.video-block__player {
  display: block;
  width: 100%;
}
.lesson-comments__title {
  padding: 1rem 1.5rem;
}
.lesson-comments__title h3 {
  font-family: var(--font-default);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5rem;
}
@media (max-width: 769px) {
  .lesson-comments__cover {
    height: 268px;
  }
  .lesson-comments__cover img,
  .lesson-comments__cover picture {
    object-fit: cover;
    height: 100%;
    width: 100%;
  }
}
.lesson-comments__content {
  padding: 1.625rem;
}
.reply {
  margin-top: 0.5rem;
}
.no-comments {
  color: var(--color-blue-350, #888);
  text-align: center;
  margin: 2rem 0;
}
.lesson-materials {
  padding: 0 1.5rem;
}
@media (max-width: 769px) {
  .lesson-materials {
    border-radius: 0;
    margin: 0 -1rem 1.75rem;
    max-width: calc(100% + 2rem);
    padding: 0 1rem;
    width: calc(100% + 2rem);
  }
}
.lesson-materials__head {
  border-bottom: 1px solid var(--color-gray-300);
  padding: 2rem 0;
}
@media (max-width: 769px) {
  .lesson-materials__head {
    padding: 1.5rem 0;
  }
}
.lesson-materials__head h2 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 100%;
  letter-spacing: -0.64px;
}
@media (max-width: 769px) {
  .lesson-materials__head h2 {
    font-size: 1.5rem;
    line-height: 2rem;
    letter-spacing: -0.48px;
  }
}
.lesson-materials .lesson-switcher {
  margin: 2rem 0 2.1875rem;
  max-width: 100%;
  width: 27.8125rem;
}
@media (max-width: 769px) {
  .lesson-materials .lesson-switcher {
    margin: 1.5rem 0 1.25rem;
  }
}
.lesson-materials .lesson-switcher .input-switcher-display {
  height: 3.25rem;
}
@media (max-width: 769px) {
  .lesson-materials .lesson-switcher .input-switcher-display {
    margin-left: 0;
    margin-right: 0;
  }
}
.lesson-materials .lesson-switcher label {
  line-height: 2.75rem;
}
.lesson-materials .lesson-switcher label span {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.225px;
}
.lesson-materials .lesson-switcher label span img {
  display: inline-block;
  height: 1.25rem;
  width: 1.25rem;
  margin-right: 0.5rem;
}
.lesson-materials:has(input[name="for"][value="teacher"]:checked)
  .lesson-main__wrapper[data-type="teacher"] {
  display: block;
}
.lesson-materials:has(input[name="for"][value="student"]:checked)
  .lesson-main__wrapper[data-type="student"] {
  display: block;
}
.material-controls {
  background: var(--color-blue-200);
  border-radius: 0.4375rem;
  padding: 0.3125rem 1.25rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 769px) {
  .material-controls {
    padding: 1rem;
  }
}
.material-controls__inner {
  display: flex;
  min-height: 2.75rem;
}
@media (max-width: 769px) {
  .material-controls__inner {
    min-height: 0;
  }
}
.material-controls__inner h4 {
  font-family: var(--font-family-default);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6875rem;
  letter-spacing: -0.3px;
  vertical-align: top;
}
.material-controls__inner h4 img,
.material-controls__inner h4 picture {
  display: inline-block;
  height: 1.25rem;
  width: auto;
  margin-right: 0.375rem;
  vertical-align: top;
}
.material-controls__inner .left,
.material-controls__inner .right {
  align-items: center;
  display: flex;
}
.material-controls__inner .left {
  margin-right: auto;
  gap: 1rem;
}
.material-controls__inner .right {
  margin-left: auto;
}
.material-controls__inner a,
.material-controls__inner button,
.material-controls__inner .time {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--color-black);
  font-size: 1rem;
}
.material-controls__inner a svg,
.material-controls__inner button svg,
.material-controls__inner .time svg {
  height: 1.25rem;
  width: 1.25rem;
}
.material-controls__inner a,
.material-controls__inner button {
  cursor: pointer;
}
.material-controls__inner .time {
  background: var(--color-gray-50);
  border-radius: 0.375rem;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  margin-right: auto;
  font-size: 0.875rem;
  color: var(--color-gray-450);
  padding: 0.5rem;
}
.material-controls__inner .time svg {
  height: 1.125rem;
  width: 1.125rem;
}
.material-controls__inner a svg {
  color: var(--color-red);
}
.material-controls-download svg:last-child {
  display: none;
}
@media (max-width: 769px) {
  .material-controls-download {
    display: inline-flex;
    background: var(--color-white);
    border-radius: 1.25rem;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    padding: 0.625rem;
  }
  .material-controls-download span,
  .material-controls-download svg:first-child {
    display: none;
  }
  .material-controls-download svg:last-child {
    color: var(--color-black) !important;
    display: block;
  }
}
.material-controls .add-to-favorites {
  margin-left: 1.8125rem;
  padding-left: 1.5rem;
  position: relative;
}
.material-controls .add-to-favorites .text-added {
  display: none;
}
.material-controls .add-to-favorites svg {
  color: var(--color-yellow);
  position: absolute;
  left: 0;
  top: 0;
  transition: var(--transition-default);
}
.material-controls .add-to-favorites svg:first-child {
  opacity: 0;
}
.material-controls .add-to-favorites.is-favorite .text {
  display: none;
}
.material-controls .add-to-favorites.is-favorite .text-added {
  display: inline-block;
}
.material-controls .add-to-favorites.is-favorite svg:first-child {
  opacity: 1;
}
@media (max-width: 769px) {
  .material-controls .add-to-favorites {
    display: inline-flex;
    background: var(--color-white);
    border-radius: 1.25rem;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    margin-left: 1rem;
    height: 2.5rem;
    width: 2.5rem;
  }
  .material-controls .add-to-favorites svg {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .material-controls .add-to-favorites span {
    display: none !important;
  }
}
.lesson-pdf-title {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.25rem;
  letter-spacing: -0.21px;
}
.lesson-pdf-container {
  background: var(--color-gray-200);
  border-radius: 1rem;
  margin-top: 1.5rem;
  overflow: hidden;
  max-width: 100%;
  width: 35.1875rem;
}
.lesson-pdf-viewer {
  margin-bottom: 2.25rem;
}
.lesson-pdf-pages {
  padding: 0 2.4375rem;
}
.lesson-pdf-pages-wrapper {
  overflow: hidden;
  height: 16.75rem;
}
.lesson-pdf-preview-page {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  position: relative;
  top: 2.5rem;
}
.lesson-pdf-expand-section {
  display: block;
  width: 100%;
}
.lesson-pdf-expand-btn {
  color: var(--color-black);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-blue-200);
  font-size: 1rem;
  line-height: 1.375rem;
  letter-spacing: -0.24px;
  padding: 0.8125rem;
  text-align: center;
  width: 100%;
}
.lesson-pdf-expand-btn svg {
  height: 1.25rem;
  width: 1.25rem;
  margin-right: 0.25rem;
}
.lesson-pdf-controls {
  font-size: 0.875rem;
  line-height: 1.1875rem;
  margin-right: 1.5rem;
}
.lesson-pdf-zoom-in,
.lesson-pdf-zoom-out {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1.5rem;
  width: 1.5rem;
}
.lesson-pdf-zoom-in svg,
.lesson-pdf-zoom-out svg {
  height: 1.125rem;
  width: 1.125rem;
}
.lesson-pdf-zoom-level {
  background: var(--color-black);
  height: 1.1875rem;
  font-size: 0.875rem;
  line-height: 1.1875rem;
  padding: 0 0.4375rem;
}
.lesson-pdf-page-num {
  display: inline-block;
  background: rgba(0, 0, 0, 0.8);
  padding: 0 0.4375rem;
}
.lesson-pdf-zoom-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 1.5rem;
}
@media (max-width: 769px) {
  .lesson-pdf-zoom-controls {
    display: none;
  }
}
.lesson-pdf-zoom-controls:after,
.lesson-pdf-zoom-controls:before {
  content: "";
  background: #717375;
  position: absolute;
  top: 0.25rem;
  height: 1rem;
  width: 1px;
}
.lesson-pdf-zoom-controls:after {
  right: 0;
}
.lesson-pdf-zoom-controls:before {
  left: 0;
}
.lesson-video-block {
  margin-bottom: 2.75rem;
}
.lesson-video-player {
  display: block;
  width: 100%;
  height: auto;
}
.lesson-video-player-wrapper {
  border-radius: 1rem;
  overflow: hidden;
  margin: 1.5rem auto;
}
.lesson-video-description p {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6875rem;
  letter-spacing: -0.3px;
}
#videoModal .popup__inner {
  max-width: 100%;
  width: 58rem;
}
.video-popup-player video {
  width: 100%;
  height: auto;
}
.auth-page {
  padding: 4.8125rem 0;
  position: relative;
}
@media (max-width: 769px) {
  .auth-page {
    padding-bottom: 2.5rem;
  }
}
.auth-wrapper {
  margin: 0 auto;
  max-width: 100%;
  width: 26rem;
}
.auth-card {
  background: var(--color-white);
  border-radius: 1rem;
  padding: 2.75rem 2.5rem;
}
@media (max-width: 769px) {
  .auth-card {
    padding: 2.5rem 1rem;
  }
}
.auth-logo {
  color: var(--color-blue);
  text-align: center;
  margin-bottom: 1.9375rem;
}
.auth-header {
  margin-bottom: 2.75rem;
  text-align: center;
}
@media (max-width: 769px) {
  .auth-header {
    margin-bottom: 1.5rem;
  }
}
.auth-header h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  list-style: 100%;
  letter-spacing: -0.64px;
}
.auth-header p {
  color: var(--color-blue-450);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.375rem;
  letter-spacing: -0.24px;
  display: block;
  margin: 1.5rem 1rem 0;
}
.auth-header p strong {
  font-weight: 700;
}
.auth-form .form-block {
  margin-bottom: 1.5rem;
}
.auth-form .form-group label {
  color: var(--color-gray-500);
  margin-bottom: 0.625rem;
}
.auth-footer {
  color: var(--color-blue-450);
  margin-top: 2.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.25rem;
  letter-spacing: -0.225px;
  text-align: center;
}
@media (max-width: 769px) {
  .auth-footer {
    margin-top: 1.5rem;
  }
}
.auth-footer p a {
  color: var(--color-blue);
}
.auth-footer p a:hover,
.auth-footer p a:focus {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.auth-footer .legal-links {
  margin-top: 2.75rem;
}
@media (max-width: 769px) {
  .auth-footer .legal-links {
    margin-top: 1.5rem;
  }
}
.auth-footer .legal-links li a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.auth-footer .legal-text {
  margin: 0 auto 2.75rem;
  width: 20.375rem;
}
@media (max-width: 769px) {
  .auth-footer .legal-text {
    margin-bottom: 1.5rem;
  }
}
.auth-footer .legal-text a {
  color: var(--color-blue-450);
  text-decoration: underline;
}
.saved-page {
  min-height: 80vh;
  padding-bottom: 2.5rem;
}
.saved-page .personal-info {
  border: none;
  margin-bottom: 4.25rem;
  padding: 0;
}
@media (max-width: 769px) {
  .saved-page .personal-info {
    margin-bottom: 3rem;
  }
}
@media (max-width: 769px) {
  .saved-page .personal-info__main {
    width: 100%;
  }
}
.saved-page .personal-info__photo {
  background: var(--color-white);
  box-shadow: 0px 1px 2px 0px rgba(46, 53, 95, 0.08),
    0px 2px 2px 0px rgba(46, 53, 95, 0.04);
  height: 6.75rem;
  width: 6.75rem;
}
.saved-page .personal-info__name {
  font-size: 2rem;
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 100%;
  letter-spacing: -0.64px;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}
@media (max-width: 769px) {
  .saved-page .personal-info__name {
    margin-top: 1rem;
  }
}
.saved-page .personal-info__role {
  font-size: 1.25rem;
  line-height: 1.6875rem;
  letter-spacing: -0.3px;
}
@media (max-width: 769px) {
  .saved-page .personal-info__role {
    font-size: 1.125rem;
    line-height: 1.5rem;
    letter-spacing: -0.27px;
  }
}
.saved-page .personal-info__location {
  font-size: 1rem;
  line-height: 1.375rem;
  letter-spacing: -0.24px;
}
@media (max-width: 769px) {
  .saved-page .personal-info__location {
    font-size: 0.9375rem;
    line-height: 1.25rem;
  }
}
.saved-header,
.saved-filters {
  max-width: 100%;
  width: 51.25rem;
}
.saved-content {
  max-width: 100%;
  width: 57.8125rem;
}
.saved-header {
  margin-bottom: 1.5rem;
  position: relative;
}
.saved-header h1 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.64px;
}
@media (max-width: 769px) {
  .saved-header h1 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 2rem;
    letter-spacing: -0.48px;
  }
}
.saved-content .flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.saved-content .lesson-block {
  margin: 0;
}
.saved-content .lesson-block .lesson-title__content {
  position: relative;
}
.saved-content .lesson-block--video .lesson-title__head,
.saved-content .lesson-block--resource .lesson-title__head {
  background: rgba(0, 0, 0, 0);
  padding: 1.5rem 1.5rem 1rem;
  position: relative;
}
.saved-content .lesson-block--video .lesson-title__head:after,
.saved-content .lesson-block--resource .lesson-title__head:after {
  content: "";
  display: block;
  height: 1px;
  width: calc(100% - 3rem);
  background: var(--color-blue-tab);
  position: absolute;
  bottom: 0;
  left: 1.5rem;
}
.saved-content .lesson-block__actions {
  position: absolute;
  right: 1.5rem;
  top: 1.125rem;
}
.saved-content .lesson-block__actions button {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: rgba(179, 181, 197, 0.12);
  height: 2.5rem;
  width: 2.5rem;
}
.saved-content .lesson-block__actions button svg {
  height: 1.25rem;
  width: 1.25rem;
  color: var(--color-black);
}
.saved-content .lesson-block__terms {
  margin-top: 0.0625rem;
}
.saved-content .lesson-block__terms ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.saved-content .lesson-block__terms ul li {
  color: var(--color-blue-500);
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.1875rem;
  letter-spacing: -0.13px;
  display: inline-block;
  position: relative;
}
.saved-content .lesson-block__terms ul li:not(:first-child) {
  padding-left: 0.4375rem;
}
.saved-content .lesson-block__terms ul li:not(:first-child):before {
  content: "";
  background: var(--color-blue-500);
  display: block;
  height: 0.1875rem;
  width: 0.1875rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.saved-content .lesson-block__bottom {
  margin-top: 1.75rem;
}
.saved-content .lesson-block__bottom .tag {
  text-transform: none;
}
.saved-actions {
  position: absolute;
  right: 0;
  top: 0;
}
.saved-actions > button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-blue-500);
  transition: var(--transition-default);
  border-radius: 100%;
  height: 2.5rem;
  width: 2.5rem;
}
.saved-actions > button svg {
  display: block;
  color: inherit;
  height: 1.5rem;
  width: 1.5rem;
}
.saved-actions > button:hover,
.saved-actions > button:focus {
  background: rgba(179, 181, 197, 0.12);
  color: var(--color-black);
}
.saved-actions button.saved-actions-toggle {
  display: none;
  background: var(--color-white);
  box-shadow: 0px 1px 2px 0px rgba(46, 53, 95, 0.08),
    0px 2px 2px 0px rgba(46, 53, 95, 0.04);
}
.saved-actions button.saved-actions-toggle svg {
  color: var(--color-black);
  height: 1.25rem;
  width: 1.25rem;
}
@media (max-width: 480px) {
  .saved-actions button.saved-actions-toggle {
    display: inline-flex;
  }
}
.saved-actions-content {
  opacity: 0;
  pointer-events: none;
  background: var(--color-white);
  border: 1px solid var(--color-gray-150);
  border-radius: 0.75rem;
  box-shadow: 0px 1px 2px 0px rgba(46, 53, 95, 0.08),
    0px 4px 6px 0px rgba(46, 53, 95, 0.04),
    0px 24px 40px -16px rgba(46, 53, 95, 0.08);
  transition: var(--transition-default);
  padding: 0.6875rem 0;
  position: absolute;
  right: 0;
  top: 2.25rem;
  width: 11.625rem;
}
.saved-actions-content.opened {
  opacity: 1;
  pointer-events: auto;
}
.saved-actions-content ul li button {
  display: block;
  width: 100%;
  cursor: pointer;
  position: relative;
  padding: 0.5rem 1.25rem 0.5rem 3.25rem;
  pointer-events: auto;
  transition: var(--transition-default);
}
.saved-actions-content ul li button svg {
  height: 1.25rem;
  width: 1.25rem;
  position: absolute;
  left: 1.25rem;
  top: 0.5rem;
}
.saved-actions-content ul li button:hover,
.saved-actions-content ul li button:focus {
  background: var(--color-gray-250);
}
.saved-actions-content ul li button#removeAll {
  color: var(--color-red);
}
.saved-filters {
  margin-bottom: 2.375rem;
  padding-right: 2.75rem;
  position: relative;
}
@media (max-width: 480px) {
  .saved-filters {
    background: var(--color-gray-50);
    display: block;
    height: 100vh;
    width: 100vw;
    padding-right: 0;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 15;
    transition: var(--transition-default);
    transform: translateX(-100%);
  }
  .saved-filters body.admin-bar {
    top: 2.875rem;
  }
  .saved-filters.opened {
    transform: translateX(0);
  }
  html:has(.saved-filters.opened) {
    overflow: hidden;
  }
}
.saved-filters__head,
.saved-filters__footer {
  display: none;
}
@media (max-width: 480px) {
  .saved-filters__head,
  .saved-filters__footer {
    display: flex;
    align-items: center;
    padding: 1rem;
  }
}
.saved-filters__footer {
  border-top: 1px solid var(--color-gray-350);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.saved-filters__footer .btn {
  width: 100%;
}
.saved-filters__head {
  border-bottom: 1px solid var(--color-gray-350);
}
.saved-filters__head .saved-actions-toggle {
  color: var(--color-gray-500);
  margin-left: auto;
}
.saved-filters__title {
  display: none;
}
.saved-filters__title .saved-filters-close {
  display: inline-block;
  height: 1.25rem;
  width: 1.25rem;
  vertical-align: middle;
}
.saved-filters__title .saved-filters-close svg {
  color: var(--color-blue-450);
  height: 1.25rem;
  width: 1.25rem;
}
.saved-filters__title_text {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5rem;
  letter-spacing: -0.27px;
  vertical-align: middle;
}
@media (max-width: 480px) {
  .saved-filters__title {
    display: block;
  }
}
.saved-filters__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 480px) {
  .saved-filters__row {
    padding: 1.5rem 1rem;
  }
}
.saved-filters__item {
  display: inline-block;
  width: 12.375rem;
  max-width: 100%;
}
.saved-filters__item .select2 {
  width: 100% !important;
}
@media (max-width: 480px) {
  .saved-filters__item {
    width: 100%;
  }
  .saved-filters__item .select2-selection {
    background: rgba(0, 0, 0, 0);
    border: none;
    border-bottom: 1px solid var(--color-gray-300);
    border-radius: 0;
    box-shadow: none;
  }
  .saved-filters__item .select2-selection__rendered {
    color: var(--color-blue-450) !important;
    font-family: var(--font-heading) !important;
    font-size: 0.9375rem !important;
    font-weight: 500 !important;
    line-height: 1.25rem !important;
    text-transform: uppercase;
    padding: 1.375rem 1.5rem 1.375rem 0 !important;
  }
  .saved-filters__item .select2-selection__arrow {
    color: var(--color-gray-500) !important;
  }
}
.saved-empty h2 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.saved-empty .btn {
  margin-top: 0.5rem;
}
.material-link {
  cursor: pointer;
  background: var(--color-blue-150);
  border: 4px solid var(--color-white);
  border-radius: 1rem;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  padding-top: 6.875rem;
  position: relative;
  width: 18.4375rem;
  transition: 0s;
}
@media (max-width: 769px) {
  .material-link {
    max-width: 100%;
    width: 21.4375rem;
    width: 100%;
  }
}
.material-link:after,
.material-link:before {
  content: "";
  display: block;
  position: absolute;
  top: 2.3125rem;
  left: 50%;
  transform: translateX(-50%);
  height: 11.8125rem;
  width: 12.0625rem;
  pointer-events: none;
  transition: var(--transition-default);
}
.material-link:after {
  background: url("/wp-content/themes/zmist/assets/img/docs-active.svg");
}
.material-link:before {
  background: url("/wp-content/themes/zmist/assets/img/docs.svg");
}
.material-link.type-lesson {
  order: 0;
}
.material-link.type-resource {
  order: 1;
}
.material-link.type-video {
  order: 2;
}
.material-link__inner {
  background-image: url("/wp-content/themes/zmist/assets/img/favorite-bg.svg");
  background-position: center -38px;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  height: 13.75rem;
  padding: 5.875rem 1.25rem 1.25rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 769px) {
  .material-link__inner {
    background-position: 0 -38px;
  }
  .material-link__inner:before {
    background: var(--color-white);
    border-top-right-radius: 0.75rem;
    content: "";
    position: absolute;
    top: 35px;
    left: 0;
    width: 100%;
    height: calc(100% - 35px);
    pointer-events: none;
    z-index: -1;
  }
}
.material-link__bottom {
  margin-top: auto;
  position: relative;
  width: 100%;
}
.material-link__bottom > svg {
  height: 1.5rem;
  width: 1.5rem;
  position: absolute;
  right: 0;
  bottom: 0;
}
.material-link h2,
.material-link .tag {
  color: var(--color-black);
}
.material-link h2 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2rem;
  letter-spacing: -0.48px;
  padding-left: 2.25rem;
  position: relative;
  vertical-align: top;
}
.material-link h2 svg {
  display: inline-block;
  height: 1.75rem;
  width: 1.75rem;
  margin-right: 0.5rem;
  position: absolute;
  left: 0;
  top: 0;
  vertical-align: top;
}
.material-link:hover .material-link__bottom > svg,
.material-link:focus .material-link__bottom > svg {
  color: var(--color-blue);
}
.material-link.empty:after {
  opacity: 0;
}
.material-link.empty:before {
  opacity: 1;
}
.material-link.empty .material-link__bottom > svg {
  display: none;
}
@media print {
  body,
  .lesson-block {
    background: rgba(0, 0, 0, 0);
    box-shadow: none;
  }
  .lesson-inner {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    padding: 0 !important;
  }
  .lesson-heading {
    min-height: 0 !important;
  }
  body *:not(:has(.lesson-main)):not(.lesson-main):not(.lesson-main *) {
    display: none !important;
  }
  .lesson-tabs,
  .lesson-pdf-viewer,
  .lesson-video-block {
    display: none !important;
  }
  .wp-block-columns {
    display: block !important;
    gap: 0 !important;
  }
  .wp-block-columns:after {
    content: "";
    clear: both;
    display: table;
  }
  .wp-block-column {
    float: left !important;
    display: inline-block !important;
    width: 50% !important;
  }
}
