@import url("https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@100..900&family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&family=Lexend+Deca:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;500&display=swap");

:root {
  --bg-color: #fff;
  --text-color: #242529;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
  color: inherit;
  font: inherit;
  margin: 0;
  line-height: inherit;
}

a {
  color: #00aff0;
  text-decoration: none;
  background-color: transparent;
}

body {
  font-family: "Roboto", sans-serif;
}

.profile-header {
  height: 180px;
  position: relative;
}

.profile-header img {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.profile-header::after {
  content: "";
  background: linear-gradient(#000, rgba(138, 150, 163, 0));
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-size: 100% 144px;
  background-repeat: no-repeat;
  opacity: 0.4;
  z-index: 1;
  /* Makes sure the gradient appears above the image */
}

.profile-main {
  margin-top: -32px;
  padding-top: 48px;
  padding-right: 16px;
  padding-left: 16px;
}

.profile-info {
  display: flex;
  /* Add this */
  align-items: flex-start;
  /* Add this */
  justify-content: space-between;
  /* Add this */
  flex-wrap: wrap;
  margin-bottom: 0;
  margin-top: 0;
  position: relative;
  /* Add this */
}

.profile-info a {
  margin-top: -50px;
  margin-left: -2px;
  margin-right: 14px;
  z-index: 1;
  width: 100px;
  height: 100px;
  flex: 0 0 100px;
  border: 2px solid #fff;
  font-size: 36px;
  border-radius: 1000px;
  display: block;
  position: relative;
  background-color: #fff;
  color: #00aff0;
  text-decoration: none;
}

.profile-avatar {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.profile-avatar img {
  border-radius: inherit;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  position: relative;
  pointer-events: none;
}

.profile-avatar .online-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid var(--bg-color, #ffffff);
  border-radius: 50%;
  background-color: #35d063;
  bottom: 6px;
  right: 6px;
  z-index: 3;
  box-sizing: content-box;
}

.profile-avatar::after {
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
  cursor: pointer;
  /* You could add hover effects here */
  transition: background-color 0.2s;
}

.share-btn {
  position: absolute;
  /* Change to absolute */
  right: 0;
  /* Add this */
  /* top: -10px; */
  z-index: 2;
  /* Make sure it's above the gradient overlay */
}

.share-btn button {
  width: 50px;
  height: 50px;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-shadow: inset 0 0 0 1px rgba(138, 150, 163, 0.25);
}

.share-btn button svg {
  fill: rgba(0, 175, 240, 1);
  width: 24px;
  height: 24px;
}

.profile-name {
  margin-top: 14px;
  margin-bottom: 3px;
  line-height: 1.3;
}

.name-cont {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-weight: 500;
  font-size: 19px;
  color: #242529;
  /* opacity: 0.9; */
}

.name {
  margin-right: 1px;
}

.profile-verified-icon {
  fill: rgba(36, 37, 41, 1);
}

.username {
  color: #8a96a3;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.profile-username {
  display: flex;
  align-items: center;
}

.profile-status {
  display: flex;
  align-items: center;
  color: #8a96a3;
  font-size: 14px;
  line-height: 18px;
  white-space: nowrap;
}

.profile-status::before {
  content: "\2022";
  color: rgba(138, 150, 163, 0.75);
  margin-left: 8px;
  margin-right: 8px;
}

.profile-status .status-text {
  color: #8a96a3;
}

.description {
  margin: 0;
  padding: 0 0 14px 0;
}

.description-cont {
  position: relative;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
}

.desc strong {
  font-weight: 500;
}

.desc {
  margin: 12px 0 5px 0;
  color: #242529;
  padding: 0;
  position: relative;
  --mask-size: 80px;
  max-height: 85px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to top,
      transparent 2px,
      #fff var(--mask-size));
  mask-image: linear-gradient(to top,
      transparent 2px,
      #fff var(--mask-size));
}

.desc::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 12px;
}

.desc.expanded {
  max-height: none;
  overflow: visible;
  mask-image: none;
  -webkit-mask-image: none;
}

.description-cont.truncated .location-text,
.description-cont.truncated .links-text {
  display: none;
}

/* Show location and links when expanded */
.description-cont.expanded .location-text,
.description-cont.expanded .links-text {
  display: flex;
  margin: 2px 0;
  line-height: 20px;
}

.location-text,
.links-text {
  color: #8a96a3;
  font-family: "Roboto", sans-serif;
  font-size: 14.4px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  line-height: 20px;
}

.location-text svg,
.links-text svg {
  fill: #8a96a3;
}

.links-text a {
  text-decoration: none;
  color: #8a96a3;
}

.more-info {
  margin-top: 6px;
}

.more-info,
.collapse-info {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #00aff0;
  background: none;
  border: none;
  padding: 0px;
  cursor: pointer;
  outline: inherit;
  display: none;
}

.collapse-info {
  margin-top: 11px;
}

.strong-loc {
  color: #8a96a3;
  font-style: normal;
  font-weight: 400;
}

.profile-section {
  padding-top: 10px;
  position: relative;
}

.profile-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 10px;
  background-color: #f6f6f6;
}

.offer-wrapper {
  margin-bottom: 0;
}

.section-title {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #8a96a3;
  text-transform: uppercase;
  padding: 12px 16px 12px 16px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
}

.offer-join-details {
  font-size: 19px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 2px;
  padding: 1px 16px 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
}

.offer-left-time {
  font-size: 14px;
  line-height: 20px;
  color: #8a96a3;
  padding: 0 16px;
}

.offer-left-time-el {
  display: inline;
  margin-right: 5px;
}

.offer-left-time-el:not(:first-child)::before {
  content: "\2022";
  margin-right: 7px;
}

.offer-bubble {
  position: relative;
  padding-left: 18px;
  margin: 10px 16px 0 16px;
}

.offer-bubble-avatar {
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 1000px;
  display: block;
  background-color: #fff;
  box-shadow: 0 0 0 2px #fff;
}

.offer-bubble-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  pointer-events: none;
}

.offer-bubble-text {
  font-size: 16px;
  line-height: 24px;
  background-color: rgba(138, 150, 163, 0.08);
  border-radius: 0 6px 6px 6px;
  padding: 6px 12px 6px 26px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

.offer-join {
  display: flex;
  justify-content: flex-end;
  align-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 14px 16px 0;
  margin: auto 0 0;
}

.subscribe-btn {
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 22px;
  min-height: 48px;
  background: #00aff0;
  color: #fefefe;
  border: none;
  border-radius: 1000px;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  transition: opacity 0.15s ease, background-color 0.15s ease,
    box-shadow 0.15s ease;
}

.subscribe-btn:hover {
  opacity: 0.85;
}

.btn-text {
  font-weight: 500;
  text-transform: uppercase;
}

.btn-text-small {
  font-weight: 500;
  text-transform: lowercase;
}

.btn-text-upper {
  text-transform: uppercase;
}

.btn-new-line {
  font-weight: 500;
}

.offer-regular-price {
  font-size: 14px;
  line-height: 20px;
  display: flex;
  justify-content: space-between;
  padding: 11px 0 0;
  padding-bottom: 8px;
  width: 100%;
  color: #8a96a3;
}

.tabs-nav {
  padding: 0;
}

.tabs-list {
  display: flex;
  align-content: stretch;
  align-items: stretch;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  user-select: none;
  line-height: normal;
  margin-bottom: 0;
}

.tabs-list::-webkit-scrollbar {
  display: none;
}

.tabs-item {
  display: flex;
  flex: 1;
  flex-direction: row;
  align-content: center;
  align-items: center;
  font-size: 0;
  z-index: 1;
}

.tabs-link {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  padding: 2px 4px 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  text-decoration: none;
  text-transform: uppercase;
  color: #8a96a3;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: color .3s ease, border-color .3s ease;
}

.tabs-link.active {
  color: #242529;
  border-bottom-color: currentcolor;
  transition: none;
}

.tabs-link::after {
  content: "";
  position: absolute;
  border-radius: 4px;
  background-color: rgba(0, 145, 234, .06);
  pointer-events: none;
  opacity: 0;
  transition: opacity .1s;
  z-index: -1;
  left: 8px;
  right: 8px;
  top: 4px;
  bottom: 3px;
}

.tabs-link:hover::after {
  opacity: 1;
}

.tabs-text {
  white-space: nowrap;
}

.g-sides-gaps {
  padding-left: 16px;
  padding-right: 16px;
}

/* Locked Content Block (paid page) */
.locked-content {
  position: relative;
  height: 0;
  color: #8a96a3;
  margin-left: -16px;
  margin-right: -16px;
  padding-top: 59.613%;
  background: url(../img/bgimg.png) 50% / cover;
}

@media (max-width: 767.98px) {
  .locked-content {
    padding-top: calc(56.832% + 16.5px);
  }
}

.locked-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, calc(-50% - 48px));
  width: 48px;
  height: 48px;
}

.locked-icon .g-icon {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  opacity: .25;
  fill: currentcolor;
}

.locked-subscribe-block {
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  color: #8a96a3;
  position: absolute;
  border: 1px solid rgba(138, 150, 163, .25);
  border-radius: 6px;
  padding: 15px;
  margin: 16px;
}

.locked-content-icons {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding-bottom: 2px;
  line-height: 16px;
}

.locked-media-list {
  font-size: 0;
  line-height: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-block;
  flex-grow: 1;
  vertical-align: top;
  min-width: 0;
  font-weight: 500;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.locked-media-item {
  position: relative;
  display: inline-flex;
  vertical-align: top;
  font-size: 12px;
}

.locked-media-item::after {
  content: "\2022";
  color: inherit;
  margin-left: 4px;
  margin-right: 4px;
}

.locked-media-item:last-child::after {
  display: none;
}

.locked-media-item .g-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-right: 0;
  display: inline-block;
  vertical-align: top;
}

.locked-media-count+.g-icon,
.g-icon+.locked-media-count {
  margin-left: 3px;
}

.locked-btn-group {
  width: 100%;
}

.mt-1 {
  margin-top: 10px !important;
}

.g-btn__group {
  display: flex;
  margin: -6px;
  flex-wrap: wrap;
}

.g-btn {
  font-size: 14px;
  line-height: 20px;
  border: none;
  padding: 8px 18px;
  background: #00aff0;
  min-width: 78px;
  transition: opacity .15s ease, background-color .15s ease, box-shadow .15s ease;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  color: #fefefe;
  font-weight: 500;
  cursor: pointer;
}

.g-btn.m-rounded {
  border-radius: 1000px;
}

.g-btn.m-flex {
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
  width: 100%;
}

.g-btn.m-flex.m-space-between,
.g-btn.m-flex.m-space-between .b-wrap-btn-text {
  justify-content: space-between;
}

.g-btn__group>.g-btn {
  margin: 6px;
  flex: 0 1 100%;
  justify-content: center;
  padding: 8px 18px;
  min-height: 20px;
}

.g-btn.m-flex .b-wrap-btn-text {
  display: flex;
  flex: 1;
}

.locked-subscribe-block .b-wrap-btn-text {
  display: block;
}

.b-btn-text__center {
  display: flex;
  justify-content: center;
  width: 100%;
}

.b-btn-text-center {
  text-align: center;
}

.g-icon {
  display: inline-block;
  fill: currentcolor;
  line-height: 1;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

/* Subscribe Modal */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal-overlay.active {
  display: flex;
}

.modal-container {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 440px;
  max-height: 90vh;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.modal-close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
}

.modal-close-btn svg {
  fill: #fff;
}

.modal-close-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.modal-scroll-content {
  overflow-y: auto;
  max-height: 90vh;
  scrollbar-width: none;
}

.modal-scroll-content::-webkit-scrollbar {
  display: none;
}

.modal-user-item {
  margin-bottom: 0;
}

.modal-user-inner {
  position: relative;
}

.modal-cover-wrapper {
  margin-left: -16px;
  margin-right: -16px;
  height: 120px;
  overflow: hidden;
}

.modal-cover-wrapper {
  margin: 0;
  height: 120px;
  overflow: hidden;
}

.modal-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal-profile-user {
  display: flex;
  align-items: flex-start;
  padding: 0 16px;
  margin-top: -32px;
  position: relative;
}

.modal-avatar {
  display: block;
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  margin-right: 12px;
}

.modal-avatar-img-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  background: #fff;
}

.modal-avatar-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.modal-user-info {
  padding-top: 36px;
  min-width: 0;
}

.modal-user-names {
  display: flex;
  flex-direction: column;
}

.modal-username-row {
  display: flex;
  align-items: center;
}

.modal-username-link {
  text-decoration: none;
  color: #242529;
}

.modal-user-name {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  gap: 4px;
}

.modal-verified-icon {
  fill: #00aff0;
  flex: 0 0 16px;
}

.modal-handle-link {
  text-decoration: none;
}

.modal-user-handle {
  color: #8a96a3;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.modal-user-desc {
  padding: 16px;
}

.modal-user-desc-title {
  font-size: 15px;
  font-weight: 500;
  color: #242529;
  margin-bottom: 12px;
}

.modal-benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-benefits-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.modal-benefits-icon {
  flex: 0 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.modal-benefits-icon svg {
  fill: #00aff0;
}

.modal-benefits-title {
  font-size: 14px;
  line-height: 20px;
  color: #242529;
}

/* Modal Login Form */
.modal-login-form {
  padding: 0 16px 16px;
}

.modal-form-title {
  font-size: 18px;
  font-weight: 700;
  color: #242529;
  margin-bottom: 16px;
}

.modal-input-wrapper {
  margin-bottom: 12px;
}

.modal-input-field {
  position: relative;
  border: 1px solid #d5d8dc;
  border-radius: 6px;
  padding: 0;
  transition: border-color 0.15s ease;
}

.modal-input-field:focus-within {
  border-color: #00aff0;
}

.modal-input-field label {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  font-size: 16px;
  color: #8a96a3;
  pointer-events: none;
  transition: all 0.15s ease;
  background: #fff;
  padding: 0 4px;
}

.modal-input-field input:focus~label,
.modal-input-field input:not(:placeholder-shown)~label,
.modal-input-field input.has-value~label {
  top: 0;
  font-size: 12px;
  color: #00aff0;
}

.modal-input-field input {
  width: 100%;
  border: none;
  outline: none;
  padding: 18px 14px 8px;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  color: #242529;
  background: transparent;
  border-radius: 6px;
}

.modal-input-field input::placeholder {
  color: transparent;
}

.modal-password-toggle {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #8a96a3;
}

.modal-password-toggle svg {
  fill: #8a96a3;
}

.modal-password-toggle:hover {
  background-color: rgba(138, 150, 163, 0.1);
}

.modal-submit-btn {
  display: block;
  width: 100%;
  padding: 14px 22px;
  min-height: 24px;
  background: #00aff0;
  color: #fefefe;
  border: none;
  border-radius: 1000px;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 12px;
  transition: opacity 0.15s ease;
}

.modal-submit-btn:disabled {
  opacity: 0.5;
  cursor: default;
}

.modal-submit-btn:not(:disabled):hover {
  opacity: 0.85;
}

.modal-form-terms {
  font-size: 12px;
  line-height: 16px;
  color: #8a96a3;
  text-align: center;
  margin-bottom: 16px;
}

.modal-form-terms a {
  color: #00aff0;
  text-decoration: none;
}

.modal-form-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.modal-text-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #8a96a3;
  padding: 0;
}

.modal-text-btn:hover {
  color: #242529;
}

.modal-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 22px;
  min-height: 48px;
  border: none;
  border-radius: 1000px;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 12px;
  transition: opacity 0.15s ease;
}

.modal-social-btn:hover {
  opacity: 0.85;
}

.modal-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}

.modal-social-btn.m-twitter {
  background: #000;
  color: #fff;
}

.modal-social-btn.m-twitter .modal-social-icon svg {
  fill: #fff;
}

.modal-social-btn.m-google {
  background: #fff;
  color: #242529;
  border: 1px solid #d5d8dc;
}

.modal-social-btn.m-fingerprint {
  background: #fff;
  color: #242529;
  border: 1px solid #d5d8dc;
}

.modal-social-btn.m-fingerprint .modal-social-icon svg {
  fill: #242529;
}

/* Compact Sticky Header */
.b-compact-header {
  position: sticky;
  left: 0;
  right: 0;
  top: -56px;
  height: 56px;
  margin-bottom: -56px;
  transition: top .2s;
  z-index: 6;
  background: transparent;
}

.b-compact-header.is-visible {
  top: 0;
}

.b-compact-header__wrapper {
  padding: 7px 10px 7px 0;
  height: inherit;
}

.d-flex {
  display: flex !important;
}

.align-items-center {
  align-items: center !important;
  align-content: center !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.g-position-relative {
  position: relative;
}

.g-negative-r-gap {
  margin-right: -16px;
}

.mw-0 {
  min-width: 0;
  font-size: 0;
}

.flex-fill-1 {
  flex: 1 !important;
}

/* Back button - g-btn icon modifier chain */
.g-btn.m-icon {
  min-width: unset;
  padding: 6px 4px;
}

.g-btn.m-icon:not(.m-colored) {
  background: none;
  transition: color .15s;
}

.g-btn.m-icon:not(.m-colored):not(.m-with-text):not(.m-active) {
  color: rgba(138, 150, 163, .7);
}

.g-btn.m-icon.m-icon-only {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
  align-items: center;
  padding: 0;
}

.g-btn.m-icon.m-icon-only.m-sm-size {
  width: 36px;
  height: 36px;
  min-height: 36px;
  flex-basis: 36px;
}

.g-btn.m-icon.m-icon-only:not(.m-colored).m-white,
.g-btn.m-icon:not(.m-colored):not(.m-with-text):not(.m-active).m-white {
  color: #fefefe;
}

.g-btn.m-icon.m-icon-only .g-icon {
  margin: 0 auto;
  transform: translateZ(0);
}

.g-btn.m-icon.m-icon-only:not(.m-colored) .g-icon {
  color: #00aff0;
}

.g-btn.m-icon.m-icon-only:not(.m-colored).m-white .g-icon {
  color: inherit;
}

.b-compact-header .g-page__header__btn {
  margin-right: 9px;
  margin-left: -7px;
}

.m-with-round-hover.m-light::after {
  background-color: #fefefe;
}

.b-compact-header:not(.m-sticky) .g-page__header__btn::after {
  background-color: #fefefe;
}

.b-username-row {
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
  margin-bottom: 2px;
}

.b-username-row.m-gap-clear {
  margin-bottom: 0;
}

.b-compact-header .b-username-row {
  max-width: 100%;
  flex: 0 0 100%;
}

.b-username-row .b-username {
  min-width: 0;
  display: block;
  color: var(--text-color, #242529);
}

.b-username-row [class*=g-user-] {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.b-username-row .g-user-name {
  display: block;
}

.g-user-name {
  font-weight: 500;
  position: relative;
  color: var(--text-color, #242529);
}

.g-user-name.m-verified {
  position: relative;
  padding-right: 20px;
}

.g-user-name.m-lg-size {
  font-size: 19px;
  line-height: 24px;
}

.b-compact-header:not(.m-sticky) .g-user-name {
  color: #fefefe;
}

.g-icon.m-verified {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: inherit;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.g-user-name.m-lg-size .g-icon.m-verified {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
}

.b-profile__sections {
  --size-gradient: 13px;
  padding: 2px 0 0;
  margin: 0 0 0 calc(var(--size-gradient) * -1);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 var(--size-gradient), #000 calc(100% - var(--size-gradient)), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 var(--size-gradient), #000 calc(100% - var(--size-gradient)), transparent 100%);
  color: #fefefe;
}

.b-profile__sections .b-dragscroll {
  padding-left: var(--size-gradient);
  padding-right: var(--size-gradient);
}

.b-dragscroll {
  display: flex;
  align-content: stretch;
  align-items: stretch;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  line-height: normal;
}

.b-dragscroll:not(.m-wrap-items-text) * {
  white-space: nowrap;
}

.m-native-custom-scrollbar {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.m-native-custom-scrollbar.m-scrollbar-x {
  overflow-x: auto;
}

.m-native-custom-scrollbar.m-invisible-scrollbar {
  scrollbar-width: none;
  scroll-behavior: auto;
}

.m-native-custom-scrollbar.m-invisible-scrollbar::-webkit-scrollbar,
.m-native-custom-scrollbar.m-invisible-scrollbar::-webkit-scrollbar-track {
  width: 0;
  height: 0;
  background: transparent;
  opacity: 0;
  -webkit-appearance: none;
  appearance: none;
  background-color: hsla(0, 0%, 100%, 0);
}

.m-native-custom-scrollbar.m-invisible-scrollbar::-webkit-scrollbar {
  display: none;
  color: #fff;
  height: 0;
  width: 0;
  -webkit-appearance: none;
  appearance: none;
}

.m-native-custom-scrollbar.m-invisible-scrollbar::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

.m-native-custom-scrollbar.m-invisible-scrollbar::-webkit-scrollbar-thumb {
  opacity: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  display: none;
}

.b-dragscroll.m-reset-overscroll {
  overscroll-behavior: auto;
}

.d-inline-flex {
  display: inline-flex !important;
}

.g-md-text {
  font-size: 14px;
  line-height: 20px;
}

.b-profile__sections__item {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: #8a96a3;
}

.b-compact-header .b-profile__sections__item {
  color: inherit;
}

.b-dot-item {
  position: relative;
  display: inline-flex;
  color: #8a96a3;
  margin-right: 21px;
}

.b-dot-item::after {
  content: "\2022";
  color: inherit;
  pointer-events: none;
  text-decoration: none;
  position: absolute;
  top: 0;
  font-size: 14px;
  right: -13px;
}

.b-dot-item:last-child::after {
  display: none;
}

.b-profile__sections .b-dot-item::after {
  opacity: .75;
}

.b-profile__sections__link:not(.m-no-hover) {
  cursor: pointer;
}

.b-profile__sections__link {
  display: flex;
  align-items: center;
}

.b-profile__sections__item .g-icon {
  margin-right: 4px;
  position: relative;
  top: -1px;
}

.b-profile__sections__count {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.g-icon.m-icon-sm {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.b-compact-header .g-icon.m-icon-sm {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

/* Bottom Navbar */
.l-header {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 98;
  background: #fff;
}

.l-header__menu {
  display: flex;
  justify-content: space-between;
  height: 56px;
  border-top: 1px solid rgba(138, 150, 163, .25);
  background: #fff;
  position: relative;
  box-sizing: content-box;
  z-index: 101;
  padding-left: 16px;
  padding-right: 16px;
}

.l-header__menu__item {
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: #8a96a3;
  text-decoration: none;
}

.l-header__menu__item.m-avatar-item {
  width: fit-content;
  flex: none;
  order: 5;
}

.l-header__menu__item.m-home {
  order: 1;
  z-index: 100;
}

.m-with-round-hover {
  position: relative;
}

.m-with-round-hover::after {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  content: "";
  width: 36px;
  height: 36px;
  transition: opacity .15s;
  pointer-events: none;
  opacity: 0;
  border-radius: 1000px;
  background-color: #0091ea;
  display: block;
}

.m-with-round-hover.m-size-lg-hover::after {
  height: 40px;
}

.m-with-round-hover.m-width-fluid-hover::after {
  width: 40px;
}

.l-header__menu__item__icon {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: relative;
  width: 36px;
  height: 36px;
}

.m-avatar-item .l-header__menu__item__icon {
  z-index: 1;
}

.l-header__menu__item__icon .g-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  fill: currentcolor;
}

.l-header__menu__item__icon .g-icon.m-nav-icon {
  width: 33px;
  height: 33px;
  flex: 0 0 33px;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

/* Add bottom padding to body so content isn't hidden behind navbar */
body {
  padding-bottom: 56px;
}

/* Sidebar */
.l-sidebar {
  position: absolute;
}

.l-sidebar::after {
  content: "";
  background: var(--bg-color);
  position: fixed;
  right: 0;
  top: 0;
  bottom: 57px;
  z-index: 99;
  width: 264px;
  transition: transform .1s ease;
  transform: translate(calc(100% + 24px));
  box-shadow: -8px 0 16px rgba(0, 0, 0, .16);
}

.m-sidebar-visible .l-sidebar::after {
  transform: translate(0);
}

.l-sidebar__wrapper-close {
  position: fixed;
  top: 0;
  right: 0;
  width: 264px;
  z-index: 101;
  transform: translate(100%);
  transition: transform .1s ease;
}

.m-sidebar-visible .l-sidebar__wrapper-close {
  transform: translate(0);
}

.l-sidebar__inner-overlay {
  position: fixed;
  right: -100%;
  top: 0;
  bottom: 57px;
  width: 100px;
  z-index: 101;
  outline: none !important;
}

.m-sidebar-visible .l-sidebar__inner-overlay {
  right: 264px;
}

.l-sidebar__inner {
  position: fixed;
  right: 0;
  bottom: 57px;
  z-index: 100;
  padding: 16px 10px 18px 104px;
  width: 358px;
  overflow: hidden auto;
  outline: none;
  transition: transform .1s ease;
  transform: translate(100%);
  top: 0;
}

.m-sidebar-visible .l-sidebar__inner {
  transform: translate(0);
}

.m-native-custom-scrollbar.m-scrollbar-y {
  overflow-y: auto;
}

.l-sidebar__overlay {
  left: 0;
  right: 0;
  top: 0;
  bottom: 57px;
  position: fixed;
  background: #000;
  opacity: 0;
  pointer-events: none;
  z-index: 99;
  transition: opacity .1s ease;
}

.m-sidebar-visible .l-sidebar__overlay {
  opacity: .5;
  pointer-events: auto;
}

.l-sidebar__btn-close {
  position: absolute;
  right: 10px;
  top: 10px;
  border-radius: 1000px;
}

.l-sidebar__btn-close.m-icon-only {
  background-color: var(--bg-color);
}

.l-sidebar__btn-close .g-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  margin: 0 4px;
  color: #055eca;
}

.g-btn.m-icon.m-icon-only:not(.m-colored).m-gray {
  color: #14293f;
}

.g-btn.m-icon:not(.m-colored):not(.m-with-text):not(.m-active) {
  color: rgba(138, 150, 163, .7);
}

.g-btn.m-icon.m-icon-only:not(.m-colored).m-gray .g-icon {
  color: #8a96a3;
}

.g-btn.m-gray {
  background: #8a96a3;
}

/* Sidebar Avatar */
.l-sidebar__avatar {
  display: inline-block;
  vertical-align: top;
  margin-left: 6px;
}

.g-avatar {
  border-radius: 1000px;
  display: block;
  position: relative;
  background-color: var(--bg-color);
}

.g-avatar.m-w50 {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  font-size: 18px;
}

.g-avatar__placeholder {
  display: inline-flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  color: #00aff0;
  font-weight: 700;
  font-size: inherit;
  position: relative;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.m-guest .g-avatar__placeholder:not(.m-text-avatar) {
  color: rgba(138, 150, 163, .4);
}

.g-avatar__placeholder::before {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  position: absolute;
  z-index: 1;
}

.g-avatar__placeholder::after {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: var(--bg-color);
  background-image: linear-gradient(0deg, rgba(138, 150, 163, .12), rgba(138, 150, 163, .12));
  background-blend-mode: normal;
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: inherit;
}

.g-avatar .b-default-avatar {
  font-size: inherit;
  transform: scale(1.8);
}

.g-avatar.m-w50 .b-default-avatar {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.l-sidebar__menu__divider {
  margin: 8px -10px;
  border: 0;
  height: 0;
  overflow: visible;
  border-top: 1px solid rgba(138, 150, 163, .25);
}

.l-sidebar__menu {
  padding: 0;
}

.l-sidebar__menu__item {
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  line-height: 20px;
  color: var(--text-color);
  font-weight: 500;
  padding: 6px;
  border: none;
  background: none;
  width: 100%;
  transition: color .1s ease, background-color .1s ease;
  position: relative;
  border-radius: 18px;
  margin-bottom: 8px;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
}

.l-sidebar__menu__item:last-child {
  margin-bottom: 0;
}

.m-break-word {
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.l-sidebar__menu__item .l-sidebar__menu__icon {
  margin: 0 10px 0 0;
  transition: color .1s ease;
}

.l-sidebar__menu__text {
  max-width: calc(100% - 34px);
}

.l-sidebar__switch-mode__label {
  font-weight: 500;
}

/* Language dropdown */
.l-sidebar .b-dropdown-wrapper.m-row,
.l-sidebar .dropdown.m-row {
  width: 100%;
}

.dropdown-toggle {
  background: none;
  border: none;
  padding: 4px;
  color: #8a96a3;
  position: relative;
  font: inherit;
}

.l-sidebar .dropdown-toggle {
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
  text-align: left;
}

.l-sidebar__menu__item.m-lang-item .dropdown-toggle {
  color: inherit;
}

.l-sidebar .b-dropdown-wrapper.m-row .dropdown-toggle,
.l-sidebar .dropdown.m-row .dropdown-toggle {
  padding: 6px;
  margin: -6px;
  width: calc(100% + 12px);
}

.dropdown-toggle .g-icon {
  vertical-align: top;
  position: relative;
}

.g-text-ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.l-sidebar__menu__item .b-lang-text {
  max-width: calc(100% - 60px);
}

.l-sidebar__menu__item .b-icon-arrow {
  margin-left: auto;
  padding-left: 10px;
}

/* ── Subscribe Modal ────────────────────────────── */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: none;
  z-index: 1050;
}

.modal.show {
  display: block !important;
}

.b-modal {
  padding: 12px;
}

.b-modal.b-modal__subscribe {
  padding-top: 0;
  padding-bottom: 0;
}

.b-modal:not(.m-modal-mob-page)[style*="padding-left"] {
  padding-left: 12px !important;
  padding-right: 12px !important;
}

.modal-open .modal {
  overflow: hidden auto;
}

.modal-dialog {
  display: flex;
  position: relative;
  pointer-events: none;
  width: calc(100% - 32px);
  max-height: calc(100% - 12px);
  min-height: calc(100% - 12px);
  margin: 6px auto;
}

@media (max-width: 559.98px) {
  .modal-dialog {
    max-width: 344px;
  }
}

.modal-dialog.modal-dialog-centered {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.modal-dialog.modal-dialog-centered::before,
.modal-dialog.modal-dialog-centered::after {
  content: "";
  display: block;
  height: 10px;
  width: 100%;
}

.modal-dialog.modal-dialog-centered::before {
  align-self: flex-start;
}

.modal-dialog.modal-dialog-centered::after {
  align-self: flex-end;
}

.modal.fade .modal-dialog {
  transition: transform .3s ease-out;
  transform: translateY(-50px);
}

.modal.show .modal-dialog {
  transform: none;
}

.modal-content {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  max-width: 344px;
  pointer-events: auto;
  background-color: var(--bg-color);
  background-clip: padding-box;
  border: none;
  border-radius: 6px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  outline: none;
}

.modal-dialog-centered .modal-content {
  margin: auto;
}

.b-modal .modal-content {
  overflow: hidden;
}

.modal-content::after {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  position: absolute;
  box-shadow: inset 0 0 0 1px rgba(138, 150, 163, .25);
  border-radius: inherit;
  pointer-events: none;
  z-index: 5;
}

[tabindex="-1"] {
  outline: none !important;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1040;
  background-color: #000;
  opacity: 0;
}

.modal-backdrop.fade {
  transition: opacity .15s linear;
}

.modal-backdrop.show {
  opacity: .5;
}

/* Modal body */
.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 15px 16px;
}

.modal-body.m-reset-body-paddings {
  padding: 0;
}

.m-reset-body-padding-bottom .modal-body,
.modal-body.m-reset-body-padding-bottom {
  padding-bottom: 0;
}

/* Modal footer */
.modal-footer {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 6px 10px;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}

.modal-footer.g-border-top {
  border-top: 1px solid rgba(138, 150, 163, .25);
  padding-top: 5px;
}

.g-border-top {
  border-top: 1px solid rgba(138, 150, 163, .25);
}

.modal .modal-footer>* {
  margin: 0;
}

.modal-footer .g-btn {
  margin: 0 0 0 4px;
}

.modal-footer .g-btn:last-child {
  margin-right: -4px;
}

/* g-btn base */
.g-btn {
  font-size: 14px;
  line-height: 20px;
  border: none;
  padding: 8px 18px;
  background: #00aff0;
  min-width: 78px;
  transition: opacity .15s ease, background-color .15s ease, box-shadow .15s ease;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.g-btn:not(.m-default-font-weight) {
  font-weight: 500;
}

.g-btn.m-flat {
  color: #00aff0;
  padding: 0;
  background-color: transparent;
}

.g-btn.m-flat.m-btn-gaps {
  border-radius: 1000px;
  padding: 8px 16px;
}

.g-btn.m-reset-width {
  min-width: auto;
}

/* ── Modal body scrollable content ──────────────── */
.b-scrolled-modal-content.m-view-in-viewport {
  max-height: calc(100vh - 56px);
  max-height: calc(var(--vh, 1vh) * 100 - 56px);
}

.modal:has(.modal-footer) .b-scrolled-modal-content.m-view-in-viewport {
  max-height: calc(100vh - 112px);
  max-height: calc(var(--vh, 1vh) * 100 - 112px);
}

@media (max-width: 767.98px) {
  .b-scrolled-modal-content {
    max-height: calc(100vh - 57px);
    max-height: calc(var(--vh, 1vh) * 100 - 57px);
  }
}

@media (max-width: 499.98px) {
  .b-scrolled-modal-content {
    max-height: calc(100vh - 114px);
    max-height: calc(var(--vh, 1vh) * 100 - 114px);
  }
}

/* ── User item (modal subscription card) ────────── */
.b-users__item {
  display: flex;
  padding-bottom: 12px;
}

.b-users__item:not(.g-negative-sides-gaps) {
  margin-left: 0;
  margin-right: 0;
}

.b-users__item.m-modal-subscriptions {
  padding-bottom: 0;
  border-bottom: 1px solid rgba(138, 150, 163, .25);
  margin-bottom: 14px;
}

.b-users__item__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 6px;
  position: relative;
  padding: 0 16px 16px;
  z-index: 0;
}

.m-modal-subscriptions .b-users__item__inner {
  padding-bottom: 0;
}

.b-users__item__inner::after {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  box-shadow: inset 0 0 0 1px rgba(138, 150, 163, .25);
  border-radius: 6px;
  content: "";
  pointer-events: none;
}

.m-modal-subscriptions .b-users__item__inner::after {
  display: none;
}

.modal:has(.modal-footer) .b-users__item__inner::after {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: none;
}

/* Cover banner */
.b-users__item__cover__wrapper {
  position: relative;
  height: 120px;
}

.b-users__item__cover__wrapper.m-size-sm {
  height: 80px;
}

.g-negative-sides-gaps {
  margin-left: -16px;
  margin-right: -16px;
}

.b-users__item__cover__wrapper::before {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  position: absolute;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(rgba(0, 0, 0, .12), transparent), linear-gradient(transparent 50%, rgba(0, 0, 0, .25));
  z-index: 1;
}

.b-users__item__cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 6px 6px 0 0;
  pointer-events: none;
}

/* ── Modal user profile section ─────────────────── */
.b-profile__user.m-inside-modelcard {
  margin: -42px 0 6px;
  pointer-events: none;
}

.modal .b-profile__user.m-inside-modelcard {
  margin-bottom: 14px;
}

.b-profile__user.m-inside-modelcard .g-avatar {
  pointer-events: auto;
}

.b-profile__user .g-avatar {
  margin-left: -2px;
  margin-right: 14px;
  z-index: 1;
}

.g-avatar.m-w100 {
  width: 100px;
  height: 100px;
  flex: 0 0 100px;
  border: 2px solid var(--bg-color);
  font-size: 36px;
}

.online_status_class.online.m-w100::after {
  width: 12px;
  height: 12px;
  bottom: 6px;
  right: 6px;
}

.online_status_class.online::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid var(--bg-color);
  border-radius: 1000px;
  background-clip: content-box;
  bottom: 1px;
  right: 1px;
  background-color: #35d063;
  z-index: 2;
  box-sizing: content-box;
}

/* Avatar image wrapper */
.g-avatar__img-wrapper {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.g-avatar__img-wrapper::after {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  content: "";
  position: absolute;
  z-index: 1;
}

.g-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
  position: relative;
  pointer-events: none;
}

/* User info */
.b-profile__user__info {
  flex-grow: 1;
  padding-top: 2px;
  padding-bottom: 2px;
  min-width: 0;
}

.b-profile__user__info.m-with-status {
  padding-top: 50px;
  padding-bottom: 0;
  position: relative;
}

.mw-0 {
  min-width: 0;
}

.m-inside-modelcard .b-profile__user__info * {
  pointer-events: auto;
}

/* Username rows */
.b-username-row.m-gap-lg-extra {
  margin-bottom: 6px;
}

.b-username-row.m-width-limit {
  max-width: 100%;
}

.b-username-row:last-child {
  margin-bottom: 0;
}

.b-username-row .b-username {
  min-width: 0;
  display: block;
  color: var(--text-color);
}

.b-username-row [class*="g-user-"] {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.b-username-row .g-user-name {
  display: block;
}

/* User name / username text */
.g-user-name,
.g-user-username {
  user-select: text;
}

.g-user-name {
  font-weight: 500;
  position: relative;
  color: var(--text-color);
}

.g-user-name.m-md-size {
  font-size: 16px;
  line-height: 20px;
}

.g-user-username.m-md-size {
  font-size: 14px;
  line-height: 20px;
}

.g-user-name.m-verified {
  position: relative;
  padding-right: 20px;
}

.b-username[href] .g-user-name {
  color: inherit;
}

.g-user-username {
  color: #8a96a3;
  font-size: 14px;
  line-height: 18px;
}

/* ── Modal benefits section ─────────────────────── */
.b-modal__user__desc__title {
  font-size: 16px;
  line-height: 24px;
  color: #8a96a3;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.b-modal__list {
  font-size: 16px;
  line-height: 20px;
  padding-left: 0;
  margin-bottom: 12px;
  list-style: none;
}

.b-modal__list__item {
  display: flex;
  margin-bottom: 8px;
}

.b-modal__list__icon {
  margin-right: 9px;
  margin-left: -1px;
  transform: translateY(-2px);
}

.b-modal__list__icon .g-icon {
  display: block;
  color: #00aff0;
}

.b-modal__list__title {
  flex-grow: 1;
  color: #242529;
}

/* ── Login form ── */
.b-loginreg__form {
  text-align: center;
}

.b-loginreg__form h3 {
  font-size: 14px;
  line-height: 20px;
  margin: 0 0 9px;
  text-align: left;
  font-weight: 500;
}

.b-loginreg__form.m-form-subscriptions h3 {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 14px;
}

/* Form field */
.form-field {
  position: relative;
  margin-bottom: 20px;
}

.form-field input {
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 7px;
  font-size: 16px;
  outline: none;
  transition: border-color 50ms ease;
  caret-color: #00aff0;
}

.form-field input:focus {
  border: 1px solid rgba(14, 157, 240, 0.8);
}

.form-field input::placeholder {
  color: #8a96a3;
  opacity: 0.9;
  transition: opacity 50ms ease-in;
  padding-left: 2px;
  font-family: sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.form-field input:focus::placeholder {
  opacity: 0;
}

/* Floating label */
.form-field label {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  background-color: white;
  padding: 0 4px;
  color: #8a96a3;
  pointer-events: none;
  opacity: 0;
}

.form-field.ready label {
  transition: all 0.15s ease;
}

.form-field input:focus+label {
  color: #00b0f0e5;
}

.form-field input:focus+label,
.form-field input:not(:placeholder-shown)+label {
  top: 0;
  font-size: 13px;
  opacity: 1;
}

/* Email error state */
.form-field.error input {
  border-color: #ff6060;
}

.form-field.error input:focus {
  border-color: #ff6060;
}

.form-field.error input:focus+label,
.form-field.error input:not(:placeholder-shown)+label {
  color: #ff6060;
}

.form-field.error::after {
  content: "";
  position: absolute;
  right: 11px;
  top: 14px;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ff6060'%3E%3Cpath d='M22.56 18.34A2.63 2.63 0 0 0 22.2 17L14.3 3.33a2.65 2.65 0 0 0-4.6 0L1.8 17a2.63 2.63 0 0 0-.36 1.33A2.66 2.66 0 0 0 4.1 21h15.8a2.66 2.66 0 0 0 2.66-2.66zm-2 0a.66.66 0 0 1-.66.66H4.1a.66.66 0 0 1-.66-.66.63.63 0 0 1 .09-.34l7.9-13.68a.68.68 0 0 1 1.14 0L20.47 18a.63.63 0 0 1 .09.34zM12 13.5a1 1 0 0 0 1-1v-4a1 1 0 0 0-2 0v4a1 1 0 0 0 1 1zm0 1.1a1.4 1.4 0 1 0 1.4 1.4 1.4 1.4 0 0 0-1.4-1.4z'/%3E%3C/svg%3E");
  background-size: 24px 24px;
  pointer-events: none;
}

.email-error-msg {
  display: none;
  position: absolute;
  bottom: -16px;
  left: 0;
  font-size: 12px;
  line-height: 16px;
  color: #ff6060;
  text-align: left;
  padding: 0 16px;
}

.form-field.error .email-error-msg {
  display: block;
}

/* Password field */
.password-container {
  position: relative;
  width: 100%;
}

.toggle-password-btn {
  position: absolute;
  right: 3px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.9;
  border: none;
  background: none;
  padding: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s;
  width: 44px;
  height: 44px;
}

.toggle-password {
  width: 24px;
  height: 24px;
  fill: #666;
  transition: fill 0.2s;
}

.toggle-password-btn:hover {
  background-color: rgba(0, 122, 255, 0.1);
}

/* Login button */
.login-btn button {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  margin-top: 20px;
  margin-bottom: 7px;
  width: 100%;
  border-radius: 30px;
  padding: 12px 0;
  border: none;
  color: white;
  background-color: rgba(138, 150, 163, 0.75);
  opacity: 0.4;
  transition: all 0.2s ease;
  cursor: pointer;
}

.login-btn button:not(:disabled) {
  background-color: #00aff0;
  opacity: 1;
}

.login-btn p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  margin: 0 10px 0 14px;
  color: #8a96a3;
}

.login-btn a {
  text-decoration: none;
  color: #00aff0;
}

/* Action buttons */
.action-btns {
  font-weight: 400;
  text-align: center;
  padding: 25px 0 20px 0;
  color: #00aff0;
  display: flex;
  justify-content: center;
}

.action-btns span {
  font-family: "Roboto", sans-serif;
  cursor: pointer;
  font-size: 14px;
}

.action-btns span:nth-child(2) {
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
}

.action-btns span:nth-child(2)::before {
  width: 2px;
  height: 2px;
  border-radius: 1000px;
  background: #8a96a3;
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -1px;
  left: 9px;
}

/* Social buttons */
.social-btns {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.twitter {
  text-align: center;
  width: 100%;
  font-size: 14px;
  margin-bottom: 12px;
  border-radius: 30px;
  padding: 12px 0;
  background-color: #1da1f2;
  position: relative;
}

.twitter a {
  text-decoration: none;
  color: #fefefe;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.twitter svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.google {
  text-align: center;
  width: 100%;
  font-size: 14px;
  margin-bottom: 12px;
  border-radius: 30px;
  padding: 12px 0;
  background-color: #4285f4;
  position: relative;
}

.google a {
  text-decoration: none;
  color: #fefefe;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.google svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fefefe;
}

.google a::before {
  content: "";
  position: absolute;
  left: 2px;
  width: 36px;
  height: 37px;
  background: white;
  border-radius: 30px 0 0 30px;
}

.passwordless {
  text-align: center;
  width: 100%;
  font-size: 14px;
  border-radius: 30px;
  padding: 12px 0;
  background-color: #00aff0;
  position: relative;
}

.passwordless a {
  text-decoration: none;
  color: #fefefe;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.passwordless svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
}

/* Autofill fix */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
  -webkit-text-fill-color: inherit !important;
  transition: background-color 5000s ease-in-out 0s;
}

#logintosub {
  font-weight: 500;
}

/* OF markdown: bold+italic combo turns blue */
em > strong,
strong > em {
  color: #00aff0;
}