@import "https://fonts.googleapis.com/css?family=Titillium+Web:400,900&display=swap";
@import "https://fonts.googleapis.com/css?family=Rajdhani:400,500,600,700&display=swap";
*, :before, :after {
  box-sizing: border-box;
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
}

:before, :after {
  display: block;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
}

select {
  appearance: none;
}

h1, h2, h3, h4, h5, h6, p, ol, ul, figure, .table, .form-row {
  margin: 0;
}

@keyframes notyf-fadeinup {
  0% {
    opacity: 0;
    transform: translateY(25%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes notyf-fadeinleft {
  0% {
    opacity: 0;
    transform: translateX(25%);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes notyf-fadeoutright {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(25%);
  }
}

@keyframes notyf-fadeoutdown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(25%);
  }
}

@keyframes ripple {
  0% {
    transform: scale(0)translateY(-45%)translateX(13%);
  }

  100% {
    transform: scale(1)translateY(-45%)translateX(13%);
  }
}

.notyf {
  color: #fff;
  z-index: 99999;
  pointer-events: none;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.notyf__icon--error, .notyf__icon--success {
  background: #fff;
  border-radius: 50%;
  width: 21px;
  height: 21px;
  margin: 0 auto;
  display: block;
  position: relative;
}

.notyf__icon--error:after, .notyf__icon--error:before {
  content: "";
  background: currentColor;
  border-radius: 3px;
  width: 3px;
  height: 12px;
  display: block;
  position: absolute;
  top: 5px;
  left: 9px;
}

.notyf__icon--error:after {
  transform: rotate(-45deg);
}

.notyf__icon--error:before {
  transform: rotate(45deg);
}

.notyf__icon--success:after, .notyf__icon--success:before {
  content: "";
  background: currentColor;
  border-radius: 10px;
  width: 3px;
  display: block;
  position: absolute;
}

.notyf__icon--success:after {
  height: 6px;
  top: 9px;
  left: 6px;
  transform: rotate(-45deg);
}

.notyf__icon--success:before {
  height: 11px;
  top: 5px;
  left: 10px;
  transform: rotate(45deg);
}

.notyf__toast {
  pointer-events: auto;
  box-sizing: border-box;
  border-radius: 10px;
  flex-shrink: 0;
  max-width: 300px;
  padding: 0 15px;
  animation: .3s ease-in forwards notyf-fadeinup;
  display: block;
  position: relative;
  overflow: hidden;
  transform: translateY(25%);
  box-shadow: 0 3px 7px #00000040;
}

.notyf__toast--disappear {
  animation: .3s .25s forwards notyf-fadeoutdown;
  transform: translateY(0);
}

.notyf__toast--disappear .notyf__message, .notyf__toast--disappear .notyf__icon {
  opacity: 1;
  animation: .3s forwards notyf-fadeoutdown;
  transform: translateY(0);
}

.notyf__toast--disappear .notyf__dismiss {
  opacity: 1;
  animation: .3s forwards notyf-fadeoutright;
  transform: translateX(0);
}

.notyf__toast--disappear .notyf__message {
  animation-delay: 50ms;
}

.notyf__toast--upper {
  margin-bottom: 20px;
}

.notyf__toast--lower {
  margin-top: 20px;
}

.notyf__toast--dismissible .notyf__wrapper {
  padding-right: 30px;
}

.notyf__ripple {
  transform-origin: 100% 100%;
  z-index: 5;
  border-radius: 50%;
  width: 400px;
  height: 400px;
  animation: .4s ease-out forwards ripple;
  position: absolute;
  top: 0;
  right: 0;
  transform: scale(0)translateY(-51%)translateX(13%);
}

.notyf__wrapper {
  z-index: 10;
  border-radius: 10px;
  align-items: center;
  padding-top: 17px;
  padding-bottom: 17px;
  padding-right: 15px;
  display: flex;
  position: relative;
}

.notyf__icon {
  text-align: center;
  opacity: 0;
  width: 22px;
  margin-right: 13px;
  font-size: 1.3em;
  animation: .3s .3s forwards notyf-fadeinup;
}

.notyf__dismiss {
  opacity: 0;
  width: 26px;
  height: 100%;
  margin-right: -15px;
  animation: .3s .35s forwards notyf-fadeinleft;
  position: absolute;
  top: 0;
  right: 0;
}

.notyf__dismiss-btn {
  cursor: pointer;
  opacity: .35;
  background-color: #00000040;
  border: none;
  outline: none;
  width: 100%;
  height: 100%;
  transition: opacity .2s, background-color .2s;
}

.notyf__dismiss-btn:after, .notyf__dismiss-btn:before {
  content: "";
  background: #fff;
  border-radius: 10px;
  width: 2px;
  height: 12px;
  position: absolute;
  top: calc(50% - 5px);
  left: calc(50% - 1px);
}

.notyf__dismiss-btn:after {
  transform: rotate(-45deg);
}

.notyf__dismiss-btn:before {
  transform: rotate(45deg);
}

.notyf__dismiss-btn:hover {
  opacity: .7;
  background-color: #00000026;
}

.notyf__dismiss-btn:active {
  opacity: .8;
}

.notyf__message {
  vertical-align: middle;
  opacity: 0;
  line-height: 1.5em;
  animation: .3s .25s forwards notyf-fadeinup;
  position: relative;
}

@media only screen and (width <= 480px) {
  .notyf {
    padding: 0;
  }

  .notyf__ripple {
    width: 600px;
    height: 600px;
    animation-duration: .5s;
  }

  .notyf__toast {
    max-width: initial;
    border-radius: 3px;
    width: 100%;
    box-shadow: 0 -2px 7px #00000021;
  }

  .notyf__dismiss {
    width: 56px;
  }
}

label, input[type="text"], input[type="password"], textarea, select, button {
  font-family: Rajdhani, sans-serif;
}

label {
  color: #fff;
  margin: 0;
  line-height: 1em;
  display: block;
}

input[type="text"], input[type="password"], textarea, select, button {
  border-radius: 12px;
  width: 100%;
  font-size: 1rem;
  font-weight: 700;
}

input[type="text"], input[type="password"], textarea, select {
  color: #fff;
  background-color: #1d2333;
  border: 1px solid #3f485f;
  transition: border-color .2s ease-in-out;
}

input[type="text"]:focus, input[type="password"]:focus, textarea:focus, select:focus {
  border-color: #7750f8;
}

input[type="text"], input[type="password"] {
  height: 54px;
  padding: 0 18px;
}

input[type="text"]::placeholder, input[type="password"]::placeholder {
  color: #9aa4bf;
  font-size: .875rem;
  font-weight: 500;
}

textarea {
  resize: none;
  padding: 14px 18px;
}

textarea::placeholder {
  color: #9aa4bf;
  font-weight: 600;
}

.form {
  width: 100%;
}

.form + .button {
  margin-top: 40px;
}

.form-row {
  width: 100%;
}

.form-row + .form-row {
  margin-top: 28px;
}

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

.form-row.space-between .form-item {
  width: auto;
}

.form-row.split {
  flex-wrap: nowrap;
  display: flex;
}

.form-row.split .form-item {
  margin-right: 16px;
}

.form-row.split .form-item:last-child {
  margin-right: 0;
}

.form-row.split .form-item > * {
  margin-bottom: 28px;
}

.form-row.split .form-item > :last-child {
  margin-bottom: 0;
}

.form-item {
  width: 100%;
}

.form-item.auto-width {
  width: auto;
}

.form-item.centered {
  align-items: center;
  display: flex;
}

.form-item.split {
  display: flex;
}

.form-item.split.medium > * {
  margin-right: 16px;
}

.form-item.split.medium > :last-child {
  margin-right: 0;
}

.form-item.split > * {
  width: 100%;
  margin-right: 12px;
}

.form-item.split > :last-child {
  margin-right: 0;
}

.form-input-decorated {
  position: relative;
}

.form-input-decorated input[type="text"] {
  padding-right: 60px;
}

.form-input-decorated .form-input-icon {
  fill: #adafca;
  opacity: .6;
  pointer-events: none;
  position: absolute;
  top: 14px;
  right: 20px;
}

.form-input {
  position: relative;
}

.form-input.dark input[type="text"], .form-input.dark input[type="password"], .form-input.dark textarea {
  color: #fff;
  background-color: #5538b5;
  border: none;
}

.form-input.dark input[type="text"]::placeholder, .form-input.dark input[type="password"]::placeholder, .form-input.dark textarea::placeholder {
  color: #8b88ff;
  opacity: .6;
}

.form-input.social-input .social-link {
  pointer-events: none;
  position: absolute;
  top: 4px;
  left: 4px;
}

.form-input.social-input input {
  padding-left: 64px;
}

.form-input.social-input label {
  left: 64px;
}

.form-input.social-input.active label {
  left: 58px;
}

.form-input.currency-decorated:before {
  content: "$";
  color: #4ff461;
  pointer-events: none;
  font-size: .875rem;
  font-weight: 700;
  position: absolute;
  top: 12px;
  left: 22px;
}

.form-input.currency-decorated input {
  padding-left: 32px;
}

.form-input.small label, .form-input.small input, .form-input.small textarea {
  font-size: .875rem;
}

.form-input.small label {
  top: 16px;
}

.form-input.small input {
  height: 48px;
}

.form-input.small textarea {
  height: 100px;
}

.form-input.small button {
  width: 64px;
  position: absolute;
  top: 0;
  right: 0;
}

.form-input.full, .form-input.full textarea {
  height: 100%;
}

.form-input.mid-textarea textarea {
  height: 124px;
}

.form-input.medium-textarea textarea {
  height: 160px;
}

.form-input.active label {
  background-color: #1d2333;
  padding: 0 6px;
  font-size: .75rem;
  top: -6px;
  left: 12px;
}

.form-input label {
  color: #9aa4bf;
  pointer-events: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all .3s ease-in-out;
  position: absolute;
  top: 20px;
  left: 20px;
}

.form-title {
  font-size: .875rem;
  font-weight: 700;
}

.form-textarea {
  position: relative;
}

.form-textarea textarea {
  padding: 26px 28px 0;
  font-size: .875rem;
}

.form-textarea .form-textarea-limit-text {
  opacity: .6;
  text-align: right;
  padding: 0 28px;
  font-size: .75rem;
  font-weight: 500;
}

.form-select {
  width: 100%;
  height: 48px;
  position: relative;
}

.form-select.v2 {
  width: auto;
  height: auto;
}

.form-select.v2 select {
  border: none;
  width: auto;
  height: auto;
  padding-right: 20px;
  font-size: .75rem;
}

.form-select.v2 .form-select-icon {
  top: 10px;
  right: 0;
}

.form-select select {
  cursor: pointer;
  width: 100%;
  height: 100%;
  padding-left: 20px;
  font-size: .875rem;
}

.form-select .form-select-icon {
  fill: #fff;
  pointer-events: none;
  position: absolute;
  top: 20px;
  right: 20px;
  transform: rotate(90deg);
}

.form-select label {
  color: #9aa4bf;
  pointer-events: none;
  background-color: #1d2333;
  padding: 0 6px;
  font-size: .75rem;
  font-weight: 600;
  position: absolute;
  top: -8px;
  left: 12px;
}

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

.checkbox-line .checkbox-line-text {
  color: #4ff461;
  font-size: .875rem;
  font-weight: 500;
}

.checkbox-wrap {
  position: relative;
}

.checkbox-wrap .checkbox-info {
  margin-top: 12px;
}

.checkbox-wrap .checkbox-info .checkbox-info-text {
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.42857em;
}

.checkbox-wrap.checkbox-rating .rating-list {
  pointer-events: none;
  position: absolute;
  top: 6px;
  left: 34px;
}

.checkbox-wrap.checkbox-rating label {
  padding-left: 104px;
}

.checkbox-wrap input[type="checkbox"], .checkbox-wrap input[type="radio"] {
  display: none;
}

.checkbox-wrap input[type="checkbox"]:checked + .checkbox-box, .checkbox-wrap input[type="radio"]:checked + .checkbox-box {
  background-color: #40d04f;
  border-color: #40d04f;
}

.checkbox-wrap input[type="checkbox"]:checked + .checkbox-box.round, .checkbox-wrap input[type="radio"]:checked + .checkbox-box.round {
  background-color: #1d2333;
  border: 6px solid #40d04f;
}

.checkbox-wrap input[type="checkbox"]:checked + .checkbox-box .icon-cross, .checkbox-wrap input[type="radio"]:checked + .checkbox-box .icon-cross {
  fill: #1d2333;
}

.checkbox-wrap label {
  cursor: pointer;
  padding-left: 34px;
  font-size: .875rem;
  font-weight: 700;
  line-height: 22px;
}

.checkbox-wrap .checkbox-box {
  pointer-events: none;
  background-color: #1d2333;
  border: 1px solid #3f485f;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  transition: border-color .2s ease-in-out, background-color .2s ease-in-out;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.checkbox-wrap .checkbox-box.round {
  border-radius: 50%;
}

.checkbox-wrap .checkbox-box .icon-cross {
  fill: #0000;
  transition: fill .2s ease-in-out;
}

.checkbox-wrap.small label {
  padding-left: 24px;
  font-size: .75rem;
  line-height: 16px;
}

.checkbox-wrap.small .checkbox-box {
  border-radius: 4px;
  width: 16px;
  height: 16px;
}

.checkbox-wrap.small .checkbox-box.round {
  border-radius: 50%;
}

.checkbox-wrap.small .checkbox-box .icon-cross {
  width: 8px;
  height: 8px;
}

.form-link {
  color: #adafca;
  font-size: .875rem;
  font-weight: 700;
  line-height: 22px;
}

.form-text {
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.71429em;
}

.interactive-input {
  width: 100%;
  height: 52px;
  position: relative;
}

.interactive-input.dark input {
  color: #fff;
  background-color: #5538b5;
  border: none;
}

.interactive-input.dark input::placeholder {
  color: #8b88ff;
  opacity: .6;
}

.interactive-input.dark .interactive-input-icon-wrap .interactive-input-icon {
  fill: #9b7dff;
}

.interactive-input.dark .interactive-input-action:hover .interactive-input-action-icon {
  fill: #fff;
}

.interactive-input.dark .interactive-input-action .interactive-input-action-icon {
  fill: #9b7dff;
}

.interactive-input.small {
  height: 48px;
}

.interactive-input.active .interactive-input-action {
  display: flex;
}

.interactive-input.active .interactive-input-icon {
  display: none;
}

.interactive-input input {
  height: 100%;
  padding-right: 60px;
}

.interactive-input .interactive-input-icon-wrap {
  pointer-events: none;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
}

.interactive-input .interactive-input-icon-wrap.actionable {
  pointer-events: all;
}

.interactive-input .interactive-input-icon-wrap.actionable .interactive-input-icon {
  cursor: pointer;
}

.interactive-input .interactive-input-icon-wrap.actionable .interactive-input-icon:hover {
  fill: #fff;
  opacity: 1;
}

.interactive-input .interactive-input-icon-wrap .interactive-input-icon {
  fill: #616a82;
  opacity: .6;
  transition: fill .2s ease-in-out, opacity .2s ease-in-out;
}

.interactive-input .interactive-input-action {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 100%;
  display: none;
  position: absolute;
  top: 0;
  right: 0;
}

.interactive-input .interactive-input-action:hover .interactive-input-action-icon {
  fill: #fff;
  opacity: 1;
}

.interactive-input .interactive-input-action .interactive-input-action-icon {
  fill: #616a82;
  opacity: .6;
  pointer-events: none;
  transition: fill .2s ease-in, opacity .2s ease-in;
}

.form-add-items .form-add-items-title {
  color: #adafca;
  font-size: .75rem;
  font-weight: 600;
}

.form-add-items .form-add-items-info {
  align-items: center;
  margin-top: 12px;
  display: flex;
}

.form-add-items .form-add-items-info .user-avatar-list {
  margin-left: 14px;
}

.form-add-items .form-add-items-button {
  cursor: pointer;
  background-color: #4ff461;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
}

.form-add-items .form-add-items-button .form-add-items-button-icon {
  pointer-events: none;
}

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

.form-rating-wrap label {
  margin-right: 16px;
  font-size: .875rem;
  font-weight: 700;
}

.form-counter-wrap {
  position: relative;
}

.form-counter-wrap label {
  color: #9aa4bf;
  z-index: 2;
  pointer-events: none;
  background-color: #1d2333;
  padding: 0 6px;
  font-size: .75rem;
  font-weight: 600;
  position: absolute;
  top: -6px;
  left: 12px;
}

.form-counter {
  border: 1px solid #3f485f;
  border-radius: 12px;
  align-items: center;
  width: 96px;
  height: 48px;
  padding: 0 40px 0 18px;
  display: flex;
  position: relative;
}

.form-counter.with-currency {
  padding-left: 30px;
}

.form-counter.with-currency:before {
  content: "$";
  color: #4ff461;
  font-family: Rajdhani, sans-serif;
  font-size: .875rem;
  font-weight: 700;
  position: absolute;
  top: 13px;
  left: 20px;
}

.form-counter.full {
  width: 100%;
}

.form-counter .form-counter-value {
  font-size: .875rem;
  font-weight: 700;
}

.form-counter .form-counter-control {
  cursor: pointer;
  justify-content: center;
  width: 12px;
  height: 12px;
  display: flex;
  position: absolute;
  right: 20px;
}

.form-counter .form-counter-control .form-counter-icon {
  fill: #fff;
}

.form-counter .form-counter-control.form-counter-control-increase {
  top: 10px;
}

.form-counter .form-counter-control.form-counter-control-increase .form-counter-icon {
  transform: rotate(-90deg);
}

.form-counter .form-counter-control.form-counter-control-decrease {
  align-items: flex-end;
  bottom: 10px;
}

.form-counter .form-counter-control.form-counter-control-decrease .form-counter-icon {
  transform: rotate(90deg);
}

.form-switch {
  cursor: pointer;
  background-color: #2f3749;
  border: 1px solid #3f485f;
  border-radius: 200px;
  align-items: center;
  width: 52px;
  height: 28px;
  transition: background-color .3s ease-in-out;
  display: flex;
  position: relative;
}

.form-switch.active {
  background-color: #40d04f;
}

.form-switch.active .form-switch-button {
  left: 26px;
}

.form-switch .form-switch-button {
  background-color: #fff;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  transition: left .3s ease-in-out;
  position: absolute;
  top: 2px;
  left: 2px;
}

.form-switch .form-switch-button:before, .form-switch .form-switch-button:after {
  content: "";
  opacity: .2;
  background-color: #1d2333;
  width: 2px;
  height: 8px;
  position: absolute;
  top: 7px;
}

.form-switch .form-switch-button:before {
  left: 8px;
}

.form-switch .form-switch-button:after {
  right: 8px;
}

@media screen and (width <= 960px) {
  .form-row.split {
    display: block;
  }

  .form-row.split .form-item {
    margin-bottom: 28px;
  }

  .form-row.split .form-item:last-child {
    margin-bottom: 0;
  }

  .form-row.split .form-item textarea {
    height: 124px;
  }

  .form-item.split.join-on-mobile {
    display: block;
  }

  .form-item.split.join-on-mobile.medium > *, .form-item.split.join-on-mobile > * {
    margin-right: 0;
  }

  .form-item.split.join-on-mobile > :last-child {
    margin-top: 28px;
  }
}

.icon-facebook, .icon-twitter, .icon-twitch, .icon-youtube, .icon-instagram, .icon-patreon, .icon-discord, .icon-google, .icon-behance, .icon-deviantart, .icon-artstation, .icon-dribbble, .icon-cross {
  fill: #fff;
  width: 12px;
  height: 12px;
}

.icon-logo-vikinger {
  fill: #fff;
  width: 42px;
  height: 60px;
}

.icon-logo-vikinger.small {
  width: 28px;
  height: 40px;
}

.icon-dots {
  fill: #fff;
  width: 10px;
  height: 2px;
}

.icon-public, .icon-private {
  fill: #3e3f5e;
  width: 20px;
  height: 20px;
}

.icon-comment, .icon-thumbs-up, .icon-friend, .icon-info, .icon-group, .icon-marketplace, .icon-add-friend, .icon-remove-friend, .icon-delete, .icon-send-message, .icon-settings, .icon-cross-thin, .icon-newsfeed, .icon-overview, .icon-members, .icon-badges, .icon-quests, .icon-streams, .icon-events, .icon-events-monthly, .icon-events-weekly, .icon-events-daily, .icon-pin, .icon-ticket, .icon-forums, .icon-profile, .icon-timeline, .icon-photos, .icon-videos, .icon-blog-posts, .icon-forum, .icon-store, .icon-share, .icon-pinned, .icon-status, .icon-big-grid-view, .icon-small-grid-view, .icon-list-grid-view, .icon-blog-post, .icon-poll, .icon-camera, .icon-gif, .icon-tags, .icon-trophy, .icon-return, .icon-clock, .icon-earnings, .icon-wallet, .icon-item, .icon-revenue {
  fill: #616a82;
  width: 20px;
  height: 20px;
}

.icon-grid, .icon-magnifying-glass, .icon-messages, .icon-shopping-bag, .icon-notification, .icon-join-group, .icon-leave-group, .icon-plus, .icon-login {
  fill: #fff;
  width: 20px;
  height: 20px;
}

.icon-back-arrow {
  width: 14px;
  height: 10px;
}

.icon-small-arrow {
  fill: #616a82;
  width: 6px;
  height: 8px;
}

.icon-big-arrow {
  fill: #3e3f5e;
  width: 8px;
  height: 12px;
}

.icon-more-dots {
  fill: #fff;
  width: 22px;
  height: 6px;
}

.icon-star {
  fill: #eaeaf5;
  width: 9px;
  height: 8px;
}

.icon-star.medium {
  width: 13px;
  height: 12px;
}

.icon-play {
  fill: #fff;
  width: 12px;
  height: 14px;
}

.icon-plus-small, .icon-minus-small {
  fill: #3e3f5e;
  width: 8px;
  height: 8px;
}

.icon-quote {
  fill: #3e3f5e;
  width: 32px;
  height: 22px;
}

.icon-check {
  width: 12px;
  height: 9px;
}

.demo-icon {
  fill: #fff;
}

.content-grid {
  max-width: 1184px;
  padding: 112px 0 100px;
}

.content-grid.full {
  max-width: 100%;
  padding: 80px 80px 0;
}

.content-grid.medium {
  max-width: 784px;
  padding: 0 0 100px;
}

.content-grid .section-navigation, .content-grid .section-navigation + .grid, .content-grid .table {
  margin-top: 16px;
}

.content-grid .table + .loader-bars {
  margin-top: 52px;
}

.content-grid .section-filters-bar {
  margin-top: 30px;
}

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

.content-grid .grid.medium-space {
  margin-top: 64px;
}

.content-grid .grid.small-space {
  margin-top: 16px;
}

.content-grid .grid .grid {
  margin-top: 0;
}

.content-grid .photos-masonry, .content-grid .section-slider {
  margin-top: 32px;
}

.content-grid .section, .content-grid .section-header {
  margin-top: 60px;
}

.content-grid .section-banner + .section-filters-bar {
  margin-top: 64px;
}

.content-grid .calendar-widget {
  margin-top: 16px;
}

.content-grid .forum-content .quick-post {
  margin-top: 60px;
}

.content-grid .forum-sidebar {
  padding-top: 40px;
}

.content-grid .account-hub-content .section-header {
  margin-bottom: 28px;
}

.content-grid .account-hub-content .section-header:first-child {
  margin-top: 0;
}

.content-grid .notification-box-list + .loader-bars {
  margin-top: 60px;
}

.grid {
  grid-gap: 16px;
  grid-template-columns: 100%;
  align-items: start;
  display: grid;
}

.grid.centered {
  justify-content: center;
}

.grid.stretched {
  align-items: stretch;
}

.grid.top-space {
  margin-top: 64px;
}

.grid.grid-3-6-3 {
  grid-template-columns: 23.9865% 49.3243% 23.9865%;
  grid-template-areas: "sidebar1 content sidebar2";
}

.grid.grid-3-6-3 > .grid-column:first-child {
  grid-area: sidebar1;
}

.grid.grid-3-6-3 > .grid-column:nth-child(2) {
  grid-area: content;
}

.grid.grid-3-6-3 > .grid-column:nth-child(3) {
  grid-area: sidebar2;
}

.grid.grid-6-3_9 {
  grid-template-columns: 66.0634% 32.1267%;
  grid-template-areas: "content sidebar";
}

.grid.grid-6-3_9 > .grid-column:first-child {
  grid-area: content;
}

.grid.grid-6-3_9 > .grid-column:nth-child(2) {
  grid-area: sidebar;
}

.grid.grid-3-6_9 {
  grid-template-columns: 32.1267% 66.0634%;
  grid-template-areas: "sidebar content";
}

.grid.grid-3-6_9 > .grid-column:first-child {
  grid-area: sidebar;
}

.grid.grid-3-6_9 > .grid-column:nth-child(2) {
  grid-area: content;
}

.grid.grid-3-9 {
  grid-template-columns: 23.9865% 74.6622%;
  grid-template-areas: "sidebar content";
}

.grid.grid-3-9 > .grid-column:first-child {
  grid-area: sidebar;
}

.grid.grid-3-9 > .grid-column:nth-child(2) {
  grid-area: content;
}

.grid.grid-9-3 {
  grid-template-columns: 74.6622% 23.9865%;
  grid-template-areas: "content sidebar";
}

.grid.grid-9-3 > .grid-column:first-child {
  grid-area: content;
}

.grid.grid-9-3 > .grid-column:nth-child(2) {
  grid-area: sidebar;
}

.grid.grid-8-4 {
  grid-template-columns: 66.2162% 32.4324%;
  grid-template-areas: "content sidebar";
}

.grid.grid-8-4 > .grid-column:first-child {
  grid-area: content;
}

.grid.grid-8-4 > .grid-column:nth-child(2) {
  grid-area: sidebar;
}

.grid.grid-6-3 {
  grid-template-columns: 49.3243% 23.9865%;
  grid-template-areas: "content sidebar";
}

.grid.grid-6-3 > .grid-column:first-child {
  grid-area: content;
}

.grid.grid-6-3 > .grid-column:nth-child(2) {
  grid-area: sidebar;
}

.grid.grid-half {
  grid-template-columns: 1fr 1fr;
}

.grid.grid-4-4-4, .grid.grid-4-4 {
  grid-template-columns: repeat(auto-fit, 384px);
}

.grid.grid-3-3-3-3, .grid.grid-3-3-3 {
  grid-template-columns: repeat(auto-fit, 284px);
}

.grid.grid-2-2-2-2-2-2 {
  grid-template-columns: repeat(auto-fit, 184px);
}

.grid.grid-layout-1 {
  grid-template-columns: repeat(4, 23.9865%);
  grid-template-areas: "sidebar header header header"
                       "sidebar content content contentsidebar";
}

.grid.grid-layout-1 .grid-sidebar {
  grid-area: sidebar;
}

.grid.grid-layout-1 .grid-header {
  grid-area: header;
}

.grid.grid-layout-1 .grid-content {
  grid-area: content;
}

.grid.grid-layout-1 .grid-content-sidebar {
  grid-area: contentsidebar;
}

.grid .grid-column {
  grid-gap: 16px;
  grid-template-columns: 100%;
  min-width: 0;
  display: grid;
}

.grid .grid-column .loader-bars {
  margin: 48px auto 0;
}

.grid .grid-column .simple-tab-items, .grid .grid-column #post-list .widget-box {
  margin: 16px 0;
}

.photos-masonry {
  grid-gap: 16px;
  grid-template-rows: repeat(3, 284px);
  grid-template-areas: "a b c c"
                       "a d e f"
                       "g h i j";
  display: grid;
}

.photos-masonry .photo-preview:first-child {
  grid-area: a;
}

.photos-masonry .photo-preview:nth-child(2) {
  grid-area: b;
}

.photos-masonry .photo-preview:nth-child(3) {
  grid-area: c;
}

.photos-masonry .photo-preview:nth-child(4) {
  grid-area: d;
}

.photos-masonry .photo-preview:nth-child(5) {
  grid-area: e;
}

.photos-masonry .photo-preview:nth-child(6) {
  grid-area: f;
}

.photos-masonry .photo-preview:nth-child(7) {
  grid-area: g;
}

.photos-masonry .photo-preview:nth-child(8) {
  grid-area: h;
}

.photos-masonry .photo-preview:nth-child(9) {
  grid-area: i;
}

.photos-masonry .photo-preview:nth-child(10) {
  grid-area: j;
}

@media screen and (width <= 1500px) {
  .content-grid {
    max-width: 1142px;
  }
}

@media screen and (width <= 1366px) {
  .content-grid {
    max-width: 100%;
    margin: 0 auto;
    padding: 112px 112px 200px;
  }

  .content-grid.full {
    padding: 80px 80px 0;
  }

  .content-grid.medium {
    max-width: 100%;
    padding: 0 112px 200px;
  }
}

@media screen and (width <= 1365px) {
  .content-grid .account-hub-content .section-header:first-child {
    margin-top: 60px;
  }

  .grid.grid-3-6-3 {
    grid-template-columns: 32.4324% 66.2162%;
    grid-template-areas: "sidebar1 content"
                         "sidebar2 content";
  }

  .grid.grid-3-9, .grid.grid-9-3, .grid.grid-8-4 {
    grid-template-columns: 100%;
    grid-template-areas: "content"
                         "sidebar";
  }

  .grid.grid-3-9 .forum-sidebar, .grid.grid-9-3 .forum-sidebar, .grid.grid-8-4 .forum-sidebar {
    display: none;
  }

  .grid.grid-layout-1 {
    grid-template-areas: "header header header header"
                         "sidebar sidebar contentsidebar contentsidebar"
                         "content content content content";
  }

  .grid.grid-half.change-on-desktop {
    grid-template-columns: 100%;
  }

  .grid.centered-on-mobile {
    justify-content: center;
  }

  .photos-masonry {
    grid-template-areas: unset;
    grid-template-rows: none;
    grid-template-columns: repeat(auto-fit, 184px);
    justify-content: center;
  }

  .photos-masonry .photo-preview {
    height: 184px;
  }

  .photos-masonry .photo-preview:first-child, .photos-masonry .photo-preview:nth-child(2), .photos-masonry .photo-preview:nth-child(3), .photos-masonry .photo-preview:nth-child(4), .photos-masonry .photo-preview:nth-child(5), .photos-masonry .photo-preview:nth-child(6), .photos-masonry .photo-preview:nth-child(7), .photos-masonry .photo-preview:nth-child(8), .photos-masonry .photo-preview:nth-child(9), .photos-masonry .photo-preview:nth-child(10) {
    grid-area: auto;
  }
}

@media screen and (width <= 1070px) {
  .grid.grid-3-6-3 {
    grid-template-columns: 100%;
    grid-template-areas: "sidebar1"
                         "sidebar2"
                         "content";
  }

  .grid.grid-3-6-3.mobile-prefer-content {
    grid-template-areas: "content"
                         "sidebar1"
                         "sidebar2";
  }

  .grid.grid-3-6-3.mobile-prefer-content .grid-column:first-child, .grid.grid-3-6-3.mobile-prefer-content .grid-column:nth-child(3) {
    display: none;
  }

  .grid.grid-3-9, .grid.grid-6-3_9, .grid.grid-3-6_9 {
    grid-template-columns: 100%;
    grid-template-areas: "content"
                         "sidebar";
  }
}

@media screen and (width <= 960px) {
  .grid.grid-half {
    grid-template-columns: 100%;
  }

  .grid.grid-layout-1 {
    grid-template-columns: 100%;
    grid-template-areas: "header"
                         "contentsidebar"
                         "sidebar"
                         "content";
  }
}

@media screen and (width <= 680px) {
  .content-grid {
    width: 95%;
    padding: 92px 0 200px;
  }

  .content-grid.full {
    width: 100%;
    padding: 60px 0 0;
  }

  .content-grid.medium {
    width: 95%;
    padding: 0 0 200px;
  }

  .chat-widget, .navigation-widget-desktop {
    display: none;
  }

  .chat-widget-wrap .chat-widget {
    display: block;
  }
}

@media screen and (width <= 460px) {
  .grid.grid-4-4-4, .grid.grid-4-4, .grid.grid-3-3-3-3 {
    grid-template-columns: 100%;
  }
}

.hiddenScreen {
  display: none !important;
}

.activeScreen {
  display: block !important;
}

::selection {
  color: #fff;
  background-color: #40d04f;
}

body {
  background-color: #161b28;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, a, p {
  color: #fff;
  font-family: Rajdhani, sans-serif;
  line-height: 1em;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

p a {
  color: #4ff461;
  font-weight: 600;
}

p .reaction {
  width: 20px;
  height: 20px;
  margin: 0 2px;
  position: relative;
  top: -2px;
}

p .reaction:first-child {
  margin-left: 0;
}

a:hover {
  color: #4ff461;
  text-decoration: none;
}

figure > img {
  width: 100%;
  height: 100%;
}

@media screen and (width <= 480px) {
  .hide-text-mobile {
    display: none;
  }
}

.button {
  color: #fff;
  text-align: center;
  cursor: pointer;
  background-color: #293249;
  border-radius: 10px;
  height: 48px;
  font-size: .875rem;
  font-weight: 700;
  line-height: 48px;
  transition: background-color .2s ease-in-out, color .2s ease-in-out, border-color .2s ease-in-out, box-shadow .2s ease-in-out;
  display: inline-block;
  box-shadow: 3px 5px 10px #0003;
}

.button.full {
  width: 100%;
}

.button.medium {
  height: 54px;
  line-height: 54px;
}

.button.small {
  height: 40px;
  font-size: .75rem;
  line-height: 40px;
}

.button:hover {
  color: #fff;
  background-color: #323e5b;
}

.button.void {
  color: #9aa4bf;
  box-shadow: none;
  background-color: #0000;
}

.button.void .button-icon {
  fill: #616a82;
}

.button.void:hover {
  color: #fff;
  background-color: #40d04f;
}

.button.void:hover .button-icon {
  fill: #fff;
}

.button.void.void-primary:hover {
  background-color: #40d04f;
}

.button.void.void-secondary:hover {
  background-color: #7750f8;
}

.button.white-solid {
  color: #3e3f5e;
  background-color: #fff;
}

.button.white {
  color: #9aa4bf;
  box-shadow: none;
  background-color: #0000;
  border: 1px solid #3f485f;
}

.button.white .button-icon {
  fill: #616a82;
}

.button.white:hover {
  color: #fff;
  background-color: #40d04f;
  border-color: #40d04f;
}

.button.white.white-tertiary:hover {
  background-color: #fd4350;
  border-color: #fd4350;
  box-shadow: 4px 7px 12px #fd435033;
}

.button.primary {
  background-color: #40d04f;
  box-shadow: 4px 7px 12px #40d04f33;
}

.button.primary:hover {
  background-color: #4ae95b;
}

.button.secondary {
  background-color: #7750f8;
  box-shadow: 4px 7px 12px #7750f833;
}

.button.secondary:hover {
  background-color: #9668ff;
}

.button.tertiary {
  background-color: #fd4350;
  box-shadow: 4px 7px 12px #fd435033;
}

.button.tertiary:hover {
  background-color: #ff7882;
}

.button.twitch {
  background-color: #7b5dfa;
  box-shadow: 4px 7px 12px #7b5dfa33;
}

.button.twitch:hover {
  background-color: #6a4fdf;
}

.button.twitter {
  background-color: #1abcff;
  box-shadow: 3px 5px 10px #1abcff33;
}

.button.twitter:hover {
  background-color: #0aabed;
}

.button.add-field-button {
  width: 128px;
  margin-top: 40px;
}

.button.padded {
  padding: 0 24px;
}

.button .button-icon {
  fill: #fff;
  transition: fill .2s ease-in-out;
}

.button .button-icon.spaced {
  margin-right: 6px;
}

.button.with-only-icon {
  justify-content: center;
  align-items: center;
  display: flex;
}

.lined-text {
  text-align: center;
  font-size: .875rem;
  font-weight: 700;
  position: relative;
}

.lined-text:before, .lined-text:after {
  content: "";
  background-color: #2f3749;
  width: 70px;
  height: 1px;
  position: absolute;
  top: 7px;
}

.lined-text:before {
  left: 0;
}

.lined-text:after {
  right: 0;
}

.social-links {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.social-links.align-left {
  justify-content: flex-start;
}

.social-links.small .social-link {
  margin-right: 8px;
}

.social-links.small .social-link:last-child {
  margin-right: 0;
}

.social-links.vertical {
  flex-direction: column;
}

.social-links.vertical .social-link {
  margin: 0 0 16px;
}

.social-links.vertical .social-link:last-child {
  margin: 0;
}

.social-links.multiline {
  margin-top: -12px;
}

.social-links.multiline .social-link {
  margin: 12px 12px 0 0;
}

.social-links.multiline .social-link:last-child {
  margin-right: 0;
}

.social-links .social-link {
  margin-right: 12px;
}

.social-links .social-link:last-child {
  margin-right: 0;
}

.social-link {
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: transform .2s ease-in-out;
  display: flex;
}

.social-link.small {
  border-radius: 8px;
  width: 32px;
  height: 32px;
}

.social-link.small .social-link-icon {
  width: 10px;
  height: 10px;
}

.social-link.no-hover:hover {
  transform: translate(0);
}

.social-link:hover {
  transform: translate(0, -4px);
}

.social-link.facebook {
  background-color: #3763d2;
}

.social-link.twitter {
  background-color: #1abcff;
}

.social-link.twitch {
  background-color: #7b5dfa;
}

.social-link.youtube {
  background-color: #fd434f;
}

.social-link.instagram {
  background-color: #f8468d;
}

.social-link.patreon {
  background-color: #ff7a51;
}

.social-link.discord {
  background-color: #7289da;
}

.social-link.google {
  background-color: #ffc529;
}

.social-link.behance {
  background-color: #3486f5;
}

.social-link.deviantart {
  background-color: #32e1d3;
}

.social-link.artstation {
  background-color: #00e194;
}

.social-link.dribbble {
  background-color: #f761ab;
}

.social-link.void {
  background-color: #fff;
  box-shadow: 3px 5px 20px #0000001f;
}

.social-link.void.facebook .icon-facebook {
  fill: #3763d2;
}

.social-link.void.twitter .icon-twitter {
  fill: #1abcff;
}

.tab-switch {
  justify-content: center;
  display: flex;
}

.tab-switch .tab-switch-button:first-child {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.tab-switch .tab-switch-button:last-child {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.tab-switch-button {
  color: #1d2333;
  text-align: center;
  cursor: pointer;
  border: 1px solid #1d2333;
  width: 180px;
  height: 54px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 54px;
  transition: background-color .3s ease-in-out, color .3s ease-in-out;
}

.tab-switch-button.active {
  color: #fff;
  cursor: auto;
  background-color: #1d2333;
}

.action-request-list {
  display: flex;
}

.action-request-list .action-request {
  margin-right: 12px;
}

.action-request-list .action-request:last-child {
  margin-right: 0;
}

.action-request {
  color: #adafca;
  cursor: pointer;
  border: 1px solid #3f485f;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: .75rem;
  font-weight: 700;
  transition: border-color .2s ease-in-out, background-color .2s ease-in-out, color .2s ease-in-out;
  display: flex;
}

.action-request.with-text {
  width: auto;
  padding: 0 32px 0 22px;
}

.action-request.with-text .action-request-icon {
  margin-right: 12px;
}

.action-request:hover {
  color: #fff;
}

.action-request:hover .action-request-icon {
  fill: #fff;
  opacity: 1;
}

.action-request.accept:hover {
  background-color: #7750f8;
  border-color: #7750f8;
}

.action-request.decline:hover {
  background-color: #fd434f;
  border-color: #fd434f;
}

.action-request .action-request-icon {
  fill: #616a82;
  opacity: .6;
  transition: fill .2s ease-in-out, opacity .2s ease-in-out;
}

.burger-icon {
  width: 20px;
  height: 14px;
  position: relative;
}

.burger-icon.open .burger-icon-bar:first-child {
  width: 100%;
}

.burger-icon.open .burger-icon-bar:nth-child(2) {
  width: 14px;
}

.burger-icon.open .burger-icon-bar:nth-child(3) {
  width: 10px;
}

.burger-icon.inverted .burger-icon-bar {
  left: 0;
}

.burger-icon.inverted .burger-icon-bar:first-child {
  width: 100%;
}

.burger-icon.inverted .burger-icon-bar:nth-child(2) {
  width: 14px;
}

.burger-icon.inverted .burger-icon-bar:nth-child(3) {
  width: 10px;
}

.burger-icon .burger-icon-bar {
  background-color: #fff;
  height: 2px;
  transition: width .4s ease-in-out;
  position: absolute;
  right: 0;
}

.burger-icon .burger-icon-bar:first-child {
  width: 10px;
  top: 0;
}

.burger-icon .burger-icon-bar:nth-child(2) {
  width: 14px;
  top: 6px;
}

.burger-icon .burger-icon-bar:nth-child(3) {
  width: 100%;
  top: 12px;
}

.action-list {
  padding: 0 18px;
  display: flex;
  position: relative;
}

.action-list:after, .action-list:before {
  content: "";
  background-color: #3f485f;
  width: 1px;
  height: 32px;
  position: absolute;
}

.action-list:after {
  left: 0;
}

.action-list:before {
  right: 0;
}

.action-list.dark:after, .action-list.dark:before {
  background-color: #9b7dff;
}

.action-list.dark .action-list-item:hover .action-list-item-icon, .action-list.dark .action-list-item.active .action-list-item-icon, .action-list.dark .action-list-item.unread .action-list-item-icon {
  fill: #fff;
}

.action-list.dark .action-list-item .action-list-item-icon {
  fill: #9b7dff;
}

.action-list .action-list-item {
  cursor: pointer;
  align-items: center;
  height: 100%;
  padding: 0 14px;
  display: flex;
}

.action-list .action-list-item:hover .action-list-item-icon, .action-list .action-list-item.active .action-list-item-icon, .action-list .action-list-item.unread .action-list-item-icon {
  fill: #3e3f5e;
}

.action-list .action-list-item.unread {
  position: relative;
}

.action-list .action-list-item.unread:after {
  content: "";
  background-color: #4ff461;
  border-radius: 50%;
  width: 4px;
  height: 4px;
  position: absolute;
  top: 26px;
  right: 10px;
}

.action-list .action-list-item .action-list-item-icon {
  fill: #616a82;
  transition: fill .3s ease-in-out;
}

.action-item {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  display: flex;
}

.action-item .action-item-icon {
  fill: #adafca;
}

.action-item.dark .action-item-icon {
  fill: #fff;
}

.user-stats {
  justify-content: center;
  display: flex;
}

.user-stats .user-stat {
  position: relative;
}

.user-stats .user-stat.big:after {
  top: 8px;
}

.user-stats .user-stat:after {
  content: "";
  background-color: #2f3749;
  width: 1px;
  height: 20px;
  position: absolute;
  top: 6px;
  right: 0;
}

.user-stats .user-stat:last-child:after {
  display: none;
}

.user-stat {
  padding: 0 24px;
}

.user-stat.big {
  padding: 0 30px;
}

.user-stat.big .reference-bullet {
  margin: 0 auto 20px;
}

.user-stat.big .user-stat-title {
  font-size: 1.375rem;
}

.user-stat.big .user-stat-text {
  font-size: .75rem;
}

.user-stat .user-stat-title, .user-stat .user-stat-text {
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
}

.user-stat .user-stat-title {
  font-size: .875rem;
}

.user-stat .user-stat-title .user-stat-title-icon.positive {
  fill: #4ff461;
}

.user-stat .user-stat-title .user-stat-title-icon.negative {
  fill: #f9515c;
}

.user-stat .user-stat-icon {
  justify-content: center;
  align-items: center;
  display: flex;
}

.user-stat .user-stat-icon + .user-stat-text {
  margin-top: 12px;
}

.user-stat .user-stat-image {
  width: 24px;
  height: 16px;
  display: block;
}

.user-stat .user-stat-image + .user-stat-text {
  margin-top: 15px;
}

.user-stat .user-stat-text {
  color: #9aa4bf;
  margin-top: 10px;
  font-size: .6875rem;
}

.user-stat .rating-list {
  margin-top: 10px;
}

.badge-list {
  grid-gap: 14px;
  grid-template-columns: repeat(auto-fit, 32px);
  justify-content: center;
  display: grid;
}

.badge-list.align-left {
  justify-content: flex-start;
}

.badge-list.small {
  grid-gap: 8px;
}

.badge-item {
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 35px;
  display: flex;
  position: relative;
}

.badge-item img {
  position: absolute;
  top: 0;
  left: 0;
}

.badge-item .badge-item-text {
  color: #fff;
  z-index: 2;
  font-size: .6875rem;
  font-weight: 700;
  position: relative;
  top: 1px;
}

.tag-list {
  flex-wrap: wrap;
  margin-top: -12px;
  display: flex;
}

.tag-list .tag-item {
  margin: 12px 12px 0 0;
}

.tag-item {
  color: #fff;
  background-color: #3e3f5e;
  border-radius: 200px;
  height: 24px;
  padding: 0 12px;
  font-size: .75rem;
  font-weight: 700;
  line-height: 24px;
  display: block;
}

.tag-item.secondary {
  background-color: #7750f8;
  transition: background-color .2s ease-in-out;
}

.tag-item.secondary:hover {
  color: #fff;
  background-color: #40d04f;
}

.xm-tooltip-text {
  color: #fff;
  background-color: #293249;
  border-radius: 200px;
  padding: 0 12px;
  font-size: .75rem;
  font-weight: 700;
  line-height: 24px;
}

.user-short-description {
  padding-top: 84px;
  position: relative;
}

.user-short-description.big {
  padding-top: 52px;
}

.user-short-description.big .user-short-description-avatar {
  margin-left: -74px;
  top: -116px;
}

.user-short-description.big .user-short-description-title {
  font-size: 1.5rem;
}

.user-short-description.big .user-short-description-text {
  font-size: .75rem;
}

.user-short-description.small {
  padding-top: 62px;
}

.user-short-description.small .user-short-description-avatar {
  margin-left: -50px;
}

.user-short-description.landscape {
  padding: 0 0 0 32px;
}

.user-short-description.landscape .user-short-description-avatar {
  margin-left: 0;
  top: 0;
}

.user-short-description.landscape .user-short-description-title, .user-short-description.landscape .user-short-description-text {
  text-align: left;
}

.user-short-description.landscape.tiny {
  height: 56px;
  padding-top: 12px;
}

.user-short-description.landscape.tiny .user-short-description-avatar {
  left: -25px;
}

.user-short-description .user-short-description-avatar {
  margin-left: -60px;
  position: absolute;
  top: -54px;
  left: 50%;
}

.user-short-description .user-short-description-title, .user-short-description .user-short-description-text {
  text-align: center;
  font-weight: 700;
}

.user-short-description .user-short-description-title {
  font-size: 1.125rem;
}

.user-short-description .user-short-description-title a {
  color: #fff;
  font-weight: 700;
}

.user-short-description .user-short-description-title.small {
  font-size: .875rem;
}

.user-short-description .user-short-description-text {
  color: #9aa4bf;
  text-transform: uppercase;
  margin-top: 10px;
  font-size: .6875rem;
  font-weight: 700;
}

.user-short-description .user-short-description-text a {
  color: #9aa4bf;
  font-weight: 700;
}

.user-short-description .user-short-description-text a:hover {
  color: #4ff461;
}

.user-short-description .user-short-description-text.regular {
  text-transform: none;
  font-size: .75rem;
  font-weight: 500;
}

.slider-control {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  display: flex;
}

.slider-control.negative .slider-control-icon {
  fill: #fff;
}

.slider-control.negative.disabled, .slider-control.negative[aria-disabled="true"] {
  opacity: .4;
}

.slider-control.negative.disabled:hover .slider-control-icon, .slider-control.negative[aria-disabled="true"]:hover .slider-control-icon {
  fill: #fff;
  opacity: .4;
}

.slider-control.negative:hover .slider-control-icon {
  fill: #fff;
  opacity: 1;
}

.slider-control.disabled, .slider-control[aria-disabled="true"] {
  opacity: .5;
}

.slider-control.disabled:hover .slider-control-icon, .slider-control[aria-disabled="true"]:hover .slider-control-icon {
  fill: #616a82;
  opacity: .5;
}

.slider-control .slider-control-icon {
  fill: #616a82;
  pointer-events: none;
  opacity: .6;
  transition: fill .2s ease-in-out, opacity .2s ease-in-out;
}

.slider-control.left .slider-control-icon {
  transform: rotate(180deg);
}

.slider-control:hover .slider-control-icon {
  fill: #fff;
  opacity: 1;
}

.slider-roster {
  display: flex;
}

.slider-roster .slider-roster-item {
  margin-right: 8px;
}

.slider-roster .slider-roster-item:last-child {
  margin-right: 0;
}

.slider-roster-item {
  opacity: .2;
  cursor: pointer;
  background-color: #fff;
  border-radius: 50%;
  width: 6px;
  height: 6px;
}

.slider-roster-item.tns-nav-active {
  opacity: 1;
}

.tag-sticker {
  background-color: #7750f8;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  display: flex;
  box-shadow: 3px 5px 20px #0000001a;
}

.tag-sticker .tag-sticker-icon, .tag-sticker .tag-sticker-icon.primary {
  fill: #fff;
}

.text-sticker {
  background-color: #293249;
  border-radius: 200px;
  height: 32px;
  padding: 0 14px;
  font-size: .875rem;
  font-weight: 700;
  line-height: 32px;
  box-shadow: 3px 5px 20px #0000001f;
}

.text-sticker.round {
  border-radius: 12px;
}

.text-sticker .highlighted {
  color: #4ff461;
}

.text-sticker .text-sticker-icon {
  fill: #4ff461;
  margin-right: 4px;
}

.text-sticker.small-text {
  font-size: .75rem;
}

.text-sticker.small {
  height: 24px;
  padding: 0 12px;
  font-size: .75rem;
  line-height: 24px;
}

.text-sticker.medium {
  height: 44px;
  padding: 0 16px;
  line-height: 44px;
}

.text-sticker.negative {
  color: #fff;
  background: #1d2333;
}

.text-sticker.void {
  box-shadow: none;
  background-color: #0000;
}

.date-sticker {
  width: 44px;
}

.date-sticker .date-sticker-day, .date-sticker .date-sticker-month {
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
}

.date-sticker .date-sticker-day {
  background-color: #293249;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  padding: 10px 0 6px;
  font-size: 1.25rem;
}

.date-sticker .date-sticker-month {
  background-color: #40d04f;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  padding: 4px 0;
  font-size: .75rem;
}

.decorated-text {
  align-items: center;
  display: flex;
}

.decorated-text .decorated-text-icon {
  fill: #4ff461;
  margin-right: 8px;
}

.decorated-text .decorated-text-content {
  font-size: .875rem;
  font-weight: 500;
}

.simple-dropdown {
  background-color: #293249;
  border-radius: 12px;
  width: 140px;
  padding: 10px 0;
  box-shadow: 0 0 40px #0000001f;
}

.simple-dropdown.padded {
  padding: 12px 16px 16px;
}

.simple-dropdown .simple-dropdown-link {
  cursor: pointer;
  padding: 8px 16px;
  font-size: .75rem;
  font-weight: 700;
  transition: color .2s ease-in-out, padding-left .2s ease-in-out;
}

.simple-dropdown .simple-dropdown-link:hover {
  color: #4ff461;
  padding-left: 20px;
}

.simple-dropdown .simple-dropdown-text {
  font-size: .75rem;
  font-weight: 500;
}

.simple-dropdown .simple-dropdown-text + .simple-dropdown-text {
  margin-top: 4px;
}

.simple-dropdown .simple-dropdown-text .reaction {
  margin-right: 4px;
}

.simple-dropdown .simple-dropdown-text .bold {
  font-weight: 700;
}

.paragraph {
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.71429em;
}

.information-line-list .information-line {
  margin-bottom: 14px;
}

.information-line-list .information-line:last-child {
  margin-bottom: 0;
}

.information-line {
  display: flex;
}

.information-line .information-line-title, .information-line .information-line-text {
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.42857em;
}

.information-line .information-line-title {
  color: #9aa4bf;
  flex-shrink: 0;
  width: 80px;
}

.information-line .information-line-text .bold {
  font-weight: 700;
}

.information-block-list .information-block {
  margin-bottom: 26px;
}

.information-block-list .information-block:last-child {
  margin-bottom: 0;
}

.information-block .information-block-title {
  font-size: .875rem;
  font-weight: 700;
}

.information-block .information-block-text {
  margin-top: 10px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.71429em;
}

.timeline-information-list .timeline-information {
  padding-bottom: 24px;
}

.timeline-information-list .timeline-information:last-child {
  padding-bottom: 0;
}

.timeline-information-list .timeline-information:last-child:before {
  display: none;
}

.timeline-information {
  padding-left: 28px;
  position: relative;
}

.timeline-information:before {
  content: "";
  background-color: #2f3749;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 6px;
}

.timeline-information:after {
  content: "";
  border: 4px solid #4ff461;
  border-radius: 50%;
  width: 13px;
  height: 13px;
  position: absolute;
  top: -2px;
  left: 0;
}

.timeline-information .timeline-information-title {
  font-size: .875rem;
  font-weight: 700;
}

.timeline-information .timeline-information-date {
  color: #9aa4bf;
  text-transform: uppercase;
  margin-top: 6px;
  font-size: .75rem;
  font-weight: 700;
}

.timeline-information .timeline-information-text {
  margin-top: 8px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.71429em;
}

.rating-list {
  display: flex;
}

.rating-list.form-rating .rating {
  cursor: pointer;
}

.rating-list .rating {
  margin-right: 3px;
}

.rating-list .rating.medium {
  margin-right: 4px;
}

.rating-list .rating:last-child, .rating-list .rating:last-child.medium {
  margin-right: 0;
}

.rating {
  justify-content: center;
  align-items: center;
  width: 9px;
  height: 8px;
  display: flex;
}

.rating.dark .rating-icon {
  fill: #616a82;
}

.rating.dark.filled .rating-icon {
  fill: #fff10d;
}

.rating.medium {
  width: 13px;
  height: 12px;
}

.rating.filled .rating-icon {
  fill: #ffe00d;
}

.rating .rating-icon {
  fill: #616a82;
}

.filters {
  display: flex;
}

.filters .filter {
  color: #9aa4bf;
  opacity: .6;
  cursor: pointer;
  margin-right: 20px;
  padding-bottom: 4px;
  font-size: .875rem;
  font-weight: 700;
  transition: color .2s ease-in-out, opacity .2s ease-in-out;
}

.filters .filter.active, .filters .filter:hover {
  color: #fff;
  opacity: 1;
}

.filters .filter.active {
  border-bottom: 2px solid #4ff461;
}

.filters .filter:last-child {
  margin-right: 0;
}

.filter-tabs {
  display: flex;
}

.filter-tabs .filter-tab:before {
  content: "";
  background-color: #2f3749;
  width: 1px;
  height: 20px;
  position: absolute;
  top: 38px;
  left: 0;
}

.filter-tabs .filter-tab:last-child:after {
  content: "";
  background-color: #2f3749;
  width: 1px;
  height: 20px;
  position: absolute;
  top: 38px;
  right: 0;
}

.filter-tab {
  cursor: pointer;
  border-bottom: 4px solid #0000;
  justify-content: center;
  align-items: center;
  width: 162px;
  height: 100%;
  transition: border-color .2s ease-in-out;
  display: flex;
  position: relative;
}

.filter-tab.secondary.active {
  border-bottom-color: #7750f8;
}

.filter-tab.active {
  border-bottom-color: #4ff461;
}

.filter-tab.active .filter-tab-text {
  color: #fff;
}

.filter-tab .filter-tab-text {
  color: #9aa4bf;
  padding: 4px 0;
  font-size: .875rem;
  font-weight: 700;
  transition: color .2s ease-in-out;
}

.view-actions {
  display: flex;
}

.view-actions .view-action {
  margin-right: 26px;
}

.view-actions .view-action:last-child {
  margin-right: 0;
}

.view-action {
  cursor: pointer;
}

.view-action.active .view-action-icon, .view-action:hover .view-action-icon {
  fill: #fff;
  opacity: 1;
}

.view-action .view-action-icon {
  fill: #616a82;
  opacity: .4;
  transition: opacity .2s ease-in-out, fill .2s ease-in-out;
}

.tweets .tweet {
  margin-bottom: 28px;
}

.tweets .tweet:last-child {
  margin-bottom: 0;
}

.tweet .tweet-author {
  min-height: 32px;
  padding-left: 40px;
  display: block;
  position: relative;
}

.tweet .tweet-author .tweet-author-image {
  position: absolute;
  top: 0;
  left: 0;
}

.tweet .tweet-author .tweet-author-title {
  font-size: .875rem;
  font-weight: 700;
}

.tweet .tweet-author .tweet-author-text {
  margin-top: 6px;
  font-size: .75rem;
  font-weight: 500;
}

.tweet .tweet-text {
  margin-top: 16px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.71429em;
  display: block;
}

.tweet .tweet-text .highlighted {
  color: #4ff461;
  font-weight: 600;
}

.tweet .tweet-timestamp {
  color: #9aa4bf;
  margin-top: 12px;
  font-size: .75rem;
  font-weight: 500;
}

.play-button {
  background-color: #15151ff5;
  border: 4px solid #4ff461;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  padding: 12px 0 0 15px;
}

.play-button .play-button-icon {
  display: block;
}

.iframe-wrap {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}

.iframe-wrap iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.popup-video {
  opacity: 0;
  visibility: hidden;
  width: 80%;
}

.popup-picture {
  opacity: 0;
  visibility: hidden;
  width: 80%;
  height: 80%;
  display: flex;
}

.popup-picture .widget-box {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  flex-shrink: 0;
  width: 384px;
}

.popup-picture .widget-box .meta-line.settings {
  margin-left: 22px;
}

.popup-picture .widget-box .meta-line.settings .post-settings {
  width: 22px;
}

.popup-picture .widget-box .widget-box-scrollable {
  overflow-x: hidden;
  overflow-y: auto;
}

.popup-picture .widget-box .post-comment.reply-2 {
  padding-left: 96px;
}

.popup-picture .widget-box .post-comment.reply-2 .user-avatar {
  left: 42px;
}

.popup-picture .popup-picture-image-wrap {
  background-color: #15151f;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.popup-picture .popup-picture-image-wrap .popup-picture-image {
  width: 100%;
  height: auto;
}

.popup-event {
  opacity: 0;
  visibility: hidden;
  background-color: #1d2333;
  border-radius: 12px;
  width: 90%;
  max-width: 584px;
}

.popup-event .popup-event-cover {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  width: 100%;
  height: 204px;
}

.popup-event .popup-event-info {
  padding: 32px 28px;
  position: relative;
}

.popup-event .popup-event-info .user-avatar-list {
  margin-top: 18px;
}

.popup-event .popup-event-info .g-map {
  height: 260px;
  margin-top: 22px;
}

.popup-event .popup-event-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.popup-event .popup-event-subtitle {
  margin-top: 32px;
  font-size: 1rem;
  font-weight: 700;
}

.popup-event .popup-event-text {
  color: #9aa4bf;
  margin-top: 16px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.71429em;
}

.popup-event .decorated-feature-list {
  margin-top: 14px;
}

.popup-event .popup-event-button {
  width: 200px;
  position: absolute;
  top: -30px;
  right: 28px;
}

.popup-event > .content-actions {
  border-top: 1px solid #2f3749;
  margin: 0 28px;
}

.popup-close-button {
  cursor: pointer;
  z-index: 2;
  background-color: #7750f8;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: background-color .2s ease-in-out;
  display: flex;
  position: absolute;
  top: -20px;
  right: -20px;
}

.popup-close-button:hover {
  background-color: #40d04f;
}

.popup-close-button .popup-close-button-icon {
  pointer-events: none;
}

.decorated-feature-list {
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: -18px;
  display: flex;
}

.decorated-feature-list .decorated-feature {
  width: 50%;
  margin-top: 18px;
}

.decorated-feature {
  display: flex;
}

.decorated-feature .decorated-feature-icon {
  fill: #4ff461;
  flex-shrink: 0;
  margin-top: 6px;
}

.decorated-feature .decorated-feature-info {
  margin-left: 12px;
}

.decorated-feature .decorated-feature-title {
  font-size: 1rem;
  font-weight: 700;
}

.decorated-feature .decorated-feature-text {
  color: #8f91ac;
  margin-top: 2px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.42857em;
}

.meta-line {
  align-items: center;
  display: flex;
}

.meta-line + .meta-line {
  margin-left: 22px;
}

.meta-line .meta-line-list + .meta-line-text {
  margin-left: 10px;
}

.meta-line.settings {
  margin-left: 14px;
}

.meta-line .meta-line-text {
  font-size: .75rem;
  font-weight: 700;
}

.meta-line .meta-line-text a {
  color: #fff;
  font-weight: 700;
}

.meta-line .meta-line-link {
  cursor: pointer;
  font-size: .75rem;
  font-weight: 700;
  transition: color .2s ease-in-out;
}

.meta-line .meta-line-link.light {
  color: #9aa4bf;
}

.meta-line .meta-line-link:hover {
  color: #4ff461;
}

.meta-line .meta-line-timestamp {
  color: #9aa4bf;
  font-size: .75rem;
  font-weight: 500;
}

.reaction-options {
  background-color: #293249;
  border-radius: 200px;
  align-items: center;
  height: 64px;
  padding: 0 16px;
  display: flex;
  box-shadow: 0 0 40px #0000001f;
}

.reaction-options.small {
  height: 40px;
}

.reaction-options.small .reaction-option {
  width: 20px;
  height: 20px;
}

.reaction-options .reaction-option {
  cursor: pointer;
  width: 40px;
  height: 40px;
  margin-right: 8px;
  transition: transform .2s ease-in-out;
}

.reaction-options .reaction-option:last-child {
  margin-right: 0;
}

.reaction-options .reaction-option:hover {
  transform: translate(0, -4px);
}

.reaction-options .reaction-option .reaction-option-image {
  width: 100%;
  height: 100%;
}

.post-options {
  background-color: #21283b;
  border-top: 1px solid #2f3749;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  justify-content: space-between;
  align-items: center;
  height: 65px;
  padding: 0 28px;
  display: flex;
}

.post-option {
  cursor: pointer;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 44px;
  transition: box-shadow .2s ease-in-out, background-color .2s ease-in-out;
  display: flex;
}

.post-option.no-text {
  width: 80px;
}

.post-option.no-text .post-option-icon {
  margin-right: 0;
}

.post-option.active, .post-option:hover {
  background-color: #293249;
  box-shadow: 3px 5px 20px #0000001a;
}

.post-option.active .post-option-icon, .post-option:hover .post-option-icon {
  fill: #4ff461;
  opacity: 1;
}

.post-option.active .post-option-text, .post-option:hover .post-option-text {
  color: #fff;
}

.post-option .post-option-icon {
  fill: #616a82;
  opacity: .6;
  margin-right: 16px;
  transition: fill .2s ease-in-out, opacity .2s ease-in-out;
}

.post-option .post-option-icon.icon-thumbs-up {
  position: relative;
  top: -2px;
}

.post-option .post-option-text {
  color: #9aa4bf;
  font-size: .75rem;
  font-weight: 700;
  transition: color .2s ease-in-out;
}

.post-settings {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 30px;
  display: flex;
}

.post-settings .post-settings-icon {
  fill: #616a82;
  opacity: .4;
  transition: opacity .2s ease-in-out, fill .2s ease-in-out;
}

.post-settings.active .post-settings-icon, .post-settings:hover .post-settings-icon {
  fill: #fff;
  opacity: 1;
}

.slider-line {
  background-color: #1d2333;
  border-radius: 12px;
  height: 120px;
  padding: 0 48px;
  position: relative;
  box-shadow: 0 0 40px #0000000f;
}

.slider-line.small {
  height: 100px;
}

.slider-line.small .slider-controls {
  top: 40px;
}

.slider-line.small .slider-slides .user-stat {
  height: 100px;
}

.slider-line.medium {
  height: 160px;
}

.slider-line.medium .slider-controls {
  top: 70px;
}

.slider-line.medium .slider-slides.with-separator .slider-slide:before, .slider-line.medium .slider-slides.with-separator .slider-slide:last-child:after {
  height: 40px;
  top: 60px;
}

.slider-line.medium .slider-slides .reaction-stat {
  height: 160px;
}

.slider-line .slider-controls {
  z-index: 1;
  justify-content: space-between;
  width: 100%;
  padding: 0 14px;
  display: flex;
  position: absolute;
  top: 50px;
  left: 0;
}

.slider-line .slider-slides {
  z-index: 2;
  position: relative;
}

.slider-line .slider-slides.with-separator .slider-slide {
  position: relative;
}

.slider-line .slider-slides.with-separator .slider-slide:before {
  content: "";
  background-color: #2f3749;
  width: 1px;
  height: 20px;
  position: absolute;
  top: 40px;
  left: 0;
}

.slider-line .slider-slides.with-separator .slider-slide:last-child:after {
  content: "";
  background-color: #2f3749;
  width: 1px;
  height: 20px;
  position: absolute;
  top: 40px;
  right: 0;
}

.slider-line .slider-slides .stat-block {
  align-items: center;
  height: 120px;
  padding-left: 28px;
}

.slider-line .slider-slides .user-stat {
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.slider-line .slider-slides .reaction-stat {
  justify-content: center;
}

.stat-block-list .stat-block {
  margin-bottom: 22px;
}

.stat-block-list .stat-block:last-child {
  margin-bottom: 0;
}

.stat-block {
  min-height: 48px;
  display: flex;
}

.stat-block .stat-block-decoration {
  background: linear-gradient(-145deg, #4ff461, #7750f8);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin-right: 16px;
  display: flex;
}

.stat-block .stat-block-decoration .stat-block-decoration-icon {
  fill: #fff;
}

.stat-block .stat-block-info {
  margin-top: 6px;
}

.stat-block .stat-block-info .stat-block-title {
  color: #9aa4bf;
  text-transform: uppercase;
  font-size: .75rem;
  font-weight: 700;
}

.stat-block .stat-block-info .stat-block-text {
  margin-top: 8px;
  font-size: 1rem;
  font-weight: 700;
}

.achievement-status-list {
  display: flex;
}

.achievement-status-list .achievement-status {
  width: 50%;
}

.achievement-status-list .achievement-status .achievement-status-info {
  position: relative;
}

.achievement-status-list .achievement-status .achievement-status-info:after {
  content: "";
  background-color: #2f3749;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

.achievement-status-list .achievement-status:last-child .achievement-status-info:after {
  display: none;
}

.achievement-status {
  text-align: center;
}

.achievement-status .achievement-status-progress {
  font-size: 1.375rem;
  font-weight: 700;
}

.achievement-status .achievement-status-info {
  margin-top: 14px;
}

.achievement-status .achievement-status-info .achievement-status-title {
  font-size: .875rem;
  font-weight: 700;
}

.achievement-status .achievement-status-info .achievement-status-text {
  color: #9aa4bf;
  text-transform: uppercase;
  margin-top: 6px;
  font-size: .75rem;
  font-weight: 700;
}

.achievement-status .achievement-status-image {
  margin: 22px auto 0;
  display: block;
}

.page-loader {
  z-index: 999999;
  background-color: #1d2333;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: opacity .4s ease-in-out, visibility .4s ease-in-out;
  display: flex;
  position: fixed;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.page-loader .page-loader-decoration {
  background-color: #7750f8;
  border-radius: 28px;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  display: flex;
}

.page-loader .page-loader-decoration .icon-logo {
  fill: #fff;
  width: 36px;
  height: 52px;
}

.page-loader .page-loader-info .page-loader-info-title, .page-loader .page-loader-info .page-loader-info-text {
  color: #fff;
  text-align: center;
}

.page-loader .page-loader-info .page-loader-info-title {
  margin-top: 24px;
  font-family: Titillium Web, sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
}

.page-loader .page-loader-info .page-loader-info-text {
  margin-top: 10px;
  font-size: .75rem;
  font-weight: 700;
}

.page-loader .page-loader-indicator {
  margin-top: 60px;
}

.reaction-count-list {
  flex-direction: column;
  display: flex;
}

.reaction-count-list.landscape {
  flex-direction: row;
}

.reaction-count-list.landscape .reaction-count {
  margin: 0 32px 0 0;
}

.reaction-count-list.landscape .reaction-count:last-child {
  margin: 0;
}

.reaction-count-list .reaction-count {
  margin-bottom: 22px;
}

.reaction-count-list .reaction-count:last-child {
  margin-bottom: 0;
}

.reaction-count {
  align-items: center;
  display: flex;
}

.reaction-count.negative .reaction-count-icon {
  fill: #4ff461;
}

.reaction-count.negative .reaction-count-text {
  color: #fff;
}

.reaction-count .reaction-count-icon {
  fill: #4ff461;
}

.reaction-count .reaction-count-text {
  margin-left: 16px;
  font-size: .75rem;
  font-weight: 700;
  position: relative;
  top: 1px;
}

.upload-item-list {
  grid-gap: 16px 22px;
  grid-template-columns: repeat(auto-fit, 168px);
  justify-content: center;
  display: grid;
}

.upload-item:first-child {
  cursor: pointer;
  background-color: #40d04f;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  height: 168px;
  display: flex;
}

.upload-item:first-child .icon-plus {
  pointer-events: none;
}

.upload-item .upload-item-image {
  border-radius: 12px;
  width: 100%;
  height: 168px;
}

.upload-item .form-input, .upload-item .checkbox-wrap {
  margin-top: 16px;
}

.simple-accordion-list .simple-accordion {
  margin-bottom: 22px;
}

.simple-accordion-list .simple-accordion:last-child {
  margin-bottom: 0;
}

.simple-accordion .simple-accordion-header {
  position: relative;
}

.simple-accordion .simple-accordion-header.selected .simple-accordion-icon .icon-plus-small {
  display: none;
}

.simple-accordion .simple-accordion-header.selected .simple-accordion-icon .icon-minus-small {
  display: block;
}

.simple-accordion .simple-accordion-header .simple-accordion-title {
  cursor: pointer;
  padding-right: 16px;
  font-size: .875rem;
  font-weight: 700;
  line-height: 20px;
}

.simple-accordion .simple-accordion-header .simple-accordion-icon {
  cursor: pointer;
  position: absolute;
  top: 4px;
  right: 0;
}

.simple-accordion .simple-accordion-header .simple-accordion-icon .icon-plus-small, .simple-accordion .simple-accordion-header .simple-accordion-icon .icon-minus-small {
  fill: #4ff461;
}

.simple-accordion .simple-accordion-header .simple-accordion-icon .icon-plus-small {
  display: block;
}

.simple-accordion .simple-accordion-header .simple-accordion-icon .icon-minus-small {
  display: none;
}

.simple-accordion .simple-accordion-header .simple-accordion-content {
  margin-top: 20px;
}

.simple-accordion .simple-accordion-header .simple-accordion-content .simple-accordion-text {
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.71429em;
}

.week-box {
  background-color: #1d2333;
  border-radius: 12px;
  display: flex;
  box-shadow: 3px 5px 20px #0000001a;
}

.week-box .week-box-item {
  width: 14.2857%;
  position: relative;
}

.week-box .week-box-item:after {
  content: "";
  background-color: #2f3749;
  width: 1px;
  height: 20px;
  position: absolute;
  top: 40px;
  right: 0;
}

.week-box .week-box-item:last-child:after {
  display: none;
}

.week-box-item {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100px;
  display: flex;
}

.week-box-item.active {
  border-bottom: 4px solid #4ff461;
}

.week-box-item.active .week-box-item-title {
  color: #4ff461;
}

.week-box-item.active .week-box-item-text {
  color: #fff;
}

.week-box-item .week-box-item-title, .week-box-item .week-box-item-text {
  text-transform: uppercase;
  font-weight: 700;
}

.week-box-item .week-box-item-title {
  font-size: 1.375rem;
}

.week-box-item .week-box-item-text {
  color: #9aa4bf;
  margin-top: 10px;
  font-size: .75rem;
}

.forum-category {
  align-items: center;
  display: flex;
}

.forum-category .forum-category-image {
  flex-shrink: 0;
}

.forum-category .forum-category-info {
  margin-left: 28px;
}

.forum-category .forum-category-info .forum-category-title {
  font-size: 1.125rem;
  font-weight: 700;
}

.forum-category .forum-category-info .forum-category-title a {
  color: #fff;
  font-weight: 700;
}

.forum-category .forum-category-info .forum-category-text {
  margin-top: 14px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.42857em;
}

.forum-category .forum-category-info .forum-category-link {
  margin-top: 16px;
  font-size: .875rem;
  font-weight: 700;
}

.forum-category .forum-category-info .forum-category-link a {
  color: #fff;
  font-weight: 700;
}

.forum-category .forum-category-info .forum-category-link a:hover {
  color: #4ff461;
}

.discussion-preview.pinned .discussion-preview-title {
  align-items: center;
  display: flex;
}

.discussion-preview.pinned .discussion-preview-title:before {
  content: "Pinned";
  color: #fff;
  text-transform: uppercase;
  background-color: #40d04f;
  border-radius: 200px;
  height: 20px;
  margin-right: 12px;
  padding: 0 8px;
  font-size: .75rem;
  font-weight: 700;
  line-height: 20px;
}

.discussion-preview .discussion-preview-title {
  font-size: 1rem;
  font-weight: 700;
}

.discussion-preview .discussion-preview-title + .discussion-preview-meta {
  margin-top: 8px;
}

.discussion-preview .page-items {
  margin-top: 12px;
}

.discussion-preview .discussion-preview-meta {
  align-items: center;
  margin-top: 14px;
  display: flex;
}

.discussion-preview .discussion-preview-meta .discussion-preview-meta-text {
  color: #9aa4bf;
  font-size: .875rem;
  font-weight: 500;
}

.discussion-preview .discussion-preview-meta .discussion-preview-meta-text a {
  color: #fff;
  font-weight: 700;
}

.discussion-preview .discussion-preview-meta .discussion-preview-meta-text a.highlighted {
  color: #4ff461;
}

.discussion-preview .discussion-preview-meta .discussion-preview-meta-text .separator {
  margin: 0 8px;
}

.discussion-preview .discussion-preview-meta .user-avatar {
  margin: 0 6px;
}

.page-items {
  display: flex;
}

.page-items .page-item {
  margin-right: 6px;
}

.page-items .page-item:last-child {
  margin-right: 0;
}

.page-item {
  background-color: #293249;
  border-radius: 8px;
  height: 24px;
  padding: 0 8px;
  font-size: .75rem;
  font-weight: 700;
  line-height: 24px;
  box-shadow: 2px 3px 10px #0000001f;
}

.page-item.void {
  box-shadow: none;
}

.quick-post {
  background-color: #1d2333;
  border-radius: 12px;
  box-shadow: 0 0 40px #0000000f;
}

.quick-post.medium .quick-post-header {
  align-items: center;
  min-height: 82px;
  padding-left: 28px;
  display: flex;
}

.quick-post.medium .quick-post-body .form-textarea textarea {
  height: 200px;
}

.quick-post.medium .quick-post-footer {
  min-height: 92px;
}

.quick-post.medium .quick-post-footer .quick-post-footer-actions .button {
  width: 120px;
}

.quick-post.medium .quick-post-footer .quick-post-footer-actions .button:last-child {
  width: 140px;
}

.quick-post .quick-post-header {
  border-bottom: 1px solid #2f3749;
}

.quick-post .quick-post-header .quick-post-header-title {
  font-size: 1rem;
  font-weight: 700;
}

.quick-post .quick-post-header .option-items {
  background-color: #1d2333;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  height: 65px;
}

.quick-post .quick-post-header .option-items .option-item {
  width: 33.3333%;
}

.quick-post .quick-post-header .option-items .option-item:after {
  top: 22px;
}

.quick-post .quick-post-body .form-textarea {
  background-color: #21283b;
}

.quick-post .quick-post-body .form-textarea textarea {
  background-color: #21283b;
  border: none;
  border-radius: 0;
  height: 120px;
}

.quick-post .quick-post-body .form-textarea textarea::placeholder {
  font-weight: 500;
}

.quick-post .quick-post-body .form-textarea .form-textarea-limit-text {
  color: #9aa4bf;
  height: 40px;
  padding-top: 10px;
}

.quick-post .quick-post-footer {
  border-top: 1px solid #2f3749;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  justify-content: space-between;
  align-items: center;
  min-height: 76px;
  padding: 0 28px;
  display: flex;
}

.quick-post .quick-post-footer .quick-post-footer-actions {
  align-items: center;
  display: flex;
}

.quick-post .quick-post-footer .quick-post-footer-actions .quick-post-footer-action {
  margin-right: 22px;
}

.quick-post .quick-post-footer .quick-post-footer-actions .quick-post-footer-action:last-child {
  margin-right: 0;
}

.quick-post .quick-post-footer .quick-post-footer-actions .button {
  width: 80px;
  margin-right: 6px;
}

.quick-post .quick-post-footer .quick-post-footer-actions .button:last-child {
  margin-right: 0;
}

.quick-post .quick-post-footer .quick-post-footer-action {
  cursor: pointer;
}

.quick-post .quick-post-footer .quick-post-footer-action:hover .quick-post-footer-action-icon {
  fill: #fff;
}

.quick-post .quick-post-footer .quick-post-footer-action .quick-post-footer-action-icon {
  transition: fill .2s ease-in-out;
}

.option-items {
  display: flex;
}

.option-items .option-item {
  position: relative;
}

.option-items .option-item:after {
  content: "";
  background-color: #2f3749;
  width: 1px;
  height: 20px;
  position: absolute;
  top: 0;
  right: 0;
}

.option-items .option-item:last-child:after {
  display: none;
}

.option-item {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  display: flex;
}

.option-item.active {
  border-bottom: 4px solid #4ff461;
}

.option-item.active .option-item-icon {
  fill: #fff;
}

.option-item.active .option-item-title {
  color: #fff;
}

.option-item .option-item-icon {
  fill: #616a82;
  margin-right: 16px;
}

.option-item .option-item-title {
  color: #9aa4bf;
  font-size: .75rem;
  font-weight: 700;
}

.stats-box {
  border-radius: 12px;
  height: 220px;
  padding: 90px 28px 0;
}

.stats-box.small {
  height: 142px;
  padding-top: 32px;
}

.stats-box.small .stats-box-value {
  font-size: 1.75rem;
}

.stats-box.small .stats-box-title {
  font-size: .875rem;
}

.stats-box.small.stat-profile-views {
  background: url("01.21731f5a.jpg") center / cover no-repeat;
}

.stats-box.small.stat-posts-created {
  background: url("02.e4fc72d2.jpg") center / cover no-repeat;
}

.stats-box.small.stat-reactions-received {
  background: url("03.0e1a24fb.jpg") center / cover no-repeat;
}

.stats-box.small.stat-comments-received {
  background: url("04.fdcc3b9e.jpg") center / cover no-repeat;
}

.stats-box.stat-profile-views {
  background: url("01-big.fe984ca2.png") center / cover no-repeat;
}

.stats-box.stat-posts-created {
  background: url("02-big.e33b97f7.png") center / cover no-repeat;
}

.stats-box.stat-reactions-received {
  background: url("03-big.5b23fe4e.png") center / cover no-repeat;
}

.stats-box.stat-comments-received {
  background: url("04-big.f6fe8281.png") center / cover no-repeat;
}

.stats-box .stats-box-value, .stats-box .stats-box-diff-value, .stats-box .stats-box-title, .stats-box .stats-box-text {
  color: #fff;
}

.stats-box .stats-box-value-wrap {
  align-items: flex-start;
  display: flex;
}

.stats-box .stats-box-value-wrap .stats-box-diff {
  margin-left: 12px;
}

.stats-box .stats-box-value {
  font-size: 2rem;
  font-weight: 700;
}

.stats-box .stats-box-diff {
  align-items: center;
  margin-left: 12px;
  display: flex;
  position: relative;
  top: 2px;
}

.stats-box .stats-box-diff .stats-box-diff-icon {
  border: 2px solid #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  margin-right: 4px;
  display: flex;
}

.stats-box .stats-box-diff .stats-box-diff-icon .icon-plus-small, .stats-box .stats-box-diff .stats-box-diff-icon .icon-minus-small {
  width: 6px;
  height: 6px;
}

.stats-box .stats-box-diff .stats-box-diff-icon.positive {
  border-color: #4ff461;
}

.stats-box .stats-box-diff .stats-box-diff-icon.positive .icon-plus-small {
  fill: #4ff461;
}

.stats-box .stats-box-diff .stats-box-diff-icon.negative {
  border-color: #ff5384;
}

.stats-box .stats-box-diff .stats-box-diff-icon.negative .icon-minus-small {
  fill: #ff5384;
}

.stats-box .stats-box-diff .stats-box-diff-value {
  font-size: .75rem;
  font-weight: 700;
  position: relative;
  top: 1px;
}

.stats-box .stats-box-title {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 700;
}

.stats-box .stats-box-text {
  margin-top: 2px;
  font-size: .75rem;
  font-weight: 500;
}

.stats-box-slider {
  position: relative;
}

.stats-box-slider .stats-box-slider-controls {
  z-index: 1;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 28px 28px 0;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.stats-box-slider .stats-box-slider-controls .stats-box-slider-controls-title {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.stats-box-slider .stats-box-slider-controls .slider-controls {
  display: flex;
}

.stats-box-slider .stats-box-slider-controls .slider-controls .slider-control:first-child {
  margin-right: 2px;
}

.reaction-stats {
  justify-content: center;
  display: flex;
}

.reaction-stats .reaction-stat {
  width: 114px;
  position: relative;
}

.reaction-stats .reaction-stat:after {
  content: "";
  background-color: #2f3749;
  width: 1px;
  height: 40px;
  position: absolute;
  top: 32px;
  right: 0;
}

.reaction-stats .reaction-stat:last-child:after {
  display: none;
}

.reaction-stat {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.reaction-stat .reaction-stat-image {
  width: 40px;
  height: 40px;
}

.reaction-stat .reaction-stat-title {
  margin-top: 16px;
  font-size: 1.375rem;
  font-weight: 700;
}

.reaction-stat .reaction-stat-text {
  color: #9aa4bf;
  text-transform: uppercase;
  margin-top: 8px;
  font-size: .75rem;
  font-weight: 700;
}

.simple-tab-items {
  border-bottom: 1px solid #2f3749;
  display: flex;
}

.simple-tab-items .simple-tab-item {
  margin-right: 40px;
}

.simple-tab-items .simple-tab-item:last-child {
  margin-right: 0;
}

.simple-tab-items .form {
  display: none;
}

.simple-tab-item {
  color: #9aa4bf;
  opacity: .6;
  cursor: pointer;
  height: 36px;
  font-size: .875rem;
  font-weight: 700;
}

.simple-tab-item.active {
  color: #fff;
  opacity: 1;
  border-bottom: 4px solid #4ff461;
}

.banner-promo {
  border-radius: 12px;
  width: 100%;
  max-width: 284px;
  height: auto;
  margin: 0 auto;
  display: block;
}

.banner-promo img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
}

.poll-box {
  background-color: #21283b;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 3px 5px 20px #0000001a;
}

.poll-box .poll-title {
  font-size: 1rem;
  font-weight: 700;
}

.poll-box .poll-text {
  color: #9aa4bf;
  margin-top: 4px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.71429em;
}

.poll-box .form, .poll-box .poll-results {
  margin-top: 28px;
}

.poll-box .poll-box-actions {
  margin-top: 40px;
}

.poll-box .poll-box-actions .button {
  width: 140px;
  margin-right: 16px;
}

.poll-box .poll-box-actions .button:last-child {
  margin-right: 0;
}

.poll-results .poll-result {
  margin-bottom: 22px;
}

.poll-results .poll-result:last-child {
  margin-bottom: 0;
}

.poll-result .progress-stat {
  max-width: 472px;
}

.poll-result .meta-line {
  margin-top: 10px;
}

.picture-collage .picture-collage-row {
  margin-bottom: 6px;
  display: flex;
}

.picture-collage .picture-collage-row:last-child {
  margin-bottom: 0;
}

.picture-collage .picture-collage-row.medium .picture-collage-item {
  width: 261px;
  height: 240px;
}

.picture-collage .picture-collage-row .picture-collage-item {
  cursor: pointer;
  width: 172px;
  height: 160px;
  margin-right: 6px;
  position: relative;
}

.picture-collage .picture-collage-row .picture-collage-item:last-child {
  margin-right: 0;
}

.picture-collage .picture-collage-row .picture-collage-item .photo-preview {
  width: 100%;
  height: 100%;
}

.picture-collage .picture-collage-row .picture-collage-item .picture-collage-item-overlay {
  z-index: 3;
  background-color: #40d04fe6;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.picture-collage .picture-collage-row .picture-collage-item .picture-collage-item-overlay .picture-collage-item-overlay-text {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
}

.quote-box {
  background-color: #21283b;
  border-radius: 12px;
  padding: 26px 28px;
  position: relative;
  box-shadow: 3px 5px 20px #0000001a;
}

.quote-box .quote-box-icon {
  fill: #4ff461;
  opacity: .1;
  position: absolute;
  top: 14px;
  left: 14px;
}

.quote-box .quote-box-text {
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.71429em;
}

.stats-decoration {
  background-color: #1d2333;
  border-radius: 12px;
  height: 96px;
  padding: 28px 0 0 88px;
  position: relative;
  box-shadow: 0 0 40px #0000000f;
}

.stats-decoration.secondary {
  background: #1d2333 url("05.b27ead03.png") 100% 100% no-repeat;
}

.stats-decoration.secondary .stats-decoration-icon-wrap {
  background-color: #7750f8;
}

.stats-decoration.primary {
  background: #1d2333 url("06.ccb1b2ae.png") 100% 100% no-repeat;
}

.stats-decoration.primary .stats-decoration-icon-wrap {
  background-color: #40d04f;
}

.stats-decoration.v2 {
  height: 118px;
  padding: 24px 0 0 28px;
}

.stats-decoration.v2 .stats-decoration-title {
  font-size: 1.75rem;
}

.stats-decoration.v2 .stats-decoration-subtitle {
  margin-top: 8px;
  font-size: .875rem;
  font-weight: 700;
}

.stats-decoration.v2 .stats-decoration-text {
  margin-top: 6px;
}

.stats-decoration.v2 .percentage-diff {
  position: absolute;
  top: 24px;
  right: 28px;
}

.stats-decoration.v2.big {
  text-align: center;
  height: 213px;
  padding: 46px 0 0;
}

.stats-decoration.v2.big.secondary {
  background: #1d2333 url("05-big.7368400d.png") bottom repeat-x;
}

.stats-decoration.v2.big.primary {
  background: #1d2333 url("06-big.042bf0ed.png") bottom repeat-x;
}

.stats-decoration.v2.big .stats-decoration-title {
  font-size: 3rem;
}

.stats-decoration .stats-decoration-icon-wrap {
  z-index: 1;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  display: flex;
  position: absolute;
  top: 26px;
  left: 28px;
}

.stats-decoration .stats-decoration-icon-wrap .stats-decoration-icon {
  fill: #fff;
}

.stats-decoration .stats-decoration-title {
  font-size: 1.375rem;
  font-weight: 700;
}

.stats-decoration .stats-decoration-text {
  color: #9aa4bf;
  text-transform: uppercase;
  margin-top: 8px;
  font-size: .75rem;
  font-weight: 700;
}

.percentage-diff {
  align-items: center;
  display: flex;
}

.percentage-diff .percentage-diff-icon-wrap {
  margin-right: 4px;
}

.percentage-diff .percentage-diff-text {
  font-size: .75rem;
  font-weight: 700;
}

.percentage-diff-icon-wrap {
  border: 2px solid #0000;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  display: flex;
}

.percentage-diff-icon-wrap.positive {
  border-color: #4ff461;
}

.percentage-diff-icon-wrap.positive .percentage-diff-icon {
  fill: #4ff461;
}

.percentage-diff-icon-wrap.negative {
  border-color: #ff5384;
}

.percentage-diff-icon-wrap.negative .percentage-diff-icon {
  fill: #ff5384;
}

.percentage-diff-icon-wrap .percentage-diff-icon {
  width: 6px;
  height: 6px;
}

.sidebar-box {
  background-color: #1d2333;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 0 40px #0000000f;
}

.sidebar-box.no-padding {
  padding: 0;
}

.sidebar-box.margin-top {
  margin-top: 56px;
}

.sidebar-box .sidebar-box-title {
  margin-top: 36px;
  font-size: 1rem;
  font-weight: 700;
}

.sidebar-box .sidebar-box-title.medium-space {
  margin-top: 60px;
}

.sidebar-box .sidebar-box-title:first-child {
  margin-top: 0;
}

.sidebar-box .sidebar-menu + .button {
  margin-top: 28px;
}

.sidebar-box .sidebar-menu + .sidebar-box-footer {
  border-top: 1px solid #2f3749;
}

.sidebar-box .sidebar-box-footer {
  padding: 28px;
}

.sidebar-box .sidebar-box-footer .button:first-child {
  margin-top: 0;
}

.sidebar-box .sidebar-box-items {
  margin-top: 36px;
}

.sidebar-box .sidebar-box-items:first-child {
  margin-top: 0;
}

.sidebar-box .sidebar-box-items.small-space {
  margin-top: 32px;
}

.sidebar-box .sidebar-box-items .checkbox-line {
  margin-bottom: 18px;
}

.sidebar-box .sidebar-box-items .checkbox-line:last-child {
  margin-bottom: 0;
}

.sidebar-box .sidebar-box-items .form-input.small {
  width: 80px;
}

.sidebar-box .sidebar-box-items .user-status + .badge-list {
  margin-top: 20px;
}

.sidebar-box .sidebar-box-items .totals-line-list + .totals-line-list {
  margin-top: 26px;
}

.sidebar-box .sidebar-box-items .totals-line-list + .button {
  margin-top: 36px;
}

.sidebar-box .sidebar-box-items .totals-line-list + .price-title {
  margin-top: 32px;
}

.sidebar-box .sidebar-box-items .price-title {
  text-align: center;
}

.sidebar-box .sidebar-box-items .price-title + .totals-line-list, .sidebar-box .sidebar-box-items .badge-list + .button {
  margin-top: 32px;
}

.sidebar-box .sidebar-box-items .price-title + .form {
  margin-top: 40px;
}

.sidebar-box .sidebar-box-items .form .checkbox-wrap + .checkbox-wrap {
  margin-top: 22px;
}

.sidebar-box .sidebar-box-items .form + .button {
  margin-top: 30px;
}

.sidebar-box .sidebar-box-items .button + .user-stats {
  margin-top: 60px;
}

.sidebar-box .button {
  width: 100%;
  margin-top: 22px;
}

.sidebar-box .button.small-space {
  margin-top: 16px;
}

.sidebar-menu .sidebar-menu-item:first-child .sidebar-menu-header {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.sidebar-menu .sidebar-menu-item:last-child {
  border-bottom: none;
}

.sidebar-menu.round-borders .sidebar-menu-item:last-child .sidebar-menu-header, .sidebar-menu.round-borders .sidebar-menu-item:last-child .sidebar-menu-body {
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
}

.sidebar-menu-item {
  border-bottom: 1px solid #2f3749;
}

.sidebar-menu-item.selected .sidebar-menu-header .sidebar-menu-header-control-icon .sidebar-menu-header-control-icon-open {
  display: block;
}

.sidebar-menu-item.selected .sidebar-menu-header .sidebar-menu-header-control-icon .sidebar-menu-header-control-icon-closed {
  display: none;
}

.sidebar-menu-header {
  cursor: pointer;
  background-color: #1d2333;
  height: 112px;
  padding: 28px 26px 0 60px;
  position: relative;
}

.sidebar-menu-header .sidebar-menu-header-icon {
  fill: #4ff461;
  position: absolute;
  top: 28px;
  left: 28px;
}

.sidebar-menu-header .sidebar-menu-header-control-icon .sidebar-menu-header-control-icon-open, .sidebar-menu-header .sidebar-menu-header-control-icon .sidebar-menu-header-control-icon-closed {
  fill: #fff;
  position: absolute;
  top: 32px;
  right: 28px;
}

.sidebar-menu-header .sidebar-menu-header-control-icon .sidebar-menu-header-control-icon-open {
  display: none;
}

.sidebar-menu-header .sidebar-menu-header-title {
  font-size: 1rem;
  font-weight: 700;
}

.sidebar-menu-header .sidebar-menu-header-text {
  color: #9aa4bf;
  margin-top: 4px;
  font-size: .75rem;
  font-weight: 500;
  line-height: 1.33333em;
}

.sidebar-menu-body {
  background-color: #21283b;
  border-top: 1px solid #2f3749;
  padding: 12px 0 12px 60px;
}

.sidebar-menu-body.secondary .sidebar-menu-link:hover, .sidebar-menu-body.secondary .sidebar-menu-link.active {
  color: #7750f8;
}

.sidebar-menu-body .sidebar-menu-link {
  cursor: pointer;
  height: 34px;
  font-size: .875rem;
  font-weight: 700;
  line-height: 34px;
  transition: transform .2s ease-in-out, color .25s ease-in-out;
  display: block;
}

.sidebar-menu-body .sidebar-menu-link:hover, .sidebar-menu-body .sidebar-menu-link.active {
  color: #4ff461;
  transform: translate(4px);
}

.price-title {
  font-size: .875rem;
  font-weight: 700;
}

.price-title.separator-bottom {
  border-bottom: 1px solid #2f3749;
  padding-bottom: 32px;
}

.price-title .currency {
  color: #4ff461;
}

.price-title.big {
  font-size: 2.875rem;
}

.promo-line {
  background-color: #1d2333;
  border-radius: 12px;
  justify-content: space-between;
  align-items: center;
  min-height: 98px;
  padding: 0 20px 0 32px;
  display: flex;
  box-shadow: 0 0 40px #0000000f;
}

.promo-line .promo-line-text {
  color: #9aa4bf;
  width: 310px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.42857em;
}

.promo-line .promo-line-actions {
  display: flex;
}

.promo-line .promo-line-actions .form-input {
  margin-right: 16px;
}

.promo-line .form-input {
  width: 240px;
}

.promo-line .button {
  width: 180px;
}

.tab-box {
  background-color: #1d2333;
  border-radius: 12px;
  box-shadow: 0 0 40px #0000000f;
}

.tab-box .tab-box-options {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  display: flex;
}

.tab-box .tab-box-options .tab-box-option:first-child {
  border-top-left-radius: 12px;
}

.tab-box .tab-box-options .tab-box-option:last-child {
  border-right: none;
  border-top-right-radius: 12px;
}

.tab-box .tab-box-option {
  cursor: pointer;
  background-color: #21283b;
  border-bottom: 1px solid #2f3749;
  border-right: 1px solid #2f3749;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 66px;
  display: flex;
}

.tab-box .tab-box-option .tab-box-option-title {
  color: #9aa4bf;
  font-size: .875rem;
  font-weight: 700;
}

.tab-box .tab-box-option .tab-box-option-title .highlighted {
  color: #4ff461;
}

.tab-box .tab-box-option.active {
  background-color: #1d2333;
  border-bottom: none;
}

.tab-box .tab-box-option.active .tab-box-option-title {
  color: #fff;
}

.tab-box .tab-box-item .tab-box-item-content {
  padding: 0 28px 48px;
}

.tab-box .tab-box-item .tab-box-item-content .tab-box-item-title {
  margin-top: 48px;
  font-size: 1.375rem;
  font-weight: 700;
}

.tab-box .tab-box-item .tab-box-item-content .tab-box-item-paragraph {
  margin-top: 28px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.71429em;
}

.tab-box .tab-box-item .tab-box-item-content .bullet-item-list {
  margin-top: 32px;
}

.bullet-item-list .bullet-item {
  margin-bottom: 12px;
}

.bullet-item-list .bullet-item:last-child {
  margin-bottom: 0;
}

.bullet-item {
  align-items: center;
  display: flex;
}

.bullet-item .bullet-item-icon {
  fill: #4ff461;
  margin-right: 12px;
}

.bullet-item .bullet-item-text {
  font-size: .875rem;
  font-weight: 700;
}

.ordered-item-list .ordered-item {
  margin-bottom: 12px;
}

.ordered-item-list .ordered-item:last-child {
  margin-bottom: 0;
}

.ordered-item {
  display: flex;
}

.ordered-item .ordered-item-bullet {
  flex-shrink: 0;
  width: 28px;
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.71429em;
}

.ordered-item .ordered-item-text {
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.71429em;
}

.profile-stats {
  background-color: #1d2333;
  border-radius: 12px;
  padding-bottom: 32px;
  box-shadow: 0 0 40px #0000000f;
}

.profile-stats.fixed-height {
  height: 558px;
  padding-bottom: 0;
}

.profile-stats .profile-stats-cover {
  background: url("banner-profile-stats.df6aac81.jpg") center / cover no-repeat;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  height: 160px;
  padding-top: 34px;
}

.profile-stats .profile-stats-cover .profile-stats-cover-title, .profile-stats .profile-stats-cover .profile-stats-cover-text {
  color: #fff;
  text-align: center;
}

.profile-stats .profile-stats-cover .profile-stats-cover-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.profile-stats .profile-stats-cover .profile-stats-cover-text {
  margin-top: 4px;
  font-size: 1rem;
  font-weight: 500;
}

.profile-stats .profile-stats-info .user-avatar {
  margin: -60px auto 0;
}

.profile-stats .profile-stats-info .featured-stat-list {
  margin-top: 18px;
}

.profile-stats .profile-stats-info .featured-stat-list + .featured-stat-list {
  margin-top: 38px;
}

.featured-stat-list {
  display: flex;
}

.featured-stat-list .featured-stat {
  width: 100%;
  position: relative;
}

.featured-stat-list .featured-stat:after {
  content: "";
  background-color: #2f3749;
  width: 1px;
  height: 40px;
  position: absolute;
  top: 52px;
  right: 0;
}

.featured-stat-list .featured-stat:last-child:after {
  display: none;
}

.featured-stat {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.featured-stat .featured-stat-icon {
  fill: #fff;
}

.featured-stat .featured-stat-title {
  margin-top: 20px;
  font-size: 1.375rem;
  font-weight: 700;
}

.featured-stat .featured-stat-subtitle {
  margin-top: 12px;
  font-size: .875rem;
  font-weight: 700;
}

.featured-stat .featured-stat-text {
  color: #9aa4bf;
  text-transform: uppercase;
  margin-top: 6px;
  font-size: .75rem;
  font-weight: 700;
}

.featured-stat .progress-arc-wrap + .featured-stat-subtitle {
  margin-top: 20px;
}

.featured-stat-box {
  background-color: #1d2333;
  border-radius: 12px;
  box-shadow: 0 0 40px #0000000f;
}

.featured-stat-box.reactioner .featured-stat-box-cover {
  background: url("banner-reaction.f2ad6153.jpg") center / cover no-repeat;
}

.featured-stat-box.commenter .featured-stat-box-cover {
  background: url("banner-commenter.2af1acc8.jpg") center / cover no-repeat;
}

.featured-stat-box .featured-stat-box-cover {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  height: 120px;
  padding-top: 32px;
}

.featured-stat-box .featured-stat-box-cover .featured-stat-box-cover-title, .featured-stat-box .featured-stat-box-cover .featured-stat-box-cover-text {
  color: #fff;
  text-align: center;
}

.featured-stat-box .featured-stat-box-cover .featured-stat-box-cover-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.featured-stat-box .featured-stat-box-cover .featured-stat-box-cover-text {
  margin-top: 6px;
  font-size: .875rem;
  font-weight: 500;
}

.featured-stat-box .featured-stat-box-info {
  padding-bottom: 28px;
}

.featured-stat-box .featured-stat-box-info .user-avatar {
  margin: -30px auto 0;
}

.featured-stat-box .featured-stat-box-title, .featured-stat-box .featured-stat-box-subtitle, .featured-stat-box .featured-stat-box-text {
  text-align: center;
}

.featured-stat-box .featured-stat-box-title {
  margin-top: 8px;
  font-size: 1.375rem;
  font-weight: 700;
}

.featured-stat-box .featured-stat-box-subtitle {
  margin-top: 14px;
  font-size: .875rem;
  font-weight: 700;
}

.featured-stat-box .featured-stat-box-text {
  color: #9aa4bf;
  text-transform: uppercase;
  margin-top: 4px;
  font-size: .75rem;
  font-weight: 700;
}

.achievement-box {
  border-radius: 12px;
  justify-content: space-between;
  align-items: center;
  min-height: 142px;
  padding: 0 28px;
  display: flex;
  box-shadow: 0 0 40px #0000000f;
}

.achievement-box.secondary {
  background: url("01.1c5011a4.jpg") center / cover no-repeat;
}

.achievement-box.primary {
  background: url("02.cbbaf328.jpg") center / cover no-repeat;
}

.achievement-box .achievement-box-info-wrap {
  align-items: center;
  display: flex;
}

.achievement-box .achievement-box-info-wrap .achievement-box-image {
  margin-right: 16px;
}

.achievement-box .achievement-box-info-wrap .achievement-box-title, .achievement-box .achievement-box-info-wrap .achievement-box-text {
  color: #fff;
}

.achievement-box .achievement-box-info-wrap .achievement-box-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.achievement-box .achievement-box-info-wrap .achievement-box-text {
  margin-top: 8px;
  font-size: .875rem;
  font-weight: 500;
}

.achievement-box .achievement-box-info-wrap .achievement-box-text .bold {
  margin-right: 4px;
  font-weight: 700;
}

.achievement-box .button {
  width: 140px;
}

.level-progress-box {
  background-color: #1d2333;
  border-radius: 12px;
  align-items: center;
  min-height: 120px;
  padding: 0 28px;
  display: flex;
  box-shadow: 0 0 40px #0000000f;
}

.level-progress-box .level-progress-badge {
  flex-shrink: 0;
  margin-right: 28px;
}

.level-progress-box .progress-stat {
  width: 100%;
}

.level-progress-badge {
  background: url("level-badge.4a5facd2.png") center no-repeat;
  flex-direction: column;
  justify-content: center;
  width: 88px;
  height: 86px;
  display: flex;
}

.level-progress-badge .level-progress-badge-title, .level-progress-badge .level-progress-badge-text {
  color: #fff;
  text-align: center;
}

.level-progress-badge .level-progress-badge-title {
  text-transform: uppercase;
  font-size: .6875rem;
  font-weight: 700;
}

.level-progress-badge .level-progress-badge-text {
  margin-top: -3px;
  font-size: 1.75rem;
  font-weight: 700;
}

.exp-line-list .exp-line {
  margin-bottom: 22px;
}

.exp-line-list .exp-line:last-child {
  margin-bottom: 0;
}

.exp-line {
  align-items: center;
  padding-right: 100px;
  display: flex;
  position: relative;
}

.exp-line .exp-line-icon {
  fill: #616a82;
  flex-shrink: 0;
  margin-right: 18px;
}

.exp-line .text-sticker {
  flex-shrink: 0;
  margin-right: 28px;
}

.exp-line .exp-line-text {
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.42857em;
}

.exp-line .exp-line-timestamp {
  color: #9aa4bf;
  font-size: .875rem;
  font-weight: 500;
  position: absolute;
  top: 10px;
  right: 0;
}

.account-stat-box {
  background-color: #1d2333;
  border-radius: 12px;
  padding: 32px 28px 100px;
  position: relative;
  box-shadow: 0 0 40px #0000000f;
}

.account-stat-box.account-stat-active-users {
  background: #1d2333 url("07.bc9534e0.png") bottom / contain no-repeat;
}

.account-stat-box.account-stat-active-users .account-stat-box-icon-wrap {
  background-color: #8560ff;
}

.account-stat-box.account-stat-visits {
  background: #1d2333 url("08.b216af12.png") bottom / contain no-repeat;
}

.account-stat-box.account-stat-visits .account-stat-box-icon-wrap {
  background-color: #08b8f1;
}

.account-stat-box.account-stat-session-duration {
  background: #1d2333 url("09.4e8bfc00.png") bottom / contain no-repeat;
}

.account-stat-box.account-stat-session-duration .account-stat-box-icon-wrap {
  background-color: #00e2cb;
}

.account-stat-box.account-stat-returning-visitors {
  background: #1d2333 url("10.cd7c8593.png") bottom / contain no-repeat;
}

.account-stat-box.account-stat-returning-visitors .account-stat-box-icon-wrap {
  background-color: #66e273;
}

.account-stat-box .percentage-diff {
  position: absolute;
  top: 24px;
  right: 28px;
}

.account-stat-box .account-stat-box-icon-wrap {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto;
  display: flex;
}

.account-stat-box .account-stat-box-icon-wrap .account-stat-box-icon {
  fill: #fff;
}

.account-stat-box .account-stat-box-title {
  text-align: center;
  margin-top: 24px;
  font-size: 3rem;
  font-weight: 700;
}

.account-stat-box .account-stat-box-subtitle {
  text-align: center;
  margin-top: 16px;
  font-size: 1.125rem;
  font-weight: 700;
}

.account-stat-box .account-stat-box-text {
  color: #9aa4bf;
  text-align: center;
  margin-top: 10px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.42857em;
}

.reference-item-list {
  display: flex;
}

.reference-item-list .reference-item {
  margin-right: 32px;
}

.reference-item-list .reference-item:last-child {
  margin-right: 0;
}

.reference-item-list.centered {
  justify-content: center;
}

.reference-item {
  align-items: center;
  display: flex;
}

.reference-item .reference-bullet {
  margin-right: 6px;
}

.reference-item .reference-item-text {
  font-size: .75rem;
  font-weight: 700;
}

.reference-bullet {
  border-radius: 2px;
  width: 8px;
  height: 8px;
}

.reference-bullet.secondary {
  background-color: #7750f8;
}

.reference-bullet.blue {
  background-color: #08b8f1;
}

.reference-bullet.light-blue {
  background-color: #00e2cb;
}

.reference-bullet.primary {
  background-color: #4ff461;
}

.country-stat-list .country-stat {
  margin-bottom: 26px;
}

.country-stat-list .country-stat:last-child {
  margin-bottom: 0;
}

.country-stat {
  justify-content: space-between;
  align-items: center;
  padding-left: 30px;
  display: flex;
  position: relative;
}

.country-stat.with-progress {
  padding-left: 50px;
}

.country-stat.with-progress .country-stat-image {
  width: 38px;
  height: 26px;
}

.country-stat .country-stat-image {
  width: 20px;
  height: 14px;
  position: absolute;
  top: -1px;
  left: 0;
}

.country-stat .country-stat-title, .country-stat .country-stat-text {
  font-size: .875rem;
  font-weight: 700;
}

.full-width-image {
  width: 100%;
  height: auto;
}

.totals-line-list.separator-bottom {
  border-bottom: 1px solid #2f3749;
  padding-bottom: 26px;
}

.totals-line-list .totals-line {
  margin-bottom: 26px;
}

.totals-line-list .totals-line:last-child {
  margin-bottom: 0;
}

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

.totals-line .totals-line-title {
  font-size: .875rem;
  font-weight: 500;
}

.totals-line .totals-line-title .bold {
  color: #fff;
  font-weight: 700;
}

.totals-line .totals-line-text {
  margin-top: 4px;
  font-size: .75rem;
  font-weight: 500;
}

.totals-line .price-title {
  flex-shrink: 0;
}

.upload-box {
  cursor: pointer;
  background-color: #1d2333;
  border-radius: 12px;
  flex-direction: column;
  align-items: center;
  height: 140px;
  padding-top: 32px;
  transition: transform .2s ease-in-out, box-shadow .25s ease-in-out;
  display: flex;
  box-shadow: 0 0 40px #0000000f;
}

.upload-box:hover {
  transform: translate(0, -4px);
  box-shadow: 0 0 40px #0000001f;
}

.upload-box:hover .upload-box-icon {
  fill: #4ff461;
}

.upload-box .upload-box-icon {
  fill: #616a82;
  transition: fill .25s ease-in-out;
}

.upload-box .upload-box-title {
  margin-top: 26px;
  font-size: .875rem;
  font-weight: 700;
}

.upload-box .upload-box-text {
  color: #9aa4bf;
  margin-top: 4px;
  font-size: .75rem;
  font-weight: 500;
}

.draggable-items {
  grid-gap: 24px;
  grid-template-columns: repeat(auto-fit, 60px);
  justify-content: center;
  display: grid;
}

.draggable-item {
  cursor: pointer;
  background-color: #21283b;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  display: flex;
  box-shadow: 3px 5px 20px #0000001a;
}

.draggable-item.empty {
  box-shadow: none;
  cursor: auto;
  background-color: #0000;
  border: 2px dashed #2f3749;
}

.switch-option-list .switch-option {
  margin-bottom: 26px;
}

.switch-option-list .switch-option:last-child {
  margin-bottom: 0;
}

.switch-option {
  position: relative;
}

.switch-option .switch-option-title {
  font-size: .875rem;
  font-weight: 700;
}

.switch-option .switch-option-text {
  color: #8f91ac;
  margin-top: 4px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.42857em;
}

.switch-option .form-switch {
  position: absolute;
  top: 0;
  right: 0;
}

.switch-option .button {
  width: 260px;
  margin-top: 32px;
}

.switch-option .switch-option-meta {
  color: #8f91ac;
  font-size: .875rem;
  font-weight: 500;
  position: absolute;
  bottom: 12px;
  right: 0;
}

.switch-option .switch-option-meta .bold {
  color: #3e3f5e;
  font-weight: 700;
}

.notification-box-list .notification-box {
  margin-bottom: 12px;
}

.notification-box-list .notification-box:last-child {
  margin-bottom: 0;
}

.notification-box {
  background-color: #1d2333;
  border-radius: 12px;
  align-items: center;
  min-height: 88px;
  padding: 22px 28px;
  display: flex;
  position: relative;
  box-shadow: 0 0 40px #0000000f;
}

.notification-box.unread {
  background-color: #21283b;
}

.notification-box:hover .notification-box-close-button {
  display: flex;
}

.notification-box:hover .mark-unread-button, .notification-box:hover .mark-read-button {
  display: block;
}

.notification-box .user-status {
  width: 100%;
}

.notification-box .notification-box-close-button {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  display: flex;
  position: absolute;
  top: 6px;
  right: 6px;
}

.notification-box .notification-box-close-button .notification-box-close-button-icon {
  fill: #fff;
  width: 8px;
  height: 8px;
}

.notification-box .notification-box-close-button, .notification-box .mark-unread-button, .notification-box .mark-read-button {
  display: none;
}

.notification-box .mark-unread-button, .notification-box .mark-read-button {
  cursor: pointer;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 12px;
  right: 30px;
}

.notification-box .mark-unread-button {
  border: 2px solid #4ff461;
}

.notification-box .mark-read-button {
  background-color: #4ff461;
}

.create-entity-box {
  background-color: #1d2333;
  border-radius: 12px;
  height: 284px;
  position: relative;
  box-shadow: 0 0 40px #0000000f;
}

.create-entity-box.v2 {
  height: 360px;
}

.create-entity-box.v2 .create-entity-box-cover {
  height: 180px;
}

.create-entity-box.v2 .create-entity-box-avatar {
  background: url("badge-empty-02.467040d5.png") center no-repeat;
  top: 36px;
}

.create-entity-box.v2 .create-entity-box-info {
  padding-top: 28px;
}

.create-entity-box.v2 .create-entity-box-title {
  text-align: left;
  font-size: 1rem;
}

.create-entity-box.v2 .create-entity-box-category {
  margin-top: 8px;
}

.create-entity-box .create-entity-box-cover {
  background-color: #21283b;
  border-bottom: 1px dashed #2f3749;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  height: 70px;
}

.create-entity-box .create-entity-box-avatar {
  background: url("badge-empty.d2ef8271.png") center no-repeat;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 110px;
  margin-left: -50px;
  display: flex;
  position: absolute;
  top: 16px;
  left: 50%;
}

.create-entity-box .create-entity-box-avatar.primary .create-entity-box-avatar-icon {
  fill: #4ff461;
}

.create-entity-box .create-entity-box-avatar .create-entity-box-avatar-icon {
  fill: #7750f8;
}

.create-entity-box .create-entity-box-info {
  padding: 60px 28px 0;
}

.create-entity-box .create-entity-box-title {
  text-align: center;
  font-size: .875rem;
  font-weight: 700;
}

.create-entity-box .create-entity-box-category {
  color: #9aa4bf;
  padding-left: 16px;
  font-size: .75rem;
  font-weight: 700;
  position: relative;
}

.create-entity-box .create-entity-box-category:before {
  content: "";
  border: 2px solid #616a82;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 1px;
  left: 0;
}

.create-entity-box .create-entity-box-text {
  color: #9aa4bf;
  text-align: center;
  margin-top: 6px;
  font-size: .75rem;
  font-weight: 500;
}

.create-entity-box .button {
  margin-top: 36px;
}

.earning-stat-box {
  background-color: #1d2333;
  border-radius: 12px;
  justify-content: space-between;
  align-items: center;
  min-height: 100px;
  padding: 0 28px;
  display: flex;
  box-shadow: 0 0 40px #0000000f;
}

.earning-stat-box .earning-stat-box-info {
  padding-left: 66px;
  position: relative;
}

.earning-stat-box .earning-stat-box-icon-wrap {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.earning-stat-box .earning-stat-box-icon-wrap .earning-stat-box-icon {
  fill: #fff;
}

.earning-stat-box .earning-stat-box-icon-wrap.stat-item {
  background-color: #8560ff;
}

.earning-stat-box .earning-stat-box-icon-wrap.stat-earning {
  background-color: #08b8f1;
}

.earning-stat-box .earning-stat-box-icon-wrap.stat-revenue {
  background-color: #00e2cb;
}

.earning-stat-box .earning-stat-box-icon-wrap.stat-balance {
  background-color: #66e273;
}

.earning-stat-box .earning-stat-box-title {
  font-size: 1.75rem;
  font-weight: 700;
}

.earning-stat-box .earning-stat-box-title .currency {
  font-size: 1.125rem;
}

.earning-stat-box .earning-stat-box-text {
  color: #9aa4bf;
  text-transform: uppercase;
  margin-top: 2px;
  font-size: .75rem;
  font-weight: 700;
}

.status-info {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.status-info.success .status-icon-wrap {
  background-color: #4ff461;
}

.status-info .status-icon-wrap {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
}

.status-info .status-icon-wrap .status-icon {
  fill: #fff;
  width: 20px;
  height: 16px;
}

.status-info .status-title {
  margin-top: 22px;
  font-size: .875rem;
  font-weight: 700;
}

.status-info .status-text {
  color: #9aa4bf;
  margin-top: 4px;
  font-size: .75rem;
  font-weight: 500;
}

.status-info .status-description {
  color: #9aa4bf;
  text-align: center;
  margin-top: 28px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.42857em;
}

@media screen and (width <= 1365px) {
  .popup-picture .widget-box {
    display: none;
  }

  .notification-box .notification-box-close-button {
    display: flex;
  }

  .notification-box .mark-unread-button, .notification-box .mark-read-button {
    display: block;
  }
}

@media screen and (width <= 1070px) {
  .week-box {
    display: none;
  }

  .promo-line {
    padding: 32px 28px;
    display: block;
  }

  .promo-line .promo-line-text {
    width: auto;
  }

  .promo-line .promo-line-actions {
    margin-top: 24px;
  }
}

@media screen and (width <= 960px) {
  .switch-option .form-switch {
    margin-top: 12px;
    position: relative;
    top: auto;
    right: auto;
  }

  .switch-option .button {
    margin-top: 22px;
  }

  .switch-option .switch-option-meta {
    margin-top: 16px;
    position: static;
  }

  .earning-stat-box.full {
    justify-content: center;
    width: 100%;
  }

  .earning-stat-box .user-stats {
    display: none;
  }
}

@media screen and (width <= 680px) {
  .achievement-box {
    flex-direction: column;
    padding: 28px 18px;
  }

  .achievement-box .button {
    margin-top: 16px;
  }

  .level-progress-box {
    height: auto;
    padding: 32px 28px;
    display: block;
  }

  .level-progress-box .level-progress-badge {
    margin: 0 auto;
  }

  .level-progress-box .progress-stat {
    margin-top: 28px;
  }

  .exp-line {
    padding: 32px 0 0;
    display: block;
  }

  .exp-line .exp-line-icon {
    position: absolute;
    top: 0;
    left: 0;
  }

  .exp-line .text-sticker {
    height: 24px;
    padding: 0 12px;
    line-height: 24px;
    position: absolute;
    top: 0;
    right: 0;
  }

  .exp-line .exp-line-timestamp {
    margin-top: 8px;
    position: static;
  }
}

@media screen and (width <= 479px) {
  .post-option {
    width: 80px;
  }

  .post-option .post-option-text {
    display: none;
  }

  .post-option .post-option-icon {
    margin-right: 0;
  }

  .reaction-options {
    height: 40px;
  }

  .reaction-options .reaction-option {
    width: 20px;
    height: 20px;
  }

  .simple-tab-items {
    border-bottom: none;
  }

  .simple-tab-items .simple-tab-item {
    display: none;
  }

  .simple-tab-items .form {
    display: block;
  }

  .quick-post.medium .quick-post-footer .quick-post-footer-actions .button, .quick-post.medium .quick-post-footer .quick-post-footer-actions .button:last-child {
    width: 80px;
  }

  .promo-line .promo-line-actions {
    display: block;
  }

  .promo-line .promo-line-actions .form-input, .promo-line .promo-line-actions .button {
    width: 100%;
  }

  .promo-line .promo-line-actions .form-input {
    margin-right: 0;
  }

  .promo-line .promo-line-actions .button {
    margin-top: 16px;
  }

  .switch-option .button {
    width: 100%;
  }

  .action-request.with-text {
    width: 40px;
    padding: 0;
  }

  .action-request.with-text .action-request-icon {
    margin-right: 0;
  }

  .action-request.with-text .action-request-text {
    display: none;
  }
}

.table-wrap {
  overflow-x: auto;
}

.table {
  width: 100%;
  display: table;
}

.table.table-forum-category .forum-category {
  width: 384px;
}

.table.table-quests .table-body .table-column:first-child {
  width: 240px;
}

.table.table-quests .table-body .table-column:last-child {
  width: 284px;
}

.table.table-quests .progress-stat-wrap {
  width: 256px;
}

.table.table-top-friends .progress-stat-wrap {
  width: 228px;
}

.table.table-top-friends .table-row .table-column:first-child {
  width: 172px;
}

.table.table-cart .table-header-column:last-child, .table.table-cart .table-column:last-child {
  width: 20px;
}

.table.table-cart .product-preview {
  width: 330px;
}

.table.table-cart .form-select {
  width: 156px;
}

.table.table-cart .price-title {
  width: 76px;
  margin: 0 auto;
}

.table.table-payments .table-header-column:first-child .table-text, .table.table-payments .table-column:first-child .table-text, .table.table-sales .table-header-column:first-child .table-text, .table.table-sales .table-column:first-child .table-text {
  width: 100px;
}

.table.table-sales .table-header-column:nth-child(2) .table-link, .table.table-sales .table-column:nth-child(2) .table-link {
  width: 210px;
}

.table.table-sales .table-column:last-child {
  width: 16px;
}

.table.table-sales .table-row:first-child {
  height: 55px;
}

.table.table-sales .table-row:first-child .table-column {
  padding-top: 15px;
}

.table.table-sales .table-row:last-child {
  height: 55px;
}

.table.table-sales .table-row:last-child .table-column {
  padding-bottom: 15px;
}

.table.table-downloads .table-header-column:last-child, .table.table-downloads .table-column:last-child {
  width: 216px;
}

.table.table-downloads .product-preview {
  min-width: 220px;
}

.table.table-downloads .price-title {
  width: 76px;
}

.table.join-rows .table-header-column {
  border-bottom: 1px solid #2f3749;
}

.table.join-rows .table-header-column:first-child {
  padding-left: 0;
}

.table.join-rows .table-header-column:last-child {
  padding-right: 0;
}

.table.join-rows .table-body {
  box-shadow: none;
  border-radius: 0;
}

.table.join-rows .table-body .table-row {
  background-color: #0000;
}

.table.join-rows .table-body .table-row.micro:first-child {
  height: 55px;
}

.table.join-rows .table-body .table-row.micro:first-child .table-column {
  padding-top: 15px;
}

.table.join-rows .table-body .table-row.tiny:first-child {
  height: 77px;
}

.table.join-rows .table-body .table-row.tiny:first-child .table-column {
  padding-top: 11px;
}

.table.join-rows .table-body .table-row:first-child .table-column:first-child {
  border-top-left-radius: 0;
}

.table.join-rows .table-body .table-row:first-child .table-column:last-child {
  border-top-right-radius: 0;
}

.table.join-rows .table-body .table-row:last-child .table-column:first-child {
  border-bottom-left-radius: 0;
}

.table.join-rows .table-body .table-row:last-child .table-column:last-child {
  border-bottom-right-radius: 0;
}

.table.join-rows .table-body .table-row:nth-child(2n+2) {
  background-color: #0000;
}

.table.join-rows .table-body .table-row .table-column:first-child {
  padding-left: 0;
}

.table.join-rows .table-body .table-row .table-column:last-child {
  padding-right: 0;
}

.table.split-rows {
  border-collapse: separate;
  border-spacing: 0 12px;
}

.table.split-rows .table-header-column {
  height: 16px;
}

.table.split-rows .table-body {
  box-shadow: none;
}

.table.split-rows .table-row {
  border-radius: 12px;
  box-shadow: 0 0 40px #0000000f;
}

.table.split-rows .table-row .table-column:first-child {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.table.split-rows .table-row .table-column:last-child {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.table.split-rows .table-row:first-child .table-column:first-child {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.table.split-rows .table-row:first-child .table-column:last-child {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.table.split-rows .table-row:last-child .table-column:first-child {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.table.split-rows .table-row:last-child .table-column:last-child {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}

.table .table-header {
  display: table-header-group;
}

.table .table-header-column {
  vertical-align: middle;
  height: 40px;
  display: table-cell;
}

.table .table-header-column.centered {
  text-align: center;
}

.table .table-header-column.align-right {
  text-align: right;
}

.table .table-header-column.padded {
  padding: 0 24px;
}

.table .table-header-column.padded-medium {
  padding: 0 46px;
}

.table .table-header-column.padded-left {
  padding-left: 24px;
}

.table .table-header-column.padded-big-left {
  padding-left: 60px;
}

.table .table-header-column:first-child {
  padding-left: 28px;
}

.table .table-header-column:last-child {
  padding-right: 28px;
}

.table .table-header-column .table-header-title {
  text-transform: uppercase;
  font-size: .75rem;
  font-weight: 700;
}

.table .table-body {
  border-radius: 12px;
  display: table-row-group;
  box-shadow: 0 0 40px #0000000f;
}

.table .table-body.same-color-rows .table-row:nth-child(2n+2) {
  background-color: #1d2333;
}

.table .table-body .table-row:first-child .table-column:first-child {
  border-top-left-radius: 12px;
}

.table .table-body .table-row:first-child .table-column:last-child {
  border-top-right-radius: 12px;
}

.table .table-body .table-row:last-child .table-column:first-child {
  border-bottom-left-radius: 12px;
}

.table .table-body .table-row:last-child .table-column:last-child {
  border-bottom-right-radius: 12px;
}

.table .table-body .table-row:nth-child(2n+2) {
  background-color: #21283b;
}

.table .table-row {
  background-color: #1d2333;
  height: 100px;
  display: table-row;
}

.table .table-row.micro {
  height: 40px;
}

.table .table-row.tiny {
  height: 66px;
}

.table .table-row.small {
  height: 86px;
}

.table .table-row.medium {
  height: 108px;
}

.table .table-row.mid {
  height: 148px;
}

.table .table-row.big {
  height: 160px;
}

.table .table-row.big.auto {
  height: auto;
}

.table .table-row.big.auto .table-column {
  padding-top: 44px;
  padding-bottom: 44px;
}

.table .table-column {
  vertical-align: middle;
  display: table-cell;
}

.table .table-column.centered {
  text-align: center;
}

.table .table-column.align-right {
  text-align: right;
}

.table .table-column.padded {
  padding: 0 24px;
}

.table .table-column.padded-medium {
  padding: 0 46px;
}

.table .table-column.padded-left {
  padding-left: 24px;
}

.table .table-column.padded-big-left {
  padding-left: 60px;
}

.table .table-column:first-child {
  padding-left: 28px;
}

.table .table-column:last-child {
  padding-right: 28px;
}

.table .table-column .table-information {
  align-items: center;
  display: flex;
}

.table .table-column .table-information .table-image {
  margin-right: 16px;
}

.table .table-column .table-title {
  font-size: .875rem;
  font-weight: 700;
}

.table .table-column .table-title .highlighted {
  color: #4ff461;
}

.table .table-column .table-text {
  color: #9aa4bf;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.14286em;
}

.table .table-column .table-text .light {
  color: #9aa4bf;
}

.table .table-column .table-link {
  font-size: .875rem;
  font-weight: 700;
  display: block;
}

.table .table-column .table-link .highlighted {
  color: #4ff461;
}

.table .table-column .table-link + .table-link {
  margin-top: 12px;
}

.table .table-column .table-actions {
  display: flex;
}

.table .table-column .table-actions .button {
  width: 100px;
  margin-right: 16px;
}

.table .table-column .table-actions .button:last-child {
  margin-right: 0;
}

.table .table-column .table-action {
  cursor: pointer;
}

.table .table-column .table-action .icon-delete {
  opacity: .4;
  transition: opacity .2s ease-in-out, fill .2s ease-in-out;
}

.table .table-column .table-action .icon-delete:hover {
  fill: #fff;
  opacity: 1;
}

@media screen and (width <= 1260px) {
  .table.table-forum-category .table-header-column:last-child, .table.table-forum-category .table-column:last-child, .table.table-forum-discussion .table-header-column:last-child, .table.table-forum-discussion .table-column:last-child {
    display: none;
  }

  .table.table-forum-category .table-row:first-child .table-column:nth-last-child(2), .table.table-forum-discussion .table-row:first-child .table-column:nth-last-child(2) {
    border-top-right-radius: 12px;
  }

  .table.table-forum-category .table-row:last-child .table-column:nth-last-child(2), .table.table-forum-discussion .table-row:last-child .table-column:nth-last-child(2) {
    border-bottom-right-radius: 12px;
  }

  .table.table-forum-category .forum-category {
    width: auto;
  }

  .table.table-quests .table-header-column:nth-child(3), .table.table-quests .table-column:nth-child(3), .table.table-top-friends .table-header-column:nth-child(4), .table.table-top-friends .table-header-column:nth-child(5), .table.table-top-friends .table-column:nth-child(4), .table.table-top-friends .table-column:nth-child(5) {
    display: none;
  }
}

@media screen and (width <= 960px) {
  .table.table-forum-category .table-header-column.padded-medium, .table.table-forum-category .table-column.padded-medium, .table.table-forum-discussion .table-header-column.padded-medium, .table.table-forum-discussion .table-column.padded-medium {
    padding: 0 28px;
  }

  .table.table-forum-category .table-header-column:nth-last-child(3), .table.table-forum-category .table-column:nth-last-child(3), .table.table-forum-discussion .table-header-column:nth-last-child(3), .table.table-forum-discussion .table-column:nth-last-child(3) {
    display: none;
  }

  .table.table-forum-category .table-column {
    min-height: 160px;
  }

  .table.table-forum-category .forum-category .forum-category-image {
    display: none;
  }

  .table.table-forum-category .forum-category .forum-category-info {
    margin-left: 0;
  }

  .table.table-quests .table-header-column:nth-child(2), .table.table-quests .table-column:nth-child(2) {
    display: none;
  }

  .table.table-quests .table-body .table-column:first-child, .table.table-quests .table-body .table-column .progress-stat-wrap {
    width: auto;
  }

  .table.table-quests .table-body .table-column .table-image {
    display: none;
  }

  .table.table-top-friends .table-row:first-child {
    height: auto;
  }

  .table.table-top-friends .table-row:first-child .table-column {
    padding-top: 28px;
  }

  .table.table-top-friends .table-header-column:nth-child(2), .table.table-top-friends .table-header-column:nth-child(3), .table.table-top-friends .table-column:nth-child(2), .table.table-top-friends .table-column:nth-child(3) {
    display: none;
  }

  .table.table-top-friends .table-header-column:last-child, .table.table-top-friends .table-column:last-child {
    padding-left: 68px;
  }

  .table.table-top-friends .progress-stat-wrap {
    width: 180px;
  }

  .table.join-rows .table-body .table-row.micro:first-child, .table.join-rows .table-body .table-row.tiny:first-child {
    height: auto;
  }

  .table.join-rows .table-body .table-row.micro:first-child .table-column, .table.join-rows .table-body .table-row.tiny:first-child .table-column {
    padding-top: 24px;
  }

  .table .table-row {
    height: auto;
  }

  .table .table-row .table-column {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .table .table-row.micro .table-column, .table .table-row.tiny .table-column {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .table .table-row.medium .table-column, .table .table-row.big .table-column {
    padding-top: 28px;
    padding-bottom: 28px;
  }
}

@media screen and (width <= 460px) {
  .table.table-forum-category .table-header-column:first-child, .table.table-forum-category .table-column:first-child, .table.table-forum-discussion .table-header-column:first-child, .table.table-forum-discussion .table-column:first-child {
    padding-right: 28px;
  }

  .table.table-forum-category .table-header-column:nth-last-child(2), .table.table-forum-category .table-column:nth-last-child(2), .table.table-forum-discussion .table-header-column:nth-last-child(2), .table.table-forum-discussion .table-column:nth-last-child(2) {
    display: none;
  }

  .table.table-forum-category .table-row:first-child .table-column:first-child, .table.table-forum-discussion .table-row:first-child .table-column:first-child {
    border-top-right-radius: 12px;
  }

  .table.table-forum-category .table-row:last-child .table-column:first-child, .table.table-forum-discussion .table-row:last-child .table-column:first-child {
    border-bottom-right-radius: 12px;
  }

  .table.table-top-friends .table-header-column:last-child, .table.table-top-friends .table-column:last-child {
    padding-left: 28px;
  }

  .table.table-top-friends .table-row .table-column:first-child {
    width: auto;
  }

  .table.table-top-friends .user-status .user-status-title, .table.table-top-friends .user-status .user-status-text, .table.table-top-sellers .product-preview .product-preview-image {
    display: none;
  }
}

.widget-box {
  background-color: #1d2333;
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
  box-shadow: 0 0 40px #0000000f;
}

.widget-box.no-padding {
  padding: 0;
}

.widget-box.no-padding .widget-box-title {
  padding: 32px 28px 0;
}

.widget-box .widget-box-settings {
  z-index: 9999;
  position: absolute;
  top: 22px;
  right: 19px;
}

.widget-box .widget-box-controls {
  z-index: 9999;
  position: absolute;
  top: 28px;
  right: 22px;
}

.widget-box .widget-box-controls .slider-controls {
  display: flex;
}

.widget-box .widget-box-controls .slider-controls .slider-control:first-child {
  margin-right: 2px;
}

.widget-box .widget-box-actions {
  justify-content: space-between;
  display: flex;
}

.widget-box .widget-box-actions .widget-box-action {
  display: flex;
}

.widget-box .widget-box-actions .widget-box-action .reference-item-list {
  position: relative;
  top: -3px;
}

.widget-box .widget-box-actions .widget-box-action .form-select.v2 {
  top: -6px;
}

.widget-box .widget-box-footer .reference-item-list {
  margin-top: 12px;
}

.widget-box .widget-box-footer .chart-info {
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-left: 36px;
  display: flex;
}

.widget-box .widget-box-content-slider .reaction-stats + .reaction-stats {
  margin-top: 40px;
}

.widget-box .widget-box-content-slider .badge-item-stat .text-sticker {
  top: 32px;
  right: 18px;
}

.widget-box .widget-box-title {
  font-size: 1rem;
  font-weight: 700;
}

.widget-box .widget-box-title .highlighted {
  color: #4ff461;
}

.widget-box .widget-box-text {
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.71429em;
}

.widget-box .widget-box-text.light {
  color: #9aa4bf;
}

.widget-box .widget-box-content {
  margin-top: 36px;
}

.widget-box .widget-box-content:first-child {
  margin-top: 0;
}

.widget-box .widget-box-content.small-margin-top {
  margin-top: 28px;
}

.widget-box .widget-box-content.no-margin-top {
  margin-top: 0;
}

.widget-box .widget-box-content.padded-for-scroll {
  height: 358px;
  padding-bottom: 28px;
}

.widget-box .widget-box-content.padded-for-scroll.small {
  height: 320px;
}

.widget-box .widget-box-content.padded-for-scroll.medium {
  height: 676px;
}

.widget-box .widget-box-content.padded-for-scroll .scroll-content {
  padding: 0 28px;
}

.widget-box .widget-box-content.padded-for-scroll .exp-line-list {
  padding-top: 8px;
}

.widget-box .widget-box-content .paragraph + .information-line-list, .widget-box .widget-box-content .filters + .user-status-list, .widget-box .widget-box-content .filters + .post-preview-line-list {
  margin-top: 24px;
}

.widget-box .widget-box-content .week-box:last-child {
  margin: 22px 0 -60px;
}

.widget-box .widget-box-content .calendar {
  margin: 0 auto;
}

.widget-box .widget-box-content .calendar-events-preview {
  margin-top: 24px;
}

.widget-box .widget-box-content .ordered-item-list {
  margin-top: 18px;
}

.widget-box .widget-box-content .progress-arc-wrap {
  margin: 0 auto;
}

.widget-box .widget-box-content .draggable-items + .widget-box-text {
  margin-top: 32px;
}

.widget-box .widget-box-content .user-stats {
  margin-top: 36px;
}

.widget-box .widget-box-content .user-stats.reference .user-stat {
  width: 100%;
}

.widget-box .widget-box-content .user-stats.reference .user-stat:after {
  height: 40px;
  top: 20px;
}

.widget-box .widget-box-content .user-stats + .user-stats {
  margin-top: 32px;
}

.widget-box .achievement-status-list {
  margin-top: 50px;
}

.widget-box .widget-box-status {
  padding-top: 24px;
  position: relative;
}

.widget-box .widget-box-status .widget-box-status-content {
  padding: 0 28px;
}

.widget-box .widget-box-status .widget-box-status-content .user-status {
  padding-right: 70px;
  font-family: Rajdhani, sans-serif;
}

.widget-box .widget-box-status .widget-box-status-content .user-status .user-status-title .user-avatar {
  margin-right: 24px;
  display: inline;
}

.widget-box .widget-box-status .user-status + .widget-box-status-text {
  margin-top: 20px;
}

.widget-box .widget-box-status .widget-box-status-text {
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.71429em;
}

.widget-box .widget-box-status .widget-box-status-text + .widget-box-status-text {
  margin-top: 26px;
}

.widget-box .widget-box-status .widget-box-status-text + .tag-list {
  margin-top: 8px;
}

.widget-box .widget-box-status .widget-box-picture {
  cursor: pointer;
  width: 100%;
  height: auto;
  margin-top: 20px;
}

.widget-box .widget-box-status .tag-sticker, .widget-box .widget-box-status .text-sticker {
  position: absolute;
  top: -8px;
  right: 68px;
}

.widget-box .widget-box-status .post-preview, .widget-box .widget-box-status .quote-box {
  margin-top: 28px;
}

.widget-box .widget-box-status .video-status, .widget-box .widget-box-status .iframe-wrap, .widget-box .widget-box-status .poll-box, .widget-box .widget-box-status .picture-collage, .widget-box .widget-box-status .widget-box {
  margin-top: 24px;
}

.widget-box .widget-box-status .widget-box {
  padding-bottom: 32px;
}

.widget-box .widget-box-status .tag-list {
  margin-top: 28px;
}

.widget-box .widget-box-status .tag-list:first-child {
  margin-top: 18px;
}

.widget-box .widget-box-status .content-actions {
  border-top: 1px solid #2f3749;
  margin-top: 28px;
}

.widget-box .widget-box-button {
  width: 100%;
  margin-top: 32px;
}

@media screen and (width <= 1365px) {
  .widget-box .widget-box-footer .chart-info {
    display: none;
  }
}

@media screen and (width <= 680px) {
  .widget-box .widget-box-status > .text-sticker .text-sticker-icon {
    margin-right: 0;
  }

  .widget-box .widget-box-status > .text-sticker .text-sticker-content {
    display: none;
  }

  .widget-box .widget-box-actions .widget-box-action:last-child .reference-item-list {
    position: absolute;
    top: 60px;
    left: 28px;
  }
}

.loader-bars {
  justify-content: center;
  height: 40px;
  display: flex;
}

.loader-bars .loader-bar {
  border-radius: 200px;
  width: 4px;
  height: 100%;
  margin-right: 4px;
  animation: .5s ease-in infinite alternate loader-bars;
  transform: scaleY(.2);
}

.loader-bars .loader-bar:last-child {
  margin-right: 0;
}

.loader-bars .loader-bar:first-child {
  background-color: #41d04f;
}

.loader-bars .loader-bar:nth-child(2) {
  background-color: #50d551;
  animation-delay: .1s;
}

.loader-bars .loader-bar:nth-child(3) {
  background-color: #67dc55;
  animation-delay: .2s;
}

.loader-bars .loader-bar:nth-child(4) {
  background-color: #7de358;
  animation-delay: .3s;
}

.loader-bars .loader-bar:nth-child(5) {
  background-color: #99eb5c;
  animation-delay: .4s;
}

.loader-bars .loader-bar:nth-child(6) {
  background-color: #b1f35f;
  animation-delay: .5s;
}

.loader-bars .loader-bar:nth-child(7) {
  background-color: #c7f962;
  animation-delay: .6s;
}

.loader-bars .loader-bar:nth-child(8) {
  background-color: #d6fe65;
  animation-delay: .7s;
}

@keyframes loader-bars {
  0% {
    transform: scaleY(.2);
  }

  100% {
    transform: scaleY(1);
  }
}

.error-section {
  background-color: #161b28;
  background-image: url("404-bg.ba6668dd.png"), url("vikinger-logo.8cd3614a.png"), url("dot-texture.71d59c6d.png"), none;
  background-position: 0 0, right 40px top 40px, 0 0, 0 0;
  background-repeat: no-repeat, no-repeat, repeat, repeat;
  background-size: contain, auto, auto;
  background-attachment: scroll, scroll, scroll, scroll;
  background-origin: padding-box, padding-box, padding-box, padding-box;
  background-clip: border-box, border-box, border-box, border-box;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.error-section .error-section-title {
  color: #fff;
  font-family: Titillium Web, sans-serif;
  font-size: 15.8125rem;
  font-weight: 900;
  position: absolute;
  top: 280px;
  left: 220px;
}

.error-section .error-section-info {
  width: 420px;
  position: absolute;
  top: 400px;
  right: 270px;
}

.error-section .error-section-subtitle {
  color: #fff;
  text-transform: uppercase;
  font-size: 6.5rem;
  font-weight: 700;
}

.error-section .error-section-subtitle + .error-section-text {
  margin-top: 30px;
}

.error-section .error-section-text {
  margin-top: 20px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.77778em;
}

.error-section .button {
  width: 160px;
  margin-top: 50px;
}

@media screen and (width >= 2560px) {
  .error-section .error-section-title {
    top: 35%;
    left: 15%;
  }

  .error-section .error-section-info {
    top: 45%;
    right: 20%;
  }
}

@media screen and (width <= 1366px) {
  .error-section .error-section-title {
    top: 185px;
    left: 145px;
  }

  .error-section .error-section-info {
    top: 270px;
    right: 140px;
  }
}

@media screen and (width <= 1365px) {
  .error-section {
    background: #161b28 url("dot-texture.71d59c6d.png") 0 0;
    padding: 120px 0;
    position: static;
  }

  .error-section .error-section-title {
    color: #fff;
    text-align: center;
    font-size: 3.75rem;
    position: static;
  }

  .error-section .error-section-info {
    text-align: center;
    width: 90%;
    margin: 0 auto;
    position: static;
  }

  .error-section .error-section-subtitle {
    margin-top: 60px;
    font-size: 2.25rem;
  }

  .error-section .button {
    margin: 50px auto 0;
  }
}

.picture {
  width: 52px;
  height: 52px;
}

.picture.round {
  border-radius: 12px;
}

.picture.round.small, .picture.round.tiny {
  border-radius: 10px;
}

.picture.circle {
  border-radius: 50%;
}

.picture.medium {
  width: 60px;
  height: 60px;
}

.picture.small {
  width: 40px;
  height: 40px;
}

.picture.tiny {
  width: 32px;
  height: 32px;
}

.picture-item-list {
  justify-content: center;
  display: grid;
}

.picture-item-list.small {
  grid-gap: 6px;
  grid-template-columns: repeat(auto-fit, 52px);
}

.picture-item {
  cursor: pointer;
  position: relative;
}

.picture-item .picture-item-overlay {
  background-color: #40d04fe6;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.picture-item .picture-item-overlay.round {
  border-radius: 12px;
}

.picture-item .picture-item-overlay.circle {
  border-radius: 50%;
}

.picture-item .picture-item-overlay .picture-item-overlay-text {
  color: #fff;
  font-size: .875rem;
  font-weight: 700;
}

.progress-stat-wrap {
  padding-right: 56px;
  position: relative;
}

.progress-stat-wrap .progress-stat .bar-progress-wrap {
  position: absolute;
  top: -5px;
  right: 0;
}

.progress-stat-wrap .progress-stat .bar-progress-wrap:first-child, .progress-stat-wrap .progress-stat .bar-progress-wrap:last-child {
  margin: 0;
}

.progress-stat.small {
  width: 178px;
}

.progress-stat .bar-progress-wrap {
  position: relative;
}

.progress-stat .bar-progress-wrap:first-child {
  margin-bottom: 6px;
}

.progress-stat .bar-progress-wrap.big {
  margin-bottom: 20px;
}

.progress-stat .bar-progress-wrap.medium:first-child {
  margin-bottom: 14px;
}

.progress-stat .bar-progress-wrap.small:last-child {
  margin-top: 24px;
}

.progress-stat .bar-progress-wrap:last-child {
  margin-top: 28px;
}

.progress-stat .bar-progress-wrap .bar-progress-info {
  color: #fff;
  text-transform: uppercase;
  justify-content: space-between;
  font-size: .75rem;
  font-weight: 700;
  display: flex;
}

.progress-stat .bar-progress-wrap .bar-progress-info.progress-with-text {
  font-size: 1.25rem;
  font-weight: 700;
}

.progress-stat .bar-progress-wrap .bar-progress-info.progress-with-text .bar-progress-unit {
  margin-right: 2px;
}

.progress-stat .bar-progress-wrap .bar-progress-info.progress-with-text .light {
  text-transform: none;
  font-size: 1rem;
  font-weight: 500;
}

.progress-stat .bar-progress-wrap .bar-progress-info.negative {
  color: #fff;
}

.progress-stat .bar-progress-wrap .bar-progress-info.start {
  justify-content: flex-start;
}

.progress-stat .bar-progress-wrap .bar-progress-info.start .bar-progress-text {
  margin-right: 4px;
}

.progress-stat .bar-progress-wrap .bar-progress-info.center {
  justify-content: center;
}

.progress-stat .bar-progress-wrap .bar-progress-info.regular {
  text-transform: none;
}

.progress-stat .bar-progress-wrap .bar-progress-info.medium {
  font-size: .875rem;
}

.progress-stat .bar-progress-wrap .bar-progress-info .light {
  color: #9aa4bf;
  margin-right: 4px;
}

.progress-stat .bar-progress-wrap .bar-progress-text.no-space .bar-progress-unit {
  margin-left: 0;
}

.progress-stat .bar-progress-wrap .bar-progress-unit {
  text-transform: uppercase;
  margin-left: 3px;
}

.progress-stat .progress-stat-info {
  color: #9aa4bf;
  text-transform: uppercase;
  font-size: .75rem;
  font-weight: 700;
  position: absolute;
  top: 8px;
  right: 0;
}

@media screen and (width <= 680px) {
  .progress-stat .progress-stat-info {
    display: none;
  }
}

.progress-arc-wrap {
  width: 140px;
  height: 140px;
  position: relative;
}

.progress-arc-wrap.small {
  width: 80px;
  height: 80px;
}

.progress-arc-wrap.small .progress-arc-info .progress-arc-title {
  font-size: 1.375rem;
}

.progress-arc-wrap.tiny {
  width: 60px;
  height: 60px;
}

.progress-arc-wrap.tiny .progress-arc-info .progress-arc-title {
  text-transform: uppercase;
  font-size: .75rem;
}

.progress-arc-wrap .progress-arc {
  z-index: 2;
  width: 100%;
  height: 100%;
  position: relative;
}

.progress-arc-wrap .progress-arc-info {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.progress-arc-wrap .progress-arc-info .progress-arc-title {
  font-size: 2.25rem;
  font-weight: 700;
}

.progress-arc-wrap .progress-arc-info .progress-arc-text {
  color: #9aa4bf;
  text-transform: uppercase;
  margin-top: 2px;
  font-size: .75rem;
  font-weight: 700;
}

.progress-arc-block {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.progress-arc-block .progress-arc-block-info {
  text-align: center;
  margin-top: 20px;
}

.progress-arc-block .progress-arc-block-info .progress-arc-block-title {
  font-size: .875rem;
  font-weight: 700;
}

.progress-arc-block .progress-arc-block-info .progress-arc-block-text {
  color: #9aa4bf;
  text-transform: uppercase;
  margin-top: 6px;
  font-size: .75rem;
  font-weight: 700;
}

.progress-arc-summary {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.progress-arc-summary .progress-arc-summary-info {
  text-align: center;
  margin-top: 36px;
}

.progress-arc-summary .progress-arc-summary-info .progress-arc-summary-title {
  font-size: 1.125rem;
  font-weight: 700;
}

.progress-arc-summary .progress-arc-summary-info .progress-arc-summary-subtitle {
  color: #9aa4bf;
  margin-top: 6px;
  font-size: .875rem;
  font-weight: 500;
}

.progress-arc-summary .progress-arc-summary-info .progress-arc-summary-text {
  margin-top: 22px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.42857em;
}

.user-avatar {
  width: 100px;
  height: 110px;
  display: block;
  position: relative;
}

.user-avatar.online:before, .user-avatar.offline:before, .user-avatar.away:before {
  content: "";
  z-index: 10;
  border: 3px solid #1d2333;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 3px;
  left: -2px;
}

.user-avatar.online:before {
  background-color: #40d04f;
}

.user-avatar.offline:before {
  background-color: #f9515c;
}

.user-avatar.away:before {
  background-color: #adafca;
}

.user-avatar.big {
  width: 148px;
  height: 164px;
}

.user-avatar.big .user-avatar-content {
  top: 27px;
  left: 24px;
}

.user-avatar.big .user-avatar-progress, .user-avatar.big .user-avatar-progress-border {
  top: 14px;
  left: 12px;
}

.user-avatar.big .user-avatar-badge {
  width: 40px;
  height: 44px;
  top: 102px;
  right: 8px;
}

.user-avatar.big .user-avatar-badge .user-avatar-badge-content {
  top: 5px;
  left: 4px;
}

.user-avatar.big .user-avatar-badge .user-avatar-badge-text {
  font-size: 1rem;
}

.user-avatar.medium {
  width: 120px;
  height: 132px;
}

.user-avatar.medium .user-avatar-content {
  top: 21px;
  left: 19px;
}

.user-avatar.medium .user-avatar-progress, .user-avatar.medium .user-avatar-progress-border {
  top: 11px;
  left: 10px;
}

.user-avatar.medium .user-avatar-badge {
  width: 32px;
  height: 36px;
  top: 82px;
  right: 7px;
}

.user-avatar.medium .user-avatar-badge .user-avatar-badge-content {
  top: 4px;
  left: 3px;
}

.user-avatar.medium .user-avatar-badge .user-avatar-badge-text {
  font-size: .875rem;
}

.user-avatar.small {
  width: 50px;
  height: 56px;
}

.user-avatar.small .user-avatar-content {
  top: 12px;
  left: 10px;
}

.user-avatar.small .user-avatar-progress, .user-avatar.small .user-avatar-progress-border {
  top: 6px;
  left: 5px;
}

.user-avatar.small .user-avatar-badge {
  width: 22px;
  height: 24px;
  top: 27px;
  right: 2px;
}

.user-avatar.small .user-avatar-badge .user-avatar-badge-content {
  top: 3px;
  left: 3px;
}

.user-avatar.small .user-avatar-badge .user-avatar-badge-text {
  font-size: .625rem;
}

.user-avatar.smaller .user-avatar-overlay {
  width: 30px;
  height: 32px;
}

.user-avatar.smaller .user-avatar-overlay-content .user-avatar-overlay-content-text {
  font-size: .6875rem;
}

.user-avatar.no-stats {
  width: 100px;
  height: 108px;
}

.user-avatar.no-stats .user-avatar-content {
  top: 8px;
  left: 8px;
}

.user-avatar.no-stats.big {
  width: 148px;
  height: 164px;
}

.user-avatar.no-stats.big .user-avatar-content {
  top: 14px;
  left: 12px;
}

.user-avatar.no-stats.medium {
  width: 120px;
  height: 130px;
}

.user-avatar.no-stats.medium .user-avatar-content {
  top: 10px;
  left: 10px;
}

.user-avatar.no-stats.small {
  width: 50px;
  height: 56px;
}

.user-avatar.no-stats.small .user-avatar-content {
  top: 6px;
  left: 5px;
}

.user-avatar.no-stats.smaller {
  width: 34px;
  height: 36px;
}

.user-avatar.no-stats.smaller .user-avatar-content {
  top: 2px;
  left: 2px;
}

.user-avatar.no-stats.micro {
  width: 22px;
  height: 24px;
}

.user-avatar.no-stats.micro .user-avatar-content {
  top: 2px;
  left: 2px;
}

.user-avatar.no-border {
  width: 84px;
  height: 92px;
}

.user-avatar.no-border .user-avatar-content {
  top: 0;
  left: 0;
}

.user-avatar.no-border.big {
  width: 124px;
  height: 136px;
}

.user-avatar.no-border.medium {
  width: 100px;
  height: 110px;
}

.user-avatar.no-border.small {
  width: 40px;
  height: 44px;
}

.user-avatar.no-border.tiny {
  width: 24px;
  height: 26px;
}

.user-avatar.no-border.micro {
  width: 18px;
  height: 20px;
}

.user-avatar.no-outline {
  width: 84px;
  height: 92px;
}

.user-avatar.no-outline .user-avatar-progress, .user-avatar.no-outline .user-avatar-progress-border {
  top: 0;
  left: 0;
}

.user-avatar.no-outline .user-avatar-content {
  top: 9px;
  left: 8px;
}

.user-avatar.no-outline .user-avatar-badge {
  top: 60px;
  right: -3px;
}

.user-avatar.no-outline.small {
  width: 40px;
  height: 44px;
}

.user-avatar.no-outline.small .user-avatar-content {
  top: 6px;
  left: 5px;
}

.user-avatar.no-outline.small .user-avatar-badge {
  top: 21px;
  right: -3px;
}

.user-avatar .user-avatar-border {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
}

.user-avatar .user-avatar-border .hexagon-content {
  background-color: #fff;
}

.user-avatar .user-avatar-content {
  z-index: 3;
  position: absolute;
  top: 18px;
  left: 16px;
}

.user-avatar .user-avatar-progress, .user-avatar .user-avatar-progress-border {
  z-index: 2;
  position: absolute;
  top: 9px;
  left: 8px;
}

.user-avatar .user-avatar-progress {
  z-index: 3;
}

.user-avatar .user-avatar-progress-border {
  z-index: 2;
}

.user-avatar .user-avatar-badge {
  z-index: 4;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 32px;
  display: flex;
  position: absolute;
  top: 68px;
  right: 5px;
}

.user-avatar .user-avatar-badge .user-avatar-badge-border {
  z-index: 4;
  position: absolute;
  top: 0;
  left: 0;
}

.user-avatar .user-avatar-badge .user-avatar-badge-border .hexagon-content {
  background-color: #fff;
}

.user-avatar .user-avatar-badge .user-avatar-badge-content {
  z-index: 5;
  position: absolute;
  top: 4px;
  left: 3px;
}

.user-avatar .user-avatar-badge .user-avatar-badge-text {
  color: #fff;
  pointer-events: none;
  z-index: 6;
  font-size: .75rem;
  font-weight: 700;
  position: relative;
}

.user-avatar .user-avatar-overlay {
  z-index: 11;
  position: absolute;
  top: 2px;
  left: 2px;
}

.user-avatar .user-avatar-overlay-content {
  z-index: 12;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.user-avatar .user-avatar-overlay-content .user-avatar-overlay-content-text {
  color: #fff;
  pointer-events: none;
  font-weight: 700;
  position: relative;
  top: 1px;
}

.user-status-list .user-status {
  margin-bottom: 22px;
}

.user-status-list .user-status:last-child {
  margin-bottom: 0;
}

.user-status {
  min-height: 44px;
  padding: 2px 0 0 52px;
  position: relative;
}

.user-status.no-padding-top {
  padding-top: 0;
}

.user-status.notification {
  padding-right: 60px;
}

.user-status.request .user-status-title, .user-status.request-small .user-status-title {
  margin-top: 2px;
  line-height: 1.14286em;
}

.user-status.request .user-status-text, .user-status.request-small .user-status-text {
  margin-top: 8px;
}

.user-status.request-small {
  padding-right: 48px;
}

.user-status.request {
  padding-right: 100px;
}

.user-status .user-status-avatar, .user-status .user-status-activity {
  position: absolute;
  top: 0;
  left: 0;
}

.user-status .user-status-activity {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  display: flex;
}

.user-status .user-status-activity.activity-reaction {
  background-color: #8560ff;
}

.user-status .user-status-activity.activity-comment {
  background-color: #08b8f1;
}

.user-status .user-status-activity.activity-share {
  background-color: #00e2cb;
}

.user-status .user-status-activity.activity-update {
  background-color: #66e273;
}

.user-status .user-status-activity .user-status-activity-icon {
  fill: #fff;
}

.user-status .user-status-title {
  color: #fff;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.42857em;
}

.user-status .user-status-title.medium {
  font-size: 1rem;
}

.user-status .user-status-title.medium + .user-status-text {
  margin-top: 2px;
}

.user-status .user-status-title .bold {
  color: #fff;
  font-weight: 700;
}

.user-status .user-status-title .highlighted {
  color: #4ff461;
  font-weight: 600;
}

.user-status .user-status-timestamp {
  color: #9aa4bf;
  margin-top: 10px;
  font-size: .75rem;
  font-weight: 500;
}

.user-status .user-status-timestamp.small-space {
  margin-top: 4px;
}

.user-status .user-status-timestamp.floaty {
  margin-top: 0;
  position: absolute;
  top: 7px;
  right: 0;
}

.user-status .user-status-text {
  color: #9aa4bf;
  margin-top: 4px;
  font-size: .875rem;
  font-weight: 500;
}

.user-status .user-status-text.small {
  font-size: .75rem;
}

.user-status .user-status-text.small-space {
  margin-top: 4px;
}

.user-status .user-status-text a {
  color: #9aa4bf;
}

.user-status .user-status-tag {
  color: #fff;
  text-transform: uppercase;
  background-color: #3e3f5e;
  border-radius: 200px;
  height: 20px;
  padding: 0 8px;
  font-size: .75rem;
  font-weight: 700;
  line-height: 20px;
  display: inline-block;
  position: relative;
  top: -3px;
}

.user-status .user-status-tag.online {
  background-color: #40d04f;
}

.user-status .user-status-tag.offline {
  background-color: #f9515c;
}

.user-status .user-status-tag.away {
  background-color: #adafca;
}

.user-status .user-status-icon {
  opacity: .4;
  position: absolute;
  top: 10px;
  right: 0;
}

.user-status .action-request-list {
  position: absolute;
  top: 2px;
  right: 0;
}

.cart-item-preview {
  padding-left: 70px;
  position: relative;
}

.cart-item-preview .cart-item-preview-image {
  position: absolute;
  top: 2px;
  left: 0;
}

.cart-item-preview .cart-item-preview-title {
  font-size: .875rem;
  font-weight: 700;
}

.cart-item-preview .cart-item-preview-title a {
  color: #fff;
  font-weight: 700;
}

.cart-item-preview .cart-item-preview-text {
  margin-top: 2px;
  font-size: .75rem;
  font-weight: 500;
}

.cart-item-preview .cart-item-preview-price {
  margin-top: 16px;
  font-size: .875rem;
  font-weight: 700;
}

.cart-item-preview .cart-item-preview-price .highlighted {
  color: #4ff461;
}

.cart-item-preview .cart-item-preview-action {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}

.cart-item-preview .cart-item-preview-action .icon-delete {
  opacity: .4;
  transition: fill .2s ease-in-out, opacity .2s ease-in-out;
}

.cart-item-preview .cart-item-preview-action:hover .icon-delete {
  fill: #fff;
  opacity: 1;
}

.cart-preview-total {
  border-top: 1px solid #2f3749;
  border-bottom: 1px solid #2f3749;
  justify-content: space-between;
  align-items: center;
  height: 55px;
  padding: 0 28px 0 100px;
  display: flex;
}

.cart-preview-total .cart-preview-total-title, .cart-preview-total .cart-preview-total-text {
  font-size: .875rem;
  font-weight: 700;
}

.cart-preview-total .cart-preview-total-text .highlighted {
  color: #4ff461;
}

.form-box {
  background-color: #1d2333;
  border-radius: 12px;
  width: 484px;
  padding: 64px;
  position: relative;
  box-shadow: 0 0 60px #0000001f;
}

.form-box .form-box-decoration {
  position: absolute;
  top: -14px;
  left: -80px;
}

.form-box .form-box-decoration.overflowing {
  top: -68px;
}

.form-box .form-box-title {
  text-align: center;
  font-size: 1.625rem;
}

.form-box .form {
  margin-top: 76px;
}

.form-box .lined-text {
  margin-top: 40px;
}

.form-box .social-links, .form-box .form-text {
  margin-top: 30px;
}

@media screen and (width <= 500px) {
  .form-box {
    padding: 40px 32px;
  }
}

.landing {
  background: url("landing-background.235f4b17.jpg") 0 / cover no-repeat;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.landing .landing-decoration {
  pointer-events: none;
  background: #161b28 url("dot-texture.71d59c6d.png") 0 0;
  border-radius: 50%;
  width: 64%;
  height: 140%;
  position: absolute;
  top: -20%;
  right: -32%;
}

.landing-info {
  width: 584px;
  position: absolute;
  top: 16%;
  left: 13%;
}

.landing-info .logo {
  justify-content: center;
  display: flex;
}

.landing-info .landing-info-pretitle, .landing-info .landing-info-title, .landing-info .landing-info-text {
  color: #fff;
  text-align: center;
}

.landing-info .landing-info-pretitle, .landing-info .landing-info-title {
  text-transform: uppercase;
}

.landing-info .landing-info-pretitle {
  margin-top: 36px;
  font-size: 1.5rem;
  font-weight: 500;
}

.landing-info .landing-info-title {
  font-family: Titillium Web, sans-serif;
  font-size: 6.5rem;
  font-weight: 900;
  position: relative;
  top: -10px;
}

.landing-info .landing-info-text {
  width: 384px;
  margin: 30px auto 0;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.33333em;
}

.landing-info .tab-switch {
  margin-top: 90px;
}

.landing-form {
  width: 484px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 13%;
}

.landing-form .form-box {
  position: absolute;
  top: 50%;
  left: 0;
}

.landing-form .form-box:first-child {
  margin-top: -313px;
}

.landing-form .form-box:last-child {
  margin-top: -370px;
}

@media screen and (width >= 2560px) {
  .landing-info {
    top: 25%;
  }

  .landing-form {
    right: 20%;
  }
}

@media screen and (width >= 3840px) {
  .landing-info {
    top: 35%;
    left: 18%;
  }

  .landing-form {
    right: 25%;
  }
}

@media screen and (width <= 1500px) {
  .landing .landing-decoration {
    display: none;
  }

  .landing-info {
    left: 6%;
  }

  .landing-info .landing-info-text {
    margin-top: 10px;
  }

  .landing-info .tab-switch {
    margin-top: 40px;
  }

  .landing-form {
    right: 80px;
  }
}

@media screen and (width <= 1365px) {
  .landing {
    padding: 80px 0 100px;
    position: static;
  }

  .landing-info {
    width: 100%;
    position: static;
  }

  .landing-info .landing-info-text {
    display: none;
  }

  .landing-form {
    width: 100%;
    margin-top: 80px;
    position: static;
  }

  .landing-form .form-box {
    margin: 0 auto;
    position: static;
  }

  .landing-form .form-box .form-box-decoration {
    display: none;
  }

  .landing-form .form-box:first-child, .landing-form .form-box:last-child {
    margin-top: 0;
  }
}

@media screen and (width <= 600px) {
  .landing-form .form-box {
    width: 90%;
  }
}

@media screen and (width <= 500px) {
  .landing-info .landing-info-title {
    font-size: 3.75rem;
  }

  .landing-info .tab-switch {
    width: 90%;
    margin: 20px auto 0;
  }

  .landing-info .tab-switch .tab-switch-button {
    width: 50%;
  }

  .landing-form {
    margin-top: 60px;
  }
}

.dropdown-box {
  background-color: #1d2333;
  border-radius: 10px;
  width: 384px;
  padding-bottom: 60px;
  position: relative;
  box-shadow: 3px 5px 40px #0000000f;
}

.dropdown-box.padding-bottom-small {
  padding-bottom: 14px;
}

.dropdown-box.no-padding-bottom {
  padding-bottom: 0;
}

.dropdown-box .dropdown-box-header {
  justify-content: space-between;
  padding: 28px 28px 20px;
  display: flex;
}

.dropdown-box .dropdown-box-header .dropdown-box-header-title {
  font-size: 1rem;
  font-weight: 700;
}

.dropdown-box .dropdown-box-header .dropdown-box-header-title .highlighted {
  color: #4ff461;
}

.dropdown-box .dropdown-box-header .dropdown-box-header-actions {
  align-items: flex-end;
  display: flex;
}

.dropdown-box .dropdown-box-header .dropdown-box-header-actions .dropdown-box-header-action {
  color: #9aa4bf;
  opacity: .6;
  cursor: pointer;
  margin-right: 16px;
  font-size: .75rem;
  font-weight: 700;
}

.dropdown-box .dropdown-box-header .dropdown-box-header-actions .dropdown-box-header-action:hover {
  color: #4ff461;
}

.dropdown-box .dropdown-box-header .dropdown-box-header-actions .dropdown-box-header-action:last-child {
  margin-right: 0;
}

.dropdown-box .dropdown-box-category {
  padding-top: 20px;
}

.dropdown-box .dropdown-box-category:first-child {
  padding-top: 28px;
}

.dropdown-box .dropdown-box-button {
  position: absolute;
  bottom: 0;
  left: 0;
}

.dropdown-box .dropdown-box-actions:last-child {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.dropdown-box-category {
  padding: 0 28px 4px;
}

.dropdown-box-category .dropdown-box-category-title {
  color: #9aa4bf;
  text-transform: uppercase;
  font-size: .75rem;
  font-weight: 700;
}

.dropdown-box-list {
  height: 420px;
  overflow-y: auto;
}

.dropdown-box-list.no-scroll {
  height: auto;
}

.dropdown-box-list.scroll-small {
  height: 286px;
}

.dropdown-box-list.medium .dropdown-box-list-item {
  padding: 20px 28px;
}

.dropdown-box-list.small .dropdown-box-list-item {
  padding: 10px 28px;
}

.dropdown-box-list.no-hover .dropdown-box-list-item:hover {
  background-color: #0000;
}

.dropdown-box-list .dropdown-box-list-item {
  padding: 16px 28px;
  display: block;
}

.dropdown-box-list .dropdown-box-list-item.unread {
  background-color: #21283b;
}

.dropdown-box-list .dropdown-box-list-item:hover {
  background-color: #293249;
}

.dropdown-box-actions {
  background-color: #21283b;
  justify-content: center;
  padding: 32px 0;
  display: flex;
}

.dropdown-box-actions .dropdown-box-action {
  margin-right: 16px;
}

.dropdown-box-actions .dropdown-box-action .button {
  width: 156px;
}

.dropdown-box-actions .dropdown-box-action:last-child {
  margin-right: 0;
}

.dropdown-box-button {
  color: #fff;
  text-align: center;
  background-color: #3e3f5e;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  width: 100%;
  height: 60px;
  font-size: .875rem;
  font-weight: 700;
  line-height: 60px;
  transition: background-color .2s ease-in-out;
}

.dropdown-box-button:hover {
  color: #fff;
}

.dropdown-box-button.primary {
  background-color: #40d04f;
}

.dropdown-box-button.primary:hover {
  background-color: #4ae95b;
}

.dropdown-box-button.secondary {
  background-color: #7750f8;
}

.dropdown-box-button.secondary:hover {
  background-color: #9668ff;
}

.dropdown-navigation {
  background-color: #1d2333;
  border-radius: 10px;
  width: 220px;
  padding: 20px 28px;
  box-shadow: 3px 5px 40px #0000000f;
}

.dropdown-navigation .dropdown-navigation-header + .dropdown-navigation-category {
  margin-top: 30px;
}

.dropdown-navigation .dropdown-navigation-category {
  color: #9aa4bf;
  text-transform: uppercase;
  margin: 20px 0 10px;
  font-size: .75rem;
  font-weight: 700;
}

.dropdown-navigation .dropdown-navigation-link {
  padding: 8px 0;
  font-size: .875rem;
  font-weight: 700;
  transition: padding .2s ease-in-out, color .2s ease-in-out;
  display: block;
}

.dropdown-navigation .dropdown-navigation-link .highlighted {
  float: right;
  color: #4ff461;
}

.dropdown-navigation .dropdown-navigation-link:hover {
  padding-left: 4px;
}

.dropdown-navigation .dropdown-navigation-button {
  width: 100%;
  margin-top: 20px;
}

@media screen and (width <= 1366px) {
  .dropdown-navigation .dropdown-navigation-category {
    font-size: .6875rem;
  }

  .dropdown-navigation .dropdown-navigation-link {
    padding: 6px 0;
    font-size: .75rem;
  }
}

.navigation-widget {
  background-color: #1d2333;
  width: 300px;
  padding-bottom: 40px;
  position: relative;
  box-shadow: 0 0 40px #0000000f;
}

.navigation-widget .navigation-widget-close-button {
  fill: #616a82;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 50px;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
}

.navigation-widget .navigation-widget-cover {
  width: 100%;
  height: 76px;
}

.navigation-widget .navigation-widget-info-wrap {
  margin-bottom: 40px;
  padding: 32px 0 0 30px;
}

.navigation-widget .navigation-widget-info-wrap .navigation-widget-info {
  min-height: 44px;
  padding: 8px 0 0 50px;
  position: relative;
}

.navigation-widget .navigation-widget-info-wrap .navigation-widget-info .user-avatar {
  position: absolute;
  top: 0;
  left: 0;
}

.navigation-widget .navigation-widget-info-wrap .navigation-widget-info .navigation-widget-info-title {
  font-size: .875rem;
  font-weight: 700;
}

.navigation-widget .navigation-widget-info-wrap .navigation-widget-info .navigation-widget-info-title a {
  color: #fff;
  font-weight: 700;
}

.navigation-widget .navigation-widget-info-wrap .navigation-widget-info .navigation-widget-info-text {
  color: #9aa4bf;
  margin-top: 4px;
  font-size: .75rem;
  font-weight: 500;
}

.navigation-widget .navigation-widget-info-wrap .navigation-widget-info-button {
  width: 140px;
  margin-top: 20px;
}

.navigation-widget .navigation-widget-section-title {
  color: #9aa4bf;
  text-transform: uppercase;
  padding-left: 30px;
  font-size: .75rem;
  font-weight: 700;
}

.navigation-widget .navigation-widget-section-title.space-top {
  margin-top: 30px;
}

.navigation-widget .navigation-widget-section-title + .menu {
  margin-top: 26px;
}

.navigation-widget .navigation-widget-section-title + .navigation-widget-section-link {
  margin-top: 14px;
}

.navigation-widget .navigation-widget-section-link {
  padding: 12px 30px;
  font-size: .875rem;
  font-weight: 700;
  transition: padding .2s ease-in-out, color .2s ease-in-out;
  display: block;
}

.navigation-widget .navigation-widget-section-link .highlighted {
  float: right;
  color: #4ff461;
}

.navigation-widget .navigation-widget-section-link:hover {
  padding-left: 34px;
}

.navigation-widget .navigation-widget-section-link + .navigation-widget-section-title {
  margin-top: 46px;
}

.navigation-widget .badge-list {
  margin-top: 36px;
}

.navigation-widget .user-stats {
  margin-top: 44px;
}

.navigation-widget .menu {
  margin-top: 60px;
}

.navigation-widget .menu + .navigation-widget-section-title {
  margin-top: 40px;
}

.navigation-widget.closed {
  width: 80px;
  padding-top: 20px;
}

.navigation-widget.closed .user-avatar {
  margin: 0 auto;
}

.navigation-widget.closed .menu {
  margin-top: 26px;
}

.chat-widget-wrap {
  border-radius: 12px;
  display: flex;
  box-shadow: 0 0 40px #0000000f;
}

.chat-widget-wrap .chat-widget {
  box-shadow: none;
}

.chat-widget-wrap .chat-widget .chat-widget-messages {
  height: 588px;
}

.chat-widget-wrap .chat-widget .chat-widget-conversation {
  height: 500px;
}

.chat-widget-wrap .chat-widget:first-child {
  border-right: 1px solid #2f3749;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  width: 43.4389%;
}

.chat-widget-wrap .chat-widget:first-child .chat-widget-form {
  border-bottom-left-radius: 12px;
}

.chat-widget-wrap .chat-widget:last-child {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  width: 56.5611%;
}

.chat-widget-wrap .chat-widget:last-child .chat-widget-form {
  border-bottom-right-radius: 12px;
}

.chat-widget {
  background-color: #1d2333;
  width: 300px;
  transition: transform .4s ease-in-out;
  box-shadow: 0 0 40px #0000000f;
}

.chat-widget.static .chat-widget-messages .chat-widget-message {
  border-left: 4px solid #0000;
  padding: 20px 28px 20px 24px;
}

.chat-widget.static .chat-widget-messages .chat-widget-message.active, .chat-widget.static .chat-widget-messages .chat-widget-message:hover {
  border-left-color: #4ff461;
}

.chat-widget.chat-widget-overlay {
  padding-bottom: 92px;
}

.chat-widget.hidden .chat-widget-button-icon .burger-icon .burger-icon-bar:first-child {
  width: 100%;
}

.chat-widget.hidden .chat-widget-button-icon .burger-icon .burger-icon-bar:nth-child(2) {
  width: 14px;
}

.chat-widget.hidden .chat-widget-button-icon .burger-icon .burger-icon-bar:nth-child(3) {
  width: 10px;
}

.chat-widget.closed .chat-widget-messages .chat-widget-message {
  padding: 11px 20px;
}

.chat-widget.closed .chat-widget-messages .chat-widget-message:first-child {
  padding-top: 20px;
}

.chat-widget.closed .chat-widget-messages .chat-widget-message:hover {
  background-color: #1d2333;
}

.chat-widget.closed .chat-widget-messages .chat-widget-message .user-status .user-status-title, .chat-widget.closed .chat-widget-messages .chat-widget-message .user-status .user-status-text, .chat-widget.closed .chat-widget-messages .chat-widget-message .user-status .user-status-timestamp, .chat-widget.closed .chat-widget-form {
  opacity: 0;
  visibility: hidden;
}

.chat-widget.closed .chat-widget-button .chat-widget-button-icon .burger-icon .burger-icon-bar:first-child {
  width: 100%;
}

.chat-widget.closed .chat-widget-button .chat-widget-button-icon .burger-icon .burger-icon-bar:nth-child(2) {
  width: 14px;
}

.chat-widget.closed .chat-widget-button .chat-widget-button-icon .burger-icon .burger-icon-bar:nth-child(3) {
  width: 10px;
}

.chat-widget.closed .chat-widget-button .chat-widget-button-text {
  display: none;
}

.chat-widget .chat-widget-messages .chat-widget-message .user-status .user-status-title, .chat-widget .chat-widget-messages .chat-widget-message .user-status .user-status-text, .chat-widget .chat-widget-messages .chat-widget-message .user-status .user-status-timestamp {
  transition: opacity .4s ease-in-out, visibility .4s ease-in-out;
}

.chat-widget-header {
  border-bottom: 1px solid #2f3749;
  padding: 20px 28px;
  position: relative;
}

.chat-widget-header .chat-widget-settings {
  z-index: 2;
  position: absolute;
  top: 12px;
  right: 14px;
}

.chat-widget-header .chat-widget-close-button {
  cursor: pointer;
  z-index: 2;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 50px;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
}

.chat-widget-header .chat-widget-close-button .chat-widget-close-button-icon {
  fill: #616a82;
}

.chat-widget-messages {
  height: 700px;
  overflow-y: auto;
}

.chat-widget-messages .chat-widget-message {
  cursor: pointer;
  padding: 14px 28px;
  transition: padding .4s ease-in-out;
  display: block;
}

.chat-widget-messages .chat-widget-message.active, .chat-widget-messages .chat-widget-message:hover {
  background-color: #293249;
}

.chat-widget-conversation {
  background-color: #21283b;
  height: 615px;
  padding: 35px 28px;
  overflow-y: auto;
}

.chat-widget-conversation .chat-widget-speaker {
  flex-flow: column;
  display: flex;
  position: relative;
}

.chat-widget-conversation .chat-widget-speaker + .chat-widget-speaker {
  margin-top: 16px;
}

.chat-widget-conversation .chat-widget-speaker.left {
  padding: 0 26px 0 36px;
}

.chat-widget-conversation .chat-widget-speaker.left .chat-widget-speaker-avatar {
  left: 0;
}

.chat-widget-conversation .chat-widget-speaker.left .chat-widget-speaker-message {
  border-top-left-radius: 0;
}

.chat-widget-conversation .chat-widget-speaker.right {
  align-items: flex-end;
  padding-left: 64px;
}

.chat-widget-conversation .chat-widget-speaker.right .chat-widget-speaker-message {
  color: #fff;
  background-color: #7750f8;
  border-top-right-radius: 0;
}

.chat-widget-conversation .chat-widget-speaker .chat-widget-speaker-avatar {
  position: absolute;
  top: 0;
}

.chat-widget-conversation .chat-widget-speaker .chat-widget-speaker-message {
  background-color: #293249;
  border-radius: 10px;
  padding: 12px;
  font-size: .875rem;
  font-weight: 600;
  line-height: 1.14286em;
  display: inline-block;
}

.chat-widget-conversation .chat-widget-speaker .chat-widget-speaker-message + .chat-widget-speaker-message {
  margin-top: 8px;
}

.chat-widget-conversation .chat-widget-speaker .chat-widget-speaker-timestamp {
  color: #adafca;
  margin-top: 12px;
  font-size: .75rem;
  font-weight: 500;
}

.chat-widget-form {
  background-color: #21283b;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 22px 28px;
  transition: opacity .4s ease-in-out, visibility .4s ease-in-out, bottom .4s ease-in-out;
  box-shadow: 0 0 40px #0000001a;
}

.chat-widget-button {
  cursor: pointer;
  background-color: #40d04f;
  align-items: center;
  width: 100%;
  height: 80px;
  padding-left: 28px;
  display: flex;
}

.chat-widget-button .chat-widget-button-icon {
  margin-right: 30px;
}

.chat-widget-button .chat-widget-button-text {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

@media screen and (width <= 960px) {
  .chat-widget-wrap {
    box-shadow: none;
    display: block;
  }

  .chat-widget-wrap .chat-widget {
    border-radius: 12px;
  }

  .chat-widget-wrap .chat-widget:first-child, .chat-widget-wrap .chat-widget:last-child {
    width: 100%;
    box-shadow: 0 0 40px #0000000f;
  }

  .chat-widget-wrap .chat-widget:first-child {
    border-right: none;
    margin-bottom: 26px;
  }

  .chat-widget-wrap .chat-widget:first-child .chat-widget-form {
    border-bottom-right-radius: 12px;
  }

  .chat-widget-wrap .chat-widget:last-child .chat-widget-form {
    border-bottom-left-radius: 12px;
  }

  .chat-widget-wrap .chat-widget .chat-widget-conversation + .chat-widget-form .button {
    width: 100%;
  }
}

.profile-header {
  background-color: #1d2333;
  border-radius: 12px;
  box-shadow: 0 0 40px #0000000f;
}

.profile-header.v2 .profile-header-info {
  height: 112px;
}

.profile-header.v2 .profile-header-info .user-short-description {
  min-height: 164px;
  padding: 84px 0 0 164px;
  position: absolute;
  bottom: 0;
  left: 32px;
}

.profile-header.v2 .profile-header-info .user-short-description .user-short-description-avatar {
  margin-left: 0;
  top: 0;
  left: 0;
}

.profile-header.v2 .profile-header-info .user-short-description .user-short-description-avatar.user-short-description-avatar-mobile {
  margin-left: -60px;
  top: -54px;
}

.profile-header.v2 .profile-header-info .user-short-description .user-short-description-title, .profile-header.v2 .profile-header-info .user-short-description .user-short-description-text {
  text-align: left;
}

.profile-header.v2 .profile-header-info .user-stats {
  top: 38px;
  left: auto;
  right: 164px;
}

.profile-header.v2 .profile-header-info .tag-sticker {
  display: none;
  position: absolute;
  top: -12px;
  right: 28px;
}

.profile-header.v2 .profile-header-info .profile-header-info-actions {
  top: 32px;
}

.profile-header.v2 .profile-header-info .profile-header-info-actions .profile-header-info-action.button {
  width: 58px;
}

.profile-header .profile-header-cover {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  height: 300px;
}

.profile-header .profile-header-info {
  height: 126px;
  position: relative;
}

.profile-header .profile-header-info .user-short-description .user-short-description-avatar-mobile {
  margin-left: -60px;
  display: none;
  top: -54px;
}

.profile-header .profile-header-info .profile-header-social-links-wrap {
  width: 352px;
  height: 44px;
  margin: 0 auto;
  position: absolute;
  top: 54px;
  right: 32px;
}

.profile-header .profile-header-info .profile-header-social-links-wrap .profile-header-social-links {
  z-index: 2;
  padding-top: 4px;
  position: relative;
}

.profile-header .profile-header-info .profile-header-social-links-wrap .slider-controls {
  z-index: 1;
  justify-content: space-between;
  align-items: center;
  width: 234px;
  display: flex;
  position: absolute;
  top: 10px;
  left: -40px;
}

.profile-header .profile-header-info .user-stats {
  position: absolute;
  top: 54px;
  left: 40px;
}

.profile-header .profile-header-info .profile-header-info-actions {
  justify-content: center;
  display: flex;
  position: absolute;
  top: -40px;
  right: 32px;
}

.profile-header .profile-header-info .profile-header-info-actions .profile-header-info-action {
  margin-right: 16px;
}

.profile-header .profile-header-info .profile-header-info-actions .profile-header-info-action.button {
  width: 180px;
}

.profile-header .profile-header-info .profile-header-info-actions .profile-header-info-action:last-child {
  margin-right: 0;
}

@media screen and (width <= 1365px) {
  .profile-header .profile-header-cover {
    height: 200px;
  }

  .profile-header.v2 .profile-header-info {
    height: auto;
  }

  .profile-header.v2 .profile-header-info .user-short-description {
    min-height: auto;
    padding: 52px 0 0;
    position: static;
  }

  .profile-header.v2 .profile-header-info .user-short-description .user-short-description-avatar {
    margin-left: -74px;
    top: -116px;
    left: 50%;
  }

  .profile-header.v2 .profile-header-info .user-short-description .user-short-description-title, .profile-header.v2 .profile-header-info .user-short-description .user-short-description-text {
    text-align: center;
  }

  .profile-header .profile-header-info {
    height: auto;
    padding-bottom: 32px;
  }

  .profile-header .profile-header-info .profile-header-social-links-wrap, .profile-header .profile-header-info .user-stats, .profile-header .profile-header-info .profile-header-info-actions {
    position: static;
  }

  .profile-header .profile-header-info .profile-header-social-links-wrap {
    margin-top: 32px;
  }

  .profile-header .profile-header-info .user-stats, .profile-header .profile-header-info .profile-header-info-actions {
    margin-top: 40px;
  }
}

@media screen and (width <= 480px) {
  .profile-header .profile-header-cover {
    height: 76px;
  }

  .profile-header.v2 .profile-header-info .user-short-description {
    padding-top: 84px;
  }

  .profile-header.v2 .profile-header-info .user-stats .user-stat:first-child {
    display: none;
  }

  .profile-header.v2 .profile-header-info .user-stats .user-stat:nth-last-child(2):after, .profile-header.v2 .profile-header-info .user-stats .user-stat:last-child {
    display: block;
  }

  .profile-header.v2 .profile-header-info .tag-sticker {
    display: flex;
  }

  .profile-header .profile-header-info .user-short-description {
    padding-top: 84px;
  }

  .profile-header .profile-header-info .user-short-description .user-short-description-avatar {
    display: none;
  }

  .profile-header .profile-header-info .user-short-description .user-short-description-avatar-mobile {
    display: block;
  }

  .profile-header .profile-header-info .user-short-description .user-short-description-title {
    font-size: 1.125rem;
  }

  .profile-header .profile-header-info .user-short-description .user-short-description-text {
    font-size: .6875rem;
  }

  .profile-header .profile-header-info .profile-header-social-links-wrap {
    width: 160px;
    height: 36px;
    position: relative;
    top: auto;
    right: auto;
  }

  .profile-header .profile-header-info .profile-header-social-links-wrap .social-link {
    width: 32px;
    height: 32px;
  }

  .profile-header .profile-header-info .user-stats .user-stat:nth-last-child(2):after, .profile-header .profile-header-info .user-stats .user-stat:last-child {
    display: none;
  }

  .profile-header .profile-header-info .user-stats .user-stat .user-stat-title {
    font-size: .875rem;
  }

  .profile-header .profile-header-info .user-stats .user-stat .user-stat-text {
    font-size: .6875rem;
  }

  .profile-header .profile-header-info .profile-header-info-actions .profile-header-info-action.button {
    width: 114px;
  }
}

.post-preview {
  background-color: #1d2333;
  border-radius: 12px;
  min-height: 516px;
  box-shadow: 0 0 40px #0000000f;
}

.post-preview.medium {
  box-shadow: none;
  min-height: auto;
}

.post-preview.medium .post-preview-image {
  border-radius: 0;
  height: 320px;
}

.post-preview.medium .post-preview-info {
  width: 90.411%;
  margin-top: -140px;
}

.post-preview.medium .post-preview-info .post-preview-title {
  font-size: 1.5rem;
  line-height: 1.33333em;
}

.post-preview.medium .post-preview-info .post-preview-text {
  margin-top: 24px;
}

.post-preview .post-preview-image {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  height: 210px;
}

.post-preview .post-preview-info {
  background-color: #21283b;
  border-radius: 12px;
  width: 91.6667%;
  margin: -48px auto 0;
  padding: 28px;
  box-shadow: 3px 5px 40px #0000001a;
}

.post-preview .post-preview-info.fixed-height {
  flex-direction: column;
  justify-content: space-between;
  height: 292px;
  padding: 28px 28px 22px;
  display: flex;
}

.post-preview .post-preview-info.fixed-height .post-preview-text {
  margin-top: 0;
}

.post-preview .post-preview-info .post-preview-timestamp {
  color: #9aa4bf;
  text-transform: uppercase;
  font-size: .75rem;
  font-weight: 700;
}

.post-preview .post-preview-info .post-preview-title {
  margin-top: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2em;
}

.post-preview .post-preview-info .post-preview-text {
  margin-top: 16px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.71429em;
}

.post-preview .post-preview-info .post-preview-link {
  text-transform: uppercase;
  margin-top: 20px;
  font-size: .75rem;
  font-weight: 700;
  transition: color .2s ease-in-out;
  display: inline-block;
}

.post-preview .content-actions {
  margin-top: 10px;
  padding: 0 28px;
}

.post-peek-list .post-peek {
  margin-bottom: 22px;
}

.post-peek-list .post-peek:last-child {
  margin-bottom: 0;
}

.post-peek {
  min-height: 40px;
  padding-left: 52px;
  position: relative;
}

.post-peek .post-peek-image {
  position: absolute;
  top: 0;
  left: 0;
}

.post-peek .post-peek-title {
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.14286em;
}

.post-peek .post-peek-title a {
  color: #fff;
  font-weight: 700;
}

.post-peek .post-peek-text {
  color: #9aa4bf;
  margin-top: 8px;
  font-size: .75rem;
  font-weight: 500;
}

.post-preview-line-list .post-preview-line {
  margin-bottom: 22px;
}

.post-preview-line-list .post-preview-line:last-child {
  margin-bottom: 0;
}

.post-preview-line .post-preview-line-title {
  font-size: .875rem;
  font-weight: 700;
  line-height: 1.14286em;
}

.post-preview-line .post-preview-line-title a {
  color: #fff;
  font-weight: 700;
}

.post-preview-line .post-preview-line-meta {
  align-items: center;
  margin-top: 8px;
  display: flex;
}

.post-preview-line .user-avatar {
  margin-right: 8px;
}

.post-preview-line .post-preview-line-author {
  margin-right: 6px;
  font-size: .75rem;
  font-weight: 700;
}

.post-preview-line .post-preview-line-author a {
  color: #fff;
  font-weight: 700;
}

.post-preview-line .post-preview-line-timestamp {
  color: #9aa4bf;
  font-size: .75rem;
  font-weight: 500;
}

@media screen and (width <= 460px) {
  .post-preview .post-preview-info.fixed-height {
    height: auto;
    padding: 28px;
    display: block;
  }

  .post-preview .post-preview-info.fixed-height .post-preview-text {
    margin-top: 16px;
  }
}

.post-comment {
  background-color: #1d2333;
  padding: 26px 28px 28px 80px;
  position: relative;
}

.post-comment.unread {
  background-color: #21283b;
}

.post-comment.reply-2 {
  padding-left: 108px;
}

.post-comment.reply-2 .user-avatar {
  left: 56px;
}

.post-comment .user-avatar {
  position: absolute;
  top: 28px;
  left: 28px;
}

.post-comment .post-comment-text-wrap {
  align-items: center;
  display: flex;
}

.post-comment .post-comment-text-wrap .rating-list {
  margin-right: 12px;
}

.post-comment .post-comment-text {
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.71429em;
}

.post-comment .post-comment-text .bold {
  font-weight: 700;
}

.post-comment .post-comment-text .highlighted {
  color: #4ff461;
  font-weight: 700;
}

.post-comment .post-comment-text .post-comment-text-author {
  color: #fff;
  margin-right: 6px;
  font-weight: 700;
}

.post-comment .post-comment-text.user-tag:after {
  color: #fff;
  border-radius: 200px;
  height: 20px;
  padding: 0 8px;
  font-size: .75rem;
  font-weight: 700;
  line-height: 20px;
  display: inline-block;
  position: relative;
  top: -1px;
}

.post-comment .post-comment-text.user-tag.purchased:after {
  content: "Purchased!";
  background-color: #7750f8;
}

.post-comment .post-comment-text.user-tag.author:after {
  content: "Author";
  background-color: #40d04f;
}

.post-comment .content-actions {
  height: 20px;
  margin-top: 14px;
}

.post-comment .post-comment-form {
  padding: 26px 0 0 30px;
}

.post-comment .post-comment-form .user-avatar {
  left: -24px;
}

.post-comment-heading {
  text-align: center;
  cursor: pointer;
  background-color: #1d2333;
  height: 53px;
  font-size: .75rem;
  font-weight: 700;
  line-height: 53px;
}

.post-comment-heading .highlighted {
  color: #4ff461;
}

.post-comment-form {
  background-color: #1d2333;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  padding: 26px 28px 26px 80px;
  position: relative;
}

.post-comment-form.bordered-top {
  border-top: 1px solid #2f3749;
}

.post-comment-form.with-title {
  padding-top: 80px;
}

.post-comment-form.with-title .user-avatar {
  top: 82px;
}

.post-comment-form .post-comment-form-title {
  font-size: 1rem;
  font-weight: 700;
  position: absolute;
  top: 32px;
  left: 28px;
}

.post-comment-form .user-avatar {
  position: absolute;
  top: 28px;
  left: 28px;
}

.post-comment-list.no-border-top > .post-comment:first-child, .post-comment-list.no-border-top > .post-comment-heading:first-child, .post-comment-list.no-border-top > .post-comment-form:first-child {
  border-top: none;
}

.post-comment-list > .post-comment, .post-comment-list > .post-comment-heading, .post-comment-list > .post-comment-form {
  border-top: 1px solid #2f3749;
}

.post-comment-list > .post-comment:last-child, .post-comment-list > .post-comment-heading:last-child, .post-comment-list > .post-comment-form:last-child {
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
}

@media screen and (width <= 460px) {
  .post-comment .content-actions {
    height: auto;
  }
}

.post-open .post-open-cover {
  width: 100%;
  height: 560px;
}

.post-open .post-open-body {
  background-color: #1d2333;
  border-radius: 12px;
  width: 65%;
  max-width: 784px;
  margin: -220px auto 0;
  padding-top: 90px;
  box-shadow: 0 0 40px #0000000f;
}

.post-open .post-open-body .post-open-heading {
  padding: 0 100px;
}

.post-open .post-open-body .post-open-heading .post-open-timestamp {
  color: #9aa4bf;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 700;
}

.post-open .post-open-body .post-open-heading .post-open-timestamp .highlighted {
  color: #fff;
  margin-right: 12px;
}

.post-open .post-open-body .post-open-heading .post-open-title {
  margin-top: 22px;
  font-size: 2.875rem;
  font-weight: 700;
  line-height: .956522em;
}

.post-open .post-open-body .post-open-content {
  margin-top: 70px;
  padding: 0 100px;
  display: flex;
}

.post-open .post-open-body .post-open-content .post-open-content-sidebar {
  flex-shrink: 0;
  width: 84px;
}

.post-open .post-open-body .post-open-content .post-open-content-sidebar .post-open-sidebar-title {
  text-transform: uppercase;
  text-align: center;
  width: 40px;
  margin-top: 24px;
  font-size: .75rem;
  font-weight: 700;
}

.post-open .post-open-body .post-open-content .post-open-content-sidebar .social-links {
  margin-top: 26px;
}

.post-open .post-open-body .post-open-content .post-open-content-body {
  width: 500px;
  padding-bottom: 80px;
}

.post-open .post-open-body .post-open-content .post-open-content-body .post-open-paragraph {
  margin-top: 36px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2em;
}

.post-open .post-open-body .post-open-content .post-open-content-body .post-open-paragraph:first-child {
  margin-top: 0;
}

.post-open .post-open-body .post-open-content .post-open-content-body .post-open-image {
  width: 100%;
  height: 320px;
  margin-top: 50px;
}

.post-open .post-open-body .post-open-content .post-open-content-body .post-open-image-caption {
  color: #9aa4bf;
  text-align: center;
  margin-top: 20px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.71429em;
}

.post-open .post-open-body .post-open-content .post-open-content-body .tag-list {
  margin-top: 60px;
}

.post-open .post-open-body > .content-actions {
  border-top: 1px solid #2f3749;
  margin: 0 28px;
}

.post-open .post-open-body .post-options {
  padding: 0 100px;
}

@media screen and (width <= 1366px) {
  .post-open .post-open-body {
    width: 95%;
    max-width: 100%;
  }

  .post-open .post-open-body .post-open-content .post-open-content-sidebar {
    width: 15%;
  }

  .post-open .post-open-body .post-open-content .post-open-content-body {
    width: 85%;
  }
}

@media screen and (width <= 960px) {
  .post-open .post-open-body .post-open-heading {
    padding: 0 40px;
  }

  .post-open .post-open-body .post-open-content {
    flex-direction: column;
    margin-top: 40px;
    padding: 0 40px;
  }

  .post-open .post-open-body .post-open-content .post-open-content-sidebar, .post-open .post-open-body .post-open-content .post-open-content-body {
    width: 100%;
  }

  .post-open .post-open-body .post-open-content .post-open-content-sidebar {
    align-items: center;
    margin-bottom: 60px;
    display: flex;
  }

  .post-open .post-open-body .post-open-content .post-open-content-sidebar .post-open-sidebar-title {
    text-align: left;
    width: auto;
    margin: 0 0 0 16px;
    line-height: 40px;
  }

  .post-open .post-open-body .post-open-content .post-open-content-sidebar .social-links {
    margin: 0 0 0 26px;
  }

  .post-open .post-open-body .post-open-content .post-open-content-sidebar .social-links.vertical {
    flex-direction: row;
  }

  .post-open .post-open-body .post-open-content .post-open-content-sidebar .social-links.vertical .social-link {
    margin: 0 16px 0 0;
  }

  .post-open .post-open-body .post-options {
    padding: 0 28px;
  }
}

@media screen and (width <= 460px) {
  .post-open .post-open-cover {
    height: 320px;
  }

  .post-open .post-open-body {
    margin-top: -100px;
    padding-top: 60px;
  }

  .post-open .post-open-body .post-open-heading, .post-open .post-open-body .post-open-content {
    padding: 0 28px;
  }

  .post-open .post-open-body .post-open-heading .post-open-title {
    font-size: 2.25rem;
  }
}

.product-preview {
  background-color: #1d2333;
  border-radius: 12px;
  box-shadow: 0 0 40px #0000000f;
}

.product-preview.fixed-height {
  height: 360px;
}

.product-preview.small {
  box-shadow: none;
  background-color: #0000;
}

.product-preview.small .product-preview-image {
  border-radius: 12px;
  height: 144px;
}

.product-preview.small .product-preview-info {
  padding: 20px 0 0;
}

.product-preview.small .product-preview-info .text-sticker {
  right: -8px;
}

.product-preview.small .product-preview-info .product-preview-title {
  font-size: .875rem;
}

.product-preview.tiny {
  box-shadow: none;
  background-color: #0000;
  display: flex;
}

.product-preview.tiny .product-preview-image {
  border-radius: 12px;
  width: 94px;
  height: 60px;
  margin-right: 20px;
}

.product-preview.tiny .product-preview-image.short {
  width: 60px;
}

.product-preview.tiny .product-preview-info {
  padding: 4px 0 0;
}

.product-preview.tiny .product-preview-info .product-preview-title {
  font-size: .875rem;
}

.product-preview.tiny .product-preview-info .product-preview-category {
  margin-top: 6px;
}

.product-preview.tiny .product-preview-info .product-preview-creator {
  color: #9aa4bf;
  margin-top: 6px;
  font-size: .75rem;
  font-weight: 700;
}

.product-preview.tiny .product-preview-info .product-preview-creator a {
  color: #9aa4bf;
  font-weight: 700;
}

.product-preview.micro {
  box-shadow: none;
  background-color: #0000;
  display: flex;
}

.product-preview.micro .product-preview-image {
  border-radius: 12px;
  width: 68px;
  height: 44px;
  margin-right: 12px;
}

.product-preview.micro .product-preview-info {
  padding: 6px 0 0;
}

.product-preview.micro .product-preview-info .product-preview-title {
  font-size: .875rem;
}

.product-preview.micro .product-preview-info .product-preview-category {
  margin-top: 6px;
}

.product-preview .product-preview-image {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  height: 180px;
}

.product-preview .product-preview-info {
  padding: 28px;
  position: relative;
}

.product-preview .product-preview-info .text-sticker {
  position: absolute;
  top: -14px;
  right: 14px;
}

.product-preview .product-preview-info .product-preview-title a, .product-preview .product-preview-info .product-preview-category a {
  color: #fff;
  font-weight: 700;
}

.product-preview .product-preview-info .product-preview-title {
  font-size: 1rem;
  font-weight: 700;
}

.product-preview .product-preview-info .product-preview-category {
  margin-top: 8px;
  padding-left: 14px;
  font-size: .75rem;
  font-weight: 700;
  position: relative;
}

.product-preview .product-preview-info .product-preview-category.digital:before {
  border-color: #00e2cb;
}

.product-preview .product-preview-info .product-preview-category.physical:before {
  border-color: #66e273;
}

.product-preview .product-preview-info .product-preview-category:before {
  content: "";
  border: 2px solid #3e3f5e;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 1px;
  left: 0;
}

.product-preview .product-preview-info .product-preview-text {
  color: #9aa4bf;
  margin-top: 20px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.42857em;
}

.product-preview .product-preview-info .button {
  margin-top: 36px;
}

.product-preview .product-preview-meta {
  background-color: #21283b;
  border-top: 1px solid #2f3749;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  justify-content: space-between;
  align-items: center;
  height: 53px;
  padding: 0 28px;
  display: flex;
}

.product-preview .product-preview-author {
  padding-left: 26px;
  position: relative;
}

.product-preview .product-preview-author .product-preview-author-image {
  position: absolute;
  top: 1px;
  left: 0;
}

.product-preview .product-preview-author .product-preview-author-title {
  font-size: .625rem;
  font-weight: 500;
}

.product-preview .product-preview-author .product-preview-author-text {
  margin-top: 1px;
  font-size: .75rem;
  font-weight: 700;
}

.product-preview .product-preview-author .product-preview-author-text a {
  color: #fff;
  font-weight: 700;
}

.product-category-box {
  border-radius: 12px;
  height: 142px;
  padding: 26px 0 0 28px;
  display: block;
  box-shadow: 0 0 40px #0000000f;
}

.product-category-box.category-all {
  background: url("01.4ecc26c1.png") 100% 0 no-repeat, linear-gradient(to right, #7750f8, #84d2ff);
}

.product-category-box.category-all .product-category-box-tag {
  color: #8560ff;
}

.product-category-box.category-featured {
  background: url("02.b072ac77.png") 100% 0 no-repeat, linear-gradient(to right, #006fb5, #3af0d4);
}

.product-category-box.category-featured .product-category-box-tag {
  color: #08b8f1;
}

.product-category-box.category-digital {
  background: url("03.4ba76076.png") 100% 0 no-repeat, linear-gradient(to right, #009989, #4df960);
}

.product-category-box.category-digital .product-category-box-tag {
  color: #00e2cb;
}

.product-category-box.category-physical {
  background: url("04.7bc7db46.png") 100% 0 no-repeat, linear-gradient(to right, #2f9a3a, #e9fc49);
}

.product-category-box.category-physical .product-category-box-tag {
  color: #66e273;
}

.product-category-box .product-category-box-title {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
}

.product-category-box .product-category-box-text {
  color: #fff;
  margin-top: 4px;
  font-size: .875rem;
  font-weight: 500;
}

.product-category-box .product-category-box-tag {
  text-transform: uppercase;
  background-color: #fff;
  border-radius: 200px;
  height: 20px;
  margin-top: 36px;
  padding: 0 8px;
  font-size: .75rem;
  font-weight: 700;
  line-height: 20px;
  display: inline-block;
}

.stream-box {
  background-color: #1d2333;
  border-radius: 12px;
  transition: border-radius .2s ease-in-out;
  position: relative;
  box-shadow: 0 0 40px #0000000f;
}

.stream-box.no-video-radius:hover .stream-box-info {
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
}

.stream-box.no-video-radius .stream-box-video iframe {
  border-radius: 0;
}

.stream-box.big:hover .stream-box-info {
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
}

.stream-box.big .stream-box-video {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}

.stream-box.big .stream-box-video iframe {
  position: absolute;
  top: 0;
  left: 0;
}

.stream-box.big .stream-box-info {
  padding: 28px 28px 28px 88px;
}

.stream-box.big .stream-box-info .stream-box-game-image {
  width: 44px;
  height: 60px;
  position: absolute;
  top: 28px;
  left: 28px;
}

.stream-box.big .stream-box-info .stream-box-title {
  font-size: 1.125rem;
}

.stream-box.big .stream-box-info .stream-box-category {
  margin-top: 6px;
  font-size: .875rem;
}

.stream-box.big .stream-box-info .stream-box-views {
  color: #9aa4bf;
  margin-top: 10px;
  font-size: .875rem;
  font-weight: 500;
}

.stream-box .stream-box-video {
  height: 160px;
}

.stream-box .stream-box-video iframe {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  width: 100%;
  height: 100%;
}

.stream-box .stream-box-image {
  z-index: 3;
  border: 4px solid #1d2333;
  border-radius: 50%;
  position: absolute;
  top: 138px;
  left: 24px;
}

.stream-box .stream-box-info {
  z-index: 2;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  padding: 22px 28px;
  transition: border-radius .2s ease-in-out;
  position: relative;
}

.stream-box .stream-box-info .stream-box-title {
  font-size: .875rem;
  font-weight: 700;
}

.stream-box .stream-box-info .stream-box-title a {
  color: #fff;
  font-weight: 700;
}

.stream-box .stream-box-info .stream-box-text {
  margin-top: 6px;
  font-size: .75rem;
  font-weight: 500;
}

.stream-box .stream-box-info .stream-box-text a {
  color: #9aa4bf;
  font-weight: 500;
}

.stream-box .stream-box-info .stream-box-category {
  margin-top: 14px;
  font-size: .75rem;
  font-weight: 600;
}

.stream-box .stream-box-meta {
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  background-color: #21283b;
  border-top: 1px solid #2f3749;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 77px;
  transition: transform .3s ease-in-out, opacity .3s ease-in-out, visibility .3s ease-in-out;
  display: flex;
  position: absolute;
  bottom: -77px;
  left: 0;
  transform: translate(0, -20px);
  box-shadow: 0 0 40px #5e5c9a0f;
}

.stream-box:hover {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.stream-box:hover .stream-box-info {
  border-radius: 0;
}

.stream-box:hover .stream-box-meta {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

.video-box {
  border-radius: 12px;
  box-shadow: 0 0 40px #0000000f;
}

.video-box.small .video-box-cover:hover .play-button {
  transform: translate(0, -20px);
}

.video-box.small .video-box-cover:hover .video-box-info .video-box-title, .video-box.small .video-box-cover:hover .video-box-info .video-box-text {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

.video-box.small .video-box-cover:after {
  border-radius: 12px;
}

.video-box.small .video-box-cover .video-box-cover-image {
  border-radius: 12px;
  height: 128px;
}

.video-box.small .video-box-cover .play-button {
  transition: transform .3s ease-in-out;
  top: 40px;
}

.video-box.small .video-box-cover .video-box-info {
  z-index: 2;
  background-color: #0000;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  padding: 0 16px 14px;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
}

.video-box.small .video-box-cover .video-box-info .video-box-title, .video-box.small .video-box-cover .video-box-info .video-box-text {
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: transform .3s ease-in-out, visibility .3s ease-in-out, opacity .3s ease-in-out;
  transform: translate(20px);
}

.video-box.small .video-box-cover .video-box-info .video-box-title {
  font-size: .75rem;
}

.video-box.small .video-box-cover .video-box-info .video-box-text {
  margin-top: 4px;
  transition-delay: .15s;
}

.video-box .video-box-cover {
  cursor: pointer;
  position: relative;
}

.video-box .video-box-cover:hover:after {
  opacity: 1;
  visibility: visible;
}

.video-box .video-box-cover:after {
  content: "";
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  background-color: #15151f99;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  width: 100%;
  height: 100%;
  transition: opacity .3s ease-in-out, visibility .3s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
}

.video-box .video-box-cover .video-box-cover-image {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  height: 160px;
}

.video-box .video-box-cover .play-button {
  z-index: 2;
  margin-left: -23px;
  position: absolute;
  top: 56px;
  left: 50%;
}

.video-box .video-box-info {
  background-color: #1d2333;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  padding: 22px 28px;
}

.video-box .video-box-info .video-box-title {
  font-size: .875rem;
  font-weight: 700;
}

.video-box .video-box-info .video-box-text {
  margin-top: 6px;
  font-size: .75rem;
  font-weight: 500;
}

.video-box-list .video-box {
  margin-bottom: 22px;
}

.video-box-list .video-box:last-child {
  margin-bottom: 0;
}

.video-status {
  border-radius: 12px;
  display: block;
  box-shadow: 3px 5px 40px #0000001a;
}

.video-status.small {
  padding-left: 180px;
  position: relative;
}

.video-status.small .video-status-image {
  border-top-right-radius: 0;
  border-bottom-left-radius: 12px;
  width: 180px;
  height: 180px;
  position: absolute;
  top: 0;
  left: 0;
}

.video-status.small .video-status-info {
  border-top-right-radius: 12px;
  border-bottom-left-radius: 0;
  height: 180px;
  padding: 26px 28px 22px;
}

.video-status.small .video-status-info .video-status-title {
  margin-top: 0;
  font-size: 1rem;
}

.video-status.small .video-status-info .video-status-text {
  margin-top: 10px;
}

.video-status.small .video-status-info .video-status-meta {
  margin-top: 22px;
}

.video-status .video-status-image {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  width: 100%;
  height: auto;
}

.video-status .video-status-image.mobile {
  display: none;
}

.video-status .video-status-info {
  background-color: #21283b;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  padding: 22px 28px;
}

.video-status .video-status-info .video-status-meta {
  color: #fff;
  text-transform: uppercase;
  font-size: .6875rem;
  font-weight: 700;
}

.video-status .video-status-info .video-status-title {
  margin-top: 12px;
  font-size: 1.125rem;
  font-weight: 500;
}

.video-status .video-status-info .video-status-title .bold {
  font-weight: 700;
}

.video-status .video-status-info .video-status-title .highlighted {
  color: #4ff461;
  font-weight: 700;
}

.video-status .video-status-info .video-status-text {
  color: #9aa4bf;
  margin-top: 2px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.71429em;
}

@media screen and (width <= 680px) {
  .video-status.small {
    padding-left: 0;
  }

  .video-status.small .video-status-image {
    border-top-right-radius: 12px;
    border-bottom-left-radius: 0;
    width: 100%;
    height: auto;
    display: none;
    position: static;
  }

  .video-status.small .video-status-image.mobile {
    display: block;
  }

  .video-status.small .video-status-info {
    border-top-right-radius: 0;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    height: auto;
    padding: 22px 28px;
  }

  .video-status.small .video-status-info .video-status-title {
    margin-top: 12px;
    font-size: 1.125rem;
  }
}

.content-actions {
  justify-content: space-between;
  align-items: center;
  height: 52px;
  display: flex;
}

.content-actions .content-action {
  flex-wrap: wrap;
  display: flex;
}

.reaction-item-list {
  flex-direction: row-reverse;
  justify-content: flex-end;
  display: flex;
}

.reaction-item-list.small .reaction-item {
  width: 20px;
  height: 20px;
}

.reaction-item-list.small .reaction-item .reaction-image {
  width: 16px;
  height: 16px;
}

.reaction-item-list .reaction-item {
  background-color: #1d2333;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-left: -6px;
  display: flex;
}

.reaction-item-list .reaction-item .simple-dropdown .simple-dropdown-text:first-child {
  margin-bottom: 10px;
}

.reaction-item-list .reaction-item > .reaction-image {
  cursor: pointer;
}

.reaction-item-list .reaction-item:last-child {
  margin-left: 0;
}

.reaction-image {
  width: 20px;
  height: 20px;
}

.user-avatar-list {
  flex-direction: row-reverse;
  justify-content: flex-end;
  display: flex;
}

.user-avatar-list.reverse {
  flex-direction: row;
  justify-content: flex-start;
}

.user-avatar-list.reverse.medium .user-avatar:first-child {
  margin-left: 0;
}

.user-avatar-list.reverse.medium .user-avatar:last-child {
  margin-left: -10px;
}

.user-avatar-list.centered {
  justify-content: center;
}

.user-avatar-list.medium .user-avatar {
  margin-left: -10px;
}

.user-avatar-list.medium .user-avatar:last-child {
  margin-left: 0;
}

.user-avatar-list .user-avatar {
  margin-left: -8px;
}

.user-avatar-list .user-avatar .user-avatar-border {
  z-index: 3;
}

.user-avatar-list .user-avatar:last-child {
  margin-left: 0;
}

@media screen and (width <= 479px) {
  .content-actions .user-avatar-list, .content-actions .user-avatar-list + .meta-line-text {
    display: none;
  }
}

.user-preview {
  background-color: #1d2333;
  border-radius: 12px;
  box-shadow: 0 0 40px #0000000f;
}

.user-preview.fixed-height {
  height: 140px;
}

.user-preview.fixed-height-medium {
  height: 284px;
}

.user-preview.small .user-preview-cover {
  height: 70px;
}

.user-preview.small .user-preview-info .tag-sticker {
  right: 16px;
}

.user-preview.small .user-preview-info .user-short-description .user-short-description-title {
  font-size: 1.125rem;
}

.user-preview.small .user-preview-info .user-short-description .user-short-description-title.small {
  font-size: .875rem;
}

.user-preview.small .user-preview-info .user-short-description .user-short-description-text {
  font-size: .6875rem;
}

.user-preview.small .user-preview-info .user-short-description .user-short-description-text.regular {
  margin-top: 6px;
  font-size: .75rem;
}

.user-preview.small .user-preview-info .user-stats, .user-preview.small .user-preview-info .social-links {
  margin-top: 36px;
}

.user-preview.small .user-preview-info .user-preview-social-links-wrap {
  width: 160px;
  margin: 32px auto 0;
}

.user-preview.landscape {
  align-items: center;
  height: 100px;
  padding-left: 84px;
  display: flex;
  position: relative;
}

.user-preview.landscape .user-preview-cover {
  border-top-right-radius: 0;
  border-bottom-left-radius: 12px;
  width: 84px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.user-preview.landscape .user-preview-info {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 28px 0 0;
  display: flex;
}

.user-preview.landscape .user-preview-info .user-short-description {
  width: 200px;
}

.user-preview.landscape .user-preview-info .user-short-description + .user-stats, .user-preview.landscape .user-preview-info .user-avatar-list + .user-preview-actions, .user-preview.landscape .user-preview-info .user-avatar-list, .user-preview.landscape .user-preview-info .badge-list, .user-preview.landscape .user-preview-info .user-preview-social-links-wrap, .user-preview.landscape .user-preview-info .user-preview-actions, .user-preview.landscape .user-preview-info .social-links {
  margin-top: 0;
}

.user-preview.landscape .user-preview-info .social-links {
  width: 168px;
}

.user-preview.landscape .user-preview-info .badge-list {
  display: flex;
}

.user-preview.landscape .user-preview-info .badge-list .badge-item {
  margin-right: 8px;
}

.user-preview.landscape .user-preview-info .badge-list .badge-item:last-child {
  margin-right: 0;
}

.user-preview.landscape .user-preview-info .user-preview-social-links-wrap {
  width: 160px;
  margin-left: 8px;
}

.user-preview.landscape .user-preview-info .user-preview-actions {
  margin-top: 0;
}

.user-preview.landscape .user-preview-info .user-preview-actions .button, .user-preview.landscape .user-preview-info .user-preview-actions .tag-sticker {
  margin-right: 12px;
}

.user-preview.landscape .user-preview-info .user-preview-actions .button:last-child, .user-preview.landscape .user-preview-info .user-preview-actions .tag-sticker:last-child {
  margin-right: 0;
}

.user-preview.landscape .user-preview-info .user-preview-actions .tag-sticker {
  position: static;
}

.user-preview.landscape .user-preview-info .user-preview-actions .button {
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 44px;
  display: flex;
}

.user-preview .user-preview-cover {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  height: 96px;
}

.user-preview .user-preview-info {
  padding: 0 28px 32px;
  position: relative;
}

.user-preview .user-preview-info .tag-sticker {
  position: absolute;
  top: -12px;
  right: 28px;
}

.user-preview .user-preview-info .user-short-description.tiny .user-short-description-title {
  font-size: .875rem;
}

.user-preview .user-preview-info .user-short-description.tiny .user-short-description-text {
  font-size: .6875rem;
}

.user-preview .user-preview-info .user-short-description .user-short-description-title {
  font-size: 1.25rem;
}

.user-preview .user-preview-info .user-short-description .user-short-description-text {
  font-size: .75rem;
}

.user-preview .user-preview-info .user-short-description + .user-stats {
  margin-top: 30px;
}

.user-preview .user-preview-info .user-short-description + .button {
  margin-top: 34px;
}

.user-preview .user-preview-info .badge-list {
  margin-top: 28px;
}

.user-preview .user-preview-info .user-preview-stats-slides {
  margin-top: 40px;
}

.user-preview .user-preview-info .user-preview-stats-roster {
  position: absolute;
  top: 22px;
  right: 28px;
}

.user-preview .user-preview-info .user-preview-text {
  text-align: center;
  width: 270px;
  margin: -10px auto 0;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.42857em;
}

.user-preview .user-preview-info .social-links {
  margin-top: 24px;
}

.user-preview .user-preview-info .user-preview-social-links-wrap {
  height: 36px;
  margin-top: 20px;
  position: relative;
}

.user-preview .user-preview-info .user-preview-social-links-wrap .user-preview-social-links {
  z-index: 2;
  margin: 0 auto;
  padding-top: 4px;
  position: relative;
}

.user-preview .user-preview-info .user-preview-social-links-wrap .slider-controls {
  z-index: 1;
  justify-content: space-between;
  align-items: center;
  width: 234px;
  display: flex;
  position: absolute;
  top: 10px;
  left: -40px;
}

.user-preview .user-preview-info .user-avatar-list {
  margin-top: 34px;
}

.user-preview .user-preview-info .user-avatar-list + .user-preview-actions {
  margin-top: 36px;
}

.user-preview .user-preview-info .user-preview-actions {
  margin-top: 40px;
  display: flex;
}

.user-preview .user-preview-info .user-preview-actions .button {
  width: 100%;
  margin-right: 16px;
}

.user-preview .user-preview-info .user-preview-actions .button:last-child {
  margin-right: 0;
}

.user-preview .user-preview-info .user-preview-actions .button .button-icon {
  fill: #fff;
}

.user-preview .user-preview-info .user-preview-actions .button.white .button-icon {
  fill: #616a82;
}

.user-preview .user-preview-info .user-preview-actions .button.white:hover .button-icon {
  fill: #fff;
}

.user-preview .user-preview-info .user-preview-actions .button.full {
  width: 100%;
}

.user-preview .user-preview-info .user-preview-actions .button.full .button-icon {
  position: relative;
  left: -12px;
}

.user-preview .user-preview-author {
  padding-left: 26px;
  position: relative;
}

.user-preview .user-preview-author .user-preview-author-image {
  position: absolute;
  top: 1px;
  left: 0;
}

.user-preview .user-preview-author .user-preview-author-title {
  font-size: .625rem;
  font-weight: 500;
}

.user-preview .user-preview-author .user-preview-author-text {
  margin-top: 1px;
  font-size: .75rem;
  font-weight: 700;
}

.user-preview .user-preview-author .user-preview-author-text a {
  color: #fff;
  font-weight: 700;
}

.user-preview .user-preview-footer {
  background-color: #21283b;
  border-top: 1px solid #2f3749;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  align-items: center;
  height: 65px;
  display: flex;
}

.user-preview .user-preview-footer.padded {
  height: auto;
  padding: 16px 28px;
}

.user-preview .user-preview-footer .user-preview-footer-action {
  border-right: 1px solid #2f3749;
  justify-content: center;
  align-items: center;
  width: 50%;
  display: flex;
}

.user-preview .user-preview-footer .user-preview-footer-action:last-child {
  border-right: none;
}

.user-preview .user-preview-footer .user-preview-footer-action.full {
  width: 100%;
  padding: 0 28px;
}

.user-preview .user-preview-footer .user-preview-footer-action.full .button {
  width: 100%;
}

.user-preview .user-preview-footer .user-preview-footer-action .button {
  width: 64px;
  height: 44px;
}

@media screen and (width <= 1365px) {
  .user-preview.landscape .user-preview-info .badge-list {
    display: none;
  }
}

@media screen and (width <= 1260px) {
  .user-preview.landscape .user-preview-info .social-links, .user-preview.landscape .user-preview-info .user-preview-social-links-wrap, .user-preview.landscape .user-preview-info .user-avatar-list {
    display: none;
  }
}

@media screen and (width <= 960px) {
  .user-preview.landscape .user-preview-info .user-stats {
    display: none;
  }
}

@media screen and (width <= 460px) {
  .user-preview.landscape {
    padding-left: 60px;
  }

  .user-preview.landscape .user-preview-cover {
    width: 60px;
  }

  .user-preview.landscape .user-preview-info {
    height: 100%;
    padding: 0 68px 0 0;
  }

  .user-preview.landscape .user-preview-info .user-short-description {
    width: auto;
  }

  .user-preview.landscape .user-preview-info .user-preview-actions {
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 8px;
    right: 12px;
  }

  .user-preview.landscape .user-preview-info .user-preview-actions .button, .user-preview.landscape .user-preview-info .user-preview-actions .tag-sticker {
    width: 44px;
    height: 40px;
    margin: 0 0 4px;
  }

  .user-preview.landscape .user-preview-info .user-preview-actions .button:last-child, .user-preview.landscape .user-preview-info .user-preview-actions .tag-sticker:last-child {
    margin-bottom: 0;
  }

  .user-preview .user-preview-info .user-preview-social-links-wrap {
    width: 160px;
    margin: 20px auto 0;
  }

  .user-preview .user-preview-info .user-preview-text {
    width: 95%;
  }
}

.album-preview {
  cursor: pointer;
  border-radius: 12px;
  height: 340px;
  display: block;
  position: relative;
  box-shadow: 0 0 40px #0000000f;
}

.album-preview .album-preview-image {
  z-index: 1;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.album-preview .text-sticker {
  z-index: 3;
  pointer-events: none;
  position: absolute;
  top: 18px;
  right: 18px;
}

.album-preview .album-preview-info {
  z-index: 2;
  border-radius: 12px;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  padding: 0 28px 26px;
  transition: box-shadow .2s ease-in-out;
  display: flex;
  position: relative;
  box-shadow: inset 0 -120px 50px -40px #000c;
}

.album-preview .album-preview-info:hover {
  box-shadow: inset 0 -120px 50px -40px #40d04fe6;
}

.album-preview .album-preview-info .album-preview-title, .album-preview .album-preview-info .album-preview-text {
  color: #fff;
}

.album-preview .album-preview-info .album-preview-title {
  font-size: 1rem;
  font-weight: 700;
}

.album-preview .album-preview-info .album-preview-text {
  margin-top: 6px;
  font-size: .875rem;
  font-weight: 500;
}

.photo-preview {
  cursor: pointer;
  border-radius: 12px;
  display: block;
  position: relative;
  box-shadow: 0 0 40px #0000000f;
}

.photo-preview.small {
  height: 184px;
}

.photo-preview:hover .photo-preview-info {
  opacity: 1;
  visibility: visible;
}

.photo-preview:hover .photo-preview-info .reaction-count-list .reaction-count {
  transform: scale(1);
}

.photo-preview .photo-preview-image {
  z-index: 1;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.photo-preview .photo-preview-info {
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  background-color: #15151ff5;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: opacity .2s ease-in-out, visibility .2s ease-in-out;
  display: flex;
  position: relative;
}

.photo-preview .photo-preview-info .reaction-count-list .reaction-count {
  transition: transform .2s ease-in-out;
  transform: scale(0);
}

.photo-preview .photo-preview-info .reaction-count-list .reaction-count:first-child {
  transition-delay: .1s;
}

.photo-preview .photo-preview-info .reaction-count-list .reaction-count:last-child {
  transition-delay: .2s;
}

.popup-box {
  opacity: 0;
  visibility: hidden;
  background-color: #1d2333;
  border-radius: 12px;
  width: 90%;
  max-width: 984px;
}

.popup-box.mid {
  max-width: 784px;
}

.popup-box.small {
  max-width: 384px;
}

.popup-box .popup-box-body {
  display: flex;
}

.popup-box .popup-box-body .popup-box-sidebar {
  border-right: 1px solid #2f3749;
  width: 36.2245%;
}

.popup-box .popup-box-body .popup-box-sidebar .popup-box-sidebar-footer {
  padding: 28px;
}

.popup-box .popup-box-body .popup-box-sidebar .popup-box-sidebar-footer .button {
  margin-bottom: 16px;
}

.popup-box .popup-box-body .popup-box-sidebar .popup-box-sidebar-footer .button:last-child {
  margin-bottom: 0;
}

.popup-box .popup-box-body .popup-box-sidebar .user-preview {
  box-shadow: none;
  border-top-right-radius: 0;
}

.popup-box .popup-box-body .popup-box-sidebar .user-preview .user-preview-cover {
  border-top-right-radius: 0;
}

.popup-box .popup-box-body .popup-box-sidebar .product-preview {
  box-shadow: none;
  border-top-right-radius: 0;
}

.popup-box .popup-box-body .popup-box-sidebar .product-preview .product-preview-image {
  border-top-right-radius: 0;
}

.popup-box .popup-box-body .popup-box-content {
  border-bottom-right-radius: 12px;
  width: 63.7755%;
}

.popup-box .popup-box-body .popup-box-content.limited {
  max-height: 620px;
  overflow-y: auto;
}

.popup-box .popup-box-body .popup-box-content .widget-box {
  box-shadow: none;
}

.popup-box .popup-box-title {
  padding: 32px 28px 0;
  font-size: 1rem;
  font-weight: 700;
}

.popup-box .popup-box-subtitle {
  margin-top: 6px;
  padding: 0 28px;
  font-size: .875rem;
  font-weight: 700;
}

.popup-box .popup-box-subtitle .light {
  color: #9aa4bf;
  font-weight: 500;
}

.popup-box .form {
  margin-top: 32px;
}

.popup-box .form .form-row {
  padding: 0 28px;
}

.popup-box .form .form-uploadables {
  height: 406px;
  margin-top: 32px;
  padding: 0 28px 40px;
  overflow-y: auto;
}

.popup-box .widget-box .form .form-row {
  padding: 0;
}

.popup-box .popup-box-actions {
  justify-content: flex-end;
  padding: 32px 38px;
  display: flex;
  box-shadow: 0 0 40px #0000000f;
}

.popup-box .popup-box-actions.void {
  box-shadow: none;
}

.popup-box .popup-box-actions.medium {
  padding: 40px 28px;
}

.popup-box .popup-box-actions.full {
  padding: 40px 28px 28px;
  display: block;
}

.popup-box .popup-box-actions .popup-box-action-text {
  margin-top: 24px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.42857em;
}

.popup-box .popup-box-actions .popup-box-action {
  width: 180px;
  margin-right: 16px;
}

.popup-box .popup-box-actions .popup-box-action.full {
  width: 100%;
}

.popup-box .popup-box-actions .popup-box-action:last-child {
  margin-right: 0;
}

@media screen and (width <= 680px) {
  .popup-box .popup-box-body {
    display: block;
  }

  .popup-box .popup-box-body .popup-box-sidebar, .popup-box .popup-box-body .popup-box-content {
    width: 100%;
  }

  .popup-box .popup-box-body .popup-box-sidebar {
    border-right: none;
  }
}

.badge-item-preview {
  background-color: #1d2333;
  border-radius: 12px;
  height: 154px;
  padding: 32px 28px 0;
  display: flex;
  box-shadow: 0 0 40px #0000000f;
}

.badge-item-preview .badge-item-preview-image {
  flex-shrink: 0;
  width: 82px;
  height: 90px;
}

.badge-item-preview .badge-item-preview-info {
  padding-left: 24px;
}

.badge-item-preview .badge-item-preview-info .badge-item-preview-title {
  font-size: 1.125rem;
  font-weight: 700;
}

.badge-item-preview .badge-item-preview-info .badge-item-preview-text {
  margin-top: 8px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.42857em;
}

.badge-item-preview .badge-item-preview-info .badge-item-preview-timestamp {
  color: #9aa4bf;
  text-transform: uppercase;
  margin-top: 14px;
  font-size: .75rem;
  font-weight: 500;
}

@media screen and (width <= 460px) {
  .badge-item-preview {
    height: auto;
    padding-bottom: 32px;
  }
}

.badge-item-stat {
  background-color: #1d2333;
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
  box-shadow: 0 0 40px #0000000f;
}

.badge-item-stat.void {
  box-shadow: none;
  padding: 20px 0 0;
}

.badge-item-stat .text-sticker {
  position: absolute;
  top: 10px;
  right: -6px;
}

.badge-item-stat .badge-item-stat-image-preview {
  position: absolute;
  top: 32px;
  left: 28px;
}

.badge-item-stat .badge-item-stat-image {
  margin: 0 auto;
  display: block;
}

.badge-item-stat .badge-item-stat-title {
  text-align: center;
  margin-top: 36px;
  font-size: 1.125rem;
  font-weight: 700;
}

.badge-item-stat .badge-item-stat-text {
  color: #9aa4bf;
  text-align: center;
  width: 180px;
  margin: 16px auto 0;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.42857em;
}

.badge-item-stat .progress-stat {
  max-width: 204px;
  margin: 54px auto 0;
}

.streamer-box {
  background-color: #1d2333;
  border-radius: 12px;
  box-shadow: 0 0 40px #0000000f;
}

.streamer-box.small .streamer-box-cover {
  height: 48px;
}

.streamer-box.small .streamer-box-info .streamer-box-image {
  top: -26px;
}

.streamer-box.small .streamer-box-info .streamer-box-title {
  font-size: 1rem;
}

.streamer-box.small .streamer-box-info .button {
  margin-top: 28px;
}

.streamer-box.small .streamer-box-info .button + .button {
  margin-top: 12px;
}

.streamer-box .streamer-box-cover {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  width: 100%;
  height: 70px;
}

.streamer-box .streamer-box-info {
  text-align: center;
  padding: 50px 28px 32px;
  position: relative;
}

.streamer-box .streamer-box-info .streamer-box-image {
  border: 6px solid #1d2333;
  border-radius: 50%;
  width: 72px;
  height: 72px;
  margin-left: -36px;
  position: absolute;
  top: -30px;
  left: 50%;
}

.streamer-box .streamer-box-info .streamer-box-title {
  font-size: 1.125rem;
  font-weight: 700;
}

.streamer-box .streamer-box-info .streamer-box-text {
  color: #9aa4bf;
  margin-top: 4px;
  font-size: .75rem;
  font-weight: 500;
}

.streamer-box .streamer-box-info .streamer-box-status {
  color: #fff;
  text-transform: uppercase;
  background-color: #9aa4bf;
  border-radius: 4px;
  height: 18px;
  margin-top: 10px;
  padding: 0 6px;
  font-size: .75rem;
  font-weight: 700;
  line-height: 18px;
  display: inline-block;
}

.streamer-box .streamer-box-info .streamer-box-status.active {
  background-color: #f1315e;
}

.streamer-box .streamer-box-info .user-stats {
  margin-top: 38px;
}

.streamer-box .streamer-box-info .button {
  width: 100%;
  margin-top: 40px;
}

.calendar {
  background-color: #1d2333;
}

.calendar.small {
  max-width: 215px;
}

.calendar.small .calendar-week {
  border: none;
}

.calendar.small .calendar-week .calendar-week-day {
  padding: 16px 0;
  font-size: .75rem;
}

.calendar.small .calendar-week .calendar-week-day .week-day-short {
  display: block;
}

.calendar.small .calendar-week .calendar-week-day .week-day-long {
  display: none;
}

.calendar.small .calendar-days .calendar-day-row .calendar-day {
  border: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 44px;
  padding: 0;
  display: flex;
}

.calendar.small .calendar-days .calendar-day-row .calendar-day.inactive {
  background-color: #1d2333;
}

.calendar.small .calendar-days .calendar-day-row .calendar-day.current .calendar-day-number, .calendar.small .calendar-days .calendar-day-row .calendar-day.active .calendar-day-number {
  width: 24px;
  height: 24px;
}

.calendar.small .calendar-days .calendar-day-row .calendar-day .calendar-day-number {
  font-size: .75rem;
  position: static;
}

.calendar.small .calendar-days .calendar-day-row .calendar-day .calendar-day-events {
  position: absolute;
  bottom: 2px;
}

.calendar.small .calendar-days .calendar-day-row .calendar-day .calendar-day-events .calendar-day-event {
  margin: 0 2px 0 0;
  display: block;
}

.calendar.small .calendar-days .calendar-day-row .calendar-day .calendar-day-events .calendar-day-event:last-child {
  margin: 0;
}

.calendar.small .calendar-days .calendar-day-row .calendar-day .calendar-day-event {
  border-radius: 50%;
  width: 4px;
  height: 4px;
  padding: 0;
}

.calendar.small .calendar-days .calendar-day-row .calendar-day .calendar-day-event .calendar-day-event-text {
  display: none;
}

.calendar .calendar-week {
  border-bottom: 1px solid #2f3749;
  display: flex;
}

.calendar .calendar-week .calendar-week-day {
  color: #9aa4bf;
  text-align: center;
  width: 14.2857%;
  padding: 28px 0;
  font-size: 1rem;
  font-weight: 500;
}

.calendar .calendar-week .calendar-week-day .week-day-short {
  display: none;
}

.calendar .calendar-days .calendar-day-row {
  display: flex;
}

.calendar .calendar-days .calendar-day-row .calendar-day {
  border-bottom: 1px solid #2f3749;
  border-right: 1px solid #2f3749;
  width: 14.2857%;
  height: 120px;
  padding: 52px 12px 0 16px;
  position: relative;
}

.calendar .calendar-days .calendar-day-row .calendar-day:last-child {
  border-right: none;
}

.calendar .calendar-days .calendar-day-row .calendar-day.inactive {
  background-color: #21283b;
}

.calendar .calendar-days .calendar-day-row .calendar-day.inactive .calendar-day-number {
  color: #9aa4bf;
  font-weight: 500;
}

.calendar .calendar-days .calendar-day-row .calendar-day.current .calendar-day-number, .calendar .calendar-days .calendar-day-row .calendar-day.active .calendar-day-number {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  display: flex;
  top: 8px;
  left: 10px;
}

.calendar .calendar-days .calendar-day-row .calendar-day.current .calendar-day-number {
  box-shadow: 3px 5px 20px #00000029;
}

.calendar .calendar-days .calendar-day-row .calendar-day.active .calendar-day-number {
  color: #fff;
  background-color: #7750f8;
}

.calendar .calendar-days .calendar-day-row .calendar-day .calendar-day-number {
  z-index: 1;
  font-size: 1rem;
  font-weight: 700;
  position: absolute;
  top: 20px;
  left: 18px;
}

.calendar .calendar-days .calendar-day-row .calendar-day .calendar-day-events {
  flex-wrap: wrap;
  display: flex;
}

.calendar .calendar-days .calendar-day-row .calendar-day .calendar-day-events .calendar-day-event {
  margin-bottom: 6px;
  display: none;
}

.calendar .calendar-days .calendar-day-row .calendar-day .calendar-day-events .calendar-day-event:first-child, .calendar .calendar-days .calendar-day-row .calendar-day .calendar-day-events .calendar-day-event:nth-child(2) {
  display: block;
}

.calendar .calendar-days .calendar-day-row .calendar-day .calendar-day-events .calendar-day-event:last-child {
  margin-bottom: 0;
}

.calendar .calendar-days .calendar-day-row .calendar-day .calendar-day-event {
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  text-overflow: ellipsis;
  border-radius: 200px;
  padding: 6px 12px;
  font-size: .75rem;
  font-weight: 700;
  overflow: hidden;
}

.calendar .calendar-days .calendar-day-row .calendar-day .calendar-day-event.primary {
  background-color: #40d04f;
}

.calendar .calendar-days .calendar-day-row .calendar-day .calendar-day-event.secondary {
  background-color: #7750f8;
}

.calendar-weekly {
  background-color: #1d2333;
}

.calendar-weekly .calendar-weekly-week {
  padding-left: 56px;
  display: flex;
}

.calendar-weekly .calendar-weekly-week-day {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 14.2857%;
  padding: 28px 0;
  display: flex;
}

.calendar-weekly .calendar-weekly-week-day.active .calendar-weekly-week-day-number {
  color: #7750f8;
  font-weight: 700;
}

.calendar-weekly .calendar-weekly-week-day .calendar-weekly-week-day-text {
  color: #9aa4bf;
  font-size: 1rem;
  font-weight: 500;
}

.calendar-weekly .calendar-weekly-week-day .calendar-weekly-week-day-number {
  margin-top: 8px;
  font-size: 1.25rem;
  font-weight: 500;
}

.calendar-weekly .calendar-weekly-body-wrap {
  height: 640px;
  overflow-y: auto;
}

.calendar-weekly .calendar-weekly-body {
  padding: 6px 0 0 56px;
  position: relative;
}

.calendar-weekly .calendar-weekly-hours {
  position: absolute;
  top: 0;
  left: 0;
}

.calendar-weekly .calendar-weekly-hours .calendar-weekly-hour {
  color: #9aa4bf;
  height: 120px;
  font-size: .875rem;
  font-weight: 500;
}

.calendar-weekly .calendar-weekly-days {
  display: flex;
}

.calendar-weekly .calendar-weekly-day-column {
  width: 14.2857%;
}

.calendar-weekly .calendar-weekly-day-column.active .calendar-weekly-day-interval {
  background-color: #21283b;
}

.calendar-weekly .calendar-weekly-day-column:last-child .calendar-weekly-day-interval {
  border-right: none;
}

.calendar-weekly .calendar-weekly-day-interval {
  border-top: 1px solid #2f3749;
  border-right: 1px solid #2f3749;
  width: 100%;
  height: 120px;
}

.calendar-weekly .calendar-weekly-day-interval:last-child {
  border-bottom: 1px solid #2f3749;
}

.calendar-weekly .calendar-weekly-day-part {
  border-bottom: 1px solid #eaeaf580;
  align-items: flex-start;
  width: 100%;
  height: 50%;
  padding: 0 10px;
  display: flex;
}

.calendar-weekly .calendar-weekly-day-part:last-child {
  border-bottom: none;
}

.calendar-weekly .calendar-weekly-day-part .calendar-weekly-day-event {
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  text-overflow: ellipsis;
  border-radius: 200px;
  padding: 6px 12px;
  font-size: .75rem;
  font-weight: 700;
  overflow: hidden;
}

.calendar-weekly .calendar-weekly-day-part .calendar-weekly-day-event.span-3 {
  z-index: 1;
  border-radius: 12px;
  width: 100%;
  height: 180px;
  position: relative;
}

.calendar-weekly .calendar-weekly-day-part .calendar-weekly-day-event.primary {
  background-color: #40d04f;
}

.calendar-weekly .calendar-weekly-day-part .calendar-weekly-day-event.secondary {
  background-color: #7750f8;
}

.calendar-daily {
  background-color: #1d2333;
}

.calendar-daily .calendar-daily-body-wrap {
  height: 640px;
  overflow-y: auto;
}

.calendar-daily .calendar-daily-body {
  padding: 6px 0 0 56px;
  position: relative;
}

.calendar-daily .calendar-daily-hours {
  position: absolute;
  top: 0;
  left: 0;
}

.calendar-daily .calendar-daily-hours .calendar-daily-hour {
  color: #9aa4bf;
  height: 120px;
  font-size: .875rem;
  font-weight: 500;
}

.calendar-daily .calendar-daily-interval {
  border-top: 1px solid #2f3749;
  width: 100%;
  height: 120px;
}

.calendar-daily .calendar-daily-interval:last-child {
  border-bottom: 1px solid #2f3749;
}

.calendar-daily .calendar-daily-interval-part {
  border-bottom: 1px solid #eaeaf580;
  align-items: flex-start;
  width: 100%;
  height: 50%;
  display: flex;
}

.calendar-daily .calendar-daily-interval-part:last-child {
  border-bottom: none;
}

.calendar-daily .calendar-daily-event {
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  text-overflow: ellipsis;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  padding: 12px 14px;
  font-size: .875rem;
  font-weight: 700;
  overflow: hidden;
}

.calendar-daily .calendar-daily-event.span-3 {
  z-index: 1;
  height: 180px;
  position: relative;
}

.calendar-daily .calendar-daily-event.primary {
  background-color: #40d04f;
}

.calendar-daily .calendar-daily-event.secondary {
  background-color: #7750f8;
}

.calendar-events-preview {
  background-color: #1d2333;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 0 40px #0000000f;
}

.calendar-events-preview.small .calendar-events-preview-title {
  font-size: .875rem;
}

.calendar-events-preview.small .calendar-event-preview-list {
  margin-top: 36px;
}

.calendar-events-preview .calendar-events-preview-title {
  font-size: 1.125rem;
  font-weight: 700;
}

.calendar-events-preview .calendar-event-preview-list {
  margin-top: 48px;
}

.calendar-event-preview-list .calendar-event-preview {
  margin-bottom: 28px;
}

.calendar-event-preview-list .calendar-event-preview:last-child {
  margin-bottom: 0;
}

.calendar-event-preview {
  padding-left: 72px;
  position: relative;
}

.calendar-event-preview.small .calendar-event-preview-start-time .calendar-event-preview-start-time-title {
  font-size: .875rem;
}

.calendar-event-preview.small .calendar-event-preview-start-time .calendar-event-preview-start-time-text {
  margin-top: 4px;
  font-size: .75rem;
}

.calendar-event-preview.small .calendar-event-preview-info:before {
  content: "";
  border: 2px solid #0000;
  width: 8px;
  height: 8px;
  top: 2px;
}

.calendar-event-preview.small .calendar-event-preview-info .calendar-event-preview-title {
  font-size: .875rem;
}

.calendar-event-preview.small .calendar-event-preview-info .calendar-event-preview-text {
  font-size: .75rem;
  line-height: 1.16667em;
}

.calendar-event-preview.primary .calendar-event-preview-info:before {
  border-color: #40d04f;
}

.calendar-event-preview.secondary .calendar-event-preview-info:before {
  border-color: #7750f8;
}

.calendar-event-preview .calendar-event-preview-start-time {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
}

.calendar-event-preview .calendar-event-preview-start-time .calendar-event-preview-start-time-title {
  font-size: 1rem;
  font-weight: 700;
}

.calendar-event-preview .calendar-event-preview-start-time .calendar-event-preview-start-time-text {
  margin-top: 2px;
  font-size: .875rem;
  font-weight: 500;
}

.calendar-event-preview .calendar-event-preview-info {
  position: relative;
}

.calendar-event-preview .calendar-event-preview-info:before {
  content: "";
  border: 3px solid #0000;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 0;
  left: -24px;
}

.calendar-event-preview .calendar-event-preview-info .calendar-event-preview-title {
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
}

.calendar-event-preview .calendar-event-preview-info .calendar-event-preview-text {
  color: #9aa4bf;
  margin-top: 6px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.42857em;
}

.calendar-event-preview .calendar-event-preview-info .calendar-event-preview-time {
  margin-top: 14px;
  font-size: .875rem;
  font-weight: 500;
}

.calendar-event-preview .calendar-event-preview-info .calendar-event-preview-time .bold {
  font-weight: 700;
}

.calendar-widget {
  background-color: #1d2333;
  border-radius: 12px;
  box-shadow: 0 0 40px #0000000f;
}

.calendar-widget .calendar-widget-header {
  justify-content: space-between;
  padding: 28px 28px 0;
  display: flex;
}

.calendar-widget .calendar-widget-header .calendar-widget-header-actions {
  align-items: center;
  display: flex;
}

.calendar-widget .calendar-widget-header .calendar-widget-header-actions .slider-controls {
  margin-right: 25px;
}

.calendar-widget .calendar-widget-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.calendar-widget .slider-controls {
  display: flex;
}

.calendar-widget .slider-controls .slider-control {
  margin-right: 18px;
}

.calendar-widget .slider-controls .slider-control:last-child {
  margin-right: 0;
}

.calendar-widget .calendar, .calendar-widget .calendar-weekly {
  margin-top: 26px;
  padding: 0 28px;
}

.calendar-widget .calendar-daily {
  margin-top: 60px;
  padding: 0 28px;
}

.calendar-widget .calendar-events-preview {
  margin-top: 60px;
}

@media screen and (width <= 680px) {
  .calendar.full .calendar-week {
    border: none;
  }

  .calendar.full .calendar-week .calendar-week-day {
    padding: 16px 0;
    font-size: .75rem;
  }

  .calendar.full .calendar-week .calendar-week-day .week-day-short {
    display: block;
  }

  .calendar.full .calendar-week .calendar-week-day .week-day-long {
    display: none;
  }

  .calendar.full .calendar-days .calendar-day-row .calendar-day {
    border: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 44px;
    padding: 0;
    display: flex;
  }

  .calendar.full .calendar-days .calendar-day-row .calendar-day.inactive {
    background-color: #fff;
  }

  .calendar.full .calendar-days .calendar-day-row .calendar-day.current .calendar-day-number, .calendar.full .calendar-days .calendar-day-row .calendar-day.active .calendar-day-number {
    width: 24px;
    height: 24px;
  }

  .calendar.full .calendar-days .calendar-day-row .calendar-day .calendar-day-number {
    font-size: .75rem;
    position: static;
  }

  .calendar.full .calendar-days .calendar-day-row .calendar-day .calendar-day-events {
    flex-direction: row;
    position: absolute;
    bottom: 2px;
  }

  .calendar.full .calendar-days .calendar-day-row .calendar-day .calendar-day-events .calendar-day-event {
    margin: 0 2px 0 0;
    display: block;
  }

  .calendar.full .calendar-days .calendar-day-row .calendar-day .calendar-day-events .calendar-day-event:last-child {
    margin: 0;
  }

  .calendar.full .calendar-days .calendar-day-row .calendar-day .calendar-day-event {
    border-radius: 50%;
    width: 4px;
    height: 4px;
    padding: 0;
  }

  .calendar.full .calendar-days .calendar-day-row .calendar-day .calendar-day-event .calendar-day-event-text {
    display: none;
  }
}

@media screen and (width <= 460px) {
  .calendar-widget .calendar-widget-header {
    display: block;
  }

  .calendar-widget .calendar-widget-header .calendar-widget-header-actions {
    justify-content: center;
  }

  .calendar-widget .calendar-widget-header .calendar-widget-header-actions:first-child {
    flex-direction: column;
  }

  .calendar-widget .calendar-widget-header .calendar-widget-header-actions:first-child .slider-controls {
    order: 2;
    margin: 12px 0 0;
  }

  .calendar-widget .calendar-widget-header .calendar-widget-header-actions:last-child {
    margin-top: 18px;
  }

  .calendar-widget .calendar-widget-title {
    font-size: 1rem;
  }
}

.event-preview-list .event-preview {
  margin-bottom: 32px;
}

.event-preview-list .event-preview:last-child {
  margin-bottom: 0;
}

.event-preview {
  background-color: #1d2333;
  border-radius: 12px;
  box-shadow: 0 0 40px #0000000f;
}

.event-preview.small {
  box-shadow: none;
}

.event-preview.small .event-preview-cover {
  border-radius: 12px;
  height: 80px;
}

.event-preview.small .event-preview-info {
  height: auto;
  padding: 20px 0 0 42px;
  display: block;
}

.event-preview.small .event-preview-info .date-sticker {
  width: 30px;
  top: 22px;
  left: 0;
}

.event-preview.small .event-preview-info .date-sticker .date-sticker-day {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding: 6px 0 2px;
  font-size: 1rem;
}

.event-preview.small .event-preview-info .date-sticker .date-sticker-month {
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  padding: 2px 0;
  font-size: .625rem;
}

.event-preview.small .event-preview-title {
  font-size: .875rem;
}

.event-preview.small .event-preview-text {
  margin-top: 12px;
  font-size: .75rem;
  line-height: 1.16667em;
}

.event-preview.small .event-preview-timestamp {
  color: #9aa4bf;
  margin-top: 6px;
  font-size: .75rem;
}

.event-preview .event-preview-cover {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  width: 100%;
  height: 98px;
}

.event-preview .event-preview-info {
  flex-direction: column;
  justify-content: space-between;
  height: 385px;
  padding: 40px 28px 32px;
  display: flex;
  position: relative;
}

.event-preview .event-preview-info .date-sticker {
  position: absolute;
  top: -42px;
  left: 28px;
}

.event-preview .event-preview-title {
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
}

.event-preview .event-preview-timestamp {
  margin-top: 10px;
  font-size: .875rem;
  font-weight: 500;
}

.event-preview .event-preview-timestamp .bold {
  font-weight: 700;
}

.event-preview .event-preview-text {
  color: #9aa4bf;
  margin-top: 20px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.42857em;
}

.event-preview .meta-line {
  margin-top: 26px;
}

.event-preview .button {
  width: 100%;
  margin-top: 38px;
}

.quest-preview-list .quest-preview {
  margin-bottom: 28px;
}

.quest-preview-list .quest-preview:last-child {
  margin-bottom: 0;
}

.quest-preview .quest-preview-info {
  padding: 2px 8px 0 42px;
  position: relative;
}

.quest-preview .quest-preview-info .quest-preview-image {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
}

.quest-preview .quest-preview-info .quest-preview-title {
  font-size: .875rem;
  font-weight: 700;
}

.quest-preview .quest-preview-info .quest-preview-text {
  color: #9aa4bf;
  margin-top: 4px;
  font-size: .75rem;
  font-weight: 500;
  line-height: 1.33333em;
}

.quest-preview .progress-stat {
  margin-top: 16px;
}

.quest-item {
  background-color: #1d2333;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 0 40px #0000000f;
}

.quest-item .quest-item-cover {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  width: 100%;
  height: 120px;
}

.quest-item .text-sticker {
  position: absolute;
  top: 10px;
  right: -6px;
}

.quest-item .quest-item-info {
  padding: 44px 28px 0;
  position: relative;
}

.quest-item .quest-item-badge {
  border: 6px solid #1d2333;
  border-radius: 50%;
  position: absolute;
  top: -28px;
  left: 22px;
}

.quest-item .quest-item-title {
  font-size: 1.125rem;
  font-weight: 700;
}

.quest-item .quest-item-text {
  color: #9aa4bf;
  margin-top: 18px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.42857em;
}

.quest-item .progress-stat {
  max-width: 228px;
  margin-top: 48px;
}

.quest-item .quest-item-meta {
  border-top: 1px solid #2f3749;
  align-items: center;
  margin-top: 22px;
  padding: 14px 0;
  display: flex;
}

.quest-item .quest-item-meta .quest-item-meta-info {
  margin-left: 10px;
}

.quest-item .quest-item-meta .quest-item-meta-title {
  font-size: .75rem;
  font-weight: 700;
}

.quest-item .quest-item-meta .quest-item-meta-text {
  color: #9aa4bf;
  font-size: .625rem;
  font-weight: 500;
}

.forum-post-header {
  align-items: center;
  height: 40px;
  display: flex;
}

.forum-post-header .forum-post-header-title {
  text-transform: uppercase;
  font-size: .75rem;
  font-weight: 700;
}

.forum-post-header .forum-post-header-title:first-child {
  flex-shrink: 0;
  width: 184px;
  padding-left: 28px;
}

.forum-post-header .forum-post-header-title:last-child {
  width: 79.1855%;
}

.forum-post-list {
  box-shadow: 0 0 40px #0000000f;
}

.forum-post-list .forum-post {
  box-shadow: none;
}

.forum-post-list .forum-post:first-child, .forum-post-list .forum-post:first-child .forum-post-meta {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.forum-post-list .forum-post:last-child {
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
}

.forum-post {
  background-color: #1d2333;
  box-shadow: 0 0 40px #0000000f;
}

.forum-post .forum-post-meta {
  background-color: #21283b;
  justify-content: space-between;
  align-items: center;
  min-height: 56px;
  padding: 0 28px;
  display: flex;
}

.forum-post .forum-post-timestamp {
  color: #9aa4bf;
  font-size: .875rem;
  font-weight: 500;
}

.forum-post .forum-post-actions {
  display: flex;
}

.forum-post .forum-post-actions .forum-post-action {
  margin-right: 32px;
}

.forum-post .forum-post-actions .forum-post-action:last-child {
  margin-right: 0;
}

.forum-post .forum-post-action {
  cursor: pointer;
  font-size: .875rem;
  font-weight: 700;
}

.forum-post .forum-post-action:hover {
  color: #4ff461;
}

.forum-post .forum-post-action.light {
  color: #9aa4bf;
}

.forum-post .forum-post-action.light:hover {
  color: #fff;
}

.forum-post .forum-post-content {
  min-height: 234px;
  display: flex;
}

.forum-post .forum-post-content .forum-post-user {
  flex-shrink: 0;
  width: 184px;
}

.forum-post .forum-post-content .forum-post-info {
  width: 79.1855%;
}

.forum-post .forum-post-user {
  flex-direction: column;
  align-items: center;
  padding-top: 28px;
  display: flex;
}

.forum-post .forum-post-user .user-avatar.small {
  display: none;
}

.forum-post .forum-post-user .forum-post-user-title {
  margin-top: 8px;
  font-size: .875rem;
  font-weight: 700;
}

.forum-post .forum-post-user .forum-post-user-title a {
  color: #fff;
  font-weight: 700;
}

.forum-post .forum-post-user .forum-post-user-text {
  color: #9aa4bf;
  margin-top: 4px;
  font-size: .75rem;
  font-weight: 500;
}

.forum-post .forum-post-user .forum-post-user-text a {
  color: #9aa4bf;
  font-weight: 500;
}

.forum-post .forum-post-user .forum-post-user-text a:hover {
  color: #4ff461;
}

.forum-post .forum-post-user .forum-post-user-tag {
  color: #fff;
  text-transform: uppercase;
  background-color: #7750f8;
  border-radius: 200px;
  height: 20px;
  margin-top: 12px;
  padding: 0 8px;
  font-size: .75rem;
  font-weight: 700;
  line-height: 20px;
}

.forum-post .forum-post-user .forum-post-user-tag.organizer {
  background-color: #40d04f;
}

.forum-post .forum-post-info {
  padding: 32px 28px 32px 0;
}

.forum-post .forum-post-info .forum-post-paragraph {
  margin-top: 24px;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.71429em;
}

.forum-post .forum-post-info .forum-post-paragraph:first-child {
  margin-top: 0;
}

.forum-post .forum-post-info .forum-post-paragraph .bold {
  font-weight: 700;
}

.forum-post .forum-post-info .forum-post-image {
  width: 75%;
  height: auto;
  margin-top: 24px;
}

@media screen and (width <= 460px) {
  .forum-post-header {
    display: none;
  }

  .forum-post .forum-post-content {
    display: block;
  }

  .forum-post .forum-post-content .forum-post-user, .forum-post .forum-post-content .forum-post-info {
    width: 100%;
  }

  .forum-post .forum-post-actions .forum-post-action {
    margin-right: 16px;
  }

  .forum-post .forum-post-actions .forum-post-action:last-child {
    margin-right: 0;
  }

  .forum-post .forum-post-user {
    align-items: flex-start;
    padding-left: 28px;
  }

  .forum-post .forum-post-user .user-avatar {
    display: none;
  }

  .forum-post .forum-post-user .user-avatar.small {
    display: block;
  }

  .forum-post .forum-post-info {
    padding-left: 28px;
  }
}

.slider-panel .slider-panel-slide {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}

.slider-panel .slider-panel-slide-image {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.slider-panel .slider-panel-roster {
  background-color: #1d2333;
  border-radius: 12px;
  align-items: center;
  height: 100px;
  margin-top: 16px;
  padding: 0 46px 0 74px;
  display: flex;
  position: relative;
  box-shadow: 0 0 40px #0000000f;
}

.slider-panel .slider-panel-roster .slider-controls {
  z-index: 1;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 12px;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.slider-panel .slider-panel-roster .slider-controls:before, .slider-panel .slider-panel-roster .slider-controls:after {
  content: "";
  background-color: #2f3749;
  width: 1px;
  height: 20px;
  position: absolute;
  top: 40px;
}

.slider-panel .slider-panel-roster .slider-controls:before {
  left: 46px;
}

.slider-panel .slider-panel-roster .slider-controls:after {
  display: none;
  right: 46px;
}

.slider-panel .slider-panel-roster .button {
  z-index: 2;
  width: 180px;
  margin-right: 28px;
  position: relative;
}

.slider-panel .slider-panel-roster .roster-pictures {
  z-index: 2;
  position: relative;
}

.roster-pictures {
  padding: 0 22px;
  display: flex;
  position: relative;
}

.roster-pictures:before, .roster-pictures:after {
  content: "";
  background-color: #2f3749;
  width: 1px;
  height: 20px;
  position: absolute;
  top: 14px;
}

.roster-pictures:before {
  left: 0;
}

.roster-pictures:after {
  right: 0;
}

.roster-pictures .roster-picture {
  margin-right: 28px;
}

.roster-pictures .roster-picture:last-child {
  margin-right: 0;
}

.roster-picture {
  cursor: pointer;
  width: 48px;
  height: 48px;
  position: relative;
}

.roster-picture.tns-nav-active:before {
  content: "";
  border: 4px solid #7750f8;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.roster-picture .roster-picture-image {
  border-radius: 12px;
  width: 100%;
  height: 100%;
}

@media screen and (width <= 1365px) {
  .slider-panel .slider-panel-roster {
    justify-content: center;
  }

  .slider-panel .slider-panel-roster .roster-pictures {
    display: none;
  }

  .slider-panel .slider-panel-roster .slider-controls:after {
    display: block;
  }
}

.chart-wrap {
  width: 100%;
  height: 360px;
}

.chart-wrap.small {
  height: 210px;
}

.chart {
  width: 100%;
  height: 100%;
  position: relative;
}

.demo-box {
  background-color: #1d2333;
  border-radius: 12px;
  padding: 48px 28px 32px;
  position: relative;
  box-shadow: 0 0 40px #0000000f;
}

.demo-box:before {
  content: "";
  z-index: 1;
  background-color: #7750f8;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  width: 100%;
  height: 48px;
  position: absolute;
  top: 0;
  left: 0;
}

.demo-box:nth-child(2n+2):before {
  background-color: #40d04f;
}

.demo-box .demo-box-icon-wrap {
  z-index: 2;
  background-color: #1d2333;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 68px;
  height: 68px;
  margin: -26px auto 0;
  display: flex;
  position: relative;
}

.demo-box .demo-box-icon-wrap .demo-box-icon {
  fill: #fff;
}

.demo-box .demo-box-title, .demo-box .demo-box-text {
  text-align: center;
}

.demo-box .demo-box-title {
  margin-top: 8px;
  font-size: 1rem;
  font-weight: 700;
}

.demo-box .demo-box-text {
  margin-top: 4px;
  font-size: .75rem;
  font-weight: 500;
}

.demo-box .button {
  margin-top: 36px;
  position: relative;
  overflow: hidden;
}

.demo-box .button .active-text, .demo-box .button .inactive-text {
  width: 100%;
  height: 100%;
  transition: transform .3s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
}

.demo-box .button .active-text {
  transform: translate(0, 100%);
}

.demo-box .button.active {
  background-color: #40d04f;
}

.demo-box .button.active .inactive-text {
  transform: translate(0, -100%);
}

.demo-box .button.active .active-text {
  transform: translate(0);
}

.header {
  z-index: 10000;
  background-color: #7750f8;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 80px;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.header .header-actions {
  align-items: center;
  display: flex;
}

.header .header-actions.search-bar {
  width: 30%;
}

.header .header-actions.search-bar .header-search-dropdown {
  width: 100%;
}

.header .header-actions .progress-stat {
  width: 110px;
}

.header .header-actions .register-button {
  margin: 0 30px;
  padding: 0 26px;
}

.header .header-actions .login-form {
  margin: 0 14px 0 12px;
}

.header .header-actions .login-form .button {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
}

.header .header-brand {
  align-items: center;
  display: flex;
}

.header .header-brand .logo {
  margin-left: 26px;
}

.header .header-brand .header-brand-text {
  color: #fff;
  margin-left: 26px;
  font-family: Titillium Web, sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
}

.header .sidemenu-trigger, .header .mobilemenu-trigger {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  display: flex;
}

.header .sidemenu-trigger.active .icon-grid, .header .sidemenu-trigger:hover .icon-grid {
  fill: #fff;
}

.header .sidemenu-trigger .icon-grid {
  pointer-events: none;
  transition: fill .3s ease-in-out;
}

.header .mobilemenu-trigger {
  display: none;
}

.header .input-search {
  width: 100%;
}

.header .action-list {
  height: 80px;
}

.header .action-list:before, .header .action-list:after {
  top: 24px;
}

.header .action-item {
  width: 80px;
  height: 80px;
}

.sidemenu-trigger .icon-grid {
  fill: #9b7dff;
}

.sidemenu-trigger.active .icon-grid {
  fill: #fff;
}

.floaty-bar {
  z-index: 10000;
  background-color: #7750f8;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
}

.floaty-bar .bar-actions {
  align-items: center;
  display: flex;
}

.floaty-bar .bar-actions .progress-stat {
  width: 110px;
  margin: 0 32px;
}

.floaty-bar .action-list {
  height: 60px;
}

.floaty-bar .action-list:before, .floaty-bar .action-list:after {
  top: 14px;
}

.floaty-bar .action-list .action-list-item.unread:after {
  top: 16px;
}

.floaty-bar .action-item {
  width: 80px;
  height: 60px;
}

.floaty-bar .login-button {
  padding: 0 26px;
}

@media screen and (width <= 1500px) {
  .header .header-brand .header-brand-text {
    display: none;
  }
}

@media screen and (width <= 1365px) {
  .header.logged-out .header-actions .mobilemenu-trigger {
    display: flex;
  }

  .header .header-actions .navigation {
    display: none;
  }

  .header .header-actions .progress-stat {
    margin-right: 28px;
  }

  .header .header-actions.search-bar {
    width: 50%;
    margin-right: 26px;
  }
}

@media screen and (width <= 960px) {
  .header.logged-out .header-actions:nth-last-child(2) {
    display: block;
  }

  .header.logged-out .header-actions:last-child, .header.logged-out .header-actions .register-button, .header.logged-out .header-actions .navigation, .header .header-actions:nth-last-child(2), .header .header-actions .navigation {
    display: none;
  }

  .header .header-actions.search-bar {
    width: 80%;
  }

  .floaty-bar.logged-out {
    display: flex;
  }
}

@media screen and (width <= 680px) {
  .header {
    height: 60px;
  }

  .header .header-actions:last-child {
    display: none;
  }

  .header .header-actions.search-bar {
    height: 100%;
    margin-right: 0;
  }

  .header .header-actions.search-bar .interactive-input {
    height: 100%;
  }

  .header .header-actions.search-bar .interactive-input input {
    border-radius: 0;
  }

  .header .header-actions .header-brand .logo {
    margin-left: 16px;
  }

  .header .header-actions .sidemenu-trigger {
    display: none;
  }

  .header .header-actions .mobilemenu-trigger, .floaty-bar {
    display: flex;
  }
}

@media screen and (width <= 480px) {
  .floaty-bar .bar-actions:first-child {
    display: none;
  }

  .floaty-bar .action-list {
    padding: 0;
  }

  .floaty-bar .action-list:before, .floaty-bar .action-list:after {
    display: none;
  }

  .floaty-bar .action-list .action-list-item {
    padding: 0 20px;
  }

  .floaty-bar .action-item {
    width: auto;
    padding: 0 20px;
  }
}

.navigation {
  height: 80px;
}

.menu-main {
  display: flex;
}

.menu-main .menu-main-item {
  position: relative;
}

.menu-main .menu-main-item .menu-main-item-link {
  color: #fff;
  cursor: pointer;
  padding: 0 24px;
  font-size: .75rem;
  font-weight: 700;
  line-height: 80px;
  transition: color .2s ease-in-out;
  display: block;
}

.menu-main .menu-main-item .menu-main-item-link .icon-dots {
  transition: fill .2s ease-in-out;
}

.menu-main .menu-main-item:hover > .menu-main-item-link {
  color: #4ff461;
}

.menu-main .menu-main-item:hover > .menu-main-item-link .icon-dots {
  fill: #4ff461;
}

.menu-main .menu-main-item:hover > .menu-main {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(0);
}

.menu-main .menu-main-item .menu-main {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background-color: #7750f8;
  border-radius: 10px;
  flex-flow: column;
  width: 120px;
  padding: 8px 0;
  transition: transform .3s ease-in-out, opacity .3s ease-in-out, visibility .3s ease-in-out;
  position: absolute;
  top: 64px;
  transform: translate(0, -40px);
}

.menu-main .menu-main-item .menu-main .menu-main-item .menu-main-item-link {
  padding: 8px 0 8px 18px;
  line-height: 1em;
}

.menu.small .menu-item.active .menu-item-link:hover, .menu.small .menu-item .menu-item-link, .menu.small .menu-item .menu-item-link:hover {
  padding-left: 0;
}

.menu .menu-item {
  margin-bottom: 10px;
  padding: 0 16px;
}

.menu .menu-item:last-child {
  margin-bottom: 0;
}

.menu .menu-item.active .menu-item-link {
  color: #fff;
  background-color: #40d04f;
  box-shadow: 4px 7px 12px #40d04f33;
}

.menu .menu-item.active .menu-item-link:hover {
  color: #fff;
  background-color: #40d04f;
  padding-left: 62px;
  box-shadow: 4px 7px 12px #40d04f33;
}

.menu .menu-item.active .menu-item-link:hover .menu-item-link-icon, .menu .menu-item.active .menu-item-link .menu-item-link-icon {
  fill: #fff;
}

.menu .menu-item .menu-item-link {
  border-radius: 12px;
  height: 48px;
  padding-left: 62px;
  font-size: .875rem;
  font-weight: 700;
  line-height: 48px;
  transition: all .2s ease-in-out;
  display: block;
  position: relative;
}

.menu .menu-item .menu-item-link:hover {
  color: #fff;
  background-color: #293249;
  padding-left: 70px;
  box-shadow: 3px 5px 20px #0000001f;
}

.menu .menu-item .menu-item-link:hover .menu-item-link-icon {
  fill: #4ff461;
}

.menu .menu-item .menu-item-link .menu-item-link-icon {
  pointer-events: none;
  transition: all .2s ease-in-out;
  position: absolute;
  top: 14px;
  left: 14px;
}

.section-navigation {
  background-color: #1d2333;
  border-radius: 12px;
  height: 80px;
  padding: 0 43px;
  position: relative;
  box-shadow: 0 0 40px #0000000f;
}

.section-navigation .slider-controls .slider-control {
  width: 43px;
  height: 80px;
  position: absolute;
  top: 0;
}

.section-navigation .slider-controls .slider-control.left {
  left: 0;
}

.section-navigation .slider-controls .slider-control.right {
  right: 0;
}

.section-menu {
  height: 80px;
  overflow: hidden;
}

.section-menu.secondary .section-menu-item.active, .section-menu.secondary .section-menu-item:hover {
  border-bottom: 4px solid #7750f8;
}

.section-menu.secondary .section-menu-item.active .section-menu-item-icon {
  fill: #7750f8;
}

.section-menu.medium .section-menu-item {
  width: 160px;
}

.section-menu .section-menu-item {
  float: left;
  width: 122px;
  height: 80px;
  position: relative;
}

.section-menu .section-menu-item.active {
  border-bottom: 4px solid #4ff461;
}

.section-menu .section-menu-item.active .section-menu-item-icon {
  fill: #4ff461;
  opacity: 1;
}

.section-menu .section-menu-item:hover {
  border-bottom: 4px solid #4ff461;
}

.section-menu .section-menu-item:hover .section-menu-item-icon {
  opacity: 0;
  visibility: hidden;
  transform: translate(0, -20px);
}

.section-menu .section-menu-item:hover .section-menu-item-text {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

.section-menu .section-menu-item:after {
  content: "";
  background-color: #2f3749;
  width: 1px;
  height: 20px;
  position: absolute;
  top: 30px;
  right: 0;
}

.section-menu .section-menu-item:first-child:before {
  content: "";
  background-color: #2f3749;
  width: 1px;
  height: 20px;
  position: absolute;
  top: 30px;
  left: 0;
}

.section-menu .section-menu-item .section-menu-item-icon {
  fill: #616a82;
  opacity: .6;
  margin-left: -10px;
  transition: opacity .25s ease-in-out, visibility .25s ease-in-out, transform .25s ease-in-out;
  position: absolute;
  top: 30px;
  left: 50%;
}

.section-menu .section-menu-item .section-menu-item-text {
  color: #fff;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  font-size: .875rem;
  font-weight: 700;
  transition: opacity .25s ease-in-out, visibility .25s ease-in-out, transform .25s ease-in-out;
  position: absolute;
  top: 34px;
  transform: translate(0, 20px);
}

.sidebar {
  z-index: 9999;
  height: 100%;
  padding-top: 80px;
  position: fixed;
  top: 0;
}

.sidebar.right {
  right: 0;
}

.sidebar.left {
  left: 0;
}

.sidebar.navigation-widget {
  margin-top: 80px;
  padding-top: 0;
  transition: transform .35s ease-in-out;
  overflow-y: auto;
}

.sidebar.navigation-widget.navigation-widget-mobile {
  z-index: 100000;
  margin-top: 0;
}

.sidebar.navigation-widget.closed {
  padding-top: 20px;
  overflow-y: visible;
}

.sidebar.navigation-widget.delayed {
  transition-delay: .25s;
}

.sidebar.navigation-widget.hidden {
  transform: translate(-100%);
}

.sidebar.chat-widget {
  height: 100%;
}

.sidebar.chat-widget.chat-widget-overlay {
  height: auto;
}

.sidebar.chat-widget.chat-widget-overlay .chat-widget-form {
  bottom: 0;
}

.sidebar.chat-widget.closed {
  transform: translate(220px);
}

.sidebar.chat-widget.closed .chat-widget-form {
  bottom: 0;
}

.sidebar.chat-widget.hidden {
  transform: translate(100%);
}

.sidebar.chat-widget .chat-widget-form, .sidebar.chat-widget .chat-widget-button {
  z-index: 9999;
  position: absolute;
  left: 0;
}

.sidebar.chat-widget .chat-widget-form {
  bottom: 80px;
}

.sidebar.chat-widget .chat-widget-button {
  bottom: 0;
}

.section .section-filters-bar {
  margin-top: 30px;
}

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

.section-header-info .section-pretitle {
  color: #9aa4bf;
  text-transform: uppercase;
  font-size: .75rem;
  font-weight: 600;
}

.section-header-info .section-title {
  margin-top: 8px;
  font-size: 1.625rem;
  font-weight: 700;
}

.section-header-info .section-title .highlighted {
  color: #4ff461;
}

.section-header-info .section-title .highlighted.secondary {
  color: #7750f8;
}

.section-header-info .section-title.pinned:before {
  content: "pinned";
  color: #fff;
  text-transform: uppercase;
  background-color: #40d04f;
  border-radius: 200px;
  margin-right: 12px;
  padding: 4px 8px;
  font-size: .75rem;
  font-weight: 700;
  line-height: 1em;
  display: inline-block;
  position: relative;
  top: -4px;
}

.section-header-actions {
  align-items: flex-end;
  padding-bottom: 4px;
  display: flex;
}

.section-header-actions .section-header-action {
  color: #9aa4bf;
  cursor: pointer;
  font-size: .875rem;
  font-weight: 700;
  transition: color .2s ease-in-out;
}

.section-header-actions .section-header-action:hover {
  color: #fff;
}

.section-header-actions .section-header-action + .section-header-action {
  margin-left: 32px;
}

.section-header-actions .slider-controls {
  justify-content: space-between;
  width: 60px;
  display: flex;
}

.section-header-actions .section-header-subsection {
  color: #fff;
  font-size: .875rem;
  font-weight: 700;
}

.section-header-actions .section-header-subsection:last-child {
  color: #9aa4bf;
}

.section-header-actions .section-header-subsection + .section-header-subsection {
  margin-left: 26px;
  position: relative;
}

.section-header-actions .section-header-subsection + .section-header-subsection:before {
  content: "";
  background-color: #4ff461;
  width: 2px;
  height: 10px;
  position: absolute;
  top: 2px;
  left: -13px;
}

.section-filters-bar {
  background-color: #1d2333;
  border-radius: 12px;
  justify-content: space-between;
  align-items: center;
  height: 96px;
  padding: 0 28px;
  display: flex;
  box-shadow: 0 0 40px #0000000f;
}

.section-filters-bar .form + .button {
  margin-top: 0;
}

.section-filters-bar.centered {
  justify-content: center;
}

.section-filters-bar.v1 .form .form-select, .section-filters-bar.v3 .form, .section-filters-bar.v5 .section-filters-bar-actions:first-child .form {
  display: none;
}

.section-filters-bar .section-filters-bar-actions {
  align-items: center;
  display: flex;
}

.section-filters-bar .section-filters-bar-actions .form + .filter-tabs {
  margin-left: 80px;
}

.section-filters-bar .section-filters-bar-actions .form + .button {
  flex-shrink: 0;
  margin-left: 16px;
}

.section-filters-bar .form-input.with-button {
  width: 240px;
}

.section-filters-bar .form-input.with-button input {
  padding-right: 82px;
}

.section-filters-bar .form-item.split.medium .button {
  width: 180px;
}

.section-filters-bar .form-item.split .form-input-decorated {
  width: 188px;
}

.section-filters-bar .form-item.split .form-input-decorated .form-input {
  width: 100%;
}

.section-filters-bar .form-item.split .form-input, .section-filters-bar .form-item.split .form-select {
  width: 300px;
}

.section-filters-bar .form-item.split .form-select.small {
  width: 254px;
}

.section-filters-bar .form-item.split .button {
  width: 64px;
}

.section-filters-bar .button {
  width: 180px;
}

.section-filters-bar .filter-tabs {
  height: 96px;
}

.section-filters-bar .section-filters-bar-title {
  font-size: 1rem;
  font-weight: 700;
}

.section-filters-bar .section-filters-bar-title a {
  color: #fff;
  font-weight: 700;
}

.section-filters-bar .section-filters-bar-title .separator {
  background-color: #4ff461;
  width: 2px;
  height: 10px;
  margin: 0 12px;
  display: inline-block;
}

.section-filters-bar .section-filters-bar-title + .section-filters-bar-text {
  margin-top: 8px;
}

.section-filters-bar .section-filters-bar-title + .section-filters-bar-text.small-space {
  margin-top: 4px;
}

.section-filters-bar .section-filters-bar-text {
  color: #9aa4bf;
  align-items: center;
  font-family: Rajdhani, sans-serif;
  font-size: .875rem;
  font-weight: 500;
  display: flex;
}

.section-filters-bar .section-filters-bar-text .bold {
  font-weight: 700;
}

.section-filters-bar .section-filters-bar-text .bold:last-child {
  margin-right: 4px;
}

.section-filters-bar .section-filters-bar-text .highlighted {
  color: #4ff461;
  margin: 0 4px;
  font-weight: 700;
}

.section-filters-bar .section-filters-bar-text .user-avatar {
  margin: 0 4px;
}

.section-pager-bar-wrap {
  margin-top: 32px;
}

.section-pager-bar-wrap.align-right {
  text-align: right;
}

.section-pager-bar-wrap.align-center {
  text-align: center;
}

.section-pager-bar-wrap .section-pager-bar {
  margin: 0;
  display: inline-block;
}

.section-pager-bar {
  background-color: #1d2333;
  border-radius: 12px;
  width: 494px;
  height: 60px;
  margin: 32px auto 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 40px #0000000f;
}

.section-pager-bar .section-pager {
  z-index: 1;
  height: 100%;
  position: absolute;
  top: 0;
  left: 60px;
}

.section-pager-bar .section-pager-controls .slider-control {
  z-index: 2;
  background-color: #1d2333;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
}

.section-pager-bar .section-pager-controls .slider-control.left {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  left: 0;
}

.section-pager-bar .section-pager-controls .slider-control.right {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  right: 0;
}

.section-pager {
  align-items: center;
  display: flex;
}

.section-pager.secondary .section-pager-item.active .section-pager-item-text, .section-pager.secondary .section-pager-item:hover .section-pager-item-text {
  color: #7750f8;
}

.section-pager .section-pager-item {
  cursor: pointer;
  padding: 0 8px;
  position: relative;
}

.section-pager .section-pager-item:before {
  content: "";
  background-color: #2f3749;
  width: 1px;
  height: 20px;
  position: absolute;
  top: 12px;
  left: 0;
}

.section-pager .section-pager-item:last-child:after {
  content: "";
  background-color: #2f3749;
  width: 1px;
  height: 20px;
  position: absolute;
  top: 12px;
  right: 0;
}

.section-pager .section-pager-item.active .section-pager-item-text, .section-pager .section-pager-item:hover .section-pager-item-text {
  color: #4ff461;
  background-color: #21283b;
  box-shadow: 3px 5px 20px #0000001f;
}

.section-pager .section-pager-item .section-pager-item-text {
  background-color: #1d2333;
  border-radius: 12px;
  padding: 16px;
  font-size: .875rem;
  font-weight: 700;
  transition: color .2s ease-in-out, box-shadow .2s ease-in-out, background-color .2s ease-in-out;
}

.section-results-text {
  color: #9aa4bf;
  margin-top: -12px;
  font-size: .875rem;
  font-weight: 500;
}

.section-banner {
  background: url("banner-bg.1dbe45a9.png") center no-repeat;
  border-radius: 12px;
  min-height: 160px;
  padding: 52px 60px 0 200px;
  position: relative;
}

.section-banner .section-banner-icon {
  position: absolute;
  bottom: 0;
  left: 0;
}

.section-banner .section-banner-title, .section-banner .section-banner-text {
  color: #fff;
}

.section-banner .section-banner-title {
  font-size: 2.25rem;
  font-weight: 700;
}

.section-banner .section-banner-text {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 500;
}

@media screen and (width <= 1500px) {
  .section-filters-bar.v4 .form-item.split .form-select.small {
    width: 200px;
  }
}

@media screen and (width <= 1365px) {
  .section-filters-bar.v1, .section-filters-bar.v3, .section-filters-bar.v4, .section-filters-bar.v5, .section-filters-bar.v7 {
    flex-direction: column;
    height: auto;
    padding: 32px 28px;
  }

  .section-filters-bar.v1 .filter-tabs, .section-filters-bar.v3 .filter-tabs, .section-filters-bar.v5 .filter-tabs {
    display: none;
  }

  .section-filters-bar.v1 .section-filters-bar-actions, .section-filters-bar.v4 .section-filters-bar-actions, .section-filters-bar.v7 .section-filters-bar-actions {
    margin-bottom: 40px;
  }

  .section-filters-bar.v1 .section-filters-bar-actions:last-child, .section-filters-bar.v4 .section-filters-bar-actions:last-child, .section-filters-bar.v7 .section-filters-bar-actions:last-child {
    margin-bottom: 0;
  }

  .section-filters-bar.v1 .section-filters-bar-actions .form {
    display: flex;
  }

  .section-filters-bar.v1 .section-filters-bar-actions .form .form-select {
    width: 254px;
    margin-left: 16px;
    display: block;
  }

  .section-filters-bar.v3 .form {
    display: block;
  }

  .section-filters-bar.v4 .section-filters-bar-actions {
    margin-bottom: 40px;
  }

  .section-filters-bar.v5 .section-filters-bar-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .section-filters-bar.v5 .section-filters-bar-actions:first-child .form {
    display: block;
  }

  .section-filters-bar.v5 .section-filters-bar-actions:first-child .form .form-select {
    margin-bottom: 24px;
  }

  .section-filters-bar.v5 .section-filters-bar-actions .form-item.split {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .section-filters-bar.v5 .section-filters-bar-actions .form-item.split .form-select {
    width: 100%;
    margin: 0 0 24px;
  }

  .section-results-text {
    text-align: center;
    margin-top: 24px;
  }
}

@media screen and (width <= 960px) {
  .section-filters-bar.v1 .section-filters-bar-actions {
    justify-content: center;
    width: 100%;
  }

  .section-filters-bar.v1 .section-filters-bar-actions .form {
    display: block;
  }

  .section-filters-bar.v1 .section-filters-bar-actions .form .form-input.with-button {
    width: 100%;
  }

  .section-filters-bar.v1 .section-filters-bar-actions .form .form-select {
    width: 100%;
    margin: 24px 0 0;
  }

  .section-filters-bar.v2 {
    flex-direction: column;
    height: auto;
    padding: 32px 28px;
  }

  .section-filters-bar.v2 .form .form-item.split {
    flex-direction: column;
    align-items: center;
  }

  .section-filters-bar.v2 .form .form-item.split .form-select {
    width: 100%;
    margin: 0 0 24px;
  }

  .section-filters-bar.v4 .section-filters-bar-actions {
    width: 100%;
    margin-bottom: 0;
  }

  .section-filters-bar.v4 .section-filters-bar-actions .form-item.split {
    flex-direction: column;
    align-items: center;
  }

  .section-filters-bar.v4 .section-filters-bar-actions .form-item.split .form-select, .section-filters-bar.v4 .section-filters-bar-actions .form-item.split .form-input {
    width: 100%;
    margin: 0 0 24px;
  }

  .section-filters-bar.v4 .section-filters-bar-actions:first-child .form-item.split {
    position: relative;
  }

  .section-filters-bar.v4 .section-filters-bar-actions:first-child .form-item.split .form-input {
    width: 100%;
  }

  .section-filters-bar.v4 .section-filters-bar-actions:first-child .form-item.split .form-input input {
    padding-right: 82px;
  }

  .section-filters-bar.v4 .section-filters-bar-actions:first-child .form-item.split .button {
    position: absolute;
    top: 0;
    right: 0;
  }

  .section-filters-bar.v6 {
    flex-direction: column;
    height: auto;
    padding: 32px 28px;
  }

  .section-filters-bar.v6.v6-2 .section-filters-bar-actions:first-child .form-item.split {
    flex-direction: column;
    position: relative;
  }

  .section-filters-bar.v6.v6-2 .section-filters-bar-actions:first-child .form-item.split .form-input-decorated, .section-filters-bar.v6.v6-2 .section-filters-bar-actions:first-child .form-item.split .form-input {
    width: 100%;
  }

  .section-filters-bar.v6.v6-2 .section-filters-bar-actions:first-child .form-item.split .form-input input {
    padding-right: 0;
  }

  .section-filters-bar.v6.v6-2 .section-filters-bar-actions:first-child .form-item.split .button {
    width: 180px;
    margin: 0 auto 16px;
    position: static;
  }

  .section-filters-bar.v6 .section-filters-bar-actions {
    justify-content: center;
    width: 100%;
  }

  .section-filters-bar.v6 .section-filters-bar-actions:first-child .form-item.split {
    position: relative;
  }

  .section-filters-bar.v6 .section-filters-bar-actions:first-child .form-item.split .form-input {
    width: 100%;
    margin-bottom: 24px;
  }

  .section-filters-bar.v6 .section-filters-bar-actions:first-child .form-item.split .form-input input {
    padding-right: 82px;
  }

  .section-filters-bar.v6 .section-filters-bar-actions:first-child .form-item.split .button {
    position: absolute;
    top: 0;
    right: 0;
  }

  .section-filters-bar.v7 .section-filters-bar-actions {
    flex-direction: column;
    justify-content: center;
    width: 100%;
  }

  .section-filters-bar.v7 .section-filters-bar-actions .form + .button {
    margin-top: 24px;
  }

  .section-filters-bar.v7 .section-filters-bar-actions .form-item.split {
    position: relative;
  }

  .section-filters-bar.v7 .section-filters-bar-actions .form-item.split .form-input {
    width: 100%;
  }

  .section-filters-bar.v7 .section-filters-bar-actions .form-item.split .form-input input {
    padding-right: 82px;
  }

  .section-filters-bar.v7 .section-filters-bar-actions .form-item.split .button {
    position: absolute;
    top: 0;
    right: 0;
  }

  .section-pager-bar {
    width: 306px;
  }

  .section-banner {
    height: 86px;
    min-height: auto;
    padding: 18px 28px 0 108px;
  }

  .section-banner .section-banner-icon {
    width: 92px;
    height: 86px;
  }

  .section-banner .section-banner-title {
    font-size: 1.5rem;
  }

  .section-banner .section-banner-text {
    margin-top: 6px;
    font-size: .75rem;
  }
}

@media screen and (width <= 480px) {
  .section-filters-bar.v2 .form-item.split.medium .button, .section-filters-bar .section-filters-bar-actions:last-child .form-item.split.medium .button {
    width: 100%;
  }
}

/*# sourceMappingURL=404.f7626f62.css.map */
