.page-template-webinars-php .container,
.single-webinars .container {
  padding: 0 20px;
  max-width: 450px;
}
@media screen and (min-width: 768px) {
  .page-template-webinars-php .container,
  .single-webinars .container {
    max-width: 768px;
  }
}
@media screen and (min-width: 1024px) {
  .page-template-webinars-php .container,
  .single-webinars .container {
    max-width: 1024px;
  }
}
@media screen and (min-width: 1200px) {
  .page-template-webinars-php .container,
  .single-webinars .container {
    max-width: 1120px;
  }
}
.page-template-webinars-php ul,
.single-webinars ul {
  list-style: none;
}
.page-template-webinars-php a,
.single-webinars a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.page-template-webinars-php button,
.single-webinars button {
  cursor: pointer;
}

.webinars-hero {
  padding: 105px 0 72px;
}

.webinars-hero__wrapper {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 931px;
}

.webinars-hero__overline-title {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  letter-spacing: -0.02em;
  color: #f07a48;
}
@media screen and (min-width: 1024px) {
  .webinars-hero__overline-title {
    font-size: 16px;
    line-height: 1.2;
  }
}

.webinars-hero__title,
.search-webinars__title {
  font-weight: 500;
  font-size: 44px;
  line-height: 109%;
  text-align: center;
  letter-spacing: -0.02em;
  margin: 24px auto 48px auto;
}
@media screen and (min-width: 1024px) {
  .webinars-hero__title,
  .search-webinars__title {
    font-size: 80px;
    line-height: 1.2;
  }
}

.webinars-search-wrapper {
  margin-top: 32px;
}

.webinars-search {
  position: relative;
  max-width: 730px;
  margin: 0 auto;
  background: transparent;
}

.webinars-search.__mod {
  margin-bottom: 30px;
}

.webinars-input {
  width: 100%;
  height: 64px;
  font-size: 16px;
  padding: 12px 52px 12px 24px;
  border: 0;
  outline: 0;
  border-radius: 20px;
  color: #000;
  background: transparent;
  box-shadow:
    0 0 0 1px rgba(14, 17, 21, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 1023.98px) {
  .webinars-input {
    text-overflow: ellipsis;
  }
}
@media screen and (min-width: 1024px) {
  .webinars-input {
    font-size: 18px;
  }
}

.webinars-input::-moz-placeholder {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.4);
}

.webinars-input::placeholder {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.4);
}

.webinars-submit {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 8px;
  background: #f07a48;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.search-submit:hover {
  opacity: 0.9;
}

.search-submit:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.search-content_wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100vw;
  height: 100vh;
  padding-top: 105px;
  padding-bottom: 50px;
  overflow: auto;
  overscroll-behavior: none;
  background-color: var(--white);
}

.close-search_wrapper {
  position: fixed;
  top: 15px;
  right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #727b85;
  border: none;
  background-color: transparent;
}
.close-search_wrapper:hover {
  color: var(--orange);
}
.close-search_wrapper:focus {
  color: var(--orange-dark);
}
.close-search_wrapper > svg {
  fill: currentColor;
}

.search-webinars__title {
  text-align: center;
}

.recommend-webinar {
  padding-bottom: 72px;
}

.recommend-webinar__title-box {
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .recommend-webinar__title-box {
    font-size: 28px;
    line-height: 143%;
    letter-spacing: -0.04em;
  }
}

.recommend-webinar__link,
.webinar-card {
  padding: 12px;
  background-color: #fff;
}

.recommend-webinar__link {
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-radius: 24px;
}
@media screen and (max-width: 767.9px) {
  .recommend-webinar__link {
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .recommend-webinar__link {
    flex-direction: row;
  }
}
@media screen and (min-width: 1024px) {
  .recommend-webinar__link {
    height: 454px;
  }
}

.recommend-webinar__thumbnail {
  max-width: 450px;
  border-radius: 12px;
}
@media screen and (min-width: 1024px) {
  .recommend-webinar__thumbnail {
    max-width: 643px;
  }
}
.recommend-webinar__thumbnail > img {
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 12px;
}

.recommend-webinar__poster.__desk {
  display: none;
}
@media screen and (min-width: 1024px) {
  .recommend-webinar__poster.__desk {
    display: block;
  }
  .recommend-webinar__poster.__mobile {
    display: none;
  }
}

.recommend-webinar__info {
  margin: auto 0;
}
@media screen and (min-width: 768px) and (max-width: 1023.98px) {
  .recommend-webinar__info {
    max-width: 350px;
  }
}
@media screen and (min-width: 1024px) {
  .recommend-webinar__info {
    max-width: 340px;
  }
}

.recommend-webinar__info-head,
.webinar-card__info-head {
  display: flex;
  justify-content: left;
  align-items: center;
}

.status-webinar,
.date-webinar {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  letter-spacing: -0.02em;
  padding: 4px 6px;
  border-radius: 4px;
}

.status-webinar.__Upcoming {
  color: #d33c1a;
  background-color: #fad6bb;
}

.status-webinar.__On-Demand {
  color: rgba(14, 17, 21, 0.5);
  background-color: rgba(168, 179, 191, 0.3);
}

.date-webinar {
  gap: 10.5px;
  margin-left: 12px;
  color: rgba(14, 17, 21, 0.7);
  background-color: rgba(168, 179, 191, 0.1);
}

.recommend-webinar__info-title,
.webinar-card__head-title,
.webinar-card__info-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 117%;
  letter-spacing: -0.01em;
  margin: 24px 0 12px 0;
  color: #000;
}

.webinar-card__head-title {
  font-weight: 400;
  font-size: 19px;
}

.recommend-webinar__info-desc,
.webinar-card__info-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  color: rgba(14, 17, 21, 0.7);
}

.recommend-webinar__interactive-elem,
.webinar-card__interactive-elem {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: var(--text);
}

.recommend-webinar__link:hover .recommend-webinar__interactive-elem,
.webinar-card__link:hover .webinar-card__interactive-elem {
  color: var(--orange);
}

.recommend-webinar__link:focus .recommend-webinar__interactive-elem,
.webinar-card__link:focus .webinar-card__interactive-elem {
  color: var(--orange-dark);
}

.recommend-webinar__interactive-elem > .__icon,
.webinar-card__interactive-elem > .__icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.webinar-content {
  padding-bottom: 72px;
}

@media screen and (min-width: 1024px) {
  .webinar-content .container {
    padding: 0;
  }
}

.webinars-separator {
  padding-bottom: 32px;
}

.webinars-separator__title {
  font-weight: 500;
  font-size: 28px;
  line-height: 143%;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.filter-webinars__btn.__all {
  display: inline-block;
  margin-right: 12px;
}

.filter-webinars {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-webinars__btn {
  font-weight: 400;
  font-size: 16px;
  padding: 8px 12px;
  border: none;
  border-radius: 4px;
  color: #223f61;
  background-color: rgba(168, 179, 191, 0.13);
}
.filter-webinars__btn:hover,
.filter-webinars__btn.active {
  color: #fff;
  background-color: var(--orange);
}
.filter-webinars__btn:focus {
  color: #fff;
  background-color: var(--orange-dark);
}
.filter-webinars__btn.active:focus {
  color: #fff;
  background-color: var(--orange);
}

.webinars-cards-pagin {
  position: relative;
}
.webinars-cards-pagin::after {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  transition:
    opacity 150ms linear,
    visibility 150ms linear,
    pointer-events 250ms linear;
}
.webinars-cards-pagin.change-filter::after {
  opacity: 1;
  visibility: visible;
  pointer-events: unset;
}

@media screen and (min-width: 768px) {
  .grid-webinars {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }
}

.webinar-card {
  max-width: 335px;
  height: 496px;
  padding-bottom: 20px;
  border-radius: 16px;
}
@media screen and (max-width: 767.98px) {
  .webinar-card + .webinar-card {
    margin-top: 24px;
  }
}
@media screen and (min-width: 768px) {
  .webinar-card {
    max-width: none;
    width: calc((100% - 24px) / 2);
  }
}
@media screen and (min-width: 1024px) {
  .webinar-card {
    width: calc((100% - 48px) / 3);
  }
}
@media screen and (min-width: 1200px) {
  .webinar-card {
    max-width: 357px;
  }
}

.webinar-card__head {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  min-height: 216px;
  padding: 24px 16px 24px 24px;
  border-radius: 12px;
}
.webinar-card.__Upcoming .webinar-card__head {
  background-color: #f39463;
}
.webinar-card.__On-Demand .webinar-card__head {
  background-color: rgba(168, 179, 191, 0.4);
}

.webinar-card__head-title {
  margin: 0;
  text-overflow: ellipsis;
  overflow: hidden;
}
.webinar-card.__Upcoming .webinar-card__head-title {
  color: #840000;
}
.webinar-card.__On-Demand .webinar-card__head-title {
  color: #727b85;
}

.speakers {
  display: flex;
  justify-content: space-between;
}

.speakers-name {
  display: inline-flex;
  flex-direction: column-reverse;
  gap: 1px;
  font-family: 'DM Mono', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 124%;
  letter-spacing: -0.02em;
}
.webinar-card.__Upcoming .speakers-name {
  color: #840000;
}
.webinar-card.__On-Demand .speakers-name {
  color: #727b85;
}

.speakers-photo {
  display: inline-flex;
  flex-direction: row-reverse;
}

.speakers__thumbnail {
  width: 52px;
  height: 52px;
  border-radius: 100%;
}
.speakers__thumbnail > img {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: inherit;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.webinar-card.__On-Demand .speakers__thumbnail > img {
  filter: grayscale(100%);
}

.speakers__thumbnail + .speakers__thumbnail {
  margin-right: -15px;
}

.webinar-card__info {
  padding-top: 16px;
}

.webinar-card__info-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 48px;
  font-size: 20px;
  line-height: 120%;
  margin: 16px 0 4px 0;
}

.webinar-card__info-desc {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 96px;
  margin-bottom: 16px;
}

.pagination-wrapper {
  justify-content: center;
  text-align: center;
  padding-top: 30px;
}

@media screen and (min-width: 1024px) {
  .pagination-wrapper {
    text-align: center;
    padding-top: 40px;
  }
}
ul.page-numbers {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  font-size: 17px;
  line-height: 118%;
}

span.page-numbers.current {
  color: var(--orange);
  border: 1px solid var(--orange);
}

a.page-numbers,
span.page-numbers {
  border: 0.7px solid #dfe3e8;
  background-color: #fff;
}

a.page-numbers:hover {
  color: var(--orange-dark);
  border: 1px solid var(--orange-dark);
}

.prev.page-numbers,
.next.page-numbers {
  color: #fff;
  background-color: #a8b3bf;
}

.prev.page-numbers:hover,
.next.page-numbers:hover {
  border: 0.7px solid #dfe3e8;
}

.prev.page-numbers,
.next.page-numbers > svg {
  fill: currentColor;
}

span.page-numbers,
a.page-numbers,
.next.page-numbers,
.prev.page-numbers {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
}

.webinars-banner {
  padding-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .webinars-banner {
    padding: 0 20px 72px;
  }
}

.webinars-banner__inner {
  position: relative;
  min-width: 100%;
  height: 460px;
  border-radius: 16px;
  overflow: hidden;
  background-color: #5985eb;
}
@media screen and (min-width: 1024px) {
  .webinars-banner__inner {
    height: 402px;
  }
}

.webinars-banner__bg {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}
.webinars-banner__bg img {
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 16px;
}

.webinars-banner__heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  padding: 72px 0 74px 0;
}

.webinars-banner__title {
  font-weight: 500;
  font-size: 32px;
  line-height: 113%;
  letter-spacing: -0.03em;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .webinars-banner__title {
    font-size: 58px;
    line-height: 117%;
    letter-spacing: -0.02em;
  }
}

.webinars-banner__text {
  font-family: var(--open-s);
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  letter-spacing: -0.01em;
  text-align: center;
  margin: 8px auto 32px auto;
}
@media screen and (min-width: 1024px) {
  .webinars-banner__text {
    font-size: 20px;
    line-height: 140%;
  }
}

.webinars-banner__button {
  display: flex;
  gap: 6px;
  padding: 12px 24px 12px 16px;
  border-radius: 8px;
  color: var(--text);
  background-color: #fff;
  font-size: 16px;
  font-weight: 400;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.webinars-banner__button svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.webinars-banner__button:hover {
  background-color: #f07a48;
  color: #fff;
}

body.single-webinars.open {
  overflow: hidden;
}

.webinar {
  padding-top: 84px;
}
@media screen and (min-width: 1024px) {
  .webinar {
    padding-top: 156px;
  }
}

@media screen and (min-width: 1024px) {
  .webinar .container {
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: auto auto;
    -moz-column-gap: 10.625%;
    column-gap: 10.625%;
    padding: 0 10px;
  }
}
.webinar .container.__watch {
  display: block;
}
@media screen and (min-width: 1024px) {
  .webinar .container.__watch {
    padding-bottom: 120px;
  }
}

.webinar__title {
  font-weight: 500;
  font-size: 48px;
  line-height: 117%;
  letter-spacing: -0.02em;
  margin: 24px 0 48px 0;
}

.webinar__title.__watch {
  text-align: center;
  max-width: 930px;
  margin: 0 auto 40px auto;
}

.webinar__watch-wrapper {
  width: 335px;
  height: 188px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .webinar__watch-wrapper {
    width: 450px;
    height: 303px;
  }
}
@media screen and (min-width: 1024px) {
  .webinar__watch-wrapper {
    width: 930px;
    height: 521px;
  }
}

.webinar__info {
  max-width: 261px;
  padding: 0 24px;
  margin-bottom: 48px;
  border-left: 1px solid rgba(168, 179, 191, 0.3);
}

.webinar__info-type {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  letter-spacing: -0.02em;
  color: rgba(14, 17, 21, 0.5);
}

.webinar__info-value {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  max-width: 165px;
  color: rgba(14, 17, 21, 0.9);
}

.share-list,
.share-btn {
  display: flex;
  align-items: center;
}

.share-list {
  justify-content: left;
  gap: 8px;
}

.share-btn,
a.share-btn {
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 11px;
  color: #fff;
  background-color: #a8b3bf;
}
.share-btn:hover,
a.share-btn:hover {
  color: #a8b3bf;
  background-color: transparent;
  border: 1px solid #a8b3bf;
}

.webinar__content {
  max-width: 548px;
}
.webinar__content > h2,
.webinar__content > h3,
.webinar__content > h4,
.webinar__content > h5,
.webinar__content > h6 {
  font-weight: 500;
  font-size: 28px;
  line-height: 114%;
  letter-spacing: -0.02em;
}
.single-webinars .webinar__content > ol,
.single-webinars .webinar__content > ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  padding: 24px 16px 24px 46px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(168, 179, 191, 0.1) 0%, rgba(168, 179, 191, 0.2) 100%);
}
.single-webinars .webinar__content > ol {
  list-style: decimal;
}
.single-webinars .webinar__content > ul {
  list-style: disc;
}

.speakers-block {
  padding: 48px 0 80px 0;
}
@media screen and (min-width: 1024px) {
  .speakers-block {
    grid-row: 2/3;
    grid-column: 1/3;
  }
}

.speakers-block__title {
  font-weight: 500;
  font-size: 28px;
  line-height: 114%;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.speaker-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  align-items: center;
  gap: 15.5px;
}
@media screen and (min-width: 1024px) {
  .speaker-list {
    gap: 24px;
  }
}

.speaker-list__thumbnail {
  width: 159px;
  height: 168px;
  border-radius: 24px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 12px;
}
@media screen and (min-width: 1024px) {
  .speaker-list__thumbnail {
    width: 167px;
  }
}
.speaker-list__thumbnail > img {
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: inherit;
}

.speaker-list__name {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: #15253c;
}

.speaker-list__job-title {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  letter-spacing: -0.02em;
  color: rgba(14, 17, 21, 0.4);
}

.form-registration {
  position: relative;
  width: 335px;
  height: 616px;
  padding: 32px 24px 16px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow:
    0 4px 28px 2px rgba(21, 37, 60, 0.03),
    0 4px 12px -1px rgba(21, 37, 60, 0.05),
    0 0 6px -2px rgba(21, 37, 60, 0.07);
  background: #fff;
}
@media screen and (max-width: 374.9px) {
  .form-registration {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .form-registration {
    width: 450px;
  }
}
@media screen and (min-width: 1024px) {
  .form-registration {
    grid-row: 1/2;
    grid-column: 2/3;
    flex-shrink: 0;
    width: 453px;
    height: 566px;
  }
}

.form-registration__title {
  font-weight: 500;
  font-size: 28px;
  line-height: 114%;
  letter-spacing: -0.01em;
  text-align: center;
  margin-bottom: 32px;
}

.form-registration__field {
  outline: none;
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  letter-spacing: -0.02em;
  display: block;
  width: 100%;
  height: 48px;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid rgba(168, 179, 191, 0.6);
  transition: border 300ms;
}
@media screen and (min-width: 1024px) {
  .form-registration__field {
    width: 375px;
  }
}
.form-registration__field.err {
  border: 1.5px solid var(--orange-dark);
}
.form-registration__field.err::-moz-placeholder {
  color: var(--orange);
}
.form-registration__field.err::placeholder {
  color: var(--orange);
}

.form-registration__field::-moz-placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  letter-spacing: -0.02em;
  color: rgba(168, 179, 191, 0.6);
}

.form-registration__field::placeholder {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  letter-spacing: -0.02em;
  color: rgba(168, 179, 191, 0.6);
}

.form-registration__field + .form-registration__field {
  margin-top: 16px;
}

.form-registration__check-wrapper {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 3px 0 35px 0;
  padding: 13px 0;
}

.form-registration__check {
  display: none;
}

.form-registration__check-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  color: var(--orange);
  background-color: var(--orange);
}
.form-registration__check:checked + .form-registration__check-icon {
  color: #fff;
}

.form-registration__check-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  letter-spacing: -0.02em;
  color: #223f61;
}
.form-registration__check-wrapper.err .form-registration__check-text {
  color: var(--orange-dark);
}

.form-registration__btn {
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  letter-spacing: -0.01em;
  width: 100%;
  padding: 8px 0;
  margin-bottom: 8px;
  border-radius: 8px;
  border: none;
  color: #fff;
  background-color: var(--orange);
}
.form-registration__btn:hover {
  background-color: var(--orange-dark);
}

.form-registration__policy {
  font-weight: 400;
  font-size: 12px;
  line-height: 133%;
  letter-spacing: -0.02em;
  text-align: center;
  color: rgba(14, 17, 21, 0.4);
}

.form-registration__animation {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--orange-dark);
  background-color: rgba(0, 0, 0, 0.6705882353);
  border-radius: inherit;
  transition:
    opacity var(--animation-def),
    visibility var(--animation-def),
    pointer-events var(--animation-def);
}

.form-registration__animation.active {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
}

.icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: inherit;
}

.form-registration__animation.active.ok .icon-wrapper.__spinner,
.form-registration__animation.active.err .icon-wrapper.__spinner,
.form-registration__animation.active .icon-wrapper.__ok,
.form-registration__animation.active .icon-wrapper.__err {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.form-registration__animation.active.ok .icon-wrapper.__ok,
.form-registration__animation.active.err .icon-wrapper.__err {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
}

.icon-spinner,
.icon-ok,
.icon-err {
  fill: currentColor;
}

.form-registration__animation.active .icon-spinner {
  animation-name: spinner-change;
  animation-duration: 800ms;
  animation-delay: 0ms;
  animation-iteration-count: infinite;
}

.form-message__wrapper {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 10000;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.28);
}
@media screen and (min-width: 1024px) {
  .form-message__wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: transparent;
  }
}

.form-message__wrapper.__fixed_parent {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: transparent;
}

.form-registration.registOk .form-message__wrapper {
  opacity: 1;
  visibility: visible;
  pointer-events: unset;
}

.form-message {
  width: 351px;
  height: 432px;
  padding: 32px 24px 24px 24px;
  text-align: center;
  border-radius: 16px;
  background-color: #fafbfc;
}
@media screen and (max-width: 356px) {
  .form-message {
    width: 100%;
  }
}
@media screen and (max-width: 1023.98px) {
  .form-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (min-width: 1024px) {
  .form-message {
    padding-top: 100px;
    width: 100%;
    height: 100%;
  }
}

.form-message__wrapper.__fixed_parent .form-message {
  padding-top: 100px;
  width: 100%;
  height: 100%;
}

.form-message__close-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14.34px 14.39px;
  position: absolute;
  top: 0;
  right: 0;
  border: navajowhite;
  background-color: transparent;
}

.form-message__title {
  font-weight: 500;
  font-size: 28px;
  line-height: 114%;
  letter-spacing: -0.01em;
  text-align: center;
  margin-bottom: 24px;
}

.form-message__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  letter-spacing: -0.01em;
  text-align: center;
  color: rgba(14, 17, 21, 0.8);
}
.form-message__text + .form-message__text {
  margin-top: 40px;
}

.form-message__email {
  font-weight: 600;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.form-message > .form-message__btn {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  width: 100%;
  padding: 12px 0;
  margin-top: 40px;
  border-radius: 8px;
  border: none;
  text-decoration: none;
  color: #fff;
  background-color: var(--orange);
}
@media screen and (min-width: 1024px) {
  .form-message__btn {
    margin-top: 179px;
  }
}
.form-message__btn:hover {
  background-color: var(--orange-dark);
}

.related-webinars {
  padding-bottom: 72px;
}
@media screen and (max-width: 1023.98px) {
  .related-webinars {
    padding-top: 56px;
  }
}

.related-webinars__title {
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  .related-webinars__title {
    font-size: 48px;
    line-height: 117%;
    margin-bottom: 19px;
  }
}

@media screen and (min-width: 768px) {
  .related-webinars__list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
  }
}

.single-webinars .webinars-banner {
  display: none;
}

.single-webinars.__watch .webinars-banner,
.single-webinars .webinars-banner.__watch {
  display: block;
}

.scroll-to-form {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 10000;
  width: 100vw;
  padding: 20px;
  backdrop-filter: blur(54px);
  box-shadow: 0 -2px 12px -4px rgba(14, 17, 21, 0.1);
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.1) 77.88%,
    rgba(255, 255, 255, 0.2) 100%
  );
}
.scroll-to-form.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media screen and (min-width: 1024px) {
  .scroll-to-form {
    display: none;
  }
}

.scroll-to-form__btn,
a.scroll-to-form__btn,
p.scroll-to-form__btn {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  text-align: center;
  width: 100%;
  padding: 12px 0;
  border-radius: 8px;
  border: none;
  color: #fff;
  background-color: var(--orange);
}

p.scroll-to-form__btn {
  cursor: auto;
}
.scroll-to-form__btn:hover,
a.scroll-to-form__btn:hover {
  background-color: var(--orange-dark);
}

p.scroll-to-form__btn:hover {
  background-color: var(--orange);
}
