@charset "UTF-8";
/*
Theme Name: news
Theme URI: https://wordpress.org/themes/twentytwenty/
Author: the Cropty team
Author URI: https://cropty.com/
Version: 1.6
Requires at least: 5.0
Text Domain: cropty.com
*/
.typography-label1 {
  font-weight: 600;
  font-size: 86px;
  line-height: 110%;
  letter-spacing: -1px;
}

.typography-label2 {
  font-weight: 600;
  font-size: 64px;
  line-height: 120%;
  letter-spacing: -1px;
}

.typography-label3 {
  font-weight: 600;
  font-size: 36px;
  line-height: 120%;
}

.typography-lead {
  font-weight: 400;
  font-size: 24px;
  line-height: 135%;
}

.typography-h1 {
  font-weight: 600;
  font-size: 26px;
  line-height: 120%;
}

.typography-h2 {
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
}

.typography-h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 135%;
}

.typography-subhead {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
}

.typography-body {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
}

.typography-caption {
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
}

.typography-subcaption {
  font-weight: 500;
  font-size: 12px;
  line-height: 120%;
}

:root {
  --elements-main: #000000;
  --elements-contrast: #FFFFFF;
  --elements-default: #33FF66;
  --elements-disable: #33FF6640;
  --elements-link: #10C83E;
  --blue-default: #66FFFF;
  --blue-disable: #66FFFF40;
  --warning-default: #FF9933;
  --warning-disable: #FF993366;
  --gray-default: #575757;
  --gray-disable: #BFBFBF;
  --yellow-default: #FFFF80;
  --yellow-disable: #FFFF8066;
  --error-default: #FF6644;
  --error-disable: #FF664440;
  --background-default: #F6F6F6;
  --background-tile: #FFFFFF;
  --background-secondary: #A5A5A526;
  --background-blur: #FFFFFFB2;
  --separator-default: #A5A5A540;
  --separator-сontrast: #A5A5A540;
  --default-white: #ffffff;
  --default-black: #000;
  --background-shimmer: #F0F0F0;
  --shimmer-gradient: linear-gradient(270deg, rgba(250, 250, 250, 0) 0%, #FAFAFA 50%, rgba(250, 250, 250, 0) 100%);
  --shadow-s: 0 7px 15px rgba(10, 10, 20, 0.07);
  --shadow-m: 0 10px 20px rgba(10, 10, 20, 0.15);
  --shadow-l: 0 5px 20px rgba(10, 10, 20, 0.25);
  --shadow-full-s: 0 0 15px rgba(10, 10, 20, 0.07);
  --shadow-full-m: 0 0 20px rgba(10, 10, 20, 0.15);
  --shadow-full-l: 0 0 20px rgba(10, 10, 20, 0.25);
  --button-hover: rgba(178, 178, 178, 0.2);
  --button-active: rgba(178, 178, 178, 0.1);
  --button-dark-hover: rgba(128, 128, 128, 0.2);
  --button-dark-active: rgba(128, 128, 128, 0.1);
  --background-dark-default: #000;
  --background-dark-tile: #151515;
  --separator-dark-default: #A5A5A526;
  --separator-dark-сontrast: #000;
}

.button {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
  background-color: transparent;
  border: none;
}
.button.share-links {
  border-radius: 50%;
}
.button.minimal {
  width: fit-content;
}
.button.disabled {
  opacity: 0.5;
  cursor: auto;
}
.button::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--button-hover);
  opacity: 0;
  transition: opacity 0.15s;
  border-radius: 12px;
  top: 0;
  left: 0;
}
.button::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--button-active);
  opacity: 0;
  transition: opacity 0.15s;
  border-radius: 12px;
  top: 0;
  left: 0;
}
.button.dark::after {
  background-color: var(--button-dark-hover);
}
.button.dark::before {
  background-color: var(--button-dark-active);
}
.button:hover:not(.disabled)::after {
  opacity: 1;
}
.button:active:not(.disabled) {
  transform: scale(0.96);
}
.button:active:not(.disabled)::after {
  opacity: 0;
}
.button:active:not(.disabled)::before {
  opacity: 1;
}

.button__loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.button__nofill {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -11px 0;
}

.button__nofill.left {
  margin-right: 8px;
}

.button__icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -11px 0;
}
.button__icon.left {
  margin-left: -8px;
  margin-right: 8px;
}
.button__icon.right {
  margin-right: -8px;
  margin-left: 8px;
}

.button__counter {
  background-color: var(--default-white);
  margin: -3px 0;
  border-radius: 50px;
  padding: 0 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
}
.button__counter.left {
  margin-left: -4px;
  margin-right: 8px;
}
.button__counter.right {
  margin-right: -4px;
  margin-left: 8px;
}
.button__counter span {
  color: var(--default-white);
}

.close .button__icon {
  transition: 0.2s ease;
  transform: rotate(0);
}

.button__anchor.hide-anchor {
  opacity: 0;
}

.large {
  padding: 16px 24px;
}
.large.minimal {
  width: fit-content;
  min-height: 56px;
  min-width: 56px;
}
.large .button__icon.minimal {
  margin: -24px;
}

.medium {
  padding: 8px 16px;
}
.medium .button__icon.left {
  margin-left: -8px;
}
.medium .button__icon.right {
  margin-right: -8px;
}
.medium .button__icon.minimal {
  margin: 0 -8px;
  width: 24px;
  height: 24px;
}
.medium .button__counter.left {
  margin-left: -8px;
}
.medium .button__counter.right {
  margin-right: -8px;
}

.small {
  padding: 7px 16px;
}
.small .button__icon {
  width: 24px;
  height: 24px;
}
.small .button__icon.left {
  margin-left: -12px;
}
.small .button__icon.right {
  margin-right: -12px;
}
.small .button__icon.minimal {
  width: 24px;
  height: 24px;
  margin: -3px -16px;
}
.small .button__counter {
  margin: -2px 0;
  padding: 3px 6px;
  min-width: 20px;
}
.small .button__counter.left {
  margin-left: -10px;
  margin-right: 8px;
}
.small .button__counter.right {
  margin-right: -10px;
  margin-left: 8px;
}

.extra-small {
  padding: 5px 8px;
}
.extra-small .button__icon {
  margin: -5px 0;
}
.extra-small .button__icon.left {
  margin-left: -8px;
  margin-right: 0;
}
.extra-small .button__icon.right {
  margin-right: -8px;
  margin-left: 0;
}

.default {
  background: var(--elements-main);
}
.default .button__counter {
  background-color: var(--elements-contrast);
}
.default .button__counter span {
  color: var(--elements-main);
}
.default .button__icon svg {
  fill: var(--elements-contrast);
}
.default .button__anchor {
  color: var(--elements-contrast);
}
.default.alert {
  background: var(--error-default);
}
.default.alert .button__anchor {
  color: var(--default-white);
}

.tile {
  background: var(--background-tile);
}
.tile .button__counter {
  background-color: var(--elements-main);
}
.tile .button__counter span {
  color: var(--elements-contrast);
}
.tile .button__icon svg {
  fill: var(--elements-main);
}
.tile .button__anchor {
  color: var(--elements-main);
}

.secondary {
  background: var(--background-secondary);
}
.secondary .button__anchor {
  color: var(--elements-main);
}
.secondary .button__counter {
  background-color: var(--elements-main);
}
.secondary .button__counter span {
  color: var(--elements-contrast);
}
.secondary .button__icon svg {
  fill: var(--elements-main);
}
.secondary.alert .button__anchor {
  color: var(--error-default);
}
.secondary.dark .button__anchor {
  color: var(--default-white);
}
.secondary.share-links .button__icon svg {
  fill: var(--elements-main);
}

.outline {
  border: 2px solid var(--separator-default);
  overflow: visible;
}
.outline .button__anchor {
  color: var(--elements-main);
}
.outline::before {
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  border-radius: 12px;
}
.outline::after {
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  border-radius: 12px;
}
.outline.large {
  padding: 15px 23px;
}
.outline.medium {
  padding: 6px 14px;
}
.outline.small {
  padding: 5px 14px;
}
.outline.extra-small {
  padding: 3px 6px;
}
.outline .button__counter {
  background-color: var(--elements-main);
}
.outline .button__counter span {
  color: var(--elements-contrast);
}
.outline .button__icon svg {
  fill: var(--elements-main);
}

.no-color .button__anchor {
  color: var(--elements-main);
}
.no-color .button__counter {
  background-color: var(--elements-main);
}
.no-color .button__counter span {
  color: var(--elements-contrast);
}
.no-color .button__icon svg {
  fill: var(--elements-main);
}
.no-color.alert .button__anchor {
  color: var(--error-default);
}
.no-color.border {
  border: 1px solid var(--separator-default);
}
.no-color.gray svg {
  fill: var(--gray-default);
}
.no-color.dark .button__icon svg {
  fill: var(--gray-default);
}
.no-color.dark .button__anchor {
  color: var(--default-white);
}
.no-color.dark-gray .button__anchor {
  color: var(--gray-default);
}
.no-color.dark-gray .button__icon svg {
  fill: var(--gray-default);
}
.no-color::after {
  background-color: rgba(0, 0, 0, 0.1);
}

.shown .button__icon {
  transform: rotate(45deg);
  transition: 0.2s ease;
}

.gray-icon .button__icon svg {
  fill: var(--gray-disable);
}

@media (max-width: 576px) {
  .grow {
    width: 100%;
    flex-grow: 1;
  }
}
@media (pointer: coarse) {
  .button:hover:not(.disabled)::after {
    opacity: 0;
  }
}
@media (max-width: 576px) {
  .button.border {
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .button.border .button__icon {
    border: 1px solid var(--separator-default);
    border-radius: 50%;
    margin: 0 0 4px;
    width: 56px;
    height: 56px;
    overflow: hidden;
    flex-shrink: 0;
  }
  .button.border.tile {
    background-color: transparent;
  }
  .button.border.tile .button__icon {
    border: none;
    background-color: var(--background-tile);
  }
}
.soon {
  padding: 0 7px;
  border-radius: 50px;
  background-color: var(--blue-default);
  color: var(--default-black);
  margin-left: 8px;
}

input[type=date] {
  position: relative;
  z-index: 2;
  background-color: transparent !important;
}
input[type=date]::-webkit-clear-button {
  -webkit-appearance: none;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  position: absolute !important;
  z-index: -1 !important;
}
input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 56px;
  height: 56px;
  color: transparent;
  background: transparent;
  z-index: 1;
  cursor: pointer;
}

.input__button {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: fit-content;
  right: 8px;
  z-index: 3;
}

.timer {
  color: var(--gray-default);
  padding: 8px;
}

.resend {
  color: var(--elements-main);
  cursor: pointer;
  padding: 8px;
}
.resend:hover {
  text-decoration: underline;
}

.phone-plus {
  position: absolute;
  top: 22px;
  left: 16px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: var(--elements-main);
  height: 24px;
  display: flex;
  align-items: center;
}

@media (pointer: coarse) {
  .resend:hover {
    text-decoration: none;
  }
}
.input__wrapper.disabled {
  opacity: 0.5;
  position: relative;
}
.input__wrapper.disabled::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 2;
}

.input__clear, .input__password-icon {
  fill: var(--gray-disable);
}

.input__text-icon {
  color: var(--gray-disable);
}

.input input.input-coin {
  border: transparent;
  background: transparent;
  border-radius: 0;
}

.input-separator {
  border-bottom: 1px solid var(--separator-default);
}

.input {
  position: relative;
}
.input .input__label {
  position: absolute;
  top: 16px;
  left: 16px;
  color: var(--gray-default);
  transition: top 0.2s, color 0.2s;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  z-index: 2;
}
.input .input__label.focused {
  top: 8px;
  color: var(--elements-main) !important;
}
.input .input__label.active {
  top: 8px;
  color: var(--elements-main);
}
.input input {
  outline: none;
  border: 1px solid var(--separator-default);
  border-radius: 12px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: var(--elements-main);
  padding: 15px 16px;
  width: 100%;
  background-color: transparent;
  transition: border-color 0.15s;
  margin: 0;
  -moz-appearance: textfield;
}
.input input.with-label {
  padding: 22px 16px 8px;
}
.input input.with-label::placeholder {
  opacity: 0;
}
.input input.with-plus {
  padding-left: 26px;
}
.input input.input__icon-right {
  padding-right: 56px;
}
.input input::placeholder {
  color: var(--gray-disable);
  font-weight: normal;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: -0.24px;
  transition: opacity 0.15s;
}
.input input:hover {
  border-color: var(--gray-disable);
}
.input input:focus::placeholder {
  opacity: 1;
}
.input input.with-label {
  padding-top: 22px;
}
.input input.with-button {
  padding-right: 60px;
}
.input input::-webkit-outer-spin-button, .input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.input input:focus {
  border-color: var(--elements-main);
}
.input input.small ~ .input__label {
  top: 4px;
}
.input input.small:focus ~ .input__label {
  opacity: 0;
}
.input.error .input__label {
  color: var(--error-default) !important;
}
.input.error input {
  border-color: var(--error-default) !important;
}
.input.error .input__clear svg {
  fill: var(--error-default) t !important;
}
.input.error .input__password-icon svg {
  fill: var(--error-default) !important;
}
.input.error .input__text-icon {
  color: var(--error-default) !important;
}
.input.error ~ .input__error {
  padding: 8px 16px;
}

.input__wrapper.input-dark .input input {
  background-color: var(--background-dark-tile);
  color: var(--default-white);
}
.input__wrapper.input-dark .input input:focus {
  border-color: var(--default-white);
}
.input__wrapper.input-dark .input .input__label.focused {
  color: var(--default-white) !important;
}
.input__wrapper.input-dark .input .input__label.active {
  color: var(--gray-default);
}

.input__clear, .input__password-icon, .input__text-icon {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.input__clear.small, .input__password-icon.small, .input__text-icon.small {
  width: 32px;
  height: 32px;
  top: 0;
}

.input__text-icon {
  cursor: auto;
}

.input__description {
  padding: 8px 16px;
  color: var(--gray-default);
}

.input__error {
  color: var(--error-default);
}

.input__img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.input__img img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  overflow: hidden;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px var(--background-tile) inset !important;
  -webkit-text-fill-color: var(--elements-main) !important;
}

@media (pointer: coarse) {
  .input input input:hover {
    border-color: var(--separator-default);
  }
  .input input input:focus {
    border-color: var(--elements-main);
  }
}
.select-language {
  padding: 0;
  margin: 0;
  list-style-type: none;
  position: relative;
}
.select-language .icon-check {
  display: none;
}
.select-language li {
  padding: 7px 8px 7px 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.15s, background-color 0.15s;
}
.select-language li a {
  color: var(--gray-default);
  text-decoration: none;
  pointer-events: none;
}
.select-language li svg {
  margin-left: 8px;
  fill: var(--gray-default);
  transition: transform 0.15s;
}
.select-language li:hover:not(.sub-menu) {
  background-color: var(--button-hover);
}
.select-language li:active {
  background-color: var(--button-active);
}
.select-language li.active {
  background-color: var(--background-secondary);
}
.select-language li.active .icon-chevron {
  transform: rotate(-180deg);
}
.select-language .sub-menu {
  display: none;
  list-style-type: none;
  margin: 0;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  border-radius: 12px;
  padding: 8px;
  background-color: var(--background-tile);
  z-index: 3;
  box-shadow: var(--shadow-m);
}
.select-language .sub-menu .icon-check {
  display: block;
}
.select-language .sub-menu .icon-chevron {
  display: none;
}
.select-language .sub-menu li {
  padding: 7px 16px;
  border-radius: 12px;
  position: relative;
  margin-top: 4px;
  transition: background-color 0.15s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: scale(1) !important;
}
.select-language .sub-menu li.current-lang svg {
  opacity: 1;
}
.select-language .sub-menu li svg {
  margin-left: 8px;
  fill: var(--gray-default);
  opacity: 0;
  flex-shrink: 0;
}
.select-language .sub-menu li:first-child {
  margin-top: 0;
}
.select-language .sub-menu li:hover {
  background-color: var(--background-secondary);
}
.select-language .sub-menu li a {
  color: var(--elements-main);
  text-decoration: none;
  pointer-events: auto;
}
.select-language .sub-menu li a::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
}

.header__inner {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(14px);
  padding: 8px 0;
  position: relative;
  z-index: 10;
  transition: background-color 0.15s;
}
.header__inner.active {
  background-color: var(--background-tile);
}

.logo {
  display: flex;
  align-items: center;
}

.header-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
}

.search-button__wrapper {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.search-button__wrapper.desktop {
  display: block;
}
.search-button__wrapper.mobile {
  display: none;
}

.search-button .button__icon.minimal svg {
  fill: var(--gray-default);
}

.search-wrapper {
  height: 40px;
  position: relative;
}
.search-wrapper .search-form {
  position: absolute;
  top: 0;
}
.search-wrapper .close-search {
  display: none;
}
.search-wrapper.show {
  position: relative;
  width: 100%;
  height: auto;
}
.search-wrapper.show .search-button__wrapper {
  position: absolute;
  right: 8px;
  z-index: 2;
}
.search-wrapper.show .close-search {
  display: block;
  right: 40px;
}
.search-wrapper.show .search-form {
  position: relative;
}

.header-nav-menu__wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  margin-left: 16px;
}
.header-nav-menu__wrapper .search-form {
  margin-top: 0;
  overflow: hidden;
  width: 0;
  transition: width 0.15s;
}
.header-nav-menu__wrapper .search-form.show {
  width: 100%;
}
.header-nav-menu__wrapper input {
  padding: 7px 16px;
}
.header-nav-menu__wrapper ul {
  margin: 0 0 0 8px;
  padding: 0;
  list-style-type: none;
  display: flex;
}
.header-nav-menu__wrapper li {
  position: relative;
  padding: 8px 16px;
}
.header-nav-menu__wrapper li a {
  color: var(--elements-main);
  text-decoration: none;
}
.header-nav-menu__wrapper li a::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.header-nav-menu__wrapper li::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--button-hover);
  opacity: 0;
  transition: opacity 0.15s;
  border-radius: 12px;
  top: 0;
  left: 0;
}
.header-nav-menu__wrapper li::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--button-active);
  opacity: 0;
  transition: opacity 0.15s;
  border-radius: 12px;
  top: 0;
  left: 0;
}
.header-nav-menu__wrapper li:hover::after {
  opacity: 1;
}
.header-nav-menu__wrapper li:active {
  transform: scale(0.96);
}
.header-nav-menu__wrapper li:active::after {
  opacity: 0;
}
.header-nav-menu__wrapper li:active::before {
  opacity: 1;
}

.burger__icon {
  flex-direction: column;
  border: none;
  background-color: transparent;
  padding: 7px 7px;
  display: none;
}

.burger__icon-item {
  display: inline-block;
  width: 18px;
  height: 2px;
  background-color: var(--elements-main);
  margin: 2px 0;
  transition: transform 0.3s;
}

.burger__icon.active .burger__icon-item:first-child {
  transform: translateY(6px) rotateZ(45deg);
}
.burger__icon.active .burger__icon-item:nth-child(2) {
  width: 0;
}
.burger__icon.active .burger__icon-item:last-child {
  transform: translateY(-6px) rotateZ(-45deg);
}

.header__user-photo {
  width: 32px;
  height: 32px;
  overflow: hidden;
  border-radius: 50%;
  margin-left: 16px;
  flex-shrink: 0;
}
.header__user-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header__user-logout {
  margin-left: 8px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  transition: background-color 0.15s;
  cursor: pointer;
}
.header__user-logout:hover {
  background-color: var(--button-hover);
}
.header__user-logout svg {
  fill: var(--gray-default);
}

@media (max-width: 576px) {
  .burger__icon {
    display: flex;
  }
  .header-box {
    justify-content: left;
  }
  .header__empty {
    flex: 1;
  }
  .burger__icon {
    order: 3;
  }
  .header__user-photo {
    margin-left: 0;
    margin-right: 8px;
    order: 2;
  }
  .burger-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 9;
    display: none;
    cursor: pointer;
  }
  .header-content {
    position: absolute;
    flex: none;
    width: 100%;
    top: 100%;
    left: 0;
    background: var(--background-tile);
    z-index: 10;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    display: none;
    border-radius: 0 0 24px 24px;
  }
  .header-nav-menu {
    width: 100%;
    margin-top: 8px;
  }
  .header-nav-menu__wrapper, .header-nav-menu ul {
    margin-left: 0;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  .header-nav-menu__wrapper li, .header-nav-menu ul li {
    width: 100%;
    margin-top: 8px;
  }
  .header-nav-menu__wrapper li:first-child, .header-nav-menu ul li:first-child {
    margin-top: 0;
  }
  .menu-translate-container {
    margin-top: 8px;
  }
  .menu-translate-container .select-language li a {
    color: var(--elements-main);
  }
  .menu-translate-container .select-language li {
    background-color: transparent !important;
  }
  .search-wrapper {
    position: relative;
    width: 100%;
    height: auto;
  }
  .search-wrapper .search-button__wrapper {
    position: absolute;
    right: 8px;
    z-index: 2;
  }
  .search-wrapper .search-button__wrapper.desktop {
    display: none;
  }
  .search-wrapper .search-button__wrapper.mobile {
    display: block;
  }
  .search-wrapper .search-form {
    position: relative;
    width: 100%;
  }
  .search-wrapper .close-search {
    display: none !important;
  }
}
.direction-site-rtl .header-nav-menu__wrapper {
  margin-right: 16px;
  margin-left: 0;
}
.direction-site-rtl .header-nav-menu__wrapper input {
  padding-right: 16px !important;
  padding-left: 70px !important;
}
.direction-site-rtl .search-wrapper.show .search-button__wrapper {
  right: auto;
  left: 8px;
}
.direction-site-rtl .search-wrapper.show .search-button__wrapper.close-search {
  left: 40px;
  right: auto;
}

@media (max-width: 576px) {
  .direction-site-rtl .header-nav-menu__wrapper {
    margin-right: 0;
  }
  .direction-site-rtl .search-button__wrapper {
    display: none;
  }
  .direction-site-rtl .search-button__wrapper.mobile {
    right: auto;
    left: 8px;
  }
}
.footer {
  position: relative;
  z-index: 20;
  margin-top: 40px;
  padding: 32px 0;
}

.footer__wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: -24px;
  margin-left: -16px;
}
.footer__wrapper .logo {
  display: flex;
  margin-top: 24px;
  margin-left: 16px;
}
.footer__wrapper .logo::before {
  display: none;
}

.footer__tagline {
  color: var(--gray-default);
  margin-left: 16px;
  margin-top: 24px;
}

.footer__social-wrapper {
  flex: 1;
}

.footer__social {
  margin-top: 24px;
  margin-left: 16px;
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
}

.footer__social-item {
  width: 32px;
  height: 32px;
  text-decoration: underline;
  opacity: 0.7;
  transition: opacity 0.15s;
  margin-left: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__social-item:first-child {
  margin-left: 0;
}
.footer__social-item img {
  width: 24px;
  height: 24px;
  object-fit: cover;
}
.footer__social-item:hover {
  opacity: 1;
}

@media (pointer: coarse) {
  .footer__social-item:hover {
    opacity: 0.7;
  }
}
@media (max-width: 576px) {
  .footer__social-wrapper {
    flex: none;
    width: 100%;
    order: 1;
  }
  .footer__social {
    justify-content: flex-start;
  }
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 32px;
  width: 100%;
  margin-top: -16px;
  margin-left: -32px;
}

.footer__item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.footer__item-copyright {
  color: var(--gray-disable);
  margin-left: 32px;
  margin-top: 16px;
}

.footer__item-links {
  display: flex;
  margin-left: 32px;
  margin-top: 16px;
}

.links__item ul, .footer__categories ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.links__item li, .footer__categories li {
  width: fit-content;
  position: relative;
  text-align: center;
  margin-top: 8px;
}
.links__item a, .footer__categories a {
  text-decoration: none;
  color: var(--gray-default);
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
}
.links__item a:hover, .footer__categories a:hover {
  text-decoration: underline;
}

.links__item {
  display: flex;
}
.links__item .home-footer-link {
  margin-right: 24px;
}
.links__item ul {
  display: flex;
  margin-left: -24px;
  margin-top: -8px;
  flex-wrap: wrap;
}
.links__item li {
  width: max-content;
  margin-left: 24px;
}

.footer__item-button {
  width: fit-content;
  margin-left: 4px;
}
.footer__item-button:first-child {
  margin-left: 0;
}

.links__item-title {
  margin-bottom: 16px;
}

.footer-badges {
  display: flex;
  margin-left: 32px;
  margin-top: 16px;
}

.footer__item-badge {
  display: flex;
  height: 40px;
  margin-left: 32px;
  flex-shrink: 0;
}
.footer__item-badge.app {
  width: 120px;
}
.footer__item-badge.google {
  width: 135px;
}
.footer__item-badge:first-child {
  margin-left: 0;
}
.footer__item-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer__button-mobile {
  display: none;
}

@media (max-width: 576px) {
  .footer {
    margin-top: 16px;
  }
  .footer__inner {
    padding-top: 24px;
  }
  .footer__item-copyright {
    width: 100%;
  }
}
.footer__categories {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 24px;
  margin-left: 16px;
  width: 100%;
}
.footer__categories ul {
  display: flex;
  flex-wrap: wrap;
  margin-left: -24px;
  margin-top: -24px;
}
.footer__categories li {
  white-space: nowrap;
  margin-left: 24px;
  margin-top: 24px;
}

.categories__inner {
  width: 100%;
}

.direction-site-rtl .footer__social-item {
  margin-right: 8px;
  margin-left: 0;
}
.direction-site-rtl .footer__social-item:first-child {
  margin-right: 0;
}
.direction-site-rtl .footer__item-badge {
  margin-right: 32px;
  margin-left: 0;
}
.direction-site-rtl .footer__item-badge:first-child {
  margin-right: 0;
}

.wysiwyg p,
.wysiwyg ol,
.wysiwyg ul,
.wysiwyg dl,
.wysiwyg dt {
  letter-spacing: normal;
}

/* Typography -------------------------------- */
/* POST TITLE */
.wysiwyg .wp-block-post-title {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.wp-block.editor-post-title__block {
  max-width: 1000px;
}

.wysiwyg .editor-post-title__block .editor-post-title__input {
  margin: 0;
  text-align: center;
}

.wysiwyg .wp-block-post-title.has-text-align-left {
  text-align: left;
}

.wysiwyg .wp-block-post-title.has-text-align-right {
  text-align: right;
}

/* DROP CAP */
.wysiwyg .has-drop-cap:not(:focus)::first-letter {
  color: #cd2653;
  font-size: 5.1em;
  font-weight: 800;
  margin: 0.05em 0 0 0.1em;
}

/* Monospace --------------------------------- */
.wysiwyg code,
.wysiwyg kbd,
.wysiwyg pre,
.wysiwyg samp {
  font-family: monospace;
}

.wysiwyg kbd,
.wysiwyg pre,
.wysiwyg samp {
  border-radius: 0;
  font-size: 0.75em;
  padding: 4px 6px;
}

.wysiwyg pre {
  border-color: #dcd7ca;
  border-radius: 0;
  line-height: 1.5;
  padding: 1em;
}

/* Custom Text Sizes ------------------------- */
.wysiwyg p.has-large-font-size.editor-rich-text__tinymce,
.wysiwyg p.has-large-font-size.editor-rich-text__tinymce.mce-content-body,
.wysiwyg p.has-larger-font-size.editor-rich-text__tinymce,
.wysiwyg p.has-larger-font-size.editor-rich-text__tinymce.mce-content-body {
  line-height: 1.4;
}

.wysiwyg p.has-small-font-size {
  font-size: 0.842em;
}

.wysiwyg p.has-normal-font-size,
.wysiwyg p.has-regular-font-size {
  font-size: 1em;
}

.wysiwyg p.has-medium-font-size {
  font-size: 1.1em;
}

.wysiwyg p.has-large-font-size {
  font-size: 1.25em;
}

.wysiwyg p.has-larger-font-size {
  font-size: 1.5em;
}

/* Post Media -------------------------------- */
.wysiwyg figure {
  margin: 0;
}

.wysiwyg .alignleft,
.wysiwyg .alignright {
  margin-bottom: 1.2em;
  max-width: 260px;
}

.wysiwyg .wp-caption .alignleft,
.wysiwyg .wp-caption .alignright {
  margin-bottom: 0;
}

.wysiwyg .alignleft {
  margin-left: 1em;
}

.wysiwyg .alignright {
  margin-right: 1em;
}

.wysiwyg figcaption {
  color: #6d6d6d;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 5px;
  text-align: inherit;
}

/* Forms ------------------------------------- */
.wysiwyg fieldset {
  border: 2px solid #dcd7ca;
  padding: 20px;
}

.wysiwyg legend {
  font-size: 0.85em;
  font-weight: 700;
  padding: 0 10px;
}

.wysiwyg label {
  font-size: 15px;
  font-weight: 600;
}

/* Block: Base Margins ---------------------- */
/* Block: Shared Widget Styles -------------- */
.wysiwyg ul.wp-block-archives,
.wysiwyg ul.wp-block-categories,
.wysiwyg ul.wp-block-latest-posts,
.wysiwyg ul.wp-block-categories__list {
  font-family: inherit;
  list-style: none;
  margin: 40px 0;
  padding-right: 0;
}

.wysiwyg ul.wp-block-categories__list ul {
  margin: 0;
}

.wysiwyg ul.wp-block-archives li,
.wysiwyg ul.wp-block-categories li,
.wysiwyg ul.wp-block-latest-posts li,
.wysiwyg ul.wp-block-categories__list li {
  color: #6d6d6d;
  line-height: 1.476;
  margin: 5px 0 0 0;
}

.wysiwyg ul.wp-block-archives li li,
.wysiwyg ul.wp-block-categories li li,
.wysiwyg ul.wp-block-categories__list li li,
.wysiwyg ul.wp-block-latest-posts li li {
  margin-right: 20px;
}

.wysiwyg .wp-block-archives li > a,
.wysiwyg .wp-block-categories li > a,
.wysiwyg .wp-block-latest-posts li > a {
  font-weight: 700;
  text-decoration: none;
}

.wysiwyg .wp-block-archives li > a:focus,
.wysiwyg .wp-block-archives li > a:hover,
.wysiwyg .wp-block-categories li > a:focus,
.wysiwyg .wp-block-categories li > a:hover,
.wysiwyg .wp-block-latest-posts li > a:focus,
.wysiwyg .wp-block-latest-posts li > a:hover {
  font-weight: 700;
  text-decoration: none;
}

.wysiwyg .wp-block-archives.aligncenter,
.wysiwyg .wp-block-categories.aligncenter {
  text-align: center;
}

.wysiwyg .wp-block-latest-comments time,
.wysiwyg .wp-block-latest-posts time {
  color: #6d6d6d;
  font-size: 0.7em;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 1.476;
  margin-top: 0.15em;
}

/* Block: Table ------------------------------ */
.wysiwyg .wp-block-table {
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
  width: 100%;
}

.wysiwyg .wp-block-table tr {
  border: none;
}

.wysiwyg .wp-block-table caption {
  text-align: center;
}

.wysiwyg .wp-block-table th,
.wysiwyg .wp-block-table td {
  margin: 0;
  overflow: visible;
}

.wysiwyg .wp-block-table thead {
  vertical-align: bottom;
  white-space: nowrap;
  text-align: inherit;
}

.wysiwyg .wp-block-table th {
  text-align: inherit; /* Prevents the header from being centered by default*/
}

.wysiwyg .wp-block-table th.has-text-align-center {
  text-align: center;
}

.wysiwyg .wp-block-table th.has-text-align-right {
  text-align: left;
}

.wysiwyg .wp-block-table th.has-text-align-left {
  text-align: right;
}

/* Block: Separator -------------------------- */
hr.wp-block-separator {
  border-top: 1px solid var(--separator-default);
  color: var(--separator-default);
  margin: 40px auto;
}

@media (max-width: 576px) {
  hr.wp-block-separator {
    margin: 24px auto;
  }
}
hr.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
  max-width: calc(100% - 48px);
}

hr.wp-block-separator:not(.is-style-dots) {
  background: linear-gradient(to right, var(--separator-default) calc(50% - 32px), transparent calc(50% - 32px), transparent calc(50% + 32px), var(--separator-default) calc(50% + 32px));
  background-color: transparent !important;
  border: none;
  height: 1px;
  overflow: visible;
  position: relative;
}

.wp-block-separator.has-background:not(.is-style-wide):not(.is-style-dots) {
  height: 1px;
}

hr.wp-block-separator:not(.is-style-dots)::after {
  background: currentColor;
  content: "";
  display: block;
  height: 16px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  background: url("/wp-content/themes/news/assets/image/icons/i16-logo-mini.svg");
}

.wysiwyg hr.wp-block-separator::before {
  right: calc(50% - 5px);
  left: auto;
}

.wysiwyg hr.wp-block-separator::after {
  left: calc(50% - 5px);
  right: auto;
  border-radius: 0;
}

/* STYLE: DOTS */
hr.wp-block-separator.is-style-dots::before {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1em;
  padding-right: 1em;
}

/* Block: Quote ------------------------------ */
.wysiwyg blockquote {
  margin: 0;
}

.wysiwyg .wp-block-quote {
  border-color: #cd2653;
  border-style: solid;
  border-width: 0 2px 0 0;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 5px 20px 5px 0;
}

.wysiwyg .wp-block-quote.has-text-align-center,
.wysiwyg .wp-block-quote[style*="text-align:center"],
.wysiwyg .wp-block-quote[style*="text-align: center"] {
  border-width: 0;
  padding: 5px 0;
}

.wysiwyg .wp-block-quote.has-text-align-right,
.wysiwyg .wp-block-quote[style*="text-align:right"],
.wysiwyg .wp-block-quote[style*="text-align: right"] {
  border-width: 0 0 0 2px;
  padding: 5px 0 5px 20px;
}

.wysiwyg cite,
.wysiwyg .wp-block-quote__citation,
.wysiwyg .wp-block-quote cite,
.wysiwyg .wp-block-quote footer {
  color: #6d6d6d;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
}

.wysiwyg .wp-block-quote cite {
  font-style: normal;
}

.wysiwyg .wp-block-quote p {
  color: inherit;
  font-weight: 400;
  margin: 0 0 20px 0;
}

.wysiwyg .wp-block-quote.is-style-large {
  border: none;
  padding: 0;
}

.wysiwyg .wp-block-quote.is-style-large p {
  font-family: inherit;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.035714286em;
  line-height: 1.285714286;
}

.wysiwyg .wp-block-quote.is-style-large .wp-block-quote__citation,
.wysiwyg .wp-block-quote.is-style-large cite,
.wysiwyg .wp-block-quote.is-style-large footer {
  font-size: 16px;
}

/* Block: Code, Verse and Preformatted ------- */
.wysiwyg .wp-block-code {
  color: inherit;
}

.wysiwyg .wp-block-code,
.wysiwyg .wp-block-preformatted pre,
.wysiwyg .wp-block-verse pre {
  border: 1px solid #dcd7ca;
  border-radius: 0;
  padding: 30px;
}

.wysiwyg .wp-block-freeform.block-library-rich-text__tinymce pre,
.wysiwyg .wp-block-preformatted pre,
.wysiwyg .wp-block-code .block-editor-plain-text,
.wysiwyg .wp-block-verse pre {
  background: transparent;
  color: inherit;
  font-family: monospace;
  font-size: 14px;
}

/* Block: Cover ------------------------------ */
.wysiwyg .wp-block-cover-image .wp-block-cover__inner-container,
.wysiwyg .wp-block-cover .wp-block-cover__inner-container {
  margin: 0 auto;
  width: calc(100% - 40px);
}

.wysiwyg .wp-block[data-type="core/cover"][data-align=right],
.wysiwyg .wp-block[data-type="core/cover"][data-align=left] {
  height: auto;
  max-height: none;
}

.wysiwyg .wp-block[data-type="core/cover"][data-align=left] .wp-block-cover {
  text-align: right;
}

.wysiwyg .wp-block[data-type="core/cover"][data-align=right] .wp-block-cover {
  text-align: left;
}

.wysiwyg .wp-block[data-type="core/cover"][data-align=right] .block-editor-block-list__block-edit,
.wysiwyg .wp-block[data-type="core/cover"][data-align=left] .block-editor-block-list__block-edit {
  float: none;
  margin-right: 0;
  margin-left: 0;
  max-width: 100%;
}

.wp-block-cover-image .wp-block-cover-image-text,
.wp-block-cover-image .wp-block-cover-text,
.wp-block-cover-image h2,
.wp-block-cover .wp-block-cover-image-text,
.wp-block-cover .wp-block-cover-text {
  max-width: 100%;
}

.wysiwyg .wp-block-cover a {
  color: inherit;
}

/* Block: Shared Media Styles ---------------- */
.wp-block[data-type*=core-embed][data-align=full] figcaption,
.wp-block[data-type="core/image"][data-align=full] figcaption,
.wp-block[data-type="core/gallery"][data-align=full] .blocks-gallery-caption {
  padding: 0 14px;
}

/* Block: Paragraph -------------------------- */
/* Block: Pullquote -------------------------- */
.wysiwyg .wp-block-pullquote {
  border: none;
  color: inherit;
  padding: 0;
  position: relative;
  text-align: center;
}

.wysiwyg .wp-block-pullquote::before {
  background: #fff;
  border-radius: 50%;
  color: #cd2653;
  content: "”";
  display: block;
  font-size: 62px;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 auto 15px auto;
  text-align: center;
  height: 44px;
  width: 44px;
}

.wysiwyg .wp-block .wp-block-pullquote p {
  font-family: inherit;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.178571429;
  letter-spacing: -0.041785714em;
  margin-bottom: 20px;
}

.wysiwyg .wp-block .wp-block-pullquote p:last-child {
  margin-bottom: 0;
}

.wysiwyg .wp-block .wp-block-pullquote p,
.wysiwyg .wp-block-pullquote.is-style-solid-color blockquote > .block-editor-rich-text p,
.wysiwyg .wp-block[data-type="core/pullquote"][data-align=right] .editor-rich-text p,
.wysiwyg .wp-block[data-type="core/pullquote"][data-align=left] .editor-rich-text p {
  font-size: 28px;
}

.wysiwyg .wp-block[data-type="core/pullquote"][data-align=right],
.wysiwyg .wp-block[data-type="core/pullquote"][data-align=left] {
  height: auto;
  max-height: none;
}

.wysiwyg .wp-block[data-type="core/pullquote"][data-align=left] .wp-block-pullquote,
.wysiwyg .wp-block[data-type="core/pullquote"][data-align=left] .wp-block-pullquote.is-style-solid-color blockquote {
  text-align: right;
}

.wysiwyg .wp-block[data-type="core/pullquote"][data-align=right] .wp-block-pullquote,
.wysiwyg .wp-block[data-type="core/pullquote"][data-align=right] .wp-block-pullquote.is-style-solid-color blockquote {
  text-align: left;
}

.wysiwyg .wp-block[data-type="core/pullquote"][data-align=right] .block-editor-block-list__block-edit,
.wysiwyg .wp-block[data-type="core/pullquote"][data-align=left] .block-editor-block-list__block-edit {
  float: none;
  margin-right: 0;
  margin-left: 0;
  max-width: 100%;
}

.wysiwyg .wp-block[data-type="core/pullquote"][data-align=right] .block-editor-block-list__block-edit .wp-block-pullquote::before {
  margin-left: 0;
}

.wysiwyg .wp-block[data-type="core/pullquote"][data-align=left] .block-editor-block-list__block-edit .wp-block-pullquote::before {
  margin-right: 0;
}

.wysiwyg .wp-block[data-type="core/pullquote"][data-align=right] .is-style-solid-color::before {
  left: 20px;
  transform: translateY(-50%);
}

.wysiwyg .wp-block[data-type="core/pullquote"][data-align=left] .is-style-solid-color::before {
  right: 20px;
  transform: translateY(-50%);
}

.wysiwyg .wp-block-pullquote__citation,
.wysiwyg .wp-block-pullquote cite,
.wysiwyg .wp-block-pullquote footer {
  color: #6d6d6d;
  font-size: 16px;
  font-weight: 500;
  margin-top: 12px;
  text-transform: none;
}

/* STYLE: SOLID COLOR */
.wysiwyg .wp-block-pullquote.is-style-solid-color {
  padding: 30px 20px;
  position: relative;
}

.wysiwyg .wp-block-pullquote.is-style-solid-color::before {
  position: absolute;
  top: 0;
  right: 50%;
  transform: translateY(-50%) translateX(50%);
}

.wysiwyg .wp-block-pullquote.is-style-solid-color blockquote {
  max-width: 100%;
  text-align: center;
}

.wysiwyg .wp-block-pullquote.is-style-solid-color .wp-block-pullquote__citation,
.wysiwyg .wp-block-pullquote.is-style-solid-color .wp-block-pullquote cite,
.wysiwyg .wp-block-pullquote.is-style-solid-color .wp-block-pullquote footer {
  color: inherit;
}

/* Block: Verse ------------------------------ */
.wysiwyg .wp-block-verse pre,
.wysiwyg pre.wp-block-verse {
  font-family: NonBreakingSpaceOverride, "Hoefler Text", Garamond, "Times New Roman", serif;
  font-size: 0.9em;
}

/* Block: Button ----------------------------- */
:root .wysiwyg .wp-block-button__link,
:root .wysiwyg .wp-block-file__button {
  background: #cd2653;
  border-radius: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.0333em;
  line-height: 1.25;
  padding: 1.1em 1.44em;
  text-transform: uppercase;
}

.wysiwyg .wp-block-button .wp-block-button__link.mce-content-body {
  line-height: 1.1;
}

.wysiwyg .wp-block-button__link:hover,
.wysiwyg .wp-block-file__button:hover {
  text-decoration: underline;
}

/* BUTTON STYLE: OUTLINE */
.wysiwyg .is-style-outline .wp-block-button__link,
.wysiwyg .is-style-outline.wp-block-button__link {
  background: none;
  border-color: currentColor;
  color: #cd2653;
  padding: calc(1.1em - 2px) calc(1.44em - 2px);
}

/* BUTTON STYLE: SQUARED */
.wysiwyg .is-style-squared .wp-block-button__link,
.wysiwyg .is-style-squared.wp-block-button__link {
  border-radius: 0;
}

/* Block: Latest Comments -------------------- */
.wysiwyg .wp-block-latest-comments {
  font-family: inherit;
  margin-right: 0;
}

.wysiwyg .wp-block-latest-comments li.wp-block-latest-comments__comment {
  font-size: inherit;
  margin-bottom: 20px;
}

.wysiwyg .wp-block-latest-comments li.wp-block-latest-comments__comment:last-child {
  margin-bottom: 0;
}

.wysiwyg .wp-block-latest-comments__comment-meta,
.wysiwyg .wp-block-latest-comments__comment-excerpt {
  margin-right: 0 !important;
}

.wysiwyg .wp-block-latest-comments__comment-meta {
  font-weight: 700;
}

.wysiwyg .wp-block-latest-comments__comment-meta a {
  text-decoration: none;
}

.wysiwyg .wp-block-latest-comments__comment-meta a:focus,
.wysiwyg .wp-block-latest-comments__comment-meta a:hover {
  text-decoration: none;
}

/* HAS AVATAR */
.wysiwyg .wp-block-latest-comments.has-avatars .wp-block-latest-comments__comment {
  display: flex;
}

.wysiwyg .wp-block-latest-comments.has-avatars img.avatar {
  flex-shrink: 0;
  margin: 5px 0 0 15px;
}

/* HAS EXCERPT */
.wysiwyg .wp-block-latest-comments__comment-excerpt {
  margin: 0;
}

.wysiwyg .wp-block-latest-comments__comment-excerpt p {
  font-family: inherit;
  font-size: 0.7em;
  margin: 10px 0 0;
}

/* Block: Latest Posts ----------------------- */
.wysiwyg ul.wp-block-latest-posts:not(.is-grid) li {
  margin-top: 15px;
}

/* STYLE: GRID */
.wysiwyg .wp-block-latest-posts.is-grid li {
  border-color: #dcd7ca;
}

.wysiwyg ul.wp-block-latest-posts.is-grid li {
  border-style: solid;
  border-width: 2px 0 0;
  line-height: 1.25;
  margin: 20px 0 16px 10px;
  padding-top: 12px;
}

.wysiwyg .wp-block-latest-posts__post-excerpt {
  font-size: 0.95em;
  line-height: 1.4;
  margin-top: 15px;
}

/* Block: Shortcode -------------------------- */
.wysiwyg .wp-block-shortcode textarea {
  color: #191e23;
}

/* Block: Embed ------------------------------ */
.wysiwyg .wp-block-embed {
  margin-bottom: 30px;
  margin-top: 30px;
}

.wysiwyg .wp-block[data-type*=core-embed][data-align=center] * {
  margin-right: auto;
  margin-left: auto;
}

/* Block: File ------------------------------- */
.wysiwyg .wp-block-file {
  background: none;
  padding: 0;
}

.wysiwyg .wp-block-file__content-wrapper {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.wysiwyg .wp-block-file .wp-block-file__textlink {
  color: #cd2653;
  font-weight: 700;
  text-decoration: none;
}

.wysiwyg .wp-block-file .wp-block-file__textlink:focus,
.wysiwyg .wp-block-file .wp-block-file__textlink:hover {
  text-decoration: underline;
}

.wysiwyg .wp-block-file .wp-block-file__button {
  font-size: 14px;
  padding: 1em 1.25em;
}

/* Block: Group ------------------------------ */
.wysiwyg .wp-block-group.has-background {
  padding: 20px;
}

.wp-block-group .wp-block[data-type="core/heading"]:first-child * {
  margin-top: 0;
}

.wp-block[data-type="core/group"] > .editor-block-list__block-edit > div > .wp-block-group.has-background > .wp-block-group__inner-container > .editor-inner-blocks > .editor-block-list__layout > .wp-block[data-align=full],
.wp-block[data-type="core/group"][data-align=full] > .editor-block-list__block-edit > div > .wp-block-group.has-background > .wp-block-group__inner-container > .editor-inner-blocks > .editor-block-list__layout > .wp-block[data-align=full] {
  margin-right: 0;
  width: 100%;
}

/* Block: List ------------------------------- */
.wysiwyg ul.block-editor-block-list__block,
.wysiwyg ol.block-editor-block-list__block,
.wysiwyg ul ul,
.wysiwyg ol ul {
  padding-right: 1.3em;
}

.wysiwyg ul.block-editor-block-list__block.wp-block-social-links {
  padding-right: 0;
}

/* Block: Post Template ---------------- */
.wysiwyg ul.wp-block-post-template {
  padding-right: 0;
}

/*	X.	Media Queries
/* ------------------------------------------- */
@media (min-width: 480px) {
  /* STRUCTURE */
  .wysiwyg .wp-block[data-align=right] {
    margin-left: 0;
  }
  .wysiwyg .wp-block[data-align=left] {
    margin: 0;
  }
  /* BLOCK: COVER */
  .wp-block[data-type="core/cover"][data-align=left] [data-block],
  .wp-block[data-type="core/cover"][data-align=right] [data-block] {
    margin-top: 0;
  }
  .wysiwyg .wp-block[data-type="core/cover"][data-align=right] .block-editor-block-list__block-edit {
    float: left;
    margin-right: 20px;
    max-width: 260px;
  }
  .wysiwyg .wp-block[data-type="core/cover"][data-align=left] .block-editor-block-list__block-edit {
    float: right;
    margin-left: 20px;
    max-width: 260px;
  }
  .wysiwyg .wp-block[data-type="core/cover"][data-align=right] .wp-block-pullquote::before {
    margin-left: 0;
  }
  .wysiwyg .wp-block[data-type="core/cover"][data-align=left] .wp-block-pullquote::before {
    margin-right: 0;
  }
  /* BLOCK: PULL QUOTE */
  .wysiwyg .wp-block[data-type="core/pullquote"][data-align=right],
  .wysiwyg .wp-block[data-type="core/pullquote"][data-align=left] {
    height: 0;
    max-width: 260px;
  }
  .wp-block[data-type="core/pullquote"][data-align=left] [data-block],
  .wp-block[data-type="core/pullquote"][data-align=right] [data-block] {
    margin-top: 0;
  }
  .wysiwyg .wp-block[data-type="core/pullquote"][data-align=right] .block-editor-block-list__block-edit {
    float: left;
    margin-right: 20px;
    max-width: 260px;
  }
  .wysiwyg .wp-block[data-type="core/pullquote"][data-align=left] .block-editor-block-list__block-edit {
    float: right;
    margin-left: 20px;
    max-width: 260px;
  }
  .wysiwyg .wp-block[data-type="core/pullquote"][data-align=right] .wp-block-pullquote::before {
    margin-left: 0;
  }
  .wysiwyg .wp-block[data-type="core/pullquote"][data-align=left] .wp-block-pullquote::before {
    margin-right: 0;
  }
}
@media (min-width: 600px) {
  /* BLOCK: SHARED MEDIA STYLES */
  .wp-block[data-type*=core-embed][data-align=full] figcaption,
  .wp-block[data-type="core/image"][data-align=full] figcaption,
  .wp-block[data-type="core/gallery"][data-align=full] .blocks-gallery-caption {
    padding: 0 45px;
  }
  /* BLOCK: COLUMNS */
  .wysiwyg .wp-block[data-type="core/column"] h1,
  .wysiwyg .wp-block[data-type="core/column"] h2,
  .wysiwyg .wp-block[data-type="core/column"] h3,
  .wysiwyg .wp-block[data-type="core/column"] h4,
  .wysiwyg .wp-block[data-type="core/column"] h5,
  .wysiwyg .wp-block[data-type="core/column"] h6 {
    margin: 35px 0 20px 0;
  }
  /* BLOCK: PULLQUOTE */
  .wysiwyg .wp-block[data-type="core/pullquote"][data-align=right] .block-editor-block-list__block-edit {
    margin-left: -30px;
  }
  .wysiwyg .wp-block[data-type="core/pullquote"][data-align=left] .block-editor-block-list__block-edit {
    margin-right: -30px;
  }
}
@media (min-width: 700px) {
  /* STRUCTURE */
  .wysiwyg > * {
    font-size: 21px;
  }
  /* TYPOGRAPHY */
  .editor-post-title__block .editor-post-title__input,
  .wysiwyg .wp-block-post-title,
  .wysiwyg h1,
  .wysiwyg .heading-size-1 {
    font-size: 64px;
  }
  .wysiwyg h2,
  .wysiwyg .heading-size-2 {
    font-size: 48px;
  }
  .wysiwyg h3,
  .wysiwyg .heading-size-3 {
    font-size: 40px;
  }
  .wysiwyg h4,
  .wysiwyg .heading-size-4 {
    font-size: 32px;
  }
  .wysiwyg h5,
  .wysiwyg .heading-size-5 {
    font-size: 24px;
  }
  .wysiwyg li,
  .wysiwyg p,
  .wysiwyg p.wp-block-paragraph {
    line-height: 1.476;
  }
  /* FORMS  */
  .wysiwyg fieldset {
    padding: 30px;
  }
  .wysiwyg legend {
    padding: 0 15px;
  }
  /* BLOCK: BASE MARGINS */
  /* BLOCK: BUTTON */
  :root .wysiwyg .wp-block-button__link,
  :root .wysiwyg .wp-block-file__button {
    font-size: 17px;
  }
  /* BLOCK: CODE */
  .wysiwyg .wp-block-preformatted pre,
  .wysiwyg .wp-block-code .block-editor-plain-text,
  .wysiwyg .wp-block-verse pre {
    font-size: 16px;
  }
  /* BLOCK: COLUMNS */
  .wp-block-column {
    font-size: 16px;
  }
  /* BLOCK: COVER */
  .wysiwyg .wp-block-cover-image .wp-block-cover__inner-container,
  .wysiwyg .wp-block-cover .wp-block-cover__inner-container {
    width: calc(100% - 80px);
  }
  /* BLOCK: GROUP */
  .wysiwyg .wp-block:not([data-align=wide]):not([data-align=full]) div:not([class*=__inner-container]) .wp-block-group.has-background,
  .wysiwyg .wp-block div[class*=__inner-container] .wp-block[data-align=wide] .wp-block-group.has-background,
  .wysiwyg .wp-block div[class*=__inner-container] .wp-block[data-align=full] .wp-block-group.has-background {
    padding: 40px;
  }
  .wysiwyg .wp-block[data-align=wide] .wp-block-group.has-background,
  .wysiwyg .wp-block[data-align=full] .wp-block-group.has-background {
    padding: 80px;
  }
  /* BLOCK: LATEST POSTS */
  /* BLOCK: PULLQUOTE */
  .wysiwyg .wp-block .wp-block-pullquote p,
  .wysiwyg .wp-block-pullquote.is-style-solid-color blockquote > .block-editor-rich-text p,
  .wysiwyg .wp-block[data-type="core/pullquote"][data-align=right] .editor-rich-text p,
  .wysiwyg .wp-block[data-type="core/pullquote"][data-align=left] .editor-rich-text p {
    font-size: 32px;
  }
  .wysiwyg .wp-block-pullquote__citation,
  .wysiwyg .wp-block-pullquote cite,
  .wysiwyg .wp-block-pullquote footer {
    margin-top: 20px;
  }
  .wysiwyg .wp-block[data-type="core/pullquote"][data-align=wide] .wp-block-pullquote::before,
  .wysiwyg .wp-block[data-type="core/pullquote"][data-align=full] .wp-block-pullquote::before {
    font-size: 113px;
    height: 80px;
    margin-bottom: 20px;
    width: 80px;
  }
  .wysiwyg .wp-block[data-type="core/pullquote"][data-align=wide] .wp-block-pullquote.is-style-solid-color,
  .wysiwyg .wp-block[data-type="core/pullquote"][data-align=full] .wp-block-pullquote.is-style-solid-color {
    padding: 60px 40px 40px;
  }
  .wysiwyg .wp-block[data-type="core/pullquote"][data-align=full] .wp-block-pullquote:not(.is-style-solid-color) {
    padding-right: 10px;
    padding-left: 10px;
  }
  .wysiwyg .wp-block[data-type="core/pullquote"][data-align=wide] blockquote p,
  .wysiwyg .wp-block[data-type="core/pullquote"][data-align=full] blockquote p {
    font-size: 48px;
    line-height: 1.203125;
  }
  .wysiwyg .wp-block[data-type="core/pullquote"][data-align=left] p,
  .wysiwyg .wp-block[data-type="core/pullquote"][data-align=right] p {
    font-size: 32px;
    line-height: 1.1875;
  }
  .wysiwyg .wp-block[data-type="core/pullquote"][data-align=left] .is-style-solid-color p,
  .wysiwyg .wp-block[data-type="core/pullquote"][data-align=right] .is-style-solid-color p {
    font-size: 26px;
  }
}
@media (min-width: 1000px) {
  /* BLOCK: COLUMNS */
  .wp-block-column {
    font-size: 18px;
  }
}
@media (min-width: 1220px) {
  /* TYPOGRAPHY */
  .editor-post-title__block .editor-post-title__input,
  .wysiwyg .wp-block-post-title,
  .wysiwyg h1,
  .wysiwyg .heading-size-1 {
    font-size: 84px;
  }
  .wysiwyg h6,
  .wysiwyg .heading-size-6 {
    font-size: 18px;
  }
  /* BLOCK: PULLQUOTE */
  .wysiwyg .wp-block[data-type="core/pullquote"][data-align=wide] .wp-block-pullquote.is-style-solid-color,
  .wysiwyg .wp-block[data-type="core/pullquote"][data-align=full] .wp-block-pullquote.is-style-solid-color {
    padding: 90px 40px 80px;
  }
  .wysiwyg .wp-block[data-type="core/pullquote"][data-align=wide] blockquote p,
  .wysiwyg .wp-block[data-type="core/pullquote"][data-align=full] blockquote p {
    font-size: 64px;
  }
}
@media (min-width: 1360px) {
  /* STRUCTURE */
  .wysiwyg .wp-block[data-align=left],
  .wysiwyg .wp-block[data-align=right] {
    margin: 0 auto;
    max-width: 1220px;
  }
  /* BLOCK: PULLQUOTE */
  .wysiwyg .wp-block[data-type="core/pullquote"][data-align=left] .is-style-solid-color::before,
  .wysiwyg .wp-block[data-type="core/pullquote"][data-align=right] .is-style-solid-color::before {
    top: 0;
  }
  .wysiwyg .wp-block[data-type="core/pullquote"][data-align=left],
  .wysiwyg .wp-block[data-type="core/pullquote"][data-align=right] {
    margin: 0 auto;
    max-width: 1220px;
  }
  /* BLOCK: SEPARATOR */
  hr.wp-block-separator.is-style-wide {
    margin-right: auto;
    margin-left: auto;
  }
}
.wysiwyg h1, .wysiwyg h2, .wysiwyg h3, .wysiwyg h4, .wysiwyg h5, .wysiwyg h6, .wysiwyg p {
  margin: 0;
}
.wysiwyg h1 {
  font-weight: 700;
  font-size: 26px;
  line-height: 120%;
}
@media (max-width: 576px) {
  .wysiwyg h1 {
    font-size: 24px;
  }
}
.wysiwyg h2 {
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
}
.wysiwyg h3, .wysiwyg h4, .wysiwyg h5, .wysiwyg h6 {
  font-weight: 700;
  font-size: 18px;
  line-height: 135%;
}
.wysiwyg h1, .wysiwyg h2, .wysiwyg h3, .wysiwyg h4, .wysiwyg h5, .wysiwyg h6 {
  margin-top: 32px;
}
.wysiwyg h1:first-child, .wysiwyg h2:first-child, .wysiwyg h3:first-child, .wysiwyg h4:first-child, .wysiwyg h5:first-child, .wysiwyg h6:first-child {
  margin-top: 0;
}
.wysiwyg p {
  margin-top: 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  word-break: break-word;
}
.wysiwyg p:first-child {
  margin-top: 0;
}
.wysiwyg figure {
  margin: 0;
  width: 100%;
}
.wysiwyg img {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  margin-top: 24px;
}
.wysiwyg .wp-block-image .wp-element-caption {
  margin: 16px 0 0;
  text-align: center;
  font-weight: 500;
  font-size: 12px;
  line-height: 120%;
  color: var(--gray-default);
}
.wysiwyg .is-type-rich {
  margin-top: 24px;
}
.wysiwyg .is-type-rich .wp-block-embed__wrapper {
  display: flex;
  justify-content: center;
}
.wysiwyg .is-type-video .wp-block-embed__wrapper {
  width: 100%;
  padding-bottom: 56.2%;
  height: 0;
  overflow: hidden;
  position: relative;
  border-radius: 28px;
  margin-top: 24px;
}
.wysiwyg .is-type-video .wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 28px;
}
.wysiwyg ul, .wysiwyg ol {
  margin: 24px 0 0;
  padding: 0 0 0 32px;
}
.wysiwyg ul:first-child, .wysiwyg ol:first-child {
  margin-top: 0;
}
.wysiwyg li {
  margin-top: 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
}
.wysiwyg li:first-child {
  margin-top: 0;
}
.wysiwyg .wp-block-table {
  margin-top: 24px;
  border: none;
}
.wysiwyg .wp-block-table:first-child {
  margin-top: 0;
}
.wysiwyg .wp-block-table td {
  font-size: 16px;
  line-height: 150%;
}
.wysiwyg .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background-color: rgba(51, 255, 102, 0.12);
}
.wysiwyg .wpseopress-faq {
  border-top: 1px solid var(--separator-default);
}
.wysiwyg .wpseopress-faq:first-child {
  border-top: none;
}
.wysiwyg .wpseopress-faq-question {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  padding: 28px 40px 28px 0;
  cursor: pointer;
  position: relative;
}
.wysiwyg .wpseopress-faq-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wysiwyg .wpseopress-faq-icon svg {
  fill: var(--gray-default);
  transition: transform 0.15s;
}
.wysiwyg .wpseopress-faq-icon.rotate-arrow svg {
  transform: rotate(-180deg);
}
.wysiwyg .wpseopress-faq-answer {
  display: none;
}
.wysiwyg .wpseopress-faq-answer-desc {
  padding: 0 48px 32px 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: var(--gray-default);
}
.wysiwyg .sc_fs_faq.sc_card {
  margin: 0;
  box-shadow: none;
  border-radius: 0;
  border: none;
  padding: 0;
  border-top: 1px solid var(--separator-default);
  background-color: transparent;
}
.wysiwyg .sc_fs_faq.sc_card:first-child {
  border-top: none;
}
.wysiwyg .sc_fs_faq.sc_card h2, .wysiwyg .sc_fs_faq.sc_card h3, .wysiwyg .sc_fs_faq.sc_card h4, .wysiwyg .sc_fs_faq.sc_card h5, .wysiwyg .sc_fs_faq.sc_card p {
  padding: 28px 32px 28px 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  position: relative;
  margin: 0 !important;
}
.wysiwyg .sc_fs_faq.sc_card h2 .faq-icon, .wysiwyg .sc_fs_faq.sc_card h3 .faq-icon, .wysiwyg .sc_fs_faq.sc_card h4 .faq-icon, .wysiwyg .sc_fs_faq.sc_card h5 .faq-icon, .wysiwyg .sc_fs_faq.sc_card p .faq-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}
.wysiwyg .sc_fs_faq.sc_card h2 .faq-icon svg, .wysiwyg .sc_fs_faq.sc_card h3 .faq-icon svg, .wysiwyg .sc_fs_faq.sc_card h4 .faq-icon svg, .wysiwyg .sc_fs_faq.sc_card h5 .faq-icon svg, .wysiwyg .sc_fs_faq.sc_card p .faq-icon svg {
  transition: transform 0.15s;
  fill: var(--gray-default);
}
.wysiwyg .sc_fs_faq.sc_card h2 .faq-icon.rotate-arrow svg, .wysiwyg .sc_fs_faq.sc_card h3 .faq-icon.rotate-arrow svg, .wysiwyg .sc_fs_faq.sc_card h4 .faq-icon.rotate-arrow svg, .wysiwyg .sc_fs_faq.sc_card h5 .faq-icon.rotate-arrow svg, .wysiwyg .sc_fs_faq.sc_card p .faq-icon.rotate-arrow svg {
  transform: rotate(-180deg);
}
.wysiwyg .sc_fs_faq .sc_fs_faq__content {
  display: none;
}
.wysiwyg .sc_fs_faq .sc_fs_faq__content ul, .wysiwyg .sc_fs_faq .sc_fs_faq__content ol, .wysiwyg .sc_fs_faq .sc_fs_faq__content h2, .wysiwyg .sc_fs_faq .sc_fs_faq__content h3, .wysiwyg .sc_fs_faq .sc_fs_faq__content h4, .wysiwyg .sc_fs_faq .sc_fs_faq__content h5, .wysiwyg .sc_fs_faq .sc_fs_faq__content h6, .wysiwyg .sc_fs_faq .sc_fs_faq__content p {
  margin-bottom: 0 !important;
  margin-top: 16px;
  padding: 0 48px 0 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: var(--gray-default);
  cursor: auto;
}
.wysiwyg .sc_fs_faq .sc_fs_faq__content ul:first-child, .wysiwyg .sc_fs_faq .sc_fs_faq__content ol:first-child, .wysiwyg .sc_fs_faq .sc_fs_faq__content h2:first-child, .wysiwyg .sc_fs_faq .sc_fs_faq__content h3:first-child, .wysiwyg .sc_fs_faq .sc_fs_faq__content h4:first-child, .wysiwyg .sc_fs_faq .sc_fs_faq__content h5:first-child, .wysiwyg .sc_fs_faq .sc_fs_faq__content h6:first-child, .wysiwyg .sc_fs_faq .sc_fs_faq__content p:first-child {
  margin-top: 0;
}
.wysiwyg .sc_fs_faq .sc_fs_faq__content ul:last-child, .wysiwyg .sc_fs_faq .sc_fs_faq__content ol:last-child, .wysiwyg .sc_fs_faq .sc_fs_faq__content h2:last-child, .wysiwyg .sc_fs_faq .sc_fs_faq__content h3:last-child, .wysiwyg .sc_fs_faq .sc_fs_faq__content h4:last-child, .wysiwyg .sc_fs_faq .sc_fs_faq__content h5:last-child, .wysiwyg .sc_fs_faq .sc_fs_faq__content h6:last-child, .wysiwyg .sc_fs_faq .sc_fs_faq__content p:last-child {
  padding-bottom: 32px;
}
.wysiwyg .sc_fs_faq .sc_fs_faq__content ul, .wysiwyg .sc_fs_faq .sc_fs_faq__content ol {
  padding-left: 24px;
}
.wysiwyg .wp-block-quote {
  margin: 32px 0 0;
  padding: 16px 16px 16px 80px;
  border-radius: 28px;
  background-color: var(--background-default);
  border-right: none;
  position: relative;
}
.wysiwyg .wp-block-quote p {
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.25px;
  margin: 0;
}
.wysiwyg .wp-block-quote cite {
  font-weight: 700;
  font-size: 18px;
  line-height: 135%;
  color: var(--elements-main);
  display: inline-block;
  margin-top: 16px;
}
.wysiwyg .wp-block-quote cite a {
  color: var(--elements-main);
}
.wysiwyg .wp-block-quote::before {
  content: "";
  position: absolute;
  width: 48px;
  height: 48px;
  top: 16px;
  left: 16px;
  background-image: url("/wp-content/themes/news/assets/image/icons/block-quote-icon.svg");
  background-size: cover;
}
@media (max-width: 768px) {
  .wysiwyg .wp-block-quote {
    margin: 16px 0 0;
    padding: 16px 16px 16px 56px;
  }
  .wysiwyg .wp-block-quote::before {
    width: 24px;
    height: 24px;
  }
  .wysiwyg .wp-block-quote p {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
  }
}

.direction-site-rtl .wysiwyg ul, .direction-site-rtl .wysiwyg ol {
  padding: 0 32px 0 0;
}
.direction-site-rtl .wysiwyg .wpseopress-faq-question {
  padding: 28px 0 28px 40px;
}
.direction-site-rtl .wysiwyg .wpseopress-faq-icon {
  right: auto;
  left: 0;
}
.direction-site-rtl .wysiwyg .sc_fs_faq.sc_card h2, .direction-site-rtl .wysiwyg .sc_fs_faq.sc_card h3, .direction-site-rtl .wysiwyg .sc_fs_faq.sc_card h4, .direction-site-rtl .wysiwyg .sc_fs_faq.sc_card h5, .direction-site-rtl .wysiwyg .sc_fs_faq.sc_card p {
  padding: 28px 0 28px 32px;
}
.direction-site-rtl .wysiwyg .sc_fs_faq.sc_card h2 .faq-icon, .direction-site-rtl .wysiwyg .sc_fs_faq.sc_card h3 .faq-icon, .direction-site-rtl .wysiwyg .sc_fs_faq.sc_card h4 .faq-icon, .direction-site-rtl .wysiwyg .sc_fs_faq.sc_card h5 .faq-icon, .direction-site-rtl .wysiwyg .sc_fs_faq.sc_card p .faq-icon {
  right: auto;
  left: 0;
}
.direction-site-rtl .wysiwyg .sc_fs_faq.sc_card h2:last-child, .direction-site-rtl .wysiwyg .sc_fs_faq.sc_card h3:last-child, .direction-site-rtl .wysiwyg .sc_fs_faq.sc_card h4:last-child, .direction-site-rtl .wysiwyg .sc_fs_faq.sc_card h5:last-child, .direction-site-rtl .wysiwyg .sc_fs_faq.sc_card p:last-child {
  padding-bottom: 32px;
}
.direction-site-rtl .wysiwyg .sc_fs_faq .sc_fs_faq__content ul, .direction-site-rtl .wysiwyg .sc_fs_faq .sc_fs_faq__content ol, .direction-site-rtl .wysiwyg .sc_fs_faq .sc_fs_faq__content h2, .direction-site-rtl .wysiwyg .sc_fs_faq .sc_fs_faq__content h3, .direction-site-rtl .wysiwyg .sc_fs_faq .sc_fs_faq__content h4, .direction-site-rtl .wysiwyg .sc_fs_faq .sc_fs_faq__content h5, .direction-site-rtl .wysiwyg .sc_fs_faq .sc_fs_faq__content h6, .direction-site-rtl .wysiwyg .sc_fs_faq .sc_fs_faq__content p {
  padding: 0 0 0 48px;
  font-weight: 500;
}
.direction-site-rtl .wysiwyg .sc_fs_faq .sc_fs_faq__content ul, .direction-site-rtl .wysiwyg .sc_fs_faq .sc_fs_faq__content ol {
  padding-left: 0;
  padding-right: 24px;
}
.direction-site-rtl .wysiwyg .wp-block-quote {
  padding: 16px 80px 16px 16px;
}
.direction-site-rtl .wysiwyg .wp-block-quote::before {
  left: auto;
  right: 16px;
}
@media (max-width: 768px) {
  .direction-site-rtl .wysiwyg .wp-block-quote {
    padding: 16px 56px 16px 16px;
  }
}

.article-card {
  position: relative;
}
.article-card:hover .article-card__image img {
  transform: scale(1.1);
}
.article-card:hover .article-card__content-title {
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), inset 0 -10px 0 0 var(--elements-disable);
}

.article-card__image {
  position: relative;
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  border-radius: 28px;
}
.article-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.15s;
  border-radius: 28px;
}

.article-card__info {
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  position: relative;
  z-index: 2;
  margin-bottom: 4px;
}

.article-card__inner {
  display: flex;
  margin-top: 12px;
  align-items: flex-start;
}

.article-card__content {
  flex: 1;
  margin-left: 16px;
}

.article-card__content-wrapper {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.article-card__content-title {
  color: var(--elements-main);
  text-decoration: none;
  transition: box-shadow 0.15s;
}
.article-card__content-title:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.article-card__content-description {
  margin-top: 8px;
  color: var(--gray-default);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.article-card__info-categories {
  margin-left: 2px;
  text-align: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.article-card__info-categories a {
  display: none;
  color: var(--gray-default);
  text-decoration: none;
}
.article-card__info-categories a:hover {
  text-decoration: underline;
}
.article-card__info-categories a:first-child {
  display: inline-block;
}

.article-card__info-date {
  color: var(--gray-default);
  text-align: end;
}

.article-card__info-tags {
  display: flex;
  margin-bottom: 4px;
}

.article-card__info-tag {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--background-default);
  transform: rotate(90deg);
  margin-bottom: -8px;
  box-sizing: border-box;
}
.article-card__info-tag:last-child {
  margin-bottom: 0;
}
.article-card__info-tag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.article-card.small-article {
  display: flex;
}
.article-card.small-article .article-card__image {
  padding-bottom: 0;
  flex-shrink: 0;
  width: 144px;
  height: 144px;
}
.article-card.small-article .article-card__inner {
  padding: 16px 16px 16px 0;
  display: block;
  flex: 1;
  margin-top: 0;
}
.article-card.small-article .article-card__info {
  writing-mode: inherit;
  transform: rotate(0);
  display: flex;
  align-items: center;
  margin-bottom: 0;
  margin-left: 0;
}
.article-card.small-article .article-card__content {
  margin-left: 0;
  margin-top: 16px;
}
.article-card.small-article .article-card__content-description {
  margin-top: 16px;
}
.article-card.small-article .article-card__info-categories {
  color: var(--elements-main);
  margin-right: 4px;
  margin-left: 0;
}
.article-card.small-article .article-card__info-tags {
  margin-bottom: 0;
}
.article-card.small-article .article-card__info-tag {
  transform: rotate(0deg);
  margin-bottom: 0;
  margin-left: -8px;
}
.article-card.small-article .article-card__info-tag:first-child {
  margin-left: 0;
}
.article-card.small-article .article-card__info-tag:last-child {
  margin-right: 4px;
}

@media (pointer: coarse) {
  .article-card:hover .article-card__image img {
    transform: scale(1);
  }
  .article-card:hover .article-card__content-title {
    box-shadow: none;
  }
  .article-card__info-categories a:hover {
    text-decoration: none;
  }
}
@media (max-width: 576px) {
  .article-card.small-article .article-card__image {
    display: none;
  }
  .article-card.small-article .article-card__inner {
    padding: 0;
  }
  .article-card.small-article .article-card__content {
    margin-top: 8px;
  }
  .article-card.small-article .article-card__content-description {
    margin-top: 8px;
  }
}
.direction-site-rtl .article-card__content {
  margin-right: 16px;
  margin-left: 0;
}
.direction-site-rtl .article-card.small-article .article-card__inner {
  padding: 16px 0 16px 16px;
}
.direction-site-rtl .article-card.small-article .article-card__info-categories {
  margin-right: 0;
  margin-left: 4px;
}
.direction-site-rtl .article-card.small-article .article-card__content {
  margin-left: 16px;
  margin-right: 0;
}

html {
  box-sizing: border-box;
  height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

*,
*::before,
*::after {
  font-family: apple-system, BlinkMacSystemFont, "Helvetica Neue", Geneva, "Noto Sans Armenian", "Noto Sans Bengali", "Noto Sans Cherokee", "Noto Sans Devanagari", "Noto Sans Ethiopic", "Noto Sans Georgian", "Noto Sans Hebrew", "Noto Sans Kannada", "Noto Sans Khmer", "Noto Sans Lao", "Noto Sans Osmanya", "Noto Sans Tamil", "Noto Sans Telugu", "Noto Sans Thai", arial, Tahoma, verdana, sans-serif;
  box-sizing: inherit;
}

html.stop-scroll {
  overflow: hidden;
}

a {
  color: var(--elements-link);
}

main {
  padding-top: 72px;
  flex: 1;
}

.hide {
  display: none !important;
}

body {
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: var(--background-tile);
  color: var(--elements-main);
}

html.stop-scroll-without-padding {
  overflow: hidden;
  touch-action: none;
  -ms-touch-action: none;
  width: 100%;
  height: 100%;
  position: relative;
  max-height: 100vh;
}

html.stop-scroll {
  overflow: hidden;
}

footer {
  flex: 0 0 auto;
}

.container {
  max-width: 1176px;
  padding: 0 24px;
  margin: 0 auto;
  width: 100%;
}

.anchor {
  position: relative;
  top: -30px;
}

.cursor-default {
  cursor: default;
}

@media (max-width: 576px) {
  .container {
    padding: 0 16px;
    margin: 0 auto;
  }
  main {
    padding-top: 64px;
  }
}
.breadcrumbs {
  margin-top: 16px;
  padding-top: 56px;
}

.breadcrumbs__separator {
  color: var(--gray-disable);
  margin: 0 8px;
}

.breadcrumbs__link {
  text-decoration: none;
}
.breadcrumbs__link:hover {
  text-decoration: underline;
}

.modal-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 20;
  align-items: center;
  justify-content: center;
  display: none;
}

.modal-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
  display: none;
}

.modal-content {
  position: relative;
  z-index: 2;
  background-color: var(--background-tile);
  transform: scale(0.96);
  opacity: 0;
  transition: transform 0.15s, opacity 0.15s;
  padding: 16px;
  border-radius: 24px;
}
.modal-content.active {
  transform: scale(1);
  opacity: 1;
}
.modal-content.large {
  width: 100%;
  max-width: 574px;
}

.modal-errors__wrapper {
  display: none;
}

.modal-errors {
  padding: 8px 16px;
  color: var(--error-default);
}

.modal-title {
  color: var(--elements-main);
  padding: 8px;
}

.modal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-form {
  margin-top: 8px;
}
.modal-form .input__wrapper {
  margin-top: 16px;
}
.modal-form .input__wrapper:first-child {
  margin-top: 0;
}
.modal-form .registerform__description {
  color: var(--gray-default);
  padding: 8px 16px;
}

.modal__buttons {
  margin-top: 16px;
}
.modal__buttons .button {
  width: 100%;
  margin-top: 8px;
}
.modal__buttons .button:first-child {
  margin-top: 0;
}

.content-inner {
  margin-top: 32px;
}

.page-description {
  margin-top: 2px;
  color: var(--gray-default);
}

.main__inner {
  display: flex;
  flex-wrap: wrap;
  margin-left: -24px;
  margin-top: 32px;
}
.main__inner:first-child {
  margin-top: 0;
}

.main-content, .main-sidebar {
  margin-left: 24px;
}

.main-sidebar {
  width: calc(33.3333333333% - 24px);
}

.main-content {
  width: calc(66.6666666667% - 24px);
}

@media (max-width: 1200px) {
  .main-sidebar, .main-content {
    width: 100%;
  }
  .main-sidebar {
    margin-top: 24px;
  }
}
@media (max-width: 576px) {
  .main__inner {
    margin-left: 0;
    margin-top: 16px;
  }
  .main-content, .main-sidebar {
    margin-left: 0;
  }
}
.articles__inner {
  display: flex;
  flex-wrap: wrap;
  margin-left: -24px;
  margin-top: -24px;
  padding-top: 32px;
}
.articles__inner:first-child {
  padding-top: 0;
}
.articles__inner.search {
  margin-top: 0;
  margin-left: 0;
  padding-top: 0;
}

.articles__item {
  margin-left: 24px;
  margin-top: 24px;
  width: calc(50% - 24px);
}
.articles__item.small-article {
  width: 100%;
  margin-top: 16px;
  padding: 16px 0 0;
  border-top: 1px solid var(--separator-default);
}
.articles__item.small-article:first-child:not(.load-more-item) {
  border-top: none;
  margin-top: 8px;
}
.articles__item.small-article.first {
  margin-top: 32px;
  border-top: none;
}
.articles__item.small-article.search {
  margin-left: 0;
}
.articles__item.small-article.search:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}
.articles__item.apps {
  width: 100%;
  margin-top: 32px;
}

.load-more {
  padding-top: 0;
  margin-top: 0;
}
.load-more .button {
  width: 100%;
  margin-top: 24px;
  margin-left: 24px;
}
.load-more .button__anchor.loading {
  display: none;
}

.load-more__loader {
  display: none;
  justify-content: center;
  margin-top: 24px;
}

.load-more__bottom {
  display: none;
}
.load-more__bottom .articles__item.small-article:first-child {
  border-top: none;
}

.load-more__wrapper .load-more__loader {
  display: none !important;
}

.load-more__bottom-wrapper {
  margin-top: 24px;
}
.load-more__bottom-wrapper .load-more__loader {
  display: none;
  width: calc(66.6666666667% - 24px);
}
.load-more__bottom-wrapper .load-more__button.bottom {
  display: none;
}

@media (max-width: 1200px) {
  .load-more__wrapper {
    display: none;
  }
  .load-more__bottom-wrapper .load-more__loader {
    width: 100%;
  }
  .load-more__bottom-wrapper .load-more__button.bottom {
    display: block;
  }
  .load-more__bottom {
    display: flex;
  }
}
@media (max-width: 576px) {
  .articles__inner {
    padding-top: 16px;
  }
  .articles__item {
    width: 100%;
  }
  .articles__item.small-article.first {
    margin-top: 24px;
  }
}
.banner-apps {
  display: flex;
  padding-left: 40px;
  align-items: center;
  background-color: var(--elements-disable);
  border-radius: 28px;
  width: 100%;
  position: relative;
}

.banner-apps__info {
  flex: 1;
  position: relative;
  z-index: 2;
}

.banner-apps__image {
  display: flex;
  position: relative;
  z-index: 2;
  max-width: 320px;
  align-self: flex-end;
}
.banner-apps__image img {
  width: 100%;
}

.banner-apps__line {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.banner-apps__line img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-apps__line .mobile {
  display: none;
}

.banner-apps__info-description {
  margin-top: 24px;
}
.banner-apps__info-description span {
  padding-left: 28px;
  position: relative;
}
.banner-apps__info-description span img {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid var(--default-white);
}
.banner-apps__info-description.rtl span {
  padding-left: 0;
  padding-right: 28px;
}
.banner-apps__info-description.rtl span img {
  left: auto;
  right: 0;
}

.banner-apps__info-links {
  display: flex;
  align-items: center;
  margin-top: 24px;
}

.banner-apps__info-qrcode {
  width: 98px;
  height: 98px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}
.banner-apps__info-qrcode img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-apps__info-badges {
  margin-left: 24px;
}

.banner-apps__info-badge {
  display: flex;
  margin-top: 16px;
}
.banner-apps__info-badge:first-child {
  margin-top: 0;
}

@media (max-width: 768px) {
  .banner-apps {
    flex-wrap: wrap;
    padding: 0;
  }
  .banner-apps__info {
    flex: none;
    width: 100%;
    padding: 16px 16px 0;
  }
  .banner-apps__image {
    margin: -16px auto 0;
  }
  .banner-apps__info-title {
    text-align: center;
  }
  .banner-apps__info-description {
    text-align: center;
    margin-top: 16px;
  }
  .banner-apps__info-qrcode {
    display: none;
  }
  .banner-apps__info-links {
    justify-content: center;
    margin-top: 16px;
  }
  .banner-apps__info-badges {
    margin-left: 0;
    display: flex;
  }
  .banner-apps__info-badge {
    margin-top: 0;
    margin-left: 8px;
  }
  .banner-apps__info-badge:first-child {
    margin-left: 0;
  }
  .banner-apps__line .mobile {
    display: block;
  }
  .banner-apps__line .desktop {
    display: none;
  }
}
@media (max-width: 576px) {
  .banner-apps {
    margin-left: -16px;
    margin-right: -16px;
    width: calc(100% + 32px);
  }
  .banner-apps__info-title {
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0;
  }
}
.direction-site-rtl .banner-apps {
  padding-left: 0;
  padding-right: 40px;
}
.direction-site-rtl .banner-apps__info-badges {
  margin-left: 0;
  margin-right: 24px;
}
.direction-site-rtl .banner-apps__info-description span {
  padding-right: 28px;
  padding-left: 0;
}
.direction-site-rtl .banner-apps__info-description img {
  left: auto;
  right: 0;
}

@media (max-width: 768px) {
  .direction-site-rtl .banner-apps {
    padding: 0;
  }
  .direction-site-rtl .banner-apps__info-badges {
    margin-right: 0;
  }
  .direction-site-rtl .banner-apps__info-badge {
    margin-right: 8px;
    margin-left: 0;
  }
  .direction-site-rtl .banner-apps__info-badge:first-child {
    margin-right: 0;
  }
}
.main-categories {
  padding: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin: -8px 0 0 -8px;
  list-style-type: none;
}
.main-categories li {
  padding: 4px;
  border-radius: 56px;
  background-color: var(--background-secondary);
  margin-left: 8px;
  margin-top: 8px;
  position: relative;
  transition: transform 0.15s;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.main-categories li::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--button-hover);
  opacity: 0;
  transition: opacity 0.15s;
  border-radius: 56px;
  top: 0;
  left: 0;
}
.main-categories li::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--button-active);
  opacity: 0;
  transition: opacity 0.15s;
  border-radius: 56px;
  top: 0;
  left: 0;
}
.main-categories li:hover::after {
  opacity: 1;
}
.main-categories li:active {
  transform: scale(0.96);
}
.main-categories li:active::after {
  opacity: 0;
}
.main-categories li:active::before {
  opacity: 1;
}
.main-categories li a {
  color: var(--elements-main);
  text-decoration: none;
  display: inline-block;
  padding: 0 12px;
}
.main-categories li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.main-categories__image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: -4px;
}
.main-categories__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 576px) {
  .main-categories__wrapper {
    margin: 0 -16px;
    overflow: auto;
  }
  .main-categories__wrapper::-webkit-scrollbar {
    width: 0;
  }
  .main-categories__box {
    padding: 0 16px;
    width: max-content;
  }
  .main-categories {
    display: flex;
    flex-wrap: nowrap;
    margin: 0 0 0 -8px;
  }
  .main-categories li {
    margin-top: 0;
  }
}
.page-info {
  padding: 16px 0;
}

.page-info__title {
  margin-bottom: 0;
}

.page-info__description {
  color: var(--gray-default);
  margin-top: 8px;
}

.page-info__wrapper {
  display: flex;
  align-items: center;
}

.page-info__image {
  width: 64px;
  height: 64px;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 24px;
  flex-shrink: 0;
  background-color: var(--gray-disable);
}
.page-info__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 576px) {
  .page-info__wrapper {
    display: flex;
    flex-wrap: wrap;
  }
  .page-info__image {
    margin-bottom: 16px;
  }
  .page-info {
    padding: 0;
    width: 100%;
  }
  .page-info__title {
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
  }
  .page-info__description {
    margin-top: 4px;
  }
}
.home-page__header {
  padding: 32px 0;
}

.home-page__description {
  text-align: center;
  margin-top: 8px;
}
.home-page__description span {
  position: relative;
  padding-right: 16px;
}
.home-page__description .home-page__btc {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.home-page__title {
  text-align: center;
}
.home-page__title span {
  color: var(--elements-link);
}

@media (max-width: 576px) {
  .home-page__title {
    font-weight: 700;
    font-size: 26px;
    line-height: 120%;
  }
}
.share-links__inner {
  display: flex;
  align-items: center;
}

.share-links__item {
  margin-left: 8px;
}
.share-links__item:first-child {
  margin-left: 0;
}

.loader__wrap.large {
  width: 40px;
  height: 40px;
  padding: 5px;
}

.loader__wrap.medium {
  width: 32px;
  height: 32px;
  padding: 4px;
}

.loader__wrap.small {
  width: 24px;
  height: 24px;
  padding: 3px;
}

.loader {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
}

.loader-background {
  background: var(--elements-contrast);
  position: absolute;
  box-shadow: var(--shadow-l);
}
.loader-background.large {
  width: 88px;
  height: 88px;
  border-radius: 20px;
}
.loader-background.medium {
  width: 64px;
  height: 64px;
  border-radius: 20px;
}
.loader-background.small {
  width: 40px;
  height: 40px;
  border-radius: 16px;
}

.loader__svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  animation: rotation 1455ms infinite linear;
}

.loader__svg-circle {
  stroke: var(--elements-main);
  stroke-dasharray: 44px;
  stroke-dashoffset: 11px;
  transform-origin: center;
  transform: rotatey(180deg) rotate(90deg);
  animation: spinner 3850ms infinite ease;
  stroke-width: 2;
  stroke-linecap: round;
  fill: none;
}
.loader__svg-circle.default {
  stroke: var(--elements-contrast);
}

.button.alert .loader__svg-circle {
  stroke: #ffffff !important;
}

@keyframes spinner {
  0% {
    stroke-dashoffset: 33px;
    transform: rotatey(0deg) rotate(0deg);
  }
  24.9999% {
    stroke-dashoffset: 11px;
    transform: rotatey(0deg) rotate(0deg);
  }
  25% {
    stroke-dashoffset: 11px;
    transform: rotatey(180deg) rotate(270deg);
  }
  49.9999% {
    stroke-dashoffset: 33px;
    transform: rotatey(180deg) rotate(270deg);
  }
  50% {
    stroke-dashoffset: 33px;
    transform: rotatey(0deg) rotate(180deg);
  }
  74.9999% {
    stroke-dashoffset: 11px;
    transform: rotatey(0deg) rotate(180deg);
  }
  75% {
    stroke-dashoffset: 11px;
    transform: rotatey(180deg) rotate(90deg);
  }
  100% {
    stroke-dashoffset: 33px;
    transform: rotatey(180deg) rotate(90deg);
  }
}
@keyframes rotation {
  100% {
    transform: rotate(360deg);
  }
}
.load-more__button {
  width: 100%;
  text-align: center;
  background-color: var(--background-secondary);
  padding: 8px 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: opacity 0.15s;
  margin-top: 24px;
}
.load-more__button:hover {
  opacity: 0.8;
}

.load-more__button-loading {
  display: none;
}

.direction-site-rtl .page-info__image {
  margin-left: 24px;
  margin-right: 0;
}

.sidebar-articles {
  background-color: var(--blue-default);
  border-radius: 28px;
  padding: 16px;
  margin-top: 24px;
}
.sidebar-articles:first-child {
  margin-top: 0;
}
.sidebar-articles.secondary-article {
  background-color: var(--yellow-default);
}
.sidebar-articles.secondary-article .sidebar-articles-card__num {
  color: var(--yellow-default);
}
.sidebar-articles.white-article {
  background-color: var(--background-default);
}
.sidebar-articles.white-article .sidebar-articles-card__num {
  color: var(--background-default);
}

.sidebar-articles__inner {
  margin-top: 16px;
}

.sidebar-articles__item {
  margin-top: 16px;
  position: relative;
}
.sidebar-articles__item:first-child {
  margin-top: 0;
}
.sidebar-articles__item:first-child .sidebar-articles-card__content {
  padding-top: 0;
  border-top: none;
}
.sidebar-articles__item:first-child .sidebar-articles-card__num {
  margin-top: 0;
}
.sidebar-articles__item:hover .sidebar-articles-card__title {
  text-decoration: underline;
}
.sidebar-articles__item:hover .sidebar-articles__item-image img {
  transform: scale(1.1);
}

.sidebar-articles-card {
  display: flex;
}

.sidebar-articles-card__content {
  flex: 1;
  margin-left: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--separator-default);
}

.sidebar-articles-card__tax {
  margin-top: 16px;
  position: relative;
  z-index: 3;
}
.sidebar-articles-card__tax a {
  color: var(--elements-main);
  text-decoration: none;
}
.sidebar-articles-card__tax a:hover {
  text-decoration: underline;
}

.sidebar-articles-card__num {
  height: 24px;
  width: 24px;
  border-radius: 50%;
  background-color: var(--elements-main);
  color: var(--blue-default);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  flex-shrink: 0;
}

.sidebar-articles-card__title {
  color: var(--elements-main);
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  width: fit-content;
}
.sidebar-articles-card__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

@media (max-width: 576px) {
  .sidebar-articles__title {
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
  }
  .sidebar-articles-card {
    flex-wrap: wrap;
  }
  .sidebar-articles-card__content {
    width: 100%;
    margin-left: 0;
    flex: none;
    margin-top: 8px;
    padding-top: 0;
    border-top: none;
  }
  .sidebar-articles-card__num {
    margin-top: 0;
  }
}
.sidebar-ad {
  display: flex;
  justify-content: center;
  padding: 16px;
}

.sidebar-widget__token-list {
  margin-top: 24px;
}
.sidebar-widget__token-list:first-child {
  margin-top: 0;
}

@media (max-width: 576px) {
  .sidebar-widget__token-list .cropty-app-114-tokens-list__title {
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
  }
}
.sidebar {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sidebar__item {
  height: 100%;
  margin-top: 24px;
}
.sidebar__item:first-child {
  margin-top: 0;
}

.sidebar__box {
  position: sticky;
  top: 80px;
}

.sidebar-articles__item-image {
  margin-bottom: 16px;
}
.sidebar-articles__item-image img {
  transition: transform 0.15s;
}

.direction-site-rtl .sidebar-articles-card__content {
  margin-right: 16px;
  margin-left: 0;
}

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