/*

Author: Max
 
*/
@charset "UTF-8";

/* Grid */
.m-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

/* Card */
.m-post-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #111;
}

.m-post-card__media {
    position: relative;
    width: 100%;
    aspect-ratio: 2/3;
    cursor: pointer;
}

.m-post-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
	transition: transform .4s ease;
}

.m-post-card__media img:hover {
	transform: scale(1.08)
}

/* Blur */
.m-post-card--blurred img {
    filter: blur(18px);
    transform: scale(1.05);
}

.m-post-card__pin-svg {
    width: 14px;
    height: 14px;
    fill: #fff;
    display: block;
}

/* Topbar */
.m-post-card__topbar {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    pointer-events: none;
    z-index: 2;
}

.m-post-card__pin {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 700;
}

.m-post-card__pin svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    color: #fff;
}

.m-post-card__pin-text {
    color: #fff;
}

.m-post-card__tk-note {
    background: rgba(255, 255, 255, 0.7);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
}

/* Overlay */
.m-post-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px;
    color: #fff;
    z-index: 2;
}

.m-post-card__line {
    font-size: 12px;
    margin-bottom: 4px;
}

.m-post-card__line--text {
  font-weight: 400;
  font-size: 18px;
}

.m-post-card__line--meta {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Buttons */
.m-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
    border: 0;
    background: transparent;
    color: #fff;
    padding: 0;
    cursor: pointer;
    position: relative;
    z-index: 3;
}

.m-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    flex: 0 0 16px;
}

.m-icon path {
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.m-like-btn.is-active .m-icon-heart path {
    fill: #f06;
    stroke: #fff;
}

.m-post-delete {
    position: absolute;
    bottom: 8px;
    right: 8px;
    border: none;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 6px;
    border-radius: 6px;
    cursor: pointer;
}

.m-post-repush {
    position: absolute;
    bottom: 8px;
    right: 44px;
    border: none;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 6px;
    border-radius: 6px;
    cursor: pointer;
}

/* Form */
.m-post-form {
  margin-bottom: 20px;
  border: 1px solid #f06;
  border-radius: 6px;
  padding: 12px;
  background: #FAFCFF;
}

.m-post-form textarea {
  width: 100%;
  min-height: 80px;
  padding: 10px;
  border-radius: 6px;
  border: 0px;
}

.m-post-form input[type="file"] {
    width: 100%;
}

.m-post-form__options {
    display: flex;
    justify-content: space-between;
}

.m-post-form__counter {
    font-size: 12px;
    text-align: right;
}

.m-btn {
  background: #f06;
  color: #fff;
  border: none;
  padding: 6px;
  cursor: pointer;
  border-radius: 6px;
  margin-top: 12px;
}

/* Messages */
.m-error {
    color: #f06;
}

.m-success {
    color: #00cc66;
}

/* Lightbox */
.m-lightbox__image-wrap {
    position: relative;
}

.m-lightbox__tk-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 50;
    display: inline-flex;
    width: auto;
    background: rgba(0,0,0,0.65);
    color: #fff;
    border-radius: 999px;
    padding: 7px 11px;
    font-size: 13px;
    font-weight: 700;
}

.m-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    z-index: 999999;
    padding: 30px;
}

.m-lightbox__inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.m-lightbox__close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 20;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 34px;
    cursor: pointer;
}

.m-lightbox__grid {
    display: grid;
    grid-template-columns: minmax(0, 4fr) minmax(320px, 1fr);
    gap: 20px;
    height: calc(100vh - 60px);
    padding-top: 30px;
}

.m-lightbox__left {
    position: relative;
    height: 100%;
    min-height: 400px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.m-lightbox__left img {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
	border-radius: 10px;
    display: block;
}

.m-lightbox__left--blurred img {
    filter: blur(18px);
    transform: scale(1.04);
}

.m-lightbox__tk-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.7);
  color: #111;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 600;
  width: auto;
  max-width: 140px;
}

.m-unlock-image-btn {
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #fff;
    background: #f06;
    color: #fff;
    border-radius: 10px;
    padding: 14px 22px;
    cursor: pointer;
    font-size: 18px;
}

.m-lightbox__follow {
    margin-left: auto;
    display: inline-flex;
    align-items: stretch;
    border: 1px solid #2f6db3;
    border-radius: 6px;
    overflow: hidden;
}

.m-lightbox__follow-count {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    background: #0080FF;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
	gap: 4px;
}

.m-lightbox__follow-btn {
    min-width: 44px;
    border: 0;
    background: #eaf3ff;
    color: #111;
    cursor: pointer;
    font-size: 18px;
}

.m-lightbox__follow-btn.is-active {
    background: #dcecff;
}

.m-lightbox__right {
    background: #111;
    color: #fff;
    overflow-y: auto;
    padding: 16px;
    border-radius: 10px;
    min-width: 0;
}

/* Author */
.m-lightbox__author {
    display: flex;
    gap: 10px;
    align-items: center;
    min-width: 0;
}

.m-lightbox__author-avatar {
    flex: 0 0 44px;
}

.m-lightbox__author-avatar img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.m-lightbox__author-info {
    flex: 1 1 auto;
    min-width: 0;
}

.m-lightbox__author-name {
    display: block;
	font-size: 24px;
    font-weight: 700;
    color: #f06;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.m-lightbox__author-date {
    font-size: 12px;
    color: #666;
}

.m-lightbox__follow {
    flex: 0 0 auto;
    margin-left: auto;
}

.m-lightbox__divider {
    height: 1px;
    background: #292929;
    margin: 14px 0;
}

.m-lightbox__post-text {
    font-size: 14px;
    line-height: 1.5;
	color: #fff;
}

.m-lightbox__comments-head {
    font-weight: 700;
    margin-bottom: 12px;
	color: #fff;
}

.m-lightbox__comments-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Comments */
.m-comment {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.m-comment--root {
    display: flex;
}

.m-comment--reply {
    display: block;
}

.m-comment__avatar {
    flex: 0 0 36px;
    width: 36px;
}

.m-comment__avatar img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.m-comment__body {
    flex: 1;
    min-width: 0;
}

.m-comment__box {
    background: #111;
    padding: 10px 12px;
    border-radius: 10px;
}

.m-comment__head {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.m-comment__name {
    font-weight: 700;
    color: #ababab;
    text-decoration: none;
}

.m-comment__name--inline {
    font-weight: 700;
}

.m-comment__text {
    font-size: 14px;
    line-height: 1.45;
	color: #fff;
    word-break: break-word;
}

.m-comment__badge-new {
    background: #f06;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 7px;
    border-radius: 6px;
    line-height: 1;
}

.m-comment__date {
    color: #777;
    font-size: 12px;
}

/* Comment form */
.m-comment-form-wrap {
    margin-top: 16px;
}

.m-comment-form textarea {
    width: 100%;
    min-height: 60px;
    padding: 10px;
    margin-bottom: 8px;
    background: #1b1b1b;
    border-radius: 10px;
    border: 1px solid #333;
	color: #fff;
}

.m-comment-form__message {
    margin-top: 8px;
    font-size: 13px;
}

.m-post-card__unlock-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #f06;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 8px;
    padding: 10px 14px;
    font-weight: 700;
    z-index: 5;
    pointer-events: none;
    white-space: nowrap;
}

/* Helpers */
.m-empty-box,
.m-no-comments,
.m-login-required {
    padding: 12px;
}

body.m-lightbox-open {
    overflow: hidden;
}


/* kommentare löschen*/
.m-comment-delete {
    margin-left: auto;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    padding: 0;
}

.m-comment-delete:hover {
    color: #f06;
}

.m-comment__actions {
    margin-top: 8px;
}

.m-comment__actions {
    margin-top: 8px;
}

.m-comment-like-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 0;
    background: transparent;
    color: #fff;
    padding: 0;
    cursor: pointer;
    transition: opacity .15s ease, transform .15s ease;
}

.m-comment-like-btn:hover {
    opacity: .8;
}

.m-comment-like-btn:active {
    transform: scale(.96);
}

.m-comment-like-btn .m-icon {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
}

.m-comment-like-btn .m-icon path {
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.m-comment-like-btn.is-active .m-icon-heart path {
    fill: #f06;
    stroke: #fff;
}

.m-comment-like-count {
    font-size: 12px;
    line-height: 1;
}

/* kommentare kommentieren*/
.m-comment__replies {
    margin-top: 8px;
    margin-left: 10px;
    padding-left: 10px;
    border-left: 2px solid #e9e9e9;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.m-comment__replies .m-comment__replies {
    margin-left: 0;
    padding-left: 10px;
}

.m-comment--reply .m-comment__box {
    background: #222;
}


.m-comment__replies .m-comment {
    margin-left: 0;
}

.m-comment-reply-toggle {
    border: 0;
    background: transparent;
    color: #a9a9a9;
    padding: 0;
    cursor: pointer;
    font-size: 12px;
}

.m-comment-reply-toggle:hover {
    color: #fff;
}

.m-comment-reply-form-wrap {
    margin-top: 10px;
}

.m-comment-reply-form textarea {
  width: 100%;
  min-height: 60px;
  padding: 10px;
  margin-bottom: 8px;
  background: #111;
  color: #fff;
  border-radius: 10px;
  border: 1px solid #222;
}

.m-comment-reply-form__message {
    margin-top: 8px;
    font-size: 13px;
}

.m-likes-count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  margin-left: 5px;
}

.m-likes-count .like-icon {
    display: inline-flex;
    align-items: center;
}

.m-likes-count .like-icon svg {
    width: 16px;
    height: 16px;
}

.m-post-count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  margin-left: 7px;
}

.m-follow-btn {
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid #ddd;
    background: #fff;
    color: #111;
    cursor: pointer;
    font-size: 14px;
}

.m-follow-btn.is-active {
    background: #111;
    color: #fff;
    border-color: #111;
}


/* follower widget */
.m-follow-widget {
    position: relative;
    display: inline-block;
    width: 100%;
}

.m-follow-inline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    overflow: visible;
	margin-left: 6px;
	color: #fff;
	width: 100%;
}

.m-follow-summary-btn {
    color: #fff;
    padding: 10px 12px;
    font-size: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
}


.m-follow-summary-btn strong {
    font-weight: 700;
}

.m-follow-summary-sep {
    color: #999;
}

.m-follow-arrow-btn {
    border: 0;
    background: #f5f7fb;
    color: #111;
    min-width: 36px;
    height: 36px;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
}

.m-follow-arrow-btn.is-active {
    background: #e8f1ff;
    color: #111;
}

/* popup */
.m-follow-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 999999;
    display: none;
}

.m-follow-popup__inner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(420px, calc(100vw - 30px));
    max-height: 80vh;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 10px;
    padding: 18px 16px 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.m-follow-popup__close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: 0;
    background: transparent;
    color: #666;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.m-follow-popup__tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
    padding-right: 30px;
}

.m-follow-popup__tab {
    border: 1px solid #ccc;
    background: #fff;
    color: #111;
    border-radius: 6px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
}

.m-follow-popup__tab.is-active {
    background: #111;
    color: #fff;
    border-color: #111;
}

.m-follow-popup__list {
    max-height: 55vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: 4px;
}

.m-follow-popup__loading,
.m-follow-popup__empty {
    font-size: 14px;
    color: #666;
    padding: 6px 2px;
}

.m-follow-popup__load-more-wrap {
    margin-top: 14px;
    text-align: center;
}

.m-follow-popup__load-more {
    border: 1px solid #ccc;
    background: #fff;
    color: #111;
    border-radius: 6px;
    padding: 8px 14px;
    cursor: pointer;
}

/* list item */
.m-follow-item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 8px 4px;
}

.m-follow-item__avatar {
    display: block;
    width: 42px;
    height: 42px;
}

.m-follow-item__avatar img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.m-follow-item__name {
    color: #111;
    text-decoration: none;
    font-size: 14px;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.m-follow-item__action {
    display: flex;
    align-items: center;
}

.m-follow-list-btn {
    border: 1px solid #ccc;
    background: #fff;
    color: #111;
    border-radius: 6px;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 13px;
    line-height: 1;
    min-width: 44px;
    text-align: center;
}

.m-follow-list-btn.is-active {
    background: #111;
    color: #fff;
    border-color: #111;
}

.m-follow-list-btn--remove {
    background: #fff;
    color: #111;
}


.m-follow-summary-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    background: transparent;
    border: 0;
    padding: 0;
}

.m-follow-summary-text .m-followers-count,
.m-follow-summary-text .m-following-count {
    background: transparent;
    color: inherit;
    border: 0;
    padding: 0;
}

.m-follow-summary-text .m-follow-summary-sep {
    color: rgba(255,255,255,0.7);
}

/* own profile summary */
.m-follow-widget--own .m-follow-summary-btn {
    width: 100%;
    justify-content: center;
}

/* body lock */
body.m-follow-popup-open {
    overflow: hidden;
}

.m-follow-hover-wrap {
    position: relative;
}

.m-follow-summary-btn--hover {
    border-radius: 6px;
}

.m-follow-hover-panel {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 320px;
    max-height: 320px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    padding: 12px;
    z-index: 9999;
}

.m-follow-hover-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

body.m-follow-popup-open {
    overflow: hidden;
}


.m-follow-confirm {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1000000;
    display: none;
}

.m-follow-confirm__inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 10px;
    padding: 18px;
    width: min(320px, calc(100vw - 30px));
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.m-follow-confirm__text {
    font-size: 14px;
    color: #111;
    margin-bottom: 14px;
}

.m-follow-confirm__actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.m-follow-confirm__btn {
    border: 1px solid #ccc;
    background: #fff;
    color: #111;
    border-radius: 6px;
    padding: 8px 12px;
    cursor: pointer;
}

.m-follow-confirm__btn--yes {
    background: #111;
    color: #fff;
    border-color: #111;
}

.m-followers-count {
    color: #fff;
}

/* token */
.m-blur-price-wrap {
    margin-top: 10px;
	display: none;
}

.m-blur-price-wrap label {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
}

.m-blur-price-hint {
    margin-top: 5px;
    font-size: 12px;
    color: #666;
}

.m-blur-checkbox:has(input[name="is_blur"]:checked) + .m-blur-price-wrap {
    display: block;
}

.m-token-balance-box,
.m-token-stat,
.m-token-package,
.m-token-payout-form {
    background: #fff;
    border: 0px solid #ddd;
    padding: 0px;
    margin-bottom: 10px;
}

.m-token-stats {
    display: grid;
    gap: 10px;
}

.m-token-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.m-token-package {
    position: relative;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.m-token-package--popular {
    border-color: #0080FF;
    box-shadow: 0 8px 20px rgba(0, 128, 255, 0.12);
}

.m-token-package__badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #0080FF;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 999px;
}

.m-token-package__title {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.m-token-package__tokens {
    font-size: 24px;
    margin-bottom: 6px;
}

.m-token-package__price {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.m-token-package__bonus {
    font-size: 13px;
    color: #0080FF;
    margin-bottom: 12px;
}

.m-token-buy-message {
    margin-top: 12px;
}

.m-token-payout-form input {
    width: 100%;
    margin: 8px 0;
    padding: 10px;
}

.m-token-app {
    display: grid;
    gap: 14px;
}

.m-token-app__title {
    font-size: 16px;
    font-weight: 700;
    color: #111;
}

.m-token-stats-block,
.m-token-payout-wrap,
.m-token-packages-panel {
    background: #fff;
    border: 0px solid #ddd;
    border-radius: 12px;
    padding: 14px;
}

.m-token-stats-row {
    display: grid;
    grid-template-columns: 1fr auto;
    margin-bottom: 8px;
    gap: 8px;
}

.m-token-stats-row__label {
    background: #fff;
    border: 1px solid #E7EDF3;
    border-radius: 8px;
    padding: 12px 14px;
    color: #111;
}

.m-token-stats-row__value {
    min-width: 110px;
    text-align: center;
    background: #111;
    color: #fff;
    border-radius: 8px;
    padding: 12px 14px;
    font-weight: 700;
}

.m-token-stats-row--main .m-token-stats-row__value {
    background: #f06;
    color: #fff;
}

.m-token-stats-row--processing .m-token-stats-row__value {
  background: #f60;
  color: #fff;
}

.m-token-stats-row--30days .m-token-stats-row__value {
    background: #f06;
    color: #fff;
}

.m-token-stats-note {
    margin-top: 30px;
    font-size: 14px;
	font-weight: 700;
    color: #f06;
}

.m-token-status {
  margin-top: 10px;
  font-size: 13px;
  color: #666;
}

.m-token-buy-toggle-wrap {
    text-align: left;
}

.m-token-buy-toggle,
.m-token-package .m-btn,
.m-token-payout-form .m-btn {
    background: #f06;
    color: #fff;
    border: 0;
    border-radius: 6px;
}

.m-token-buy-toggle {
    padding: 10px 14px;
    cursor: pointer;
}

.m-token-payout-form input {
  width: 100%;
  margin: 8px 0;
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid;
  border-radius: 6px;
}

.m-token-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.m-token-package {
    position: relative;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.m-token-package--popular {
    border-color: #f06;
    box-shadow: 0 8px 20px rgba(255, 0, 102, 0.12);
}

.m-token-package__badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #f06;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 999px;
}

.m-token-package__title {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.m-token-package__tokens {
    font-size: 24px;
    margin-bottom: 6px;
}

.m-token-package__price {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.m-token-package__bonus {
    font-size: 13px;
    color: #f06;
    margin-bottom: 12px;
}

.m-token-buy-message,
.m-token-payout-message {
    margin-top: 12px;
}

.m-token-app,
.m-token-app__main,
.m-token-packages-panel,
.m-token-packages-wrap {
    overflow: visible !important;
    max-height: none !important;
}

.elementor-widget-shortcode,
.elementor-widget-shortcode .elementor-widget-container,
.elementor-shortcode {
    overflow: visible !important;
    max-height: none !important;
}

.m-token-packages-panel {
    margin-top: 14px;
    display: block;
}

.m-token-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 999999;
    display: none;
}

.m-token-popup__inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(900px, calc(100vw - 30px));
    max-height: 85vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
}

.m-token-popup__close {
    position: absolute;
    top: 10px;
    right: 14px;
    border: 0;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #111;
}

.m-token-popup__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.m-token-payout-title {
  display: block;
  font-weight: 700;
  margin-bottom: 0px;
  color: #f06;
  font-size: 14px;
}

.m-token-payout-summary {
    display: grid;
    gap: 8px;
    margin-bottom: 10px;
}

.m-token-payout-line {
  display: grid;
  grid-template-columns: 1fr auto;
  margin-bottom: 8px;
  gap: 8px;
}

.m-token-payout-line span {
background: #fff;
  border: 1px solid #E7EDF3;
  border-radius: 8px;
  padding: 12px 14px;
  color: #111;
}

.m-token-payout-line strong {
  min-width: 110px;
  text-align: center;
  background: #111;
  color: #fff;
  border-radius: 8px;
  padding: 12px 14px;
  font-weight: 700;
}

.m-token-payout-hint {
  font-size: 13px;
  color: #222732;
  margin: 2px 0;
  line-height: 1.4;
}

.m-token-stats-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f06;
    color: #fff;
    border: 0;
    border-radius: 6px;
    padding: 10px 14px;
    cursor: pointer;
    font-weight: 700;
}

.m-token-stats-toggle strong {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 12px;
}

.m-token-stats-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 999999;
    display: none;
}

.m-token-stats-popup__inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(640px, calc(100vw - 30px));
    max-height: 85vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
}

.m-token-stats-popup__close {
    position: absolute;
    top: 10px;
    right: 14px;
    border: 0;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #111;
}

.m-token-profile-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.m-token-buy-toggle--profile {
    background: #f06;
    color: #fff;
    border: 0;
    border-radius: 6px;
    padding: 10px 14px;
    cursor: pointer;
    font-weight: 700;
}

.m-token-bar {
    display: grid;
   /* grid-template-columns: 1fr auto auto;*/
   align-items: center;
   gap: 10px;
   width: 100%;
   background: #fff;
   border: 1px solid;
   border-radius: 10px;
   min-height: 200px;
   padding: 12px;
   box-sizing: border-box;
   font-weight: 700;
}

.m-token-bar__text {
  color: #222732;
  font-size: 16px;
  line-height: 1.25;
  text-align: center;
}

.m-token-bar__btn {
    border: 0;
    border-radius: 8px;
    padding: 10px 14px;
    cursor: pointer;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
}

.m-token-bar__btn--open {
    background: rgba(255, 255, 255, 0.24);
	color: #f06;
}

.m-token-bar__btn--buy {
    background: #b90055;
}

.m-token-bar__btn:hover {
    opacity: 0.9;
}

.m-token-payout-wrap--sent {
    opacity: 0.85;
}

.m-notifications-box {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
  background: #fff;
  border: 1px solid;
  border-radius: 10px;
  padding: 12px;
  min-height: 200px;
  max-height: 200px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #f06 transparent;
}

.m-notification-item a {
    color: #f06;
    text-decoration: underline;
}

.m-notifications-title {
    font-weight: 700;
    margin-bottom: 6px;
}

.m-notification-item {
    font-size: 14px;
    padding: 4px 0;
}

.m-notifications-total {
    margin-top: 8px;
    font-size: 13px;
    color: #666;
}

.m-notifications-box::-webkit-scrollbar {
    width: 6px;
}

.m-notifications-box::-webkit-scrollbar-track {
    background: transparent;
}

.m-notifications-box::-webkit-scrollbar-thumb {
    background: #f06;
    border-radius: 20px;
}

.m-posts-grid-wrap--all-members .m-posts-grid {
    grid-template-columns: repeat(3, 1fr);
}

.m-post-form__push-options .m-push-profile-wrap {
    display: none;
    margin-top: 10px;
}

.m-post-form__push-options .m-push-checkbox:has(input[name="push_to_profiles"]:checked) + .m-push-profile-wrap {
    display: block;
}

.m-post-view-count {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #fff;
    font-size: 16px;
}

body.m-token-popup-open {
    overflow: hidden;
}

.m-post-form__options {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: start;
}

.m-post-form__blur-options {
    display: grid;
    gap: 10px;
}

.m-blur-checkbox,
.m-pin-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.m-blur-price-wrap label {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
}

.m-blur-price-wrap select {
    min-width: 140px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.m-post-form__pin-option {
    border: 1px dashed #ccc;
    border-radius: 10px;
    padding: 14px 18px;
    background: #fff;
}

.m-pin-icon {
    font-size: 18px;
    line-height: 1;
}


.m-post-image-preview {
    position: relative;
    margin-top: 10px;
    width: 140px;
}

.m-post-image-preview img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.m-post-image-remove {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 50%;
    background: #ff2e63;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

/* wp admin statistik*/
            .m-admin-stats-grid{
                display:grid;
                grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
                gap:16px;
                margin:20px 0 28px;
            }
            .m-admin-box{
                background:#fff;
                border:1px solid #dcdcde;
                border-radius:10px;
                padding:18px;
                box-shadow:0 1px 2px rgba(0,0,0,.04);
            }
            .m-admin-box h3{
                margin:0 0 12px;
                font-size:14px;
                color:#50575e;
            }
            .m-admin-box strong{
                font-size:28px;
                line-height:1.1;
                display:block;
                color:#111;
            }
            .m-admin-box small{
                display:block;
                margin-top:8px;
                color:#6b7280;
                font-size:12px;
            }
            .m-admin-section{
                margin-top:26px;
            }
            .m-admin-section h2{
                margin:0 0 12px;
            }
            .m-admin-table-wrap{
                background:#fff;
                border:1px solid #dcdcde;
                border-radius:10px;
                overflow:hidden;
            }
            .m-admin-table-wrap table{
                margin:0;
                border:0;
            }
            .m-admin-table-wrap .widefat th,
            .m-admin-table-wrap .widefat td{
                vertical-align:middle;
            }
            .m-admin-empty{
                color:#6b7280;
            }
            .m-admin-user-cell{
                display:flex;
                align-items:center;
                gap:10px;
            }
            .m-admin-user-avatar{
                width:32px;
                height:32px;
                border-radius:50%;
                overflow:hidden;
                flex:0 0 32px;
            }
            .m-admin-user-avatar img{
                width:100%;
                height:100%;
                object-fit:cover;
                display:block;
            }
            .m-admin-user-meta{
                min-width:0;
            }
            .m-admin-user-name{
                font-weight:600;
                color:#111;
            }
            .m-admin-user-id{
                color:#6b7280;
                font-size:12px;
            }
            .m-admin-highlight{
                color:#d63638;
                font-weight:600;
            }
            .m-admin-actions{
                display:flex;
                gap:8px;
                flex-wrap:wrap;
            }
            .m-admin-actions form{
                margin:0;
            }
            .m-admin-btn{
                display:inline-block;
                padding:6px 10px;
                border-radius:6px;
                border:1px solid #ccc;
                background:#fff;
                color:#111;
                cursor:pointer;
                text-decoration:none;
                font-size:12px;
            }
            .m-admin-btn--approve{
                background:#111;
                color:#fff;
                border-color:#111;
            }
            .m-admin-btn--reject{
                background:#fff;
                color:#b42318;
                border-color:#f2b8b5;
            }
            .m-admin-notice{
                background:#fff;
                border-left:4px solid #46b450;
                padding:12px 14px;
                margin:16px 0;
                box-shadow:0 1px 2px rgba(0,0,0,.04);
            }
            .m-admin-notice--error{
                border-left-color:#d63638;
            }
            .m-admin-status{
                display:inline-flex;
                align-items:center;
                padding:5px 10px;
                border-radius:999px;
                font-size:12px;
                font-weight:600;
                line-height:1;
            }
            .m-admin-status--pending{
                background:#fff3cd;
                color:#7a5d00;
            }
            .m-admin-status--approved{
                background:#dcfce7;
                color:#166534;
            }
            .m-admin-status--rejected{
                background:#fee2e2;
                color:#991b1b;
            }
            .m-admin-subinfo{
                font-size:12px;
                color:#6b7280;
                margin-top:4px;
            }
			
			.m-admin-box--traumziele {
    background: #f06;
    color: #fff;
}

.m-admin-box--traumziele h3,
.m-admin-box--traumziele strong,
.m-admin-box--traumziele small {
    color: #fff;
}

/* css datei _data */

.mpro-box {
    color: #222732;
    padding: 2px;
    max-width: 390px;
    font-size: 16px;
    line-height: 1.8;
}

.mpro-row {
    display: grid;
    grid-template-columns: 170px 1fr;
    align-items: start;
}

.mpro-label {
    font-weight: 700;
}

.mpro-value {
    color: #fff;
    white-space: pre-line;
}

.mpro-sep {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 22px 0 12px;
    font-weight: 700;
}

.mpro-sep:before,
.mpro-sep:after {
    content: "";
    height: 1px;
    background: #111;
    flex: 1;
}

.mpro-text {
    color: #fff;
    line-height: 1.8;
    white-space: pre-line;
}

.mpro-edit {
    margin-top: 18px;
}

.mpro-edit summary {
    cursor: pointer;
    font-weight: 700;
    color: #fff;
}

.mpro-form {
    margin-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, .25);
    padding-top: 12px;
}

.mpro-form .mpro-row {
    margin-bottom: 6px;
}

.mpro-form input,
.mpro-form select {
    width: 100%;
    max-width: 190px;
}

.mpro-form button {
    margin-top: 8px;
}

.mpro-notice {
    color: #fff;
    font-weight: 700;
    animation: mproFade 4s forwards;
}

.mpro-error {
    color: #fff;
    font-weight: 700;
    background: rgba(0, 0, 0, .25);
    padding: 4px 8px;
    margin-bottom: 8px;
}

@keyframes mproFade {
    0%,
    70% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        height: 0;
        overflow: hidden;
    }
}
	
	.mpro-tag-link{
	display:inline-block;
	margin:0 6px 6px 0;
	padding:6px 12px;
	background:rgba(255,255,255,0.8);
	border:1px solid rgba(255,255,255,0.15);
	border-radius:6px;
	color:#222732 !important;
	font-size:13px;
	font-weight:600;
	text-decoration:none;
	transition:all .2s ease;
	}
    .mpro-tag-link:hover{
	color:#fff;
	background:rgba(255,255,255,0.18);
	border-color:rgba(255,255,255,0.35);
	transform:translateY(-1px);
	}
    
	.mpro-tag-link.mpro-tag-active{background:#fff;color:#000;border-color:#fff}
	.mpro-reset-filter-inline{
    color:#222732;
    text-decoration:none;
    font-weight:600;
    opacity:.7;
    margin-left:6px;
}

.mpro-tag-stats{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:8px;
}

.mpro-tag-stat{
    display:inline-flex;
    align-items:center;
    gap:4px;
	color: #fff;
}

.mpro-hint-line {
  font-size: 12px;
  opacity: ;
  margin-top: -12px;
  margin-bottom: 6px;
  text-align: center;
  color: #fff;
}

.m-posts-grid--single {
    grid-template-columns: repeat(1, 1fr);
	aspect-ratio: 2/3;
}

/* #trendig ausgabe */
.push-text {
  font-size: 36px;
  font-weight: 700;
  text-align: right;
}

/* neu pushen */
.m-post-repush-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .7);
    z-index: 99999;
}

.m-post-repush-popup__inner {
    background: #fff;
    max-width: 420px;
    margin: 80px auto;
    padding: 20px;
    border-radius: 12px;
}

#m-post-repush-close {
    float: right;
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 22px;
}

/* Responsive */
@media (min-width: 768px) {
    .m-posts-grid--single {
        grid-template-columns: repeat(1, 1fr);
		aspect-ratio: 2/3;
    }
}

@media (max-width: 980px) {
    .m-posts-grid-wrap--all-members .m-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .m-posts-grid-wrap--all-members .m-posts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .m-token-bar {
        grid-template-columns: 1fr 1fr;
    }

    .m-token-bar__text {
        grid-column: 1 / -1;
    }

    .m-token-bar__btn {
        width: 100%;
        padding: 10px 8px;
    }
}

@media (max-width: 767px) {
    .m-token-packages {
        grid-template-columns: 1fr;
    }

    .m-token-stats-row {
        grid-template-columns: 1fr;
    }

    .m-token-stats-row__value {
        min-width: 0;
    }
}

@media (max-width: 767px) {
    .m-token-payout-line {
        grid-template-columns: 1fr;
    }

    .m-token-payout-line {
        min-width: 0;
    }
}

@media (max-width: 600px) {
    .m-post-form__options {
        grid-template-columns: 1fr;
    }

    .m-post-form__pin-option {
        width: 100%;
    }
}

@media (max-width: 980px) {
    .m-posts-grid {
        grid-template-columns: 1fr;
    }

    .m-lightbox {
        padding: 10px;
    }

    .m-lightbox__grid {
        grid-template-columns: 1fr;
        height: auto;
        gap: 12px;
        padding-top: 40px;
    }

    .m-lightbox__left {
        min-height: 260px;
        max-height: 52vh;
    }

    .m-lightbox__right {
        max-height: 38vh;
    }
}