*,
::before,
::after {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

* {
  margin: 0px;
  padding: 0px;
  border: 0px;
  outline: 0px;
}

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

input {
  font: inherit;
}

p,
h1,
h2,
h4,
span {
  overflow-wrap: break-word;
}

a {
  text-decoration: none;
}

body {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 18px;
  color: rgb(10, 10, 10);
  line-height: 30px;
  font-weight: 400;
  font-style: normal;
}

h1,
h2,
h4 {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 600;
}

p {
  margin-bottom: 16px;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0px auto;
}

img {
  object-fit: contain;
}

@font-face {
  font-family: rte-icons;
  src: url("/fonts/rte-icons.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 20px;
}
html,
body {
  height: 100%;
}

.layout {
  display: flex;
  flex-direction: column;
  margin: 0px auto;
  min-height: 100vh;
  background-color: white;
  overflow-x: hidden;
}

.layout__header {
  position: sticky;
  top: 0px;
  flex: 0 0 auto;
  z-index: 10;
}

.layout__main {
  flex: 1 0 auto;
}

.layout__footer {
  position: relative;
  flex: 0 0 auto;
}

.header {
  min-height: 77px;
  margin: 0px auto;
}

.header--main {
  background-color: white;
}

.header--main .header__top {
  max-width: 1140px;
  padding: 0px 0px 0px 10px;
  margin: 0px auto;
  box-shadow: rgba(0, 0, 0, 0.04) 0px 6px 11px 0px;
}

.header--main .header__top,
.header--main .header__top .nav-header .nav-header__list .nav-header__item > a,
.header--main .header__top .header__weather > a > .weather__text {
  color: rgb(36, 34, 31);
}

.header--main .header__top .header__weather > a > .weather__text {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.header--main .header__top .nav-header .nav-header__list .nav-header__item > a {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
}

.header--main .header__top {
  height: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header--main .header__top .nav-header {
  display: none;
}

.header--main .header__top .weather {
  display: none;
}

.header--main .header__top .nav-header .nav-header__list,
.header--main .header__top .weather > a {
  display: none;
  align-items: center;
  gap: 10px;
}

.header--main .header__top .header__burger {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header--main .header__top .header__burger .burger-title {
  font-size: 12px;
  font-weight: 600;
}

.header--main .header__top .header__burger .burger-icon {
  display: block;
  width: 24px;
  height: 20px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
}

.header--main .header__top .header__burger .burger-icon > span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background: rgb(36, 34, 31);
  border-radius: 9px;
  opacity: 1;
  left: 0px;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.header--main .header__top .header__burger .burger-icon > span:nth-child(1) {
  top: 0px;
}

.header--main .header__top .header__burger .burger-icon > span:nth-child(2) {
  top: 8px;
}

.header--main .header__top .header__burger .burger-icon > span:nth-child(3) {
  top: 8px;
}

.header--main .header__top .header__burger .burger-icon > span:nth-child(4) {
  top: 17px;
}

.header--main .header__bottom {
  background-color: rgb(0, 90, 180);
}

.header--main .header__bottom .header-nav-bottom__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.header--main
  .header__bottom
  .header-nav-bottom__list
  .header-nav-bottom__item {
  padding: 0px 7px;
}

.header--main .header__bottom {
  padding: 5px 0px;
}

.header--main .header__bottom .header-nav-bottom {
  max-width: 1140px;
  margin: 0px auto;
  padding: 0px 10px;
}

.header--main
  .header__bottom
  .header-nav-bottom
  .header-nav-bottom__list
  .header-nav-bottom__item:nth-child(1),
.header--main
  .header__bottom
  .header-nav-bottom
  .header-nav-bottom__list
  .header-nav-bottom__item:nth-child(2) {
  font-weight: 600;
}

.header--main
  .header__bottom
  .header-nav-bottom
  .header-nav-bottom__list
  .header-nav-bottom__item {
  font-size: 12px;
  line-height: 1.9;
}

.header--main
  .header__bottom
  .header-nav-bottom
  .header-nav-bottom__list
  .header-nav-bottom__item
  > a {
  position: relative;
  color: white;
}

.header--main
  .header__bottom
  .header-nav-bottom
  .header-nav-bottom__list
  .header-nav-bottom__item:nth-child(1)
  > a::after,
.header--main
  .header__bottom
  .header-nav-bottom
  .header-nav-bottom__list
  .header-nav-bottom__item:nth-child(2)
  > a::after {
  top: 0px;
  left: 0px;
  content: "▸";
  color: rgb(255, 255, 255);
  z-index: 2;
  position: relative;
  padding-left: 0.5rem;
  display: inline-block;
}

.main {
  max-width: 1140px;
  margin: 0px auto;
  padding: 0px 10px;
}

.page-section--intro {
  padding: 10px 0px 20px;
}

h1 {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.875rem;
  margin-bottom: 10px;
}

article p {
  font-size: 16px;
  line-height: 24px;
}

article h2 {
  font-size: 22px;
  line-height: 24px;
  margin-bottom: 16px;
}

article p a,
h1 a {
  text-decoration: underline;
  color: rgb(0, 90, 180);
}

.footer {
  margin: 0px auto;
}

.footer--desktop .footer__row .footer__col--top .footer__inner,
.footer--desktop .footer__row .footer__col--main .footer__inner,
.footer--desktop .footer__row .footer__col--bottom .footer__inner {
  max-width: 1140px;
  margin: 0px auto;
  padding: 0px 20px;
}

.footer--desktop .footer__row .footer__col--top {
  padding: 30px 0px;
  border-top: 1px solid rgb(219, 217, 212);
  border-bottom: 1px solid rgb(219, 217, 212);
}

.footer--desktop .footer__row .footer__col--bottom {
  padding-top: 20px;
  background-color: rgb(238, 236, 236);
}

.footer--desktop .footer-action {
}

.footer--desktop .footer-action .footer-action__title {
  color: rgb(0, 0, 0);
  font-size: 30px;
  margin-bottom: 10px;
}

.footer--desktop .footer-action .footer-action__text {
  color: rgb(0, 0, 0);
  font-size: 14px;
  margin-bottom: 20px;
}

.footer--desktop .footer-action .footer-action__btn {
  display: flex;
  max-width: fit-content;
  align-items: center;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  text-align: left;
  background: rgb(0, 90, 180);
  border-width: medium;
  border-style: none;
  border-color: currentcolor;
  border-image: none;
  border-radius: 5px;
  padding: 1rem;
  color: rgb(255, 255, 255);
  margin: 0px;
  cursor: pointer;
  width: auto;
}

.footer--desktop .footer-action .footer-action__btn .footer-action__icon {
  display: inline-block;
  background: url("/img/white-icon-right-arrow.svg") no-repeat;
  width: 17px;
  height: 18px;
  margin-left: 14px;
}

.footer--desktop
  .footer__row
  .footer__col--main
  .footer-nav--desktop
  .footer-nav__col
  .footer-nav__list
  .footer-nav__item
  > a,
.footer--desktop
  .footer__row
  .footer__col--main
  .footer-nav--mobile
  .footer-nav__col
  .footer-nav__list
  .footer-nav__item
  > a {
  font-size: 0.75rem;
  line-height: 0.9375rem;
  color: rgb(36, 34, 31);
}

.footer--desktop
  .footer__row
  .footer__col--main
  .footer-nav--desktop
  .footer-nav__col:last-child
  .footer-nav__list
  .footer-nav__item
  > a:hover {
  text-decoration: none;
}

.footer--desktop
  .footer__row
  .footer__col--main
  .footer-nav--desktop
  .footer-nav__row
  .footer-nav__col
  .footer-nav__title,
.footer--desktop
  .footer__row
  .footer__col--main
  .footer-nav--mobile
  .footer-nav__row
  .footer-nav__col
  .footer-nav__title {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 600;
  color: rgb(41, 39, 36);
  font-size: 0.75rem;
  line-height: 0.9375rem;
  text-transform: uppercase;
}

.footer--desktop
  .footer__row
  .footer__col--main
  .footer-nav--mobile
  .footer-nav__row
  .footer-nav__col:last-child {
  flex-direction: column;
  align-items: flex-start;
}

.footer--desktop
  .footer__row
  .footer__col--main
  .footer-nav--desktop
  .footer-nav__row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 30px 0px;
}

.footer--desktop
  .footer__row
  .footer__col--main
  .footer-nav--desktop
  .footer-nav__row
  .footer-nav__col {
  width: 33.333%;
}

.footer--desktop
  .footer__row
  .footer__col--main
  .footer-nav--desktop
  .footer-nav__row
  .footer-nav__col:last-child {
  width: 100%;
}

.footer--desktop
  .footer__row
  .footer__col--main
  .footer-nav--desktop
  .footer-nav__row
  .footer-nav__col:last-child
  .footer-nav__list,
.footer--desktop
  .footer__row
  .footer__col--main
  .footer-nav--mobile
  .footer-nav__row
  .footer-nav__col:last-child
  .footer-nav__list {
  display: flex;
  align-items: center;
}

.footer--desktop
  .footer__row
  .footer__col--main
  .footer-nav--desktop
  .footer-nav__row
  .footer-nav__col:last-child
  .footer-nav__list {
  gap: 10px;
}

.footer--desktop
  .footer__row
  .footer__col--main
  .footer-nav--mobile
  .footer-nav__row
  .footer-nav__col:last-child
  .footer-nav__list {
  gap: 10px;
}

.footer--desktop
  .footer__row
  .footer__col--main
  .footer-nav--desktop
  .footer-nav__row,
.footer--desktop
  .footer__row
  .footer__col--main
  .footer-nav--mobile
  .footer-nav__row {
  margin: 0px -10px;
}

.footer--desktop
  .footer__row
  .footer__col--main
  .footer-nav--desktop
  .footer-nav__row
  .footer-nav__col,
.footer--desktop
  .footer__row
  .footer__col--main
  .footer-nav--mobile
  .footer-nav__row
  .footer-nav__col {
  padding: 10px;
}

.footer--desktop
  .footer__col--main
  .footer-nav--mobile
  .footer-nav__col:nth-child(9)
  .footer-nav__list
  .footer-nav__item:nth-child(1)
  > a
  > span,
.footer--desktop
  .footer__col--main
  .footer-nav--mobile
  .footer-nav__col:nth-child(9)
  .footer-nav__list
  .footer-nav__item:nth-child(2)
  > a
  > span,
.footer--desktop
  .footer__col--main
  .footer-nav--mobile
  .footer-nav__col:nth-child(9)
  .footer-nav__list
  .footer-nav__item:nth-child(3)
  > a
  > span,
.footer--desktop
  .footer__col--main
  .footer-nav--mobile
  .footer-nav__col:nth-child(9)
  .footer-nav__list
  .footer-nav__item:nth-child(4)
  > a
  > span,
.footer--desktop
  .footer__col--main
  .footer-nav--mobile
  .footer-nav__col:nth-child(9)
  .footer-nav__list
  .footer-nav__item:nth-child(5)
  > a
  > span {
  -webkit-font-smoothing: antialiased;
  font-family: rte-icons, sans-serif !important;
}

.footer--desktop
  .footer__col--main
  .footer-nav--mobile
  .footer-nav__col:nth-child(9)
  .footer-nav__list
  .footer-nav__item:nth-child(1)
  > a
  > span::before {
  content: "";
  font-size: 30px;
  line-height: 30px;
  background-color: rgb(111, 111, 111);
  color: white;
  border-radius: 50%;
}

.footer--desktop
  .footer__col--main
  .footer-nav--mobile
  .footer-nav__col:nth-child(9)
  .footer-nav__list
  .footer-nav__item:nth-child(2)
  > a
  > span::before {
  content: "";
  font-size: 30px;
  line-height: 30px;
  background-color: rgb(111, 111, 111);
  color: white;
  border-radius: 50%;
}

.footer--desktop
  .footer__col--main
  .footer-nav--mobile
  .footer-nav__col:nth-child(9)
  .footer-nav__list
  .footer-nav__item:nth-child(3)
  > a
  > span::before {
  content: "";
  font-size: 30px;
  line-height: 30px;
  background-color: rgb(111, 111, 111);
  color: white;
  border-radius: 50%;
}

.footer--desktop
  .footer__col--main
  .footer-nav--mobile
  .footer-nav__col:nth-child(9)
  .footer-nav__list
  .footer-nav__item:nth-child(4)
  > a
  > span::before {
  content: "";
  font-size: 30px;
  line-height: 30px;
  background-color: rgb(111, 111, 111);
  color: white;
  border-radius: 50%;
}

.footer--desktop
  .footer__col--main
  .footer-nav--mobile
  .footer-nav__col:nth-child(9)
  .footer-nav__list
  .footer-nav__item:nth-child(5)
  > a
  > span::before {
  content: "";
  font-size: 30px;
  line-height: 30px;
  background-color: rgb(111, 111, 111);
  color: white;
  border-radius: 50%;
}

.footer--desktop
  .footer__col--main
  .footer-nav--desktop
  .footer-nav__col:nth-child(4)
  .footer-nav__list
  .footer-nav__item:nth-child(4),
.footer--desktop
  .footer__col--main
  .footer-nav--desktop
  .footer-nav__col:first-child
  .footer-nav__list
  .footer-nav__item:nth-child(6) {
  margin-bottom: 16px;
}

.footer--desktop
  .footer__row
  .footer__col--main
  .footer-nav--mobile
  .footer-nav__row
  .footer-nav__col
  .footer-nav__item {
  padding: 0px !important;
}

.footer--desktop .footer__col--bottom .footer-privacy {
  padding: 20px 0px;
}

.footer--desktop .footer__col--bottom .footer-privacy > a:hover {
  text-decoration: none;
}

.footer--desktop .footer__col--bottom {
  position: relative;
}

.footer--desktop .footer__col--bottom .footer-privacy {
  display: flex;
  flex-direction: column;
}

.footer--desktop .footer__col--bottom .footer-privacy .footer-privacy__text {
  font-size: 14px;
  line-height: 22px;
}

.footer--desktop
  .footer__col--bottom
  .footer-privacy
  .footer-privacy__decor
  > a {
  position: absolute;
  bottom: 0px;
  right: 0px;
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 600;
  color: rgb(255, 255, 255);
  background: rgb(111, 111, 111);
  padding: 6px 9px 10px;
  margin: 0px 10px;
  border-radius: 5px 5px 0px 0px;
  cursor: pointer;
}

.footer--desktop
  .footer__col--bottom
  .footer-privacy
  .footer-privacy__decor
  > a:hover {
  text-decoration: none;
}

.footer--desktop
  .footer__row
  .footer__col--main
  .footer-nav--mobile
  .footer-nav__row
  .footer-nav__col {
  display: flex;
  flex-direction: column;
}

.footer--desktop
  .footer__row
  .footer__col--main
  .footer-nav--mobile
  .footer-nav__row
  .footer-nav__col
  .footer-nav__item {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 600;
  color: rgb(41, 39, 36);
  font-size: 0.75rem;
  line-height: 0.9375rem;
  padding: 8px 10px;
  margin: 0px;
  text-transform: uppercase;
}

.footer--desktop
  .footer__row
  .footer__col--main
  .footer-nav--mobile
  .footer-nav__row
  .footer-nav__col {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.footer--desktop
  .footer__row
  .footer__col--main
  .footer-nav--mobile
  .footer-nav__row
  .footer-nav__col
  .arrow-item {
  float: right;
  width: 0px;
  height: 0px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid rgb(41, 39, 36);
  margin-top: 3px;
}

.footer--desktop .footer__row .footer__col--main .footer-nav--desktop {
  display: none;
}

@media screen and (min-width: 768px) {
  .header--main .header__top .header__burger {
    order: 1;
  }
  .header--main .header__top .nav-header {
    display: flex;
  }
  .header--main .header__top .weather {
    display: flex;
  }
  .header--main .header__top .nav-header .nav-header__list,
  .header--main .header__top .weather > a {
    display: flex;
  }
  .header--main
    .header__top
    .nav-header
    .nav-header__list
    .nav-header__item:nth-child(6),
  .header--main
    .header__top
    .nav-header
    .nav-header__list
    .nav-header__item:nth-child(7),
  .header--main
    .header__top
    .nav-header
    .nav-header__list
    .nav-header__item:nth-child(8),
  .header--main
    .header__top
    .nav-header
    .nav-header__list
    .nav-header__item:nth-child(9) {
    display: none;
  }
  .footer--desktop
    .footer__row
    .footer__col--main
    .footer-nav--desktop
    .footer-nav__row
    .footer-nav__col {
    width: 15%;
  }
  .footer--desktop .footer__row .footer__col--main .footer-nav--mobile {
    display: none;
  }
  .footer--desktop .footer__row .footer__col--main .footer-nav--desktop {
    display: block;
  }
  .footer-nav__item a,
  .footer-nav__title,
  .nav-header__item,
  .header-nav-bottom__item {
    font-size: 14px !important;
  }
  .main {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (min-width: 1028px) {
  .header--main
    .header__top
    .nav-header
    .nav-header__list
    .nav-header__item:nth-child(6),
  .header--main
    .header__top
    .nav-header
    .nav-header__list
    .nav-header__item:nth-child(7),
  .header--main
    .header__top
    .nav-header
    .nav-header__list
    .nav-header__item:nth-child(8),
  .header--main
    .header__top
    .nav-header
    .nav-header__list
    .nav-header__item:nth-child(9) {
    display: block;
  }
  .page-section--intro,
  article {
    max-width: 740px;
  }
  h1 {
    font-size: 36px;
    line-height: 36px;
    margin-bottom: 30px;
  }
}

:root {
  --mainColor: #121534;
  --text: #fff;
  --input-color: #000;
  --valid-input-color: #000;
}

#reg-form {
  border: 2px solid var(--mainColor);
  border-radius: 16px;
  font-family: Arial;
  box-shadow: rgba(0, 0, 0, 0.19) 3px 3px 6px;
  max-width: 560px !important;
  margin: 20px auto !important;
}

.post {
  padding: 5px 0px;
}

@media (max-width: 450px) {
  .container {
    padding-inline: 10px;
  }
  .post {
    padding-block: 5px 10px;
  }
}

.avatar {
  margin-right: 8px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

img {
  padding: 0px !important;
}

.bottom-button {
  position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  background-color: rgb(61, 94, 255);
  font-size: 16px;
  padding: 10px;
  border-width: 2px medium medium;
  border-style: solid none none;
  border-color: rgb(44, 71, 208) currentcolor currentcolor;
  border-image: initial;
  cursor: pointer;
  text-align: center;
  font-weight: bolder;
  box-sizing: border-box;
  z-index: 100;
  color: white !important;
}

.avatar .user,
.avatar img {
  display: block;
  border-radius: 3px;
}

.avatar {
  float: left;
}

.avatar img {
  width: 48px;
  height: 48px;
}

.avatar .user {
  position: relative;
  background: rgb(219, 223, 228);
  padding: 0px;
}

.post .avatar {
  margin-right: 12px;
}

.post-list {
  list-style-type: none;
  margin: 0px;
}

.post-list .post::after,
.post-list .post::before {
  display: table;
  content: "";
  line-height: 0;
}

.children .post::after,
.children .post::before,
.post-content::after,
.post-content::before {
  display: table;
  line-height: 0;
  content: "";
}

.children .post {
  margin-left: 60px;
}

.children .post .avatar .user img {
  width: 36px;
  height: 36px;
}

.children .post .indicator {
  height: 36px;
}

.post-content {
  position: relative;
  margin-bottom: 24px;
  transition: 0.2s ease-in-out;
}

.post-content .indicator {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 5px;
  height: 48px;
  border-radius: 3px;
}

.comment-footer__menu > li a:focus {
  outline: auto;
}

.post-content .post-message-container {
  position: relative;
  overflow: hidden;
  zoom: 1;
  width: 100%;
}

.post-content .post-message {
  line-height: 21px;
}

.post-content .post-message::after,
.post-content .post-message::before {
  display: table;
  content: "";
  line-height: 0;
}

.post-content .post-message p {
  line-height: 21px;
  margin: 0px 0px 15px;
}

.post-content .post-message p:last-child {
  margin: 0px;
}

.button-link {
  padding: 10px;
  background-color: rgb(0, 90, 180);
  display: block;
  margin: 0px auto 1rem;
  max-width: 80%;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  color: white !important;
}

.avatar {
  margin-right: 8px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

img {
  padding: 0px !important;
}

link {
  text-decoration: underline !important;
}

.button-link {
  background-color: rgb(0, 0, 153);
  display: block;
  max-width: 100%;
  padding: 15px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  margin: 1rem auto;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.15) 1px 4px 1px 1px;
  animation: 3s ease-in-out 2s infinite normal both running heartbeat;
  color: white !important;
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
    transform-origin: center center;
    animation-timing-function: ease-out;
  }
  10% {
    transform: scale(0.91);
    animation-timing-function: ease-in;
  }
  17% {
    transform: scale(0.98);
    animation-timing-function: ease-out;
  }
  33% {
    transform: scale(0.87);
    animation-timing-function: ease-in;
  }
  45% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
}

.button-link:hover {
  color: rgb(255, 255, 255);
  background-color: rgb(68, 68, 68);
}

.comment__footer {
  background: white;
  padding: 0px 5px;
}

.post-message div p {
  font-size: 15px !important;
}

.comments-area p::first-letter {
  font-family: inherit !important;
  color: inherit !important;
  font-style: inherit !important;
  font-size: inherit !important;
  line-height: inherit !important;
  font-weight: inherit !important;
  padding: inherit !important;
  float: none !important;
}

ul {
  list-style: none;
}

* {
  box-sizing: border-box;
}

.children .post::after,
.comment-footer__menu::after,
.nav::after,
.post-content .post-message::after,
.post-content footer,
.post-content::after,
.post-list .post::after {
  clear: both;
}

.post-content .post-body {
  overflow: hidden;
}

.post-content:focus,
a:focus {
  outline: 0px;
}

h4,
strong {
  font-weight: 700;
}

a:active,
a:hover {
  text-decoration: none;
}

em {
  font-style: italic;
}

h4 {
  font-size: 18px;
  line-height: 1.2;
}

.btn:not(:disabled):hover {
  background: rgba(29, 47, 58, 0.7);
  color: rgb(255, 255, 255);
}

.btn:not(:disabled).active,
.btn:not(:disabled):active {
  transition: none;
  background: rgb(245, 107, 13);
}

[class*=" icon-"]::before {
  font-family: icons;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

.icon-arrow-2::before {
  content: "△";
}

.icon-arrow::before {
  content: "▽";
}

.avatar .user,
.avatar img {
  display: block;
  border-radius: 3px;
}

.avatar {
  float: left;
}

.avatar img {
  width: 48px;
  height: 48px;
}

.avatar .user {
  position: relative;
  background: rgb(219, 223, 228);
  padding: 0px;
}

.post .avatar {
  margin-right: 12px;
}

.bullet {
  padding: 0px;
  color: rgb(194, 198, 204);
  line-height: 1.4;
}

.nav {
  position: relative;
  margin: 0px 0px -6px;
  padding: 0px;
}

.nav::after,
.nav::before {
  display: table;
  content: "";
  line-height: 0;
}

.nav-primary {
  margin: 0px 0px 24px;
  border-bottom: 2px solid rgb(231, 233, 238);
}

.nav-secondary {
  margin: -12px 0px 6px;
}

.nav-tab > a {
  color: rgb(101, 108, 122);
  display: block;
  margin: 0px;
  padding: 0px;
  font-weight: 700;
  line-height: 1;
  position: relative;
  transition: 0.2s ease-in-out;
}

.tab-conversation.active > a::after {
  content: " ";
  display: block;
  height: 2px;
  background: rgb(245, 107, 13);
  position: absolute;
  bottom: -2px;
  left: 0px;
  right: 0px;
}

.nav-tab > a:hover {
  color: rgb(42, 46, 46);
}

.nav-tab--primary > a {
  font-size: 15px;
  padding: 12px 0px;
  margin-right: 15px;
}

.tab-conversation {
  float: left;
}

.tab-conversation > a {
  text-transform: capitalize;
}

.tab-conversation.active > a {
  color: rgb(42, 46, 46) !important;
}

@media (max-width: 480px) {
  .comment-count {
    display: none;
  }
}

.comment__footer .vote-down,
.comment__footer a,
.comment__header a {
  color: rgb(101, 108, 122);
  font-weight: 500;
}

.comment__footer .vote-down:hover,
.comment__footer a:hover,
.comment__header a:hover {
  color: rgb(42, 46, 46);
}

.comment__header .author {
  color: rgb(101, 108, 122);
  font-weight: 700;
}

.vote-down,
.vote-up {
  display: inline-block;
}

.time-ago {
  font-weight: 500;
  font-size: 12px;
  color: rgb(104, 122, 134);
}

.vote-down,
.vote-up {
  position: relative;
  padding: 0px 3px;
  line-height: 0.85;
  height: 11px;
  min-height: 14px;
  overflow: hidden;
}

.vote-down .control,
.vote-up .control {
  font-size: 12px;
  font-weight: 700;
  opacity: 0.7;
}

.vote-down {
  padding-right: 0px;
  padding-left: 6px;
  border-left: 2px solid rgb(231, 233, 238);
}

.vote-up {
  padding-left: 0px;
}

.vote-up::after {
  content: "";
  display: block;
  position: absolute;
  inset: -10px -3px -10px -5px;
}

.vote-up .count {
  color: gray;
  position: relative;
  top: -3px;
  font-size: 13px;
}

.vote-up.count-0 {
  margin-left: -3px;
}

.vote-up.count-0 .count {
  display: none;
}

.comment__header {
  line-height: 1;
  font-size: 13px;
  padding-right: 46px;
  margin-bottom: 3px;
}

.comment__header .author a {
  font-weight: 700;
}

.comment__footer {
  color: rgb(101, 108, 122);
  margin: 4px 0px 0px;
}

.comment__footer .bullet {
  line-height: 1.45;
}

.comment-footer__menu {
  margin: 0px;
  padding: 0px;
}

.comment-footer__menu::after,
.comment-footer__menu::before {
  display: table;
  content: "";
  line-height: 0;
}

.comment-footer__menu > li {
  float: left;
  list-style-type: none;
  padding: 0px;
  font-size: 13px;
  line-height: 15px;
  margin-right: 7px;
}

.comment-footer__menu > li.comment__share {
  margin-right: 0px;
}

.comment-footer__menu > li.realtime {
  float: right;
}

.reply a {
  padding: 2px 0px;
  border-radius: 4px;
}

.comment__share {
  position: relative;
  margin-right: 0px;
}

.post-meta {
  display: inline-block;
}

.sso__button.no-image:not(:disabled):hover {
  background: rgba(29, 47, 58, 0.7);
  color: rgb(255, 255, 255);
}

.sso__button.no-image:not(:disabled).active,
.sso__button.no-image:not(:disabled):active {
  transition: none;
  background: rgb(245, 107, 13);
}

.button-link {
  color: rgb(245, 107, 13);
  font-size: inherit;
}

.post-list li {
  list-style: none;
}

.formTimer * {
  box-sizing: border-box;
  font-family: inherit;
}

.formTimer h4 {
  color: rgb(255, 255, 255);
  text-align: center;
  margin-bottom: 1rem;
}

.formTimer {
  max-width: 600px;
  background-color: rgb(10, 10, 10);
  border-radius: 25px;
  padding: 36px 22px;
  margin: 0px auto;
}

.investor-container * {
  box-sizing: border-box;
}

.investor-container {
  display: flex;
  flex-direction: column;
}

.investor-row {
  display: flex;
  justify-content: space-between;
  height: 100%;
}

.investor-card {
  width: 48%;
  margin: 10px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 0px;
}

.investor-img {
  width: 100%;
  display: flex;
  justify-content: center;
}

.investor-card img {
  width: 250px;
  height: 200px;
  object-fit: cover;
  margin-bottom: 8px;
}

.investor-role {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0px;
}

.investor-info {
  color: rgb(107, 107, 107);
  margin: 0px 0px 5px;
  font-size: 14px;
  font-weight: 500;
}

.investor-sum {
  font-size: 24px;
  font-weight: 700;
  margin: 5px 0px;
  color: rgb(33, 117, 255);
}

.investor-quote {
  width: 100%;
  background: rgb(244, 247, 255);
}

.investor-text {
  color: rgb(107, 107, 107);
  margin-top: 0px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
}

@media screen and (max-width: 480px) {
  .investor-row {
    flex-direction: column;
  }
  .investor-card {
    width: 100%;
    margin: 0px;
  }
}

#topList,
#topList * {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  list-style: none;
  font-family: inherit;
}

@keyframes progress-bar-stripes {
  0% {
    background-position: 40px 0px;
  }
  100% {
    background-position: 0px 0px;
  }
}

@-webkit-keyframes progress-bar-stripes {
  0% {
    background-position: 40px 0px;
  }
  100% {
    background-position: 0px 0px;
  }
}

#topList {
  width: 100%;
}

#topList {
  width: 100%;
}

#topList li {
  display: flex;
  justify-content: space-between;
}

.topList__person {
  width: 40%;
  display: grid;
  grid-template-columns: 25px min-content 1fr;
  align-items: center;
}

.topList__person--name {
  line-height: 1;
}

.topList__person--ava img {
  height: 30px;
  border-radius: 50%;
  margin-left: 5px !important;
  margin-right: 40px !important;
}

.topList__progress {
  display: flex;
  align-items: center;
  width: 50%;
}

.progressBar {
  display: block;
  height: 25px;
  background-color: green;
  background-image: linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.1) 25%,
    transparent 25%,
    transparent 50%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.1) 75%,
    transparent 75%,
    transparent
  );
  background-size: 40px 40px;
  border-radius: 3px;
  animation: 2s linear 0s infinite normal none running progress-bar-stripes;
  transition: 800ms ease-out;
  width: 40%;
  margin: 0px 20px !important;
}

@media screen and (max-width: 800px) {
  #topList li {
    flex-direction: column;
    margin-bottom: 12px !important;
  }
  .topList__progress {
    margin-top: 2px !important;
    margin-left: 19px !important;
  }
  .topList__person,
  .topList__progress {
    width: 100%;
  }
}

#calculator,
#calculator * {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: inherit;
}

#calculator {
  width: 100%;
}

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

#slider {
  position: relative;
  appearance: none;
  width: 100%;
  height: 20px;
  background: rgb(92, 185, 92);
  border-radius: 10px;
  outline: none;
  margin-top: 8px;
  z-index: 3;
}

#slider::-webkit-slider-thumb {
  appearance: none;
  width: 25px;
  height: 25px;
  background: rgb(255, 255, 255);
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid rgb(52, 152, 219);
  z-index: 4;
}

.sliderValues span {
  position: relative;
}

.sliderValues span::after {
  content: "";
  display: block;
  position: relative;
  width: 1px;
  height: 6px;
  background: rgb(0, 0, 0);
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  overflow: hidden;
}

.currentValue__container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -6px;
  margin-bottom: 14px !important;
}

#currentValue {
  text-align: center;
  display: inline-block;
  border-width: medium 2px 2px;
  border-style: none solid solid;
  border-color: currentcolor rgb(92, 185, 92) rgb(92, 185, 92);
  border-image: initial;
  width: 20%;
  padding: 6px 0px;
  margin: 0px auto;
}

#calculator p {
  text-align: center;
  margin-bottom: 4px;
}
