@charset "UTF-8";
.con {
  width: 100%;
  max-width: 1278px;
  margin-right: auto;
  margin-left: auto;
}

/* Display Utilities */
.d-none {
  display: none !important;
}

.d-inlineb {
  display: inline-block;
}

.centered-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

.d-flex {
  display: flex;
}

.flex1 {
  flex: 1;
}

.noshrink {
  flex-shrink: 0;
}

.flex-wrap {
  flex-wrap: wrap;
}

.centered-column {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

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

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

.j-c-b {
  justify-content: space-between;
}

.j-c-a {
  justify-content: space-around;
}

.j-c-e {
  justify-content: end;
}

/* Visibility Utilities */
.not-visible {
  visibility: hidden;
  height: 0;
}

/* Text Utilities */
.title {
  text-align: center;
  text-shadow: 0 0 1px currentColor;
}

.small-title {
  font-size: 15px;
  letter-spacing: 3px;
  font-weight: bold;
  text-align: center;
}

.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

.t-left {
  text-align: left;
}

.tU {
  text-transform: uppercase;
}

.tN {
  text-transform: initial;
}

.fU::first-letter {
  text-transform: uppercase;
}

.u {
  text-decoration: underline;
}

.b {
  font-weight: bold;
}

/* Opacity Utilities */
.op-1 {
  opacity: 0.1;
}

/* Position Utilities */
.rel {
  position: relative;
}

.abs {
  position: absolute;
}

.fixed {
  position: fixed;
}

/* Background Utilities */
.no-bg {
  background: none !important;
}

/* Grid Utility */
.grid {
  display: grid;
  grid-auto-rows: 1fr;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.toggle {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

/* Select Utilities */
.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, supported by modern browsers */
}

.noselect:focus,
.noselect a:focus,
.noselect img:focus {
  outline: none;
}

/* Rotation Utilities */
.reverse {
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.rotate90 {
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.rotate270 {
  -ms-transform: rotate(270deg);
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

/* FONT-SIZES */
.f12 {
  font-size: 12px;
}

.f13 {
  font-size: 13px;
}

.f14 {
  font-size: 14px;
}

.f16 {
  font-size: 16px;
}

.f19 {
  font-size: 19px;
}

.f20 {
  font-size: 20px;
}

.f24 {
  font-size: 24px;
}

/* COLORS */
.white {
  color: white;
}

.gray {
  color: #BEBEBE !important;
}

.dgray {
  color: #9F9F9F;
}

.vdray {
  color: #484848;
}

.black {
  color: black !important;
}

.green {
  color: green !important;
}

.yellow {
  color: yellow;
}

.red {
  color: #FF7074 !important;
}

.bg-red {
  background-color: #FF7074;
}

.bg-lightred {
  background-color: #FDF2F2;
}

.bg-gray {
  background-color: #F5F5F5;
}

.bg-dark {
  background-color: #2B2B2B;
}

.bg-white {
  background-color: white;
}

.white-box {
  border: 1px solid transparent;
  background-color: white;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 15px !important;
}

.mt-3,
.my-3 {
  margin-top: 15px !important;
}

.mr-3,
.mx-3 {
  margin-right: 15px !important;
}

.mb-3,
.my-3 {
  margin-bottom: 15px !important;
}

.ml-3,
.mx-3 {
  margin-left: 15px !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mr-50p {
  margin-right: 50%;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 15px !important;
}

.pt-3,
.py-3 {
  padding-top: 15px !important;
}

.pr-3,
.px-3 {
  padding-right: 15px !important;
}

.pb-3,
.py-3 {
  padding-bottom: 15px !important;
}

.pl-3,
.px-3 {
  padding-left: 15px !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto, .my-auto {
  margin-top: auto !important;
}

.mr-auto, .mx-auto {
  margin-right: auto !important;
}

.mb-auto, .my-auto {
  margin-bottom: auto !important;
}

.ml-auto, .mx-auto {
  margin-left: auto !important;
}

.border-top {
  border-top: 1px solid #444444;
}

.nowrap {
  white-space: nowrap !important;
}

.toggle, .link, a, .btn, .action-modal {
  cursor: pointer;
}

.shadow {
  box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.7rem rgba(0, 0, 0, 0.075) !important;
}

.dropdown, .hdropdown, .dropbtn, .dropdown-content a {
  line-height: 1;
  display: inline-block;
}

.dropdown, .hdropdown {
  position: relative;
}

.right0 {
  right: 0;
}

.left0 {
  left: 0;
}

.dropdown-content {
  position: absolute;
  z-index: 1;
  background-color: white;
  padding: 8px 0;
  white-space: nowrap;
  display: none;
}

.dropdown-content.bg-dark {
  color: white;
  background-color: #2B2B2B;
}

.dropdown-content div {
  padding: 8px 16px 8px 16px;
}

.shade {
  background-color: rgba(0, 0, 0, 0.4) !important;
  background-blend-mode: multiply;
}

.vam {
  vertical-align: middle;
}

.fill-width {
  width: -moz-available;
  width: -webkit-fill-available;
  width: stretch;
}

.w-100 {
  width: 100%;
}

.mw-100 {
  max-width: 100%;
}

.w-75 {
  width: 75%;
}

.h-100 {
  height: 100%;
}

.w-content {
  width: min-content;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.grid.users {
  grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
}

.grid.posts {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid.photos {
  grid-template-columns: repeat(auto-fit, minmax(100px, 250px));
  justify-content: center;
}

.gap15 {
  gap: 15px;
}

.gap25 {
  gap: 25px;
}

.users-grid-item {
  cursor: pointer;
}

.users-grid-item svg {
  width: 20px;
  height: 20px;
}

.round-b {
  border-radius: 20px;
}

.users-grid-item .photo {
  border-radius: 15px;
  border: 2px solid white;
  width: 100%;
}

.lh-1 {
  line-height: 1;
}

.circle {
  width: 60%;
  margin: 0 auto;
  aspect-ratio: 1/1; /* užtikrina taisyklingą ratą */
  background: #FF7074;
  border-radius: 50%;
  display: grid; /* lengvas centruotas turinys */
  place-items: center;
  position: relative;
}

.user-online,
.user-offline {
  background: green;
  border-radius: 50%;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 5px;
  vertical-align: middle;
}

.user-offline {
  background: #777777;
}

.gold-border {
  border-color: #FFD51F !important;
}

.gold-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 20px;
}

.splide__arrow {
  border-radius: 40%;
  height: 5em;
  width: 5em;
}

.splide__arrow--prev {
  justify-content: right;
  left: -5em;
}

.splide__arrow--next {
  justify-content: left;
  right: -5em;
}

.splide__arrow svg {
  fill: #fff;
  height: 2em;
  width: 2em;
}

.badge-back {
  background-color: #FF7074; /* .red spalva */
  color: #fff;
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: bold;
  margin-left: -5px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px; /* Minimali paspaudimo zona */
  text-decoration: none;
  margin-left: -10px;
}

.back-link:hover .icon-back {
  transform: translateX(-3px);
}

.fill-white {
  fill: white;
}

.fill-red {
  fill: #FF7074;
}

.error, .warning, .success {
  font-weight: bold;
  padding: 5px;
  margin: 5px;
  width: 100%;
  text-align: center;
  color: #FF7074;
}

.error:empty, .warning:empty, .success:empty {
  padding: 0;
  margin: 0;
}

.warning {
  color: yellow !important;
}

.success {
  color: green !important;
}

.pw-wrap {
  position: relative;
}

.pw-wrap input[type=password], .pw-wrap input.pw-v {
  padding-right: 40px;
  width: 100%;
}

.pw-wrap .pw-t {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #6b7280;
  padding: 0;
}

.pw-wrap .pw-t svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
}

.pw-wrap .pw-t .slash {
  display: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.pw-wrap .pw-t.is-off .slash {
  display: block;
}

.info-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  padding: 20px;
  margin: 20px 0;
  border: 1px solid #EBEBEB;
  border-radius: 8px;
  background-color: #FAFAFA;
  text-align: center;
}

.info-card .info-text {
  font-size: 18px;
  color: #555;
  margin-bottom: 15px;
}

.input-error {
  border: 2px solid #FF7074 !important;
}

input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 5px;
  background: #FFFFFF;
  outline: none;
  margin: 0;
  padding: 0;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #FF5631;
  cursor: pointer;
  margin-top: -4px;
  border: 3px solid white;
}

input[type=range]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #FF5631;
  cursor: pointer;
  border: 3px solid white;
}

body.modal-open > *:not(.modal) {
  filter: blur(4px);
}

.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  z-index: 9999;
}

.modal-box {
  background: #fff;
  border-radius: 12px;
  max-width: 700px;
  width: 90%;
  max-height: 90vh;
  overflow: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid #eee;
  font-weight: 600;
}

.modal-body {
  padding: 16px;
}

.modal-close {
  cursor: pointer;
  font-size: 20px;
  background: none;
  border: none;
}

.ajax-spinner-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 80px;
}

.ajax-spinner {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.15);
  border-top-color: #ff7074; /* galima derinti prie brand spalvos */
  animation: ajax-spin 0.8s linear infinite;
  vertical-align: center;
  margin: 0px 5px;
  display: inline-block;
}

.ajax-spinner.msg-mini {
  width: 10px;
  height: 10px;
  border-width: 2px;
}

/* Lengvas "kraunasi" efektas konteineriui */
.is-loading {
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.ajax-error {
  padding: 10px;
  text-align: center;
  font-size: 13px;
  color: #c00;
}

@keyframes ajax-spin {
  to {
    transform: rotate(360deg);
  }
}
.bottom-border {
  border-bottom: 1px solid #EBEBEB;
}

.user-circle-photo {
  width: 26px;
  height: 26px;
  display: inline-block;
  border-radius: 50%;
  overflow: hidden;
}

.user-circle-photo.medium {
  width: 40px;
  height: 40px;
}

.user-circle-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.selected::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -15px;
  width: 7px;
  background: #FF7074;
  border-radius: 2px;
}

.selected::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -15px;
  width: 7px;
  background: #FF7074;
  border-radius: 2px;
}

.custom-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 16px;
  user-select: none;
}
.custom-checkbox input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.custom-checkbox .checkbox-box {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1px solid #000;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.custom-checkbox .checkbox-box::after {
  content: "";
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  opacity: 0;
  transition: opacity 0.15s ease;
}
.custom-checkbox input:checked + .checkbox-box {
  background: #ff6b6b;
  border-color: #ff6b6b;
}
.custom-checkbox input:checked + .checkbox-box::after {
  opacity: 1;
}
.custom-checkbox:hover .checkbox-box {
  border-color: #ff6b6b;
}

.custom-radio {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 16px;
  user-select: none;
}
.custom-radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.custom-radio .radio-box {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1px solid #000;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.custom-radio .radio-box::after {
  content: "";
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  opacity: 0;
  transition: opacity 0.15s ease;
}
.custom-radio input:checked + .radio-box {
  background: #ff6b6b;
  border-color: #ff6b6b;
}
.custom-radio input:checked + .radio-box::after {
  opacity: 1;
}
.custom-radio:hover .radio-box {
  border-color: #ff6b6b;
}

.inputs-group textarea {
  width: 100%;
}
.inputs-group textarea::placeholder {
  opacity: 0.5;
}
.inputs-group #file-upload {
  display: none;
}
.inputs-group .file-btn {
  display: inline-block;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.2s ease;
}
.inputs-group .file-text {
  margin-left: 12px;
  color: #AFAFAF;
  vertical-align: middle;
}

.u-border-bottom {
  border-bottom: 1px solid #e0e0e0;
}

.border-gray {
  border: 1px solid #E0E0E0;
}

.rating-stars {
  --star: 20px;
  --gap: 3px;
  --step: calc(var(--star) + var(--gap));
  --w: calc(var(--star) * 5 + var(--gap) * 5);
  position: relative;
  display: inline-block;
  width: var(--w);
  height: var(--star);
}

/* bendra mask logika abiem sluoksniams */
.rating-stars::before,
.rating-stars::after {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-mask-image: url(/pimg/voteStar.svg);
  mask-image: url(/pimg/voteStar.svg);
  -webkit-mask-repeat: repeat-x;
  mask-repeat: repeat-x;
  /* čia svarbiausia: step = star+gap */
  -webkit-mask-size: var(--step) var(--star);
  mask-size: var(--step) var(--star);
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
}

/* tuščios (pagrindas) */
.rating-stars::before {
  background: rgba(255, 56, 92, 0.25);
}

/* užpildymas iki --fill% (be kirpimo per width) */
.rating-stars::after {
  background: linear-gradient(90deg, rgb(255, 56, 92) 0, rgb(255, 56, 92) var(--fill), transparent var(--fill), transparent 100%);
}

.js-not:empty {
  display: none !important;
}

.scroll-x {
  overflow-x: auto;
  flex-wrap: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.scroll-x::-webkit-scrollbar {
  display: none;
}

html {
  height: 100vh;
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  color: #2B2B2B;
  text-align: left;
  background-color: #fff;
  min-width: 360px;
  flex-direction: column;
  min-height: 100vh;
  display: flex;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, p {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

h1 {
  margin-block-start: 0;
  margin-block-end: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

svg {
  transition: transform 0.3s ease;
  vertical-align: middle;
}

a:link, a:visited, a:hover, a:active {
  color: black;
  text-decoration: none;
}

form {
  height: 100%;
  width: 100%;
}

textarea {
  font-family: "Nunito", sans-serif;
  border-radius: 9px;
  resize: none;
  border: 1px solid #EBEBEB;
  height: 86px;
  outline: none;
  padding: 10px;
  box-shadow: 0 0.125rem 0.7rem rgba(0, 0, 0, 0.075) !important;
}

input[type=text], input[type=password], input[type=email] {
  border-radius: 25px;
  padding: 10px;
  border: 1px solid #E0E0E0;
  min-height: 44px;
}

/* ---- GLOBAL SELECT STYLE (universalus) ---- */
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  min-height: 44px;
  background: #fff;
  border: 1px solid #E0E0E0;
  border-radius: 20px; /* kaip tavo round-b */
  padding: 10px 40px 10px 16px; /* vieta rodyklei */
  font-size: 16px;
  color: #484848; /* .vdray */
  font-family: inherit;
  cursor: pointer;
  line-height: 1.3;
  /* kad tekstas būtų vertikaliai centre */
  display: inline-flex;
  align-items: center;
  width: 100%; /* jei reikia – gali išimti */
}

/* ---- RODYKLĖ ---- */
select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' stroke='%23FF7074' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

svg,
svg * {
  box-sizing: content-box;
}

input,
textarea,
select,
button {
  font-size: 16px !important;
}

/* jei turit mažus placeholderius */
input::placeholder,
textarea::placeholder {
  font-size: 16px !important;
}

header .user-menu {
  flex-direction: column;
  align-items: end;
}
header .user-menu .menu-top {
  align-items: center;
}
header .user-menu a {
  padding-right: 0;
}
header .user-menu span {
  color: #FF7074;
}

/*SVG*/
svg {
  stroke-width: 1.3px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-check {
  height: 16px;
  width: 15px;
  fill: #FF7074;
}

.icon-SSS {
  height: 100px !important;
  max-height: 100px !important;
  width: 90px !important;
  max-width: 90px !important;
}

.icon-subscribe {
  height: 39px;
  width: 39px;
  fill: #FF7074;
}

#search-icon {
  position: absolute;
  top: 6px;
  right: 14px;
  width: 25px;
  height: 25px;
  stroke: #FF7074;
}

.icon-comment {
  height: 16px;
  width: 21px;
  vertical-align: top;
}

.icon-male {
  height: 20px;
  width: 10px;
  vertical-align: middle;
}

.dots3 {
  width: 22px;
  height: 6px;
}

.message-icons {
  width: 50px;
  height: 50px;
}

.icon-back {
  width: 23px;
  height: 33px;
  display: block;
  transition: transform 0.2s ease;
}

.btn {
  display: inline-block;
  border-radius: 25px;
  padding: 0 15px;
  line-height: 37px;
  text-align: center;
}

.btn.main {
  background-color: #FF7074;
  border: 1px solid #FF7074;
  color: white;
  min-width: 113px;
}

.btn.transwhite {
  background-color: unset;
  border: 1px solid #FFFFFF;
  color: white;
}

.btn.transblack {
  background-color: unset;
  border: 1px solid #2B2B2B;
  color: #2B2B2B;
}

.btn.arrow::after {
  content: "❯";
  color: #FF7074;
  float: right;
}

.btn.white-arrow::after {
  content: "❯";
  color: white;
  float: right;
}

.btn.check::after {
  content: "✓";
  color: #FF7074;
  float: right;
  font-size: 30px;
}

.btn.fat {
  min-height: 55px;
  font-weight: bold;
}

/* -----------------------------------
   Pagination – same size on all devices
   ----------------------------------- */
ul.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  list-style: none;
  /* spalvų kintamieji (jei nenaudoji, vistiek veiks su default) */
  --pg-accent: #ff6b6b;
  --pg-text: #3a3a3a;
  --pg-muted: #9aa1a9;
  --pg-border: #e9edf2;
  --pg-bg: #fff;
}

/* Visi apskritimai: skaičiai ir „…“ */
ul.pagination li > a,
ul.pagination li > span {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  border: 1px solid var(--pg-border);
  background: var(--pg-bg);
  color: var(--pg-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

/* Aktyvus numeris */
ul.pagination li.active > span,
ul.pagination li.active > a {
  background: var(--pg-accent);
  border-color: var(--pg-accent);
  color: #fff;
}

/* „…“ separatorius – burbule kaip ir skaičiai */
ul.pagination li.page-separator > span {
  font-size: 20px;
  color: var(--pg-muted);
}

/* RODYKLĖS – be apskritimo, bet su tokio pat dydžio hit zone */
ul.pagination li > a.page-prev,
ul.pagination li > a.page-next {
  border: none;
  background: transparent;
  border-radius: 0;
  font-size: 26px; /* didesnė rodyklė */
  font-weight: 400;
  color: var(--pg-text);
  /* hit zona išlieka tokio pat dydžio */
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hover spalva rodyklėms */
ul.pagination li > a.page-prev:hover,
ul.pagination li > a.page-next:hover {
  color: var(--pg-accent);
}

/* Disabled (jei bus naudojama) */
ul.pagination li.disabled > a {
  opacity: 0.35;
  cursor: default;
}

/* Toast konteineris per visą ekraną */
.toast-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10001;
  display: flex;
  flex-direction: column; /* Leidžia pranešimams stackintis vienas po kito */
  justify-content: center; /* Centruoja pranešimų grupę vertikaliai */
  align-items: center; /* Centruoja pranešimų grupę horizontaliai */
  gap: 10px; /* Atstumas tarp stackinamų pranešimų */
  pointer-events: none;
}

/* Patys pranešimai */
.toast {
  pointer-events: auto; /* Leidžia uždaryti/spausti patį pranešimą */
  padding: 15px 30px;
  background: #fff;
  border-radius: 50px; /* Kapsulės forma geriausiai tinka centre */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
  min-width: 250px;
  max-width: 90vw;
  animation: toastPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Įšokimo animacija iš centro */
@keyframes toastPop {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* Tipų spalvos */
.toast-info {
  background: #fff;
  color: #2B2B2B;
  border: 1px solid #eee;
}

.toast-ok {
  background: #E8F5E9;
  color: #2E7D32;
  border: 1px solid rgba(76, 175, 80, 0.2);
}

.toast-warning {
  background: #FFFDE7;
  color: #827717;
  border: 1px solid rgba(255, 235, 59, 0.2);
}

.toast-error {
  background: #FDF2F2;
  color: #D32F2F;
  border: 1px solid rgba(211, 47, 47, 0.1);
}

/* Už darymo mygtukas */
.toast .toast-close {
  float: right;
  margin-left: 20px;
  margin-right: -10px;
  cursor: pointer;
  opacity: 0.4;
  font-weight: bold;
}

.toast .toast-close:hover {
  opacity: 1;
}

.questions-container .questions-list {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.questions-container .question {
  background-color: #f5f5f5;
  border-radius: 15px;
  position: relative;
}
.questions-container .question::after {
  content: "";
  position: absolute;
  bottom: -11.5px;
  right: 15px;
  width: 0;
  height: 0;
  border-left: 11.5px solid transparent;
  border-right: 11.5px solid transparent;
  border-top: 11.5px solid #f5f5f5;
}
.questions-container .answerer .answerer-label {
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

.splide .question {
  min-height: 120px;
}

.forum-content .forum-topic {
  border-bottom: 1px solid #F5F5F5;
}
.forum-content .forum-topic .total-posts {
  width: 65px;
  gap: 10px;
  align-items: end;
}
.forum-content .forum-topic > a {
  display: none;
}
.forum-content .forum-head, .forum-content .total-posts {
  display: none;
}
.forum-content blockquote {
  background-color: #F5F5F5;
  padding: 1rem;
  margin: 0;
  border-left: 2px solid #FF7074;
  font-size: 14px;
}
.forum-content .forum-post {
  border-top: 1px solid #F5F5F5;
  word-break: break-word;
}
.forum-content .post-reply {
  color: #BEBEBE;
}
.forum-content .forum-new-post {
  display: block;
}
.forum-content .forum-new-post textarea {
  border-radius: 9px;
  resize: none;
  border: 1px solid #EBEBEB;
  height: 86px;
  outline: none;
  font-family: "Nunito", sans-serif;
}

.forum-new-topic {
  justify-content: flex-end;
  gap: 7px;
}

.ads .ads-filter {
  border-top: 1px solid #EBEBEB;
}
.ads .ads-filter form {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 10px;
}
.ads .ads-filter form > div {
  gap: 10px;
}
.ads .ads-filter label {
  min-width: 61px;
  display: block;
}
.ads .ads-filter select {
  min-width: 208px;
}
.ads .ad-item {
  border-bottom: 1px solid #EBEBEB;
}
.ads .ad-item img {
  max-width: 72px;
  max-height: 72px;
}
.ads .ad-content {
  flex-direction: column;
}
.ads .ad-content ul {
  padding: 0 15px;
  margin: 0;
}
.ads .ad-content ul li::marker {
  color: #FF7074;
}
.ads .ad-form .ad-attention {
  background-color: #F5F5F5;
}

article h2 {
  color: #FF7074;
  font-size: 18px;
}
article blockquote {
  background-color: #F5F5F5;
  padding: 1rem;
  margin: 0;
  border-left: 2px solid #FF7074;
}

.icon-profile {
  width: 16px;
  height: 16px;
  fill: white;
}

footer a {
  display: inline-block;
  width: 49%;
  padding: 5px;
  color: #fff !important;
  white-space: nowrap;
}

.post-item .shade {
  height: 55px;
}

svg.active {
  stroke: #FF7074 !important;
  fill: #FF7074 !important;
}

header .user-menu {
  flex-direction: column;
}

.user-menu a {
  padding: 10px 10px 5px 10px;
}

/* TABS */
.tab-link {
  border: 0;
  background: none;
  cursor: pointer;
  padding: 0;
}

.tab-link.active {
  font-weight: bold;
  position: relative;
}

.tab-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  border-radius: 3px;
  background: #ff7074;
}

/* CHECKBOX FILTRAI */
.filter-toggle-input {
  display: none;
}

.filter-toggle-icon {
  width: 20px;
  height: 20px;
  padding: 4px;
  border-radius: 6px;
  border: 1px solid #ddd;
  background: #fff;
  fill: #fff;
}

.filter-toggle-input:checked + .filter-toggle-icon {
  background: #ff7074;
  border-color: #ff7074;
  fill: white;
}

.messageWrap .dropdown-content {
  top: 25px;
}

.messageWrap {
  position: relative;
}

@media (max-width: 500px) {
  #footerThird {
    display: none !important;
  }
}
.message-text, .message-prev {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Baziniai stiliai (visiems ekranams) */
.photo-slide-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #111;
  overflow: hidden;
  width: 100%;
}

.photo-slide-container .bg-blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(15px);
  opacity: 0.5;
  z-index: 1;
  transform: scale(1.1);
}

.photo-slide-container .photo-link {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* Pagrindinė nuotrauka kompiuteriams / planšetėms */
.photo-slide-container .main-img {
  position: relative;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 500px;
  z-index: 2;
  object-fit: contain;
  background: transparent !important;
}

/*
 * MOBILIOJI VERSIJA (Iki 430px, apima visus telefonus)
 * Čia įvyksta magija: nuotrauka plečiasi į plotį iki 100%,
 * bet neviršija 600px aukščio.
 */
@media (max-width: 430px) {
  .photo-slide-container .main-img {
    width: 100%;
    max-height: 600px;
  }
}
.message-time {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 11px !important;
  opacity: 0.65;
  margin-top: 4px;
  margin-bottom: -2px;
  line-height: 1;
  padding-top: 0 !important;
}

.message-sender {
  font-size: 12px;
  opacity: 0.7;
  padding-bottom: 3px !important;
}

.day-separator {
  width: 100%;
  display: block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: bold;
  opacity: 0.6;
}

.profile-container svg {
  max-width: 50px;
  height: 50px;
}

.msg-row {
  display: flex;
  align-items: center;
  padding-bottom: 15px;
}

.msg-row.me {
  justify-content: end;
}

.msg-row > div {
  border-radius: 20px;
  padding: 8px 12px !important;
  min-width: 65px;
  background-color: #FDF2F2;
  min-width: 65px;
}

.msg-row.me > div {
  background-color: #FF7074;
  color: white;
}

.messageWrap.new {
  background-color: #FDF2F2;
}

.user-info .fields div {
  margin: 5px 0;
}

.super-message {
  border: #FFD700 solid 3px !important;
  background: url(/pimg/superzinute.png) no-repeat;
  background-position: right bottom;
}

header {
  height: 59px;
}

#menu-toggle {
  width: 28px;
  height: 22px;
  stroke: white;
  stroke-width: 1.7px;
  padding: 1rem;
  padding-right: 3rem;
}

.icon-search {
  width: 16px;
  height: 16px;
  stroke: white;
}

.only-xl {
  display: none;
}

footer svg {
  width: 74px;
  height: 86px;
  margin: 20px 80px 10px 0;
}

footer a {
  width: 100%;
}

header a {
  color: white !important;
  padding: 10px;
}

#userMenu {
  width: 100vw;
  right: 0;
}

.mobile-menu > .dropdown-content {
  left: 0;
  padding: 15px;
  width: 100vw;
}

#search {
  width: 100vw;
  right: -46px;
  bottom: -79px;
}

#search input {
  height: 40px;
  margin: 5px;
}

#userBottomMenu {
  display: flex;
  justify-content: space-around; /* equal space between items */
  align-items: center;
  width: 100%;
  height: 55px;
  background-color: rgba(255, 255, 255, 0.9);
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1;
  overflow: hidden; /* prevent wrap / overflow issues */
}

#userBottomMenu > div {
  flex: 1 1 0; /* every item takes equal share of row */
  text-align: center;
  min-width: 0; /* prevents flex overflow when text is long */
  max-width: 70px;
}

#userBottomMenu svg {
  width: 45%;
  height: 45%;
  fill: #fff;
  stroke: #fff;
}

#userBottomMenu .count {
  position: absolute;
  top: -11%;
  right: -17%;
  background: #fff;
  border: 1px solid #ff6b6b;
  border-radius: 50%;
  width: 52%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.05em 0.2em rgba(0, 0, 0, 0.15);
  pointer-events: none;
  font-size: 12px;
}

.mobile-bottom-menu {
  position: fixed !important;
  bottom: 55px;
  right: 0;
  color: initial;
  width: 50%;
  background: #fff;
  box-shadow: -2px -2px 3px rgba(0, 0, 0, 0.25);
  z-index: 99;
  text-align: left;
  display: none;
}

.padding {
  margin-inline: 15px;
}

#breadcrumb {
  display: none;
}

#header-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

#search-toggle {
  margin-left: auto;
}

.Stitle {
  font-size: 20px;
}

.messageWrap {
  margin: 10px 0;
  border-bottom: 1px solid #EBEBEB;
  padding: 5px 0;
}

.user-messages-conversation-list {
  display: flex;
  flex-direction: column;
  min-height: 0;
  flex: 1 1 auto;
}

.shadow.bg-white.p-3 {
  display: flex;
  flex-direction: column;
  min-height: 0;
  flex: 1 1 auto;
}

.user-messages-conversation-list > .d-flex.mb-3 {
  flex: 0 0 auto;
}

#messages-list {
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  min-height: 0;
  width: 100%;
}

.user-messages-conversation-form {
  flex: 0 0 auto;
  position: sticky;
  bottom: 0;
  z-index: 10;
  background: #f5f5f5;
}

#messageform #msgtext {
  height: 44px;
  min-height: 44px;
  max-height: 160px;
  resize: none;
  overflow-y: hidden; /* JS automatiškai pakeis į 'auto', kai pasieks 160px */
  line-height: 22px;
  padding: 10px 12px;
  box-sizing: border-box;
  /* iOS Safari apsaugos */
  -webkit-appearance: none;
  margin: 0;
  outline: none;
}

.spill {
  margin-inline: -15px;
  padding-inline: 15px;
}

/*# sourceMappingURL=portal-mobile.css.map */
