﻿/* Fonts settings */
/* Colors */
/* font colors */
/* border colors */
/* transition */
/* important */
* {
  box-sizing: border-box;
}

body {
    font-size: 16px;
    color: white;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: normal;
    background: #111111;
    overflow-x: hidden;
}

/*canvas#aestheticCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    display: block;
    pointer-events: none;
}
*/

@media screen and (max-width: 1199px) {
  body.overflow_body, body.overly-menu {
    overflow: hidden;
  }
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }
}

a, .btn-sub, button {
  transition: all ease 0.4s;
  outline: 0;
  text-decoration: none;
}

a {
  color: #ff0000;
}
a:hover, a:active, a:focus {
  text-decoration: none;
  outline: none;
}
a img {
  border: 0px;
}
a:hover {
  color: #ff0000;
}
/*zmiana z 100%*/
img {
  max-width: 100%;
}


@media screen and (min-width: 1400px) {
    .container {
    max-width: 1345px;
  }
}

.g-2, .gx-2 {
  --bs-gutter-x:0.6rem;
}

.g-2, .gy-2 {
  --bs-gutter-y:0.6rem;
}

/*general style*/
p {
    color: #ffffff;
    font-size: 16px;
    line-height: 28px;
    margin: 0 0 20px;
    font-weight: 400;
    overflow-wrap: break-word;
}
@media only screen and (max-width: 991px) {
  p {
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 24px;
  }
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: 700;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
}

h1, .h1 {
  font-size: 29px;
  line-height: normal;
  margin: 0 0 18px;
}
h2, .h2 {
  font-size: 29px;
  margin: 0 0 14px;
  line-height: normal;
}
@media only screen and (max-width: 1199px) {
  h2, .h2 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 575px) {
  h2, .h2 {
    font-size: 17px;
  }
}

h3, .h3 {
  font-size: 18px;
  margin: 0 0 15px;
  line-height: normal;
}

h4, .h4 {
  font-size: 16px;
  margin: 0 0 10px;
  line-height: normal;
}

@media only screen and (min-width: 992px) {
  .title-text p {
    font-size: 20px;
    line-height: 34px;
    margin: 0 0 34px;
  }
}

hr {
  opacity: 1;
  color: #ECEDEF;
}

.primary-text {
  color: #ff0000 !important;
}

.white-bg {
  background: white !important;
}

.light-bg {
  background: #222222 !important;
}

.primary-bg {
  background: #ff0000 !important;
}

.secondary-bg {
  background: #111111 !important;
}

.secondary-bg {
  background: #111111 !important;
}

.grey-bg {
  background: #333333 !important;
}

.border {
  border-color: #333333 !important;
}

@media only screen and (max-width: 575px) {
  .sm-w {
    width: 100% !important;
  }
}

/* btn */
.btn {
  font-size: 18px;
  color: white;
  text-decoration: none;
  display: inline-flex;
  padding: 9px 18px;
  font-weight: 600;
  border: none;
  border-radius: 16px;
  transition: all ease 0.4s;
  font-family: "Montserrat", sans-serif;
  position: relative;
  background: #ff0000;
  align-items: center;
  justify-content: center;
 
}
.btn img {
  margin-right: 10px;
  filter: brightness(0) invert(1);
  transition: all ease 0.4s;
  margin-top: -3px;
}
.btn:hover {
  color: white;
  background: #222222;
}
.btn:hover img {
  filter: none;
}
.btn.secondary-btn {
  background: #222222;
  color: white;
}
.btn.secondary-btn img {
  filter: brightness(0) invert(1);
}
.btn.secondary-btn:hover {
  background: #ff0000;
}
.btn.secondary-btn:hover img {
  filter: none;
}
.btn.btn-transparent {
  background: transparent;
}
.btn.btn-transparent:hover {
  background: #222222;
}
@media screen and (max-width: 1199px) {
  .btn {
    font-size: 16px;
  }
}
.btn:focus {
  outline: none;
  box-shadow: none;
}
.btn.arw-none {
  padding: 22px 35px;
}
.btn.arw-none::before, .btn.arw-none::after {
  display: none;
}

label {
  font-weight: normal;
  margin-bottom: 8px;
  font-size: 15px;
}
label span {
  color: #FF0000;
}

.form-control {
  font-size: 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: transparent;
  padding: 8px 20px;
  resize: none;
  height: 44px;
  border-radius: 4px;
  color: white;
}
.form-control:focus {
  color: white;
  box-shadow: none !important;
  outline: none;
  border-color: #333333;
}
.form-control::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.form-control[type=date]::-webkit-calendar-picker-indicator, .form-control[type=datetime-local]::-webkit-calendar-picker-indicator {
  background: url(../images/date-icon.svg) no-repeat right center;
  width: 20px;
  height: 20px;
}

select {
  background: #222222 url(../images/select-arrow.svg) no-repeat center right 20px !important;
  appearance: none;
  cursor: pointer;
  background-size: 14px !important;
  padding-right: 50px !important;
}
select.trans-select {
  border: none;
  color: #111111;
  height: 24px;
  background-color: transparent !important;
  font-size: 12px;
  background-size: 10px !important;
  padding: 3px 25px 4px 10px !important;
  background-position: center right 7px !important;
}
select.sm-select {
  color: #111111;
  height: 38px;
  font-size: 16px;
  padding: 4px 20px 4px 10px;
  background-position: center right 12px !important;
  background-size: 10px !important;
}

select::-ms-expand {
  display: none;
}

textarea.form-control {
  min-height: 130px;
  padding: 14px 20px;
}

.form-check {
  padding-left: 30px;
  min-height: inherit;
  line-height: normal;
}
    .form-check .form-check-input {
        width: 20px !important;
        height: 20px !important;
        border-radius: 2px !important;
        margin-left: -30px !important;
        margin-top: 0 !important;
        cursor: pointer !important;
        border: 1px solid #333333 !important;
    }

.form-check-input:focus {
    box-shadow: none !important;
}

.form-check-input:checked {
    background-color: #ff0000 !important;
    border-color: #ff0000 !important;
}


/* dark block & white-content */
.white-content h1, .white-content h2, .white-content h3, .white-content h4, .white-content h5, .white-content h6 {
  color: white !important;
}
.white-content label, .white-content span, .white-content li, .white-content p {
  color: rgba(255, 0, 0, 0.8) !important;
}
.white-content hr {
  color: rgba(255, 0, 0, 0.8) !important;
  opacity: 0.1;
}

/* breadcrumb */
.breadcrumb {
  padding: 0;
  background: transparent;
  margin-bottom: 0;
}
.breadcrumb .breadcrumb-item {
  font-size: 18px;
  padding-left: 12px;
}
.breadcrumb .breadcrumb-item:before {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 10px;
  padding-right: 12px;
  margin-top: 3px;
  font-size: 14px;
  color: rgba(255, 0, 0, 0.8);
}
.breadcrumb .breadcrumb-item:first-child {
  padding-left: 0;
}
.breadcrumb .breadcrumb-item:first-child::before {
  display: none;
}
.breadcrumb .breadcrumb-item a {
  color: rgba(255, 0, 0, 0.8);
}
.breadcrumb .breadcrumb-item a:hover {
  color: #ff0000;
}
.breadcrumb .breadcrumb-item.active {
  color: #111111;
}
@media only screen and (max-width: 991px) {
  .breadcrumb .breadcrumb-item {
    padding-left: 10px;
    font-size: 16px;
  }
  .breadcrumb .breadcrumb-item:before {
    padding-right: 10px;
    font-size: 12px;
  }
}

.pagination {
  flex-wrap: wrap;
}
.pagination .page-item {
  font-size: 18px;
  min-width: 80px;
  text-align: center;
  margin-bottom: -1px;
}
.pagination .page-item i {
  font-size: 14px;
}
.pagination .page-item .page-link {
  padding: 10px;
  color: #7C7C7C;
}
.pagination .page-item .page-link span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
}
.pagination .page-item .page-link:hover, .pagination .page-item .page-link.current {
  background: #ff0000;
  color: white;
}
.pagination .page-item.active .page-link {
  background: #ff0000;
  color: white;
  border-color: inherit;
}
.pagination .page-item:first-child .page-link {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.pagination .page-item:last-child .page-link {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
@media only screen and (max-width: 1199px) {
  .pagination .page-item {
    font-size: 16px;
    min-width: 44px;
  }
  .pagination .page-item .page-link span {
    min-width: inherit;
  }
}

.social-here ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}
.social-here ul li {
  margin-right: 16px;
  line-height: normal;
  font-size: 30px;
}
.social-here ul li:last-child {
  margin-right: 0;
}
.social-here ul li a {
  color: black;
}
.social-here ul li a:hover {
  opacity: 0.5;
}
@media only screen and (max-width: 1199px) {
  .social-here ul li {
    font-size: 28px;
    margin-right: 13px;
  }
}

.content-larger-wrapper {
  padding: 0 40px;
}

.content-card {
  color: #fff;
  padding: 15px 40px;
  border-radius: 16px;
  border: 1px solid #222222;
  margin-bottom: 53px;
  overflow: hidden;
}
@media screen and (max-width: 1199px) {
  .content-card {
    padding: 15px 20px;
  }
}
@media screen and (max-width: 575px) {
  .content-card {
    padding: 13px 20px;
    margin-bottom: 15px;
  }
}

.card-header {
  padding: 5px 0 20px;
  gap: 40px;
  border-bottom: 1px solid #222222;
  align-items: center;
}
@media screen and (max-width: 1199px) {
  .card-header {
    gap: 25px;
  }
}
@media screen and (max-width: 575px) {
  .card-header {
    padding-top: 0;
    border-bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  .card-header {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
  }
}

.col-space-left {
  padding-left: 20px;
}
@media screen and (max-width: 1199px) {
  .col-space-left {
    padding-left: 0;
  }
}

@media screen and (max-width: 575px) {
  .row {
    --bs-gutter-x: 14px;
  }
}

@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/*@import "layout/fonts";*/
header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  padding: 0 30px;
  transition: all ease 0.4s;
  background: #111111;
}
@media screen and (max-width: 1199px) {
  header {
    padding: 0 15px;
  }
}
@media screen and (max-width: 991px) {
  header {
    padding: 12px 0;
    height: 70px;
  }
}
@media screen and (max-width: 480px) {
  header {
    height: 60px;
  }
}
@media screen and (min-width: 1200px) {
  header .container {
    max-width: 1190px;
  }
}
@media screen and (min-width: 1400px) {
  header .container {
    max-width: 1348px;
  }
}
header.sticky, header.sticky-head {
  box-shadow: 0 2px 40px 0 rgba(0, 0, 0, 0.08);
}
@media (max-width: 991px) {
  header.sticky .sub-navbar .navbar-nav .nav-item, header.sticky-head .sub-navbar .navbar-nav .nav-item {
    padding: 0 !important;
  }
}
header .navbar-brand {
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 991px) {
  header .navbar-brand {
   /* order: 2;*/
    margin: 0 20px;
  }
}
@media screen and (max-width: 575px) {
  header .navbar-brand {
    margin: 0 auto;
    flex-grow: 1;
    text-align: center;
    max-width: 110px;
  }
}
@media screen and (max-width: 480px) {
  header .navbar-brand {
    margin: 0 3px;
  }
}
header .navbar {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 22px 0;
  flex-wrap: nowrap;
  justify-content: space-between;
}
header .navbar .head-search {
  position: relative;
  margin-right: 200px;
  flex-grow: 1;
}
header .navbar .head-search .search-bar form {
  display: flex;
  justify-content: flex-end;
}
header .navbar .head-search .search-bar .form-control {
  padding-right: 50px;
  background: #222222;
  border-color: #333333;
  border-radius: 30px;
  height: 40px;
  font-size: 14px;
  width: 600px;
  max-width: 100%;
}
header .navbar .head-search .search-bar .form-control::-webkit-input-placeholder {
  color: #cccccc;
}
@media screen and (max-width: 1399px) {
  header .navbar .head-search .search-bar .form-control {
    width: auto;
    flex-grow: 1;
  }
}
header .navbar .head-search .search-bar button {
  border: none;
  background: transparent;
  width: 50px;
  height: 40px;
  display: flex;
  align-items: center;
  border-left: 1px solid #333333;
  justify-content: center;
  position: absolute;
  border-radius: 0 30px 30px 0;
  right: 0;
  padding-right: 8px;
  top: 0;
}
header .navbar .head-search .search-bar button img {
  filter: brightness(0) invert(1);
}
header .navbar .head-search .search-bar button:hover img {
  opacity: 0.8;
}
header .navbar .head-search .search-bar .close {
  font-size: 14px;
  font-weight: 500;
  color: #828282;
  display: none;
}
@media screen and (max-width: 991px) {
  header .navbar .head-search {
    order: 2;
    width: auto;
    position: static;
    width: 43px;
    min-width: 43px;
    height: 43px;
    background: #222222;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    flex-grow: 0;

  }
  header .navbar .head-search .search-bar {
    position: fixed;
    left: 0;
    width: 100%;
    background: #111111;
    height: 56px;
    top: 0;
    padding: 9px 12px;
    display: none;
    z-index: 5;
  }
  header .navbar .head-search .search-bar .middle {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header .navbar .head-search .search-bar:before {
    display: none;
  }
  header .navbar .head-search .search-bar form {
    position: relative;
    flex-grow: 1;
    margin-right: 16px;
  }
  header .navbar .head-search .search-bar .form-control {
    padding: 8px 42px 8px 20px;
  }
  header .navbar .head-search .search-bar button {
    display: inline-block;
  }
  header .navbar .head-search .search-bar .close {
    display: inline-block;
  }
}
@media screen and (max-width: 576px) {
  header .navbar .head-search {
    width: 26px;
    height: 26px;
    min-width: 26px;
    padding: 7px;
  }
}
header .navbar .headBtns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
header .navbar .headBtns .btn {
  font-size: 16px;
  padding: 7px 20px;
}
header .navbar .head-login-chat {
  flex-shrink: 0;
}
header .navbar .head-login-chat ul {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 25px;
}
@media screen and (max-width: 991px) {
  header .navbar .head-login-chat ul {
    gap: 15px;
  }
}
@media screen and (max-width: 575px) {
  header .navbar .head-login-chat ul {
    gap: 10px;
  }
}
header .navbar .head-login-chat ul li a {
  font-size: 14px;
  font-weight: 500;
  color: #222222;
  width: 43px;
  height: 43px;
  background: #222222;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 576px) {
  header .navbar .head-login-chat ul li a {
    width: 26px;
    height: 26px;
    padding: 8px;
  }
}
header .navbar .head-login-chat ul li a img {
  transition: all ease 0.4s;
}
header .navbar .head-login-chat ul li a:hover {
  color: #ff0000;
}
header .navbar .head-login-chat ul li a:hover img {
  opacity: 0.6;
}
header .navbar .head-login-chat ul li.register::after {
  content: "|";
  margin-left: 16px;
  display: inline-block;
  color: #D9D9D9;
}
header .navbar .head-login-chat ul li.login {
  padding-right: 8px;
}
@media screen and (max-width: 991px) {
  header .navbar .head-login-chat {
    order: 3;
  }
}
header .navbar .head-upload {
  display: flex;
  gap: 38px;
  margin-left: 5px;
}
header .navbar .head-upload .upload-here {
  position: relative;

}
header .navbar .head-upload .upload-here::after {
  content: "";
  width: 19px;
  height: 19px;
  background: #ff0000 url(../images/plush-white.webp) no-repeat center center;
  display: inline-block;
  position: absolute;
  right: -10px;
  bottom: -7px;
  border-radius: 50%;
  pointer-events: none;
}
@media screen and (max-width: 575px) {
  header .navbar .head-upload .upload-here::after {
    width: 11px;
    height: 11px;
    padding: 5px;
    bottom: -2px;
    right: -5px;
    background-size: 5px 5px;
  }
}
@media screen and (max-width: 1199px) {
  header .navbar .head-upload {
    gap: 24px;
  }
}
@media screen and (max-width: 991px) {
  header .navbar .head-upload {
    order: 1;
    gap: 20px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 575px) {
  header .navbar .head-upload {
    gap: 10px;
    margin-right: 0;
  }
}
@media screen and (max-width: 1199px) {
  header .navbar {
    gap: 10px;
  }
}
@media screen and (max-width: 991px) {
  header .navbar {
    padding: 0;
  }
  header .navbar .head-login-cart {
    order: 4;
  }
  header .navbar .head-login-cart .register, header .navbar .head-login-cart .login, header .navbar .head-login-cart .user {
    display: none;
  }
  header .navbar .head-login-cart ul {
    gap: 8px;
  }
}
header .close-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: red;
  height: 48px;
  padding: 12px;
  font-size: 14px;
  font-weight: 500;
}
header .close-menu .navbar-toggler {
  line-height: 0;
}
@media screen and (max-width: 991px) {
  header {
    border-bottom: 1px solid #333333;
  }
  header .container {
    max-width: 100%;
    position: relative;
  }
}

.overly-menu header {
  background: white;
}

/* Navbar toggle CSS */
.navbar-toggler {
  border-radius: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  outline: none;
  cursor: pointer;
}
.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}
.navbar-toggler .navbar-toggler-icon {
  width: 29px;
  height: 19px;
  background: none;
  position: relative;
  display: inline-block;
}
.navbar-toggler .navbar-toggler-icon span {
  height: 3px;
  width: 29px;
  background-color: white;
  display: block;
  position: absolute;
  transition: all ease 0.4s;
}
.navbar-toggler .navbar-toggler-icon span:nth-child(1) {
  top: 0;
}
.navbar-toggler .navbar-toggler-icon span:nth-child(2), .navbar-toggler .navbar-toggler-icon span:nth-child(3) {
  top: 8px;
}
.navbar-toggler .navbar-toggler-icon span:nth-child(4) {
  top: 16px;
}
.navbar-toggler[aria-expanded=true] .navbar-toggler-icon span:nth-child(1), .navbar-toggler[aria-expanded=true] .navbar-toggler-icon span:nth-child(4), .navbar-toggler.active .navbar-toggler-icon span:nth-child(1), .navbar-toggler.active .navbar-toggler-icon span:nth-child(4) {
  top: 11px;
  opacity: 0;
}
.navbar-toggler[aria-expanded=true] .navbar-toggler-icon span:nth-child(2), .navbar-toggler.active .navbar-toggler-icon span:nth-child(2) {
  transform: rotate(-45deg);
}
.navbar-toggler[aria-expanded=true] .navbar-toggler-icon span:nth-child(3), .navbar-toggler.active .navbar-toggler-icon span:nth-child(3) {
  transform: rotate(45deg);
}
@media only screen and (max-width: 1199px) {
  .navbar-toggler {
    display: block;
    position: relative;
  }
  .navbar-toggler.active {
    z-index: 999;
  }
}

.light-dark-mode button {
  margin-top: 35px;
  margin-bottom: 35px;
  border: 2px solid white;
  border-radius: 50px;
  background: transparent;
  color: white;
  position: relative;
  padding: 12px 30px 12px 70px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
}
.light-dark-mode button .icon {
  width: 46px;
  height: 46px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -1px;
  top: -1px;
}

.main-sidebar {
  background: #222222;
  position: fixed;
  top: 0;
  height: 100%;
  width: 370px;
  left: -370px;
  overflow-y: hidden;
  z-index: 99;
  transition: all ease 0.3s;
  border-right: 1px solid #333333;
}
@media screen and (max-width: 480px) {
  .main-sidebar {
    width: 100%;
    left: -100%;
  }
}
.main-sidebar.show {
  left: 0;
}
.main-sidebar::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(17, 17, 17, 0.3);
  border-radius: 0px;
  background-color: #222222;
}
.main-sidebar::-webkit-scrollbar {
  width: 12px;
  background-color: #222222;
}
.main-sidebar::-webkit-scrollbar-thumb {
  border-radius: 0px;
  -webkit-box-shadow: inset 0 0 6px rgba(17, 17, 17, 0.3);
  background-color: #c1c1c1;
}
.main-sidebar .menuLogo {
  display: flex;
  padding: 12px 40px;
  gap: 30px;
}
.main-sidebar ul.sidebar-menu {
    list-style-type: none;
    margin: 0;
    /*padding: 20px;*/
    overflow-x: hidden;
    border-top: 1px solid #333333;
    padding-left: 1rem;
}
.main-sidebar ul.sidebar-menu > li > a {
  display: flex;
  align-items: center;
}
.main-sidebar ul.sidebar-menu > li > a span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.main-sidebar ul.sidebar-menu > li > a span small {
  font-weight: normal;
  font-size: 12px;
}
.main-sidebar ul.sidebar-menu li.hasChild > a {
  padding-right: 35px;
}
.main-sidebar ul.sidebar-menu li.hasChild > a:after {
  content: "\f077";
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 600;
  border: none;
  font-size: 14px;
  margin-left: 7px;
  position: absolute;
  top: 21px;
  right: 15px;
}
.main-sidebar ul.sidebar-menu li.hasChild > a.collapsed:after {
  transform: rotate(180deg);
}
.main-sidebar ul.sidebar-menu li.collapsed {
  background-color: transparent;
}
.main-sidebar ul.sidebar-menu li > a {
  padding: 19px 15px;
  border-bottom: 1px solid #333333;
}
.main-sidebar ul.sidebar-menu li a {
  color: white;
  font-size: 16px;
  line-height: normal;
  font-weight: 700;
  width: 100%;
/*  display: inline-flex;*/
  position: relative;
  transition: all ease 0.4s;
}
.main-sidebar ul.sidebar-menu li a .icon {
  flex-shrink: 0;
  min-width: 25px;
  text-align: center;
  margin-right: 11px;
}
.main-sidebar ul.sidebar-menu li a::before {
  content: "";
  background: #ff0000;
  height: 100%;
  width: calc(100% + 40px);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.25s;
}
.main-sidebar ul.sidebar-menu li a.active, .main-sidebar ul.sidebar-menu li a:hover {
  color: white;
  background: #ff0000;
}
.main-sidebar ul.sidebar-menu li a.active .icon img, .main-sidebar ul.sidebar-menu li a:hover .icon img {
  filter: brightness(0) invert(1);
}
.main-sidebar ul.sidebar-menu li a.active::before, .main-sidebar ul.sidebar-menu li a:hover::before {
  opacity: 1;
  left: -20px;
  right: -20px;
  visibility: visible;
}



.main-sidebar ul.sidebar-menu li a.btn-toggle {
  background-color: transparent;
  color: white;
}
.main-sidebar ul.sidebar-menu li a.btn-toggle.active, .main-sidebar ul.sidebar-menu li a.btn-toggle:hover {
  color: white !important;
  background: #ff0000 !important;
}
.main-sidebar ul.sidebar-menu li a.btn-toggle.collapsed {
  background-color: transparent;
  color: white;
}
.main-sidebar ul.sidebar-menu li a.btn-toggle:not(.collapsed) .icon img {
  filter: brightness(100);
}
.main-sidebar ul.sidebar-menu li ul.btn-toggle-nav {
  padding: 10px 15px 10px 35px;
  background: #333333;
  border-radius: 0;
}
.main-sidebar ul.sidebar-menu li ul.btn-toggle-nav li a {
  padding: 14px 15px;
  border: none;
  font-size: 14px;
}
.main-sidebar ul.sidebar-menu li ul.btn-toggle-nav li a::before {
  display: none;
}
.main-sidebar ul.sidebar-menu li ul.btn-toggle-nav li a.active, .main-sidebar ul.sidebar-menu li ul.btn-toggle-nav li a:hover {
  color: white;
  background: #ff0000;
}

.right-main-sidebar {
  left: auto;
  right: -370px;
}
@media screen and (max-width: 480px) {
  .right-main-sidebar {
    right: -100%;
  }
}
.right-main-sidebar.show {
  left: auto;
  right: 0;
}
.right-main-sidebar .user-nav-toggler {
  border-radius: 0;
  padding: 0;
  border: none;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  box-shadow: none;
  outline: none;
  cursor: pointer;
}
.right-main-sidebar .user-nav-toggler .navbar-toggler-icon {
  width: 29px;
  height: 19px;
  background: none;
  position: relative;
  display: inline-block;
}
.right-main-sidebar .user-nav-toggler .navbar-toggler-icon span {
  height: 3px;
  width: 29px;
  background-color: white;
  display: block;
  position: absolute;
  transition: all ease 0.4s;
}
.right-main-sidebar .user-nav-toggler .navbar-toggler-icon span:nth-child(1) {
  top: 0;
}
.right-main-sidebar .user-nav-toggler .navbar-toggler-icon span:nth-child(2), .right-main-sidebar .user-nav-toggler .navbar-toggler-icon span:nth-child(3) {
  top: 8px;
}
.right-main-sidebar .user-nav-toggler .navbar-toggler-icon span:nth-child(4) {
  top: 16px;
}
.right-main-sidebar .user-nav-toggler[aria-expanded=true] .navbar-toggler-icon span:nth-child(1), .right-main-sidebar .user-nav-toggler[aria-expanded=true] .navbar-toggler-icon span:nth-child(4), .right-main-sidebar .user-nav-toggler.active .navbar-toggler-icon span:nth-child(1), .right-main-sidebar .user-nav-toggler.active .navbar-toggler-icon span:nth-child(4) {
  top: 11px;
  opacity: 0;
}
.right-main-sidebar .user-nav-toggler[aria-expanded=true] .navbar-toggler-icon span:nth-child(2), .right-main-sidebar .user-nav-toggler.active .navbar-toggler-icon span:nth-child(2) {
  transform: rotate(-45deg);
}
.right-main-sidebar .user-nav-toggler[aria-expanded=true] .navbar-toggler-icon span:nth-child(3), .right-main-sidebar .user-nav-toggler.active .navbar-toggler-icon span:nth-child(3) {
  transform: rotate(45deg);
}
.right-main-sidebar .menuLogo {
  justify-content: flex-end;
  padding-top: 25px;
  padding-bottom: 25px;
}

footer {
  background: #222222;
  padding: 60px 0 80px;
}
footer .footer-brand {
  display: inline-block;
}
footer .footer-link {
  display: block;
}
footer .footer-link ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
footer .footer-link ul li {
  font-size: 16px;
  margin-bottom: 5px;
}
footer .footer-link ul li a {
  color: white;
  position: relative;
}
footer .footer-link ul li a:hover, footer .footer-link ul li a.active {
  color: #ff0000;
}
@media only screen and (max-width: 575px) {
  footer .footer-link ul li {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 991px) {
  footer {
    padding: 40px 0 60px;
    border-bottom-width: 6px;
    display: none;
  }
}
.mobileFooter {
  background: #222222;
  padding: 17px 10px;
  height: 65px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
@media only screen and (min-width: 992px) {
  .mobileFooter {
    display: none;
  }
}
.mobileFooter .container-fluid {
  flex-wrap: nowrap;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.mobileFooter .btn-block {
  color: white;
  text-align: center;
}
.mobileFooter .btn-block .icon {
  margin-bottom: 6px;
  min-height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobileFooter .btn-block .icon img {
  filter: none;
  opacity: 1;
  max-width: 25px;
}
.mobileFooter .btn-block span {
  font-size: 12px;
  max-width: 60px;
  line-height: normal;
  display: flex;
  min-height: 16px;
  justify-content: center;
  align-items: center;
}
.mobileFooter .footer-brand {
  color: white;
}
@media only screen and (max-width: 480px) {
  .mobileFooter {
    padding: 17px 5px;
    height: 70px;
  }
  .mobileFooter .btn-block .icon {
    min-height: 32px;
    margin-bottom: -2px;
  }
  .mobileFooter .btn-block .icon img {
    max-width: 24px;
    max-height: 24px;
  }
  .mobileFooter .btn-block span {
    font-size: 12px;
    min-height: 32px;
  }
  .mobileFooter .footer-brand .icon img {
    max-width: 40px;
    max-height: 40px;
  }
}

main {
  padding-top: 89px;
}
@media only screen and (max-width: 991px) {
  main {
    padding-bottom: 115px;
    padding-top: 70px;
  }
}
@media only screen and (max-width: 480px) {
  main {
    padding-bottom: 100px;
    padding-top: 60px;
  }
}

.content-wrapper {
  padding: 0 30px;
}
@media screen and (max-width: 1199px) {
  .content-wrapper {
    padding: 0 15px;
  }
}
@media screen and (max-width: 991px) {
  .content-wrapper {
    padding: 0;
  }
}

.category-list {
  margin-bottom: 50px;
  margin-top: 10px;
}
.category-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.category-list ul li a {
  font-size: 16px;
  background: #222222;
  border-radius: 16px;
  padding: 13px 16px;
  display: inline-block;
  line-height: normal;
  color: white;
}
.category-list ul li a:hover {
  background: #ff0000;
  color: white;
}
@media only screen and (max-width: 1199px) {
  .category-list {
    margin-bottom: 30px;
  }
}

.attachmentIcon {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
@media screen and (max-width: 575px) {
  .attachmentIcon {
    max-width: 35px;
  }
}
.attachmentIcon label {
  margin: 0;
  cursor: pointer;
}
.attachmentIcon input {
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  text-align: right;
  opacity: 0;
  background: none;
  display: block;
  position: absolute;
  appearance: none;
  cursor: pointer;
}

@media screen and (max-width: 991px) {
  .tag-filter-list {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .hide-mobile {
    display: none !important;
  }
}

@media screen and (min-width: 992px) {
  .hide-desktop {
    display: none !important;
  }
}

/*@media screen and (max-width: 991px) {
    .hide-desktop {
        display: none !important; 
    }
}*/

@media screen and (min-width: 576px) {
  .hide-tablet {
    display: none !important;
  }
}

@media screen and (min-width: 481px) {
  .hide-header-tablet {
    display: none !important;
  }
}

@media screen and (max-width: 480px) {
  .hide-small-mobile {
    display: block !important;
  }
}

@media screen and (max-width: 991px) {
  .mobile-top-space {
    margin-top: 12px;
   /* display: none;*/
 
  }
}

.hoters-tab {
  align-items: center;
  background-color: #222222;
  border: 1px solid #ff0000;
  border-radius: 50px;
  flex-wrap: nowrap;
}
.hoters-tab .nav-link {
  padding: 0;
  font-size: 16px;
  color: white;
  padding: 5px 20px;
  border-radius: 50px;
}
.hoters-tab .nav-link.active {
  background-color: #ff0000;
}
@media screen and (max-width: 1199px) {
  .hoters-tab .nav-link {
    padding: 2px 15px;
  }
}
@media screen and (max-width: 575px) {
  .hoters-tab .nav-link {
    font-size: 10px;
  }
}
@media screen and (max-width: 480px) {
  .hoters-tab .nav-link {
    padding: 2px 8px;
  }
}


.profile-container {
    display: flex;
    align-items: center; 
    gap: 20px; 
    margin-left: 30px;
    margin-bottom: 30px;
}
.profile-box {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s ease-in-out;
    margin-left: 200px;
    margin-top: -60px;
}

    .profile-box .icon2 {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #212121;
        position: relative;
        z-index: 1; 
        margin-left: 15px;
    }

        .profile-box .icon2 .progress-ring {
            position: absolute;
            width: 100px; 
            height: 100px; 
            border-radius: 50%;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
        }

.progress-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg); 
}

.progress-ring circle {
    fill: transparent;
    stroke-width: 10; 
}

.progress-ring .background-circle {
    stroke: #222222; 
}

.progress-ring .progress-circle {
    stroke: #FF0000; 
    stroke-dasharray: 251.327; 
    stroke-dashoffset: 251.327; 
    transition: stroke-dashoffset 0.5s ease; 
}

#progressPercentage {
    font-size: 18px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    z-index: 2; 
}



@media screen and (max-width: 360px) {
    .profile-box {
        gap: 16px;
    }
}

.profile-box h2 {
    margin-bottom: 10px;
}

@media screen and (max-width: 360px) {
    .profile-box h2 {
        font-size: 15px;
        margin-bottom: 5px;
    }
}

.profile-box p {
    margin-bottom: 0;
}

       /* .profile-box .icon:before {
            content: "";
            position: absolute;
            left: -4px;
            top: -4px;
            right: -4px;
            bottom: -4px;
            border: 2px solid #212121; 
            border-radius: 50%; 
            z-index: -1; 
            border-radius: inherit; 
        }*/
         

@media screen and (max-width: 360px) {
  .profile-box {
    gap: 16px;
  }
}
.profile-box h2 {
  margin-bottom: 10px;
}
@media screen and (max-width: 360px) {
  .profile-box h2 {
    font-size: 15px;
    margin-bottom: 5px;
  }
}
.profile-box p {
  margin-bottom: 0;
}

.person-img-wrapper {
  padding-top: 58px;
}
.person-img-wrapper .btn-margin {
  margin-top: 27px;
}
@media screen and (max-width: 575px) {
  .person-img-wrapper .btn-margin {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 1399px) {
  .person-img-wrapper .btn {
    padding: 9px 18px;
  }
}
@media screen and (max-width: 575px) {
  .person-img-wrapper .btn {
    font-size: 10px;
    font-weight: 400;
  }
}
@media screen and (max-width: 1199px) {
  .person-img-wrapper {
    padding-top: 30px;
  }
}
@media screen and (max-width: 575px) {
  .person-img-wrapper {
    padding-top: 0;
  }
}

.filmy-person .btn-margin {
  margin-top: 50px;
  margin-bottom: 25px;
}
@media screen and (max-width: 575px) {
  .filmy-person .btn-margin {
    margin-top: 10px;
    margin-bottom: 0;
  }
}

.ranking-person .ranking-person-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 80px;
}
@media screen and (max-width: 1199px) {
  .ranking-person .ranking-person-wrapper {
    row-gap: 50px;
  }
}
.ranking-person .btn-margin {
  margin-top: 80px;
  margin-bottom: 40px;
}
@media screen and (max-width: 575px) {
  .ranking-person .btn-margin {
    margin-top: 15px;
    margin-bottom: 18px;
  }
}

.new-person .btn-margin {
  margin-top: 60px;
  margin-bottom: 55px;
}
@media screen and (max-width: 575px) {
  .new-person .btn-margin {
    margin-top: 10px;
    margin-bottom: 0;
  }
}

.album-item {
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  position: relative;
  cursor: pointer;
}
.album-item img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  transition: all ease 0.4s;
  max-height: 250px;
}

.photo-blur {
    filter: blur(8px) !important;
   
}
.album-item:hover img {
  transform: scale(1.1);
}
.album-item .album-info-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  transition: all ease 0.4s;
  align-items: flex-end;
  justify-content: space-between;
  padding-left: 10px;
  padding-right: 15px;
  padding-bottom: 12px;
}
.album-item .album-info-wrapper:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8547794118) 0%, rgba(0, 0, 0, 0) 60%);
  transition: all ease 0.4s;
}
.album-item .album-info-wrapper .name-wrapper {
  display: flex;
  position: relative;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 1199px) {
  .album-item .album-info-wrapper .name-wrapper {
    gap: 4px;
  }
}
.album-item .album-info-wrapper .name-wrapper .icon {
  width: 12px;
  min-width: 12px;
}
@media screen and (max-width: 1199px) {
  .album-item .album-info-wrapper .name-wrapper .icon {
    width: 10px;
    min-width: 10px;
  }
}
@media screen and (max-width: 1199px) {
  .album-item .album-info-wrapper .name-wrapper .icon {
    width: 8px;
    min-width: 8px;
  }
}
.album-item .album-info-wrapper .name-wrapper .icon img {
  width: 100%;
  height: auto;
  display: block;
}
.album-item .album-info-wrapper .name-wrapper p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}
@media screen and (max-width: 1199px) {
  .album-item .album-info-wrapper .name-wrapper p {
    font-size: 8px;
  }
}
.album-item .album-info-wrapper .name-wrapper .item {
  display: flex;
  gap: 8px;
  align-items: center;
}
@media screen and (max-width: 1199px) {
  .album-item .album-info-wrapper .name-wrapper .item {
    gap: 4px;
  }
}
@media screen and (max-width: 1599px) {
  .album-item .album-info-wrapper {
    flex-direction: column;
    justify-content: flex-end;
  }
}
@media screen and (max-width: 1199px) {
  .album-item .album-info-wrapper {
    padding-right: 6px;
    padding-left: 6px;
  }
}
@media screen and (max-width: 575px) {
  .album-item .album-info-wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media screen and (max-width: 479px) {
  .album-item .album-info-wrapper {
    flex-direction: column;
    justify-content: flex-end;
  }
}
.album-item:hover .album-info-wrapper {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 2400px) {
  .album-item {
    border-radius: 20px;
  }
}

.five-row {
  flex-wrap: wrap;
  row-gap: 24px;
}
.five-row .col {
  width: 20%;
  flex: 1 0 20%;
}
.five-row .col.large {
  width: 40%;
  flex: 1 0 40%;
}
@media screen and (max-width: 991px) {
  .five-row .col {
    width: 33.33%;
    flex: 1 0 33.33%;
  }
  .five-row .col.large {
    width: 66.66%;
    flex: 1 0 66.66%;
  }
}
@media screen and (max-width: 575px) {
  .five-row {
    row-gap: 14px;
  }
}

.statistics-card {
    margin-bottom: 40px
}

@media only screen and (max-width: 1199px) {
    .statistics-card {
        margin-bottom: 20px
    }
}

.test-card {
    margin-bottom: 40px
}

@media only screen and (max-width: 1199px) {
    .test-card {
        margin-bottom: 20px
    }
}


.statistics-list {
    list-style: none;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
    padding: 20px 30px 20px 20px;
    padding-right: 30px
}

@media only screen and (max-width: 1199px) {
    .statistics-list {
        padding: 5px;
        gap: 20px
    }
}

@media screen and (max-width: 991px) {
    .statistics-list {
        padding: 20px 30px 20px 20px;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        border-top: 1px solid #333333
    }
}

@media screen and (max-width: 991px) {
    .statistics-item {
        width: 33.33%
    }
}

.statistics-item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: white;
    font-size: 14px
}

@media only screen and (max-width: 1199px) {
    .statistics-item a {
        gap: 20px
    }
}

@media screen and (max-width: 991px) {
    .statistics-item a {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
        font-size: 11px;
        gap: 11px
    }

        .statistics-item a strong {
            font-size: 19px;
            display: block
        }
}

@media screen and (max-width: 575px) {
    .statistics-item a strong {
        font-size: 16px
    }
}

.statistics-item .icon {
    min-width: 40px
}
.live-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.live-card {
    margin-top: 44px;
    margin-bottom: 40px;
    position: relative;
    padding-left: 35px;
    overflow-y: auto; 
    scroll-behavior: smooth; 
    max-height: 525px; 
}

  
    .live-card::-webkit-scrollbar {
        width: 3px; 
    }

    .live-card::-webkit-scrollbar-track {
        background: #222222; 
        border-radius: 4px;
    }

    .live-card::-webkit-scrollbar-thumb {
        background-color: #888; 
        border-radius: 4px;
    }

        .live-card::-webkit-scrollbar-thumb:hover {
            background-color: #555; 
        }

@media screen and (max-width: 1199px) {
    .live-card {
        margin-top: 20px;
        margin-bottom: 20px;
        padding-left: 25px;
        max-height: 250px; /* Optional: adjust max height for smaller screens */
    }
}

@media screen and (max-width: 575px) {
    .live-card {
        position: static;
        margin-top: 0;
        padding-left: 20px;
        max-height: 200px; /* Optional: adjust max height for mobile */
    }
}


.live-tag {
  position: absolute;
  padding: 6px 15px;
  border-radius: 6px;
  background-color: #ff0000;
  color: white;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  left: -4px;
  top: 10px;
}
@media screen and (max-width: 575px) {
  .live-tag {
    position: static;
    font-size: 16px;
  }
}

.live-list {
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 70px 0 0;
  margin-top: -75px;
}
@media screen and (max-width: 1199px) {
  .live-list {
    padding-top: 50px;
  }
}
@media screen and (max-width: 575px) {
  .live-list {
    padding: 20px 0;
  }
}

.live-item {
    display: flex;
    flex-wrap: wrap;
    column-gap: 5px;
    row-gap: 4px;
    align-items: center;
    font-size: 13px;
    line-height: 1;
    border-bottom: 1px solid #222222;
    padding: 5px 0;
/*    margin-left: 5px; */
    margin-right: -5px;
}

@media only screen and (max-width: 991px) {
    .live-item {
   /* margin-left: -30px;*/
    }

    .icon-rectangle img {
        margin-right: 15px !important;

    }

}


#activity-modal .live-item {
    margin-left: -30px;
}


#activity-modal .icon-rectangle img {
   /* margin-right: 15px !important; */
}

.live-item .icon:first-child {
  margin-left: 0;
  margin-right: 5px;
  display: block;
}

.event-card {
  margin-top: 44px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1199px) {
  .event-card {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.event-box .img-wrapper img {
  width: 100%;
}
.event-box .content {
  padding: 20px 45px 30px 25px;
/*  width: 370px;*/
}

.profile-event .event-box .content {
    width: auto !important;
}

@media screen and (max-width: 575px) {
  .event-box .content {
    padding: 0;
    padding-top: 15px;
  }
}
.event-box .content .subtitle {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1;
}
@media screen and (max-width: 575px) {
  .event-box .content .subtitle {
    font-size: 17px;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 400px) {
  .event-box .content .subtitle {
    font-size: 12px;
  }
}
.event-box .content .title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
    overflow-wrap: break-word;
}
@media screen and (max-width: 575px) {
  .event-box .content .title {
    font-size: 17px;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 400px) {
  .event-box .content .title {
    font-size: 12px;
  }
}
@media screen and (max-width: 575px) {
  .event-box {
    padding: 18px 12px 30px;
  }
}

.guest-list .guest-title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
    overflow-wrap: break-word;
}
@media screen and (max-width: 575px) {
  .guest-list .guest-title {
    font-size: 17px;
    line-height: 1;
  }
}
@media screen and (max-width: 575px) and (max-width: 400px) {
  .guest-list .guest-title {
    font-size: 12px;
  }
}
.guest-list .item {
  display: flex;
  gap: 10px;
  align-items: center;
}
.guest-list .item .icon-wrapper {
  display: flex;
}
    .guest-list .item .icon-wrapper .icon {
        margin-left: -15px;
        width: 41px;
        height: 41px;
        min-width: 41px;
        border-radius: 50%;
       
        align-items: center;
        justify-content: center;
        overflow: hidden;
        position: relative;
    }

        .guest-list .item .icon-wrapper .icon img {
            
            width: 100%;
            height: 100%;
            object-fit: cover;
            cursor: grab;

            max-width: none !important;
            top: 20px;
        }
            @media screen and (max-width: 575px) {
                .guest-list .item .icon-wrapper .icon {
                    width: 35px;
                    height: 35px;
                    min-width: 35px;
                }
            }

            @media screen and (max-width: 400px) {
                .guest-list .item .icon-wrapper .icon {
                    width: 32px;
                    height: 32px;
                    min-width: 32px;
                }
            }

            .guest-list .item .icon-wrapper .icon:first-child {
  margin-left: 0;
}
.guest-list .item .guest-name {
  font-size: 13px;
  margin-bottom: 0;
  line-height: 1.3;
}
.guest-list .item .guest-name a {
  margin-right: 5px;
}
@media screen and (max-width: 575px) {
  .guest-list .item .guest-name {
    font-size: 8px;
  }
}
.guest-list .btn {
  width: 100%;
  margin-top: 18px;
  font-size: 18px;
  font-weight: normal;
  line-height: 1;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media screen and (max-width: 575px) {
  .guest-list .btn {
    font-size: 12px;
    padding: 10px;
  }
}
@media screen and (max-width: 480px) {
  .guest-list .btn {
    font-size: 10px;
  }
}

.ranking-slider .swiper-wrapper {
  flex-wrap: wrap;
  row-gap: 80px;
}
@media screen and (max-width: 1199px) {
  .ranking-slider .swiper-wrapper {
    flex-wrap: nowrap;
  }
}
.ranking-slider .swiper-slide {
  width: 25%;
  position: relative;
}
.ranking-slider .crown-img {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.ranking-slider .ranking-img-wrapper {
  max-width: 174px;
  max-height: 174px;
  width: 100%;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 2400px) {
  .ranking-slider .ranking-img-wrapper {
    max-width: 174px;
    max-height: 174px;
  }
}
@media screen and (max-width: 1599px) {
  .ranking-slider .ranking-img-wrapper {
    max-width: 160px;
    max-height: 160px;
  }
}
@media screen and (max-width: 1399px) {
  .ranking-slider .ranking-img-wrapper {
    max-width: 130px;
    max-height: 130px;
  }
}
.ranking-slider .ranking-img-wrapper .ranking-item > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all ease 0.4s;
}
.ranking-slider .ranking-img-wrapper .ranking-item:hover > img {
  transform: scale(1.1);
}
.ranking-slider .album-info-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  transition: all ease 0.4s;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-left: 10px;
  padding-right: 15px;
  padding-bottom: 35px;
}
.ranking-slider .album-info-wrapper:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 20%, rgba(0, 0, 0, 0) 60%);
  transition: all ease 0.4s;
}
.ranking-slider .album-info-wrapper .name-wrapper {
  display: flex;
  position: relative;
  align-items: center;
  gap: 6px;
}
.ranking-slider .album-info-wrapper .name-wrapper .rank-name {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
}
@media screen and (max-width: 1599px) {
  .ranking-slider .album-info-wrapper .name-wrapper .rank-name {
    font-size: 17px;
  }
}
@media screen and (max-width: 1399px) {
  .ranking-slider .album-info-wrapper .name-wrapper .rank-name {
    font-size: 14px;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 991px) {
  .ranking-slider .album-info-wrapper .name-wrapper .rank-name {
    font-size: 22px;
  }
}
.ranking-slider .album-info-wrapper .name-wrapper .icon {
  width: 15px;
  min-width: 15px;
}
@media screen and (max-width: 1599px) {
  .ranking-slider .album-info-wrapper .name-wrapper .icon {
    width: 12px;
    min-width: 12px;
  }
}
@media screen and (max-width: 1399px) {
  .ranking-slider .album-info-wrapper .name-wrapper .icon {
    width: 10px;
    min-width: 10px;
  }
}
.ranking-slider .album-info-wrapper .name-wrapper .icon img {
  width: 100%;
  height: auto;
}
.ranking-slider .album-info-wrapper .name-wrapper p {
  margin: 0;
  font-size: 20px;
}
@media screen and (max-width: 1599px) {
  .ranking-slider .album-info-wrapper .name-wrapper p {
    font-size: 17px;
  }
}
@media screen and (max-width: 1399px) {
  .ranking-slider .album-info-wrapper .name-wrapper p {
    font-size: 15px;
    line-height: 1;
  }
}
.ranking-slider .album-info-wrapper .name-wrapper .item {
  display: flex;
  gap: 6px;
  align-items: center;
}

.layer-img-wrapper {
  display: flex;
  justify-content: center;
  margin-top: -30px;
  position: relative;
  height: 50px;
}
.layer-img-wrapper .layers-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.layer-img-wrapper .layer {
  display: flex;
  width: 41px;
  height: 41px;
  min-width: 41px;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 1599px) {
  .layer-img-wrapper .layer {
    height: 31px;
    width: 31px;
    min-width: 31px;
  }
}
@media screen and (max-width: 991px) {
  .layer-img-wrapper .layer {
    height: 24px;
    width: 24px;
    min-width: 24px;
  }
}
.layer-img-wrapper .layer.active {
  width: 75px;
  height: 75px;
  min-width: 75px;
}
@media screen and (max-width: 1599px) {
  .layer-img-wrapper .layer.active {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }
}
@media screen and (max-width: 991px) {
  .layer-img-wrapper .layer.active {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
}
.layer-img-wrapper .layer:first-child {
  margin-right: -10px;
}
@media screen and (max-width: 1599px) {
  .layer-img-wrapper .layer:first-child {
    margin-right: -5px;
  }
}
.layer-img-wrapper .layer:last-child {
  margin-left: -10px;
}
@media screen and (max-width: 1599px) {
  .layer-img-wrapper .layer:last-child {
    nav-left: -5px;
  }
}

.ranking-slider-wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .ranking-slider-wrapper {
    padding: 0 20px;
    padding-top: 30px;
    overflow: hidden;
  }
}

.user-card {
  padding: 25px 40px;
  background: #161616;
  border-radius: 10px;
}
@media screen and (max-width: 1199px) {
  .user-card {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 991px) {
  .user-card {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 575px) {
  .user-card {
    padding: 12px 22px;
  }
}

.user-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.user-list p {
  margin-bottom: 20px;
  line-height: 1.2;
  font-size: 17px;
  font-weight: 700;
}
.user-list p span {
  font-weight: 400;
}
@media screen and (max-width: 575px) {
  .user-list p {
    font-size: 16px;
    margin-bottom: 5px;
  }
}

.more-btn {
  padding-left: 45px;
  padding-right: 45px;
  width: 250px;
}
@media screen and (max-width: 575px) {
  .more-btn {
    padding: 10px 20px;
  }
}
@media screen and (max-width: 480px) {
  .more-btn {
    padding: 5px 15px;
    font-size: 10px;
    font-weight: 400;
  }
}

.ranking-slider .swiper-button-next, .ranking-slider .swiper-button-prev {
  height: auto;
  margin: 0;
  padding: 0;
  display: none;
  margin-top: -12px;
}
@media screen and (max-width: 1199px) {
  .ranking-slider .swiper-button-next, .ranking-slider .swiper-button-prev {
    display: flex;
  }
}
.ranking-slider .swiper-button-next::after, .ranking-slider .swiper-button-prev::after {
  font-size: 24px;
  font-weight: 800;
  color: #ff0000;
}
.ranking-slider .swiper-button-disabled {
  opacity: 1;
}
.ranking-slider .swiper-button-disabled:after {
  color: #d1d1d1;
}
.ranking-slider .swiper-button-prev {
  flex-direction: row-reverse;
  left: -5px;
}
.ranking-slider .swiper-button-prev::before {
  margin: 0 0 0 -3px;
}
.ranking-slider .swiper-button-next {
  right: -5px;
}

@media screen and (max-width: 575px) {
  .event-title {
    text-align: left !important;
  }
}

.col-load-more {
  display: none;
}

.ranking-card {
  position: relative;
  text-align: center;
}
.ranking-card:before {
  content: "";
  position: absolute;
  top: 15%;
  bottom: 0;
  left: 0;
  right: 0;
  border: 1px solid #a60000;
  border-radius: 16px;
  z-index: -1;
}
.ranking-card .name-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 575px) {
  .ranking-card .name-wrapper {
    gap: 20px;
  }
}
.ranking-card .name-wrapper .item {
  display: flex;
  gap: 15px;
}
.ranking-card .name-wrapper .item p {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .ranking-card .name-wrapper .item p {
    margin-bottom: 30px;
  }
}
.ranking-card .name-wrapper .rank-name {
  font-size: 20px;
  margin-bottom: 25px;
  font-weight: 700;
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .ranking-card .name-wrapper .rank-name {
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 575px) {
  .ranking-card .name-wrapper .rank-name {
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.ranking-card .name-wrapper .rank-desc {
  max-width: 150px;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .ranking-card .name-wrapper .rank-desc {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 575px) {
  .ranking-card .name-wrapper .rank-desc {
    font-size: 14px;
  }
}
.ranking-card .album-info-wrapper .name-wrapper .rank-name {
  font-size: 33px;
  font-weight: 700;
}
.ranking-card.gray-border:before {
  border-color: #333333;
}

@media screen and (max-width: 991px) {
  .ranking-slider-main {
    padding: 0;
  }
}

.ranking-box-slider {
  padding-bottom: 115px;
}
@media screen and (max-width: 767px) {
  .ranking-box-slider {
    padding-bottom: 60px;
  }
}
.ranking-box-slider .swiper-wrapper {
  row-gap: 35px;
  margin-left: -20px;
  margin-right: -20px;
}
@media screen and (max-width: 1199px) {
  .ranking-box-slider .swiper-wrapper {
    flex-wrap: wrap;
    width: auto;
  }
}
.ranking-box-slider .swiper-wrapper .swiper-slide {
  padding: 0 20px;
}
@media screen and (max-width: 1199px) {
  .ranking-box-slider .swiper-wrapper .swiper-slide {
    width: 25%;
  }
}
@media screen and (max-width: 991px) {
  .ranking-box-slider .swiper-wrapper .swiper-slide {
    width: 33.33%;
  }
}
@media screen and (max-width: 767px) {
  .ranking-box-slider .swiper-wrapper .swiper-slide {
    width: 50%;
    padding: 0 5px;
  }
}
@media screen and (max-width: 359px) {
  .ranking-box-slider .swiper-wrapper .swiper-slide {
    width: 100%;
  }
}
@media screen and (max-width: 1199px) {
  .ranking-box-slider .swiper-button-next, .ranking-box-slider .swiper-button-prev {
    display: none;
  }
}

.ranking-header {
  gap: 15px;
}
.ranking-header .hoters-tab {
  margin-right: 5px;
}

.ranking-header-select {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 575px) {
  .ranking-header-select {
    gap: 15px;
    flex-wrap: wrap;
  }
}

.activity-tab {
  align-items: center;
  border-bottom: 1px solid #222222;
  flex-wrap: nowrap;
  margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
  .activity-tab {
    overflow: auto;
    margin-bottom: 30px;
  }
}
.activity-tab .nav-link {
  padding: 0;
  font-size: 20px;
  color: white;
  padding: 30px 20px 25px;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  line-height: 1;
  font-family: "Lato", sans-serif;
}
.activity-tab .nav-link.active {
  background: transparent;
  border-color: #ff0000;
  color: #ff0000;
}
@media screen and (max-width: 1399px) {
  .activity-tab .nav-link {
    padding: 20px 15px;
    font-size: 16px;
  }
}
@media screen and (max-width: 1399px) {
  .activity-tab .nav-link {
    padding: 15px 10px;
    font-size: 15px;
  }
}
@media screen and (max-width: 575px) {
  .activity-tab .nav-link {
    font-size: 14px;
    border-bottom: 0;
  }
}
@media screen and (max-width: 575px) {
  .activity-tab {
   /* flex-wrap: wrap;*/
  }
}

.activity-section {
  margin-top: 35px;
}
@media screen and (max-width: 575px) {
  .activity-section {
    margin-top: 0;
  }
}

.activity-list-card {
  padding: 25px 15px;
}

.activity-profile {
  display: flex;
  gap: 20px;
  padding: 0 0px 30px;
  border-bottom: 1px solid #222222;
}
    .activity-profile .avatar {
        width: 70px;
        height: 70px;
        min-width: 70px;
        border-radius: 70px;
        overflow: hidden
    }

        .activity-profile .avatar img {
            width: 100%;
            height: 100%;
            -o-object-fit: cover;
            object-fit: cover;
            -o-object-position: top;
            object-position: top
        }

.activity-profile p {
  margin: 0;
  line-height: 1.2;
  font-weight: 600;
}
.activity-profile p.name {
  font-size: 14px;
}
.activity-profile p.verify {
  font-size: 12px;
  text-transform: uppercase;
  color: #ff0000;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 3px;
}
.activity-profile p.verify img {
  display: block;
}
.activity-profile p.status {
  position: relative;
  padding-left: 1px;
  text-transform: uppercase;
  font-size: 13px;
  color: #ff0000;
}
.activity-profile p.status::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: #ff0000;
}

.activity-side-list {
  list-style: none;
  padding: 30px 15px;
  margin: 0;
  border-bottom: 1px solid #222222;
}
.activity-side-list li {
  padding-bottom: 15px;
}
.activity-side-list li:last-child {
  padding-bottom: 0;
}
.activity-side-list li a {
  color: #fff;
}
.activity-side-list li a:hover {
  color: #ff0000;
}

.activity-list-btn {
  font-weight: normal;
  border-radius: 50px;
  font-size: 14px;
  padding: 10px 25px;
  margin-top: 15px;
  margin-left: 15px;
}

/*.activity-content {
  padding-left: 56px;
}*/
@media screen and (max-width: 1199px) {
  .activity-content {
    padding-left: 30px;
  }
}
@media screen and (max-width: 991px) {
  .activity-content {
    padding-left: 0;
  }
}

.activity-card {
  background: #222222;
  border-color: #333333;
  padding: 23px 44px;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 767px) {
  .activity-card {
    padding: 25px 30px;
  }
}
@media screen and (max-width: 575px) {
  .activity-card {
    padding: 20px;
  }
}

.activity-card-title {
  font-weight: 600;
  margin-bottom: 25px;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 20px;
}
.activity-item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 575px) {
  .activity-item {
    border-bottom: 1px solid #333333;
    padding: 10px 20px;
    margin: 0;
    margin-left: -20px;
    margin-right: -20px;
  }
  .activity-item:first-child {
    padding-top: 0;
  }
  .activity-item:last-child {
    border-bottom: 0;
  }
}
.activity-item .avatar {
/*    display: flex;*/
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 70px;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    position: relative;
}
@media screen and (max-width: 767px) {
  .activity-item .avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
}

@media screen and (max-width: 480px) {
    .activity-item .avatar {
        width: 30px !important;
        height: 30px !important;
        min-width: 30px !important;
    }
}
.activity-item .avatar img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: grab;
    max-width: none !important;
    object-position: top;
    transition: all ease 0.4s;
}
.activity-item .avatar:hover img {
  transform: scale(1.1);
}
.activity-item p {
  margin: 0;
}
.activity-item .live-item {
  column-gap: 10px;
  font-size: 16px;
}
.activity-item .live-item .icon {
  margin-left: 0;
}
.activity-item .live-item strong {
  font-weight: 600;
}
.activity-item .live-item .avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  margin-left: 8px;
}
@media screen and (max-width: 767px) {
  .activity-item .live-item {
    font-size: 14px;
  }
  /*.activity-item .live-item .icon {*/
/*    max-width: 20px;*/
  /*}*/
}

.hot-line-card {
  padding: 0;
  margin-bottom: 15px;
}

.hot-header {
  display: flex;
  padding: 10px 43px;
  align-items: center;
  border-bottom: 1px solid #ff0000;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .hot-header {
    padding: 10px 30px;
  }
}
.hot-header .icon {
  display: block;
  margin-right: 8px;
}
.hot-header .icon img {
  display: block;
}
.hot-header p {
  margin-left: 15px;
  font-size: 12px;
  background-color: #ff0000;
  line-height: 24px;
  margin-bottom: 0;
  padding: 0 8px;
  border-radius: 4px;
}

.hot-form {
  padding: 15px 35px;
  padding-bottom: 40px;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .hot-form {
    padding: 15px 30px;
  }
}
@media screen and (max-width: 575px) {
  .hot-form {
    flex-direction: column;
    gap: 10px;
  }
}
.hot-form .avatar {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50px;
    overflow: hidden;
    background-color: white;
/*    display: flex;*/
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
    .hot-form .avatar img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
        max-width: none !important;
/*        top: 10px;
        left: 45%;*/
    }
.hot-form .hot-form-wrapper {
  flex-grow: 1;
}
.hot-form .hotline-input-wrapper {
  display: flex;
  border: 1px solid #333333;
  margin-top: 5px;
  border-radius: 50px;
}
.hot-form .hotline-input-wrapper input {
  background: #111111;
  border: 0;
  border-right: 1px solid #333333;
  border-radius: 50px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  height: 40px;
}
.hot-form .hotline-input-wrapper input:focus {
  background: #111111;
}
.hot-form .hotline-input-wrapper .btn {
  padding-left: 45px;
  padding-right: 45px;
  height: 40px;
  font-size: 16px;
  border-radius: 50px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.video-emoji {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}
.video-emoji .video-wrapper {
  display: flex;
}
.video-emoji .video-wrapper input {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  opacity: 0;
  z-index: 1;
}
.video-emoji .video-wrapper .video-btn {
  position: relative;
  border-radius: 16px;
  border: 1px solid #333333;
  background: #111111;
  padding: 11px 12px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.video-emoji .btn {
  border-radius: 16px;
  border: 1px solid #333333;
  background: #111111;
  padding: 11px 12px;
  font-size: 14px;
}
.video-emoji .btn img {
  margin: 0;
}

.hot-check-list {
  padding: 0;
  margin-top: 10px;
}
.hot-check-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.hot-check-list li:last-child {
  margin-bottom: 0;
}
.hot-check-list li label {
  margin-bottom: 0;
}

.hot-radio-list {
  display: flex;
  padding: 0;
  list-style: none;
  margin-bottom: 0;
}
.hot-radio-list li {
  position: relative;
}
.hot-radio-list li label {
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 0;
}
.hot-radio-list li input {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
}
.hot-radio-list li input:checked + label {
  border-color: #333333;
  background: #111111;
}

.hot-radio-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.hot-radio-wrapper p {
  color: #ff0000;
  font-size: 14px;
  margin-bottom: 0;
}

.comment-card {
  background: #222222;
  border-color: #ff0000;
  padding: 63px 36px;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 767px) {
  .comment-card {
    padding: 30px;
  }
}
@media screen and (max-width: 575px) {
  .comment-card {
    padding: 20px;
  }
}

.comment-profile {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid #222222;
  align-items: center;
}
@media screen and (max-width: 1199px) {
  .comment-profile {
    padding-bottom: 20px;
  }
}
.comment-profile .avatar {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50px;
  overflow: hidden;
}
.comment-profile .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.comment-profile p {
  margin: 0;
  line-height: 1.2;
}
.comment-profile p.name {
  font-weight: 600;
  font-size: 17px;
}
.comment-profile p.status {
  font-size: 13px;
}

.comment-desc {
  font-size: 15px;
  line-height: 2.2;
  margin-bottom: 60px;
}
@media screen and (max-width: 1199px) {
  .comment-desc {
    margin-bottom: 30px;
  }
}

.comment-bottom {
  display: flex;
  justify-content: space-between;
}
.comment-bottom .name-wrapper {
  display: flex;
  position: relative;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1199px) {
  .comment-bottom .name-wrapper {
    gap: 8px;
  }
}
.comment-bottom .name-wrapper .icon {
  width: 14px;
  min-width: 14px;
}
.comment-bottom .name-wrapper .icon img {
  width: 100%;
  height: auto;
  display: block;
}
.comment-bottom .name-wrapper p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}
.comment-bottom .name-wrapper .item {
  display: flex;
  gap: 10px;
  align-items: center;
}
@media screen and (max-width: 1199px) {
  .comment-bottom .name-wrapper .item {
    gap: 8px;
  }
}

@media (min-width: 576px) {
  .gallery-modal .modal-dialog {
   /* max-width: 1677px;*/
   max-width: 100%;
/*    margin: 1.75rem auto;*/
 /*   padding: 0 2rem;*/
  }
}
.gallery-modal .modal-content {
  border-radius: 3px;
  background-color: #212121;
  border: 1px solid #333333;
}
    .gallery-modal .modal-content .btn-close {
        filter: brightness(0) invert(1);
        position: absolute;
        top: 10px;
       /* right: 5px;*/
        left: 5px;
        opacity: 1;
        z-index: 9;
    }
@media (max-width: 1700px) {
    .gallery-modal .modal-content .btn-close {
        top: 10px;
        /* right: 5px;*/
        left: 5px;
    }
}
.gallery-modal .modal-body {
  padding: 0;
}
.gallery-modal .modal-body .slider-col {
  width: 71%;
  flex: 0 0 71%;
}
@media (max-width: 1535px) {
  .gallery-modal .modal-body .slider-col {
    width: 70%;
    flex: 0 0 70%;
  }
}
@media (max-width: 1199px) {
  .gallery-modal .modal-body .slider-col {
    width: 60%;
    flex: 0 0 60%;
  }
}
@media (max-width: 991px) {
  .gallery-modal .modal-body .slider-col {
    width: 100%;
    flex: 0 0 100%;
  }
}
.gallery-modal .modal-body .info-col {
  width: 29%;
  flex: 0 0 29%;
}
@media (max-width: 1535px) {
  .gallery-modal .modal-body .info-col {
    width: 30%;
    flex: 0 0 30%;
  }
}
@media (max-width: 1199px) {
  .gallery-modal .modal-body .info-col {
    width: 40%;
    flex: 0 0 40%;
  }
}
@media (max-width: 991px) {
  .gallery-modal .modal-body .info-col {
    width: 100%;
    flex: 0 0 100%;
  }
}

.gallery-slider-block {
  padding: 25px 40px 30px;
  position: relative;
  max-width: 908px;
  margin: 0 auto;
}
@media (max-width: 575px) {
    .gallery-slider-block {
        padding: 25px 20px 30px;
     /*   margin-top: -90px;*/
    }
}
.gallery-slider-block .swiper-button-next, .gallery-slider-block .swiper-rtl .swiper-button-prev {
  right: -75px;
  left: auto;
}
@media (max-width: 1699px) {
  .gallery-slider-block .swiper-button-next, .gallery-slider-block .swiper-rtl .swiper-button-prev {
    right: -50px;
  }
}
@media (max-width: 1535px) {
  .gallery-slider-block .swiper-button-next, .gallery-slider-block .swiper-rtl .swiper-button-prev {
    right: 0px;
  }
}
@media (max-width: 991px) {
  .gallery-slider-block .swiper-button-next, .gallery-slider-block .swiper-rtl .swiper-button-prev {
    right: 25px;
  }
}
@media (max-width: 767px) {
  .gallery-slider-block .swiper-button-next, .gallery-slider-block .swiper-rtl .swiper-button-prev {
    right: 0px;
  }
}
.gallery-slider-block .swiper-button-prev, .gallery-slider-block .swiper-rtl .swiper-button-next {
  left: -75px;
  right: auto;
}
@media (max-width: 1699px) {
  .gallery-slider-block .swiper-button-prev, .gallery-slider-block .swiper-rtl .swiper-button-next {
    left: -40px;
  }
}
@media (max-width: 1535px) {
  .gallery-slider-block .swiper-button-prev, .gallery-slider-block .swiper-rtl .swiper-button-next {
    left: 0px;
  }
}
@media (max-width: 991px) {
  .gallery-slider-block .swiper-button-prev, .gallery-slider-block .swiper-rtl .swiper-button-next {
    left: 25px;
  }
}
@media (max-width: 767px) {
  .gallery-slider-block .swiper-button-prev, .gallery-slider-block .swiper-rtl .swiper-button-next {
    left: 0px;
  }
}
.gallery-slider-block .swiper-button-next, .gallery-slider-block .swiper-button-prev {
  color: #fff;
}
@media (max-width: 1535px) {
  .gallery-slider-block .swiper-button-next:after, .gallery-slider-block .swiper-button-prev:after {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .gallery-slider-block .swiper-button-next:after, .gallery-slider-block .swiper-button-prev:after {
    font-size: 25px;
  }
}
.gallery-slider-block .swiper-button-next.swiper-button-disabled, .gallery-slider-block .swiper-button-prev.swiper-button-disabled {
  opacity: 0.28;
}

@media (max-width: 991px) {
  .gallerySwiperMain .slide-box {
    height: 600px;
  }
}
@media (max-width: 767px) {
  .gallerySwiperMain .slide-box {
    height: auto;
  }
}
.gallerySwiperMain .slide-box:has(video):before {
  height: 78px;
  width: 78px;
}
.gallerySwiperMain .slide-box img, .gallerySwiperMain .slide-box video, .gallerySwiperMain .slide-box svg {
    height: 100%;
    width: 100%;
    object-fit: cover;
/*    height: calc(100vh - 221px);*/
}
@media (max-width: 991px) {
  .gallerySwiperMain .slide-box img, .gallerySwiperMain .slide-box video, .gallerySwiperMain .slide-box svg {
    object-fit: contain;
  }
}

#gallerySwiperMain {
    max-height: calc(100vh - 221px);
    align-items: center;
}

.gallerySwiperThumbnail {
  padding-top: 20px;
}
.gallerySwiperThumbnail .swiper-slide .slide-box {
  width: 100%;
  max-width: 110px;
  height: 101px;
  overflow: hidden;
}
@media (max-width: 575px) {
  .gallerySwiperThumbnail .swiper-slide .slide-box {
    height: 80px;
  }
}
.gallerySwiperThumbnail .swiper-slide .slide-box img, .gallerySwiperThumbnail .swiper-slide .slide-box video, .gallerySwiperThumbnail .swiper-slide .slide-box svg {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.slide-box:has(video) {
  position: relative;
}
.slide-box:has(video):before {
  content: "";
  height: 48px;
  width: 48px;
  background-image: url(../../../images/video-play.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #000;
}

.info-block {
  background-color: #111111;
  border-left: 1px solid #333333;
  border-radius: 0 3px 3px 0;
  height: 100%;
  padding: 17px 55px 20px 46px;
  font-family: "Lato", sans-serif;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1535px) {
  .info-block {
    padding: 17px 20px 20px 20px;
  }
}
@media (max-width: 991px) {
  .info-block {
    padding: 17px 55px 20px 46px;
    border-left: none;
    border-top: 1px solid #333333;
  }
}
@media (max-width: 575px) {
  .info-block {
    padding: 23px 25px 20px 25px;
    border-left: none;
    border-top: 1px solid #333333;
  }
}

.user-info-box {
  display: flex;
  gap: 18px;
  margin-bottom: 20px;
}
.user-info-box .avatar {
  height: 71px;
  width: 71px;
  min-width: 71px;
  overflow: hidden;
  border-radius: 50%;
}
    /*.user-info-box .avatar img {
        height: 120%;
        width: 120%;
        object-fit: cover;
        position: relative;
        top: -20%;*/
        /*left: 40%;*/
    /*}*/
.user-info-box .user-info {
  display: flex;
  flex-direction: column;
}
.user-info-box .user-info p {
  margin-bottom: 0;
}
.user-info-box .user-info .name {
  font-size: 15px;
  line-height: 1;
  font-weight: bold;
  color: #fff;
  margin-bottom: 5px;
}
.user-info-box .user-info .time {
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 10px;
  color: #fff;
}
.user-info-box .user-info .code {
  display: flex;
  align-items: center;
  font-size: 15px;
  line-height: 1;
  font-weight: bold;
  gap: 6px;
  margin-bottom: 10px;
}
.user-info-box .user-info .date {
  font-size: 13px;
  line-height: 1;
  font-weight: bold;
  color: #848484;
}

.user-desc-box {
  padding-left: 10px;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .user-desc-box {
    padding-left: 0;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    margin-bottom: 25px;
  }
}
.user-desc-box .desc {
  font-size: 14px;
/*  font-weight: bold;*/
  color: #fff;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .user-desc-box .desc {
    margin-bottom: 8px;
  }
}
.user-desc-box .album-info {
  font-size: 20px;
  line-height: 1;
  font-weight: bold;
  color: #fff;
}
@media (max-width: 991px) {
  .user-desc-box .album-info {
    margin-bottom: 0;
  }
}

.like-comment-info {
  display: flex;
  align-items: center;
}

/*.like-comment-box,
.favorite-button,
.view-count-box {
    display: flex;
    align-items: center;*/ /* Wyrównuje zawartość do środka */
    /*gap: 5px;*/ /* Dodaje odstęp między ikoną a liczbą */
/*}*/

.like-comment-box {
  display: inline-flex;
  align-items: center;
 /* font-size: 15px;*/
  line-height: normal;
  font-weight: 500;
  color: #fff;
  margin-right: 12px;
}
@media (max-width: 991px) {
  .like-comment-box {
 /*   font-size: 12px;*/
  }
}

.text-red {
  color: #ff0000;
}

.user-chat-lsting-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 760px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 4px;
}



@media (max-width: 991px) {
    .user-chat-lsting-block {
        height: auto !important;
        max-height: none !important;
        overflow-y: visible !important;
    }

    /* ✅ Nowe – scroll działa dla całego body */
    #modalBodyWrapper {
        max-height: 100vh;
        overflow-y: auto;
    }

    .user-chat-lsting-block {
        padding-bottom: 100px; /* wysokość inputa na dole + zapas */
    }

}
.user-chat-lsting-block::-webkit-scrollbar {
  width: 4px;
}
.user-chat-lsting-block::-webkit-scrollbar-track {
  background-color: transparent;
}
.user-chat-lsting-block::-webkit-scrollbar-thumb {
  background-color: #222222;
  border-radius: 50rem;
}
.user-chat-lsting-block + .msg-input-wrapper:before {
  display: none;
}
@media (max-width: 991px) {
  .user-chat-lsting-block {
    gap: 20px;
  }
}
.user-chat-lsting-block .chat-list-box {
  display: flex;
  gap: 18px;
}
.user-chat-lsting-block .chat-list-box .avatar {
  height: 41px;
  width: 41px;
  min-width: 41px;
  border-radius: 50%;
}
.user-chat-lsting-block .chat-list-box .avatar img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}
    .user-chat-lsting-block .chat-list-box .chat-info-box {
        margin-top: 15px;
        padding: 5px 20px 20px 20px;
        border-radius: 11px;
        background-color: #1a1a1a;
        flex: 1;
    }
@media (max-width: 991px) {
  .user-chat-lsting-block .chat-list-box .chat-info-box {
    margin-top: 0;
  }
}
.user-chat-lsting-block .chat-list-box .chat-info-box .name {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 17px;
    line-height: 1;
    font-weight: bold;
    color: #fff;
    margin-bottom: 4px;
    justify-content: space-between;
}
@media (max-width: 991px) {
  .user-chat-lsting-block .chat-list-box .chat-info-box .name {
    font-size: 15px;
  }
}
.user-chat-lsting-block .chat-list-box .chat-info-box .time {
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 10px;
  color: #fff;
}
.user-chat-lsting-block .chat-list-box .chat-info-box .chat-txt {
    font-size: 15px;
    line-height: 22px;
    font-weight: 400;
    margin-bottom: 15px;
    word-wrap: break-word;
    white-space: normal;
    max-width: calc(100% - 60px);
}
@media (max-width: 991px) {
  .user-chat-lsting-block .chat-list-box .chat-info-box .chat-txt {
    font-size: 13px;
    line-height: 16px;
  }
}
.user-chat-lsting-block .chat-list-box .chat-info-box .chat-bottom-info {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
}
@media (max-width: 991px) {
  .user-chat-lsting-block .chat-list-box .chat-info-box .chat-bottom-info {
    align-items: flex-end;
  }
}
.user-chat-lsting-block .chat-list-box .chat-info-box .chat-bottom-info .date {
  font-size: 10px; /*13px;*/
  line-height: 1;
  font-weight: bold;
  color: #848484;
  margin-left: auto;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .user-chat-lsting-block .chat-list-box .chat-info-box .chat-bottom-info .date {
    font-size: 10px;
  }
}

.feature-card {
  padding: 75px 25px;
  background: #222222;
  border: 2px solid #333333;
  height: 100%;
  margin-bottom: 0;
  position: relative;
}
@media screen and (max-width: 575px) {
  .feature-card {
    padding: 60px 20px;
    padding-bottom: 30px;
  }
}
.feature-card.active {
  border: 2px solid #ff0000;
}
.feature-card .crown {
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
}
.feature-card .crown.small {
  top: 24px;
}
.feature-card .title {
  text-align: center;
  font-size: 29px;
  font-weight: 600;
  margin: 0;
}
.feature-card .title .primary {
  color: #ff0000;
}
@media screen and (max-width: 575px) {
  .feature-card .title {
    font-size: 24px;
  }
}
.feature-card .desc {
  text-align: center;
  font-size: 18px;
  margin-bottom: 60px;
}
.feature-card .desc .primary {
  display: block;
  font-weight: 600;
  color: #ff0000;
}
@media screen and (max-width: 575px) {
  .feature-card .desc {
    margin-bottom: 30px;
  }
}

.feature-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.feature-list li {
  margin-bottom: 45px;
  font-size: 18px;
  padding-left: 40px;
  position: relative;
}
.feature-list li:last-child {
  margin-bottom: 0;
}
.feature-list li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: url("../images/check.webp");
}
@media screen and (max-width: 1699px) {
  .feature-list li {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 575px) {
  .feature-list li {
    font-size: 14px;
    padding-left: 30px;
  }
  .feature-list li::after {
    width: 14px;
    height: 14px;
    background-size: cover;
  }
}

.period-box {
  background: #fff;
  border-radius: 12px;
  margin-top: 30px;
  overflow: hidden;
}
.period-box .period-tab {
  background: #ff0000;
  border-radius: 12px;
  display: flex;
  flex-wrap: nowrap;
}
.period-box .period-tab .nav-item {
  flex-grow: 1;
}
.period-box .period-tab .nav-link {
  color: white;
  font-size: 18px;
  font-weight: 700;
  border-radius: 0;
  width: 100%;
  padding: 8px;
}
.period-box .period-tab .nav-link.active {
  background: white;
  color: #111111;
}
@media screen and (max-width: 1699px) {
  .period-box .period-tab .nav-link {
    font-size: 16px;
  }
}
@media screen and (max-width: 575px) {
  .period-box .period-tab .nav-link {
    font-size: 14px;
  }
}

.plan-list {
  padding: 0;
  margin: 0;
  list-style: none;
  padding: 10px 6px;
}
.plan-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  padding-right: 40px;
  border-radius: 16px;
  border: 1px solid #e2e2e2;
  margin-bottom: 6px;
  gap: 20px;
}
.plan-list li p {
  margin-bottom: 0;
  color: #111111;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 1699px) {
  .plan-list li {
    padding-right: 15px;
  }
  .plan-list li p {
    font-size: 16px;
  }
}
@media screen and (max-width: 575px) {
  .plan-list li p {
    font-size: 14px;
  }
}

.payment-desc {
  margin-top: 55px;
  margin-bottom: 50px;
  padding-left: 20px;
}
.payment-desc p {
  margin-bottom: 20px;
}
.payment-desc p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 575px) {
  .payment-desc p {
    font-size: 14px;
  }
}
@media screen and (max-width: 575px) {
  .payment-desc {
    margin-top: 0;
    padding-left: 0;
    margin-bottom: 30px;
  }
}

.features-row {
  row-gap: 24px;
}

.online {
  color: #019a1d;
}

body.chat-page .category-list {
  margin-bottom: 27px;
}
@media (max-width: 991px) {
  body.chat-page .mobile-top-space {
    display: none;
  }
}

.chat-main-wrapper {
  border-top: 1px solid #222222;
}
@media (min-width: 992px) {
  .chat-main-wrapper .col-lg-2 {
    width: 100%;
    max-width: 318px;
  }
}
@media (min-width: 992px) {
  .chat-main-wrapper .col-lg-8 {
    width: 100%;
    max-width: calc(100% - 636px);
  }
}

.chat-left-sidebar-block {
  height: 100%;
  padding: 20px 5px 40px;
  border-right: 1px solid #222222;
}
@media (max-width: 991px) {
  .chat-left-sidebar-block {
    border-right: none;
    border-bottom: 1px solid #222222;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 20px;
    row-gap: 15px;
    padding: 20px 16px 10px;
  }
}
.chat-left-sidebar-block .heading {
  font-size: 29px;
  font-weight: bold;
  color: #fff;
  padding-left: 10px;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .chat-left-sidebar-block .heading {
    padding-left: 0;
    margin-bottom: 0;
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .chat-left-sidebar-block .heading {
    padding-left: 0;
    margin-bottom: 0;
    font-size: 17px;
  }
}

.chat-search-bar {
  position: relative;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .chat-search-bar {
    margin-bottom: 0;
    width: calc(100% - 84px);
  }
}
@media (max-width: 767px) {
  .chat-search-bar {
    width: calc(100% - 70px);
  }
}
.chat-search-bar .form-control {
  padding-left: 46px;
  background: #222222;
  border-color: #333333;
  border-radius: 30px;
  height: 37px;
  font-size: 14px;
  width: 100%;
  max-width: 100%;
}
.chat-search-bar .form-control::placeholder {
  color: #cccccc;
}
.chat-search-bar button {
  border: none;
  background: transparent;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  position: absolute;
  padding-left: 14px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.chat-sidebar-listing-block {
  font-family: "Lato", sans-serif;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  width: 100%;
}
@media (max-width: 991px) {
  .chat-sidebar-listing-block {
    max-height: 154px;
  }
}
.chat-sidebar-listing-block::-webkit-scrollbar {
  width: 4px;
}
.chat-sidebar-listing-block::-webkit-scrollbar-track {
  background-color: transparent;
}
.chat-sidebar-listing-block::-webkit-scrollbar-thumb {
  background-color: #222222;
  border-radius: 50rem;
}
.chat-sidebar-listing-block .chat-list-box {
  padding: 10px 8px;
  border-radius: 11px;
  background-color: transparent;
  gap: 9px;
  align-items: center;
  cursor: pointer;
}
.chat-sidebar-listing-block .chat-list-box.active, .chat-sidebar-listing-block .chat-list-box:hover {
  background-color: rgba(34, 34, 34, 0.5);
}
.chat-sidebar-listing-block .chat-list-box .avatar {
  position: relative;
}
.chat-sidebar-listing-block .chat-list-box .avatar .user-status {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #ff0000;
  position: absolute;
  bottom: 3px;
  right: 3px;
}
.chat-sidebar-listing-block .chat-list-box .avatar .user-status.online {
  background-color: #019a1d;
}
.chat-sidebar-listing-block .chat-list-box .chat-info-box {
  margin-top: 0;
  padding: 0;
  border-radius: 0;
  width: 100%;
  background-color: transparent;
}
.chat-sidebar-listing-block .chat-list-box .chat-info-box .name {
  margin-bottom: 2px;
}
.chat-sidebar-listing-block .chat-list-box .chat-info-box .chat-txt {
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 80%;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 992px) {
  .chat-sidebar-listing-block .chat-list-box .chat-info-box .chat-txt {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
.chat-sidebar-listing-block .chat-list-box .chat-info-box .time {
  margin-bottom: 0;
  position: absolute;
  top: 5px;
  right: 0;
}

.userprofile-right-sidebar-block {
  padding: 18px 22px 40px;
  border-left: 1px solid #222222;
  font-family: "Lato";
  height: 100%;
}
@media (max-width: 991px) {
  .userprofile-right-sidebar-block {
    border-left: none;
    border-bottom: 1px solid #222222;
    padding: 15px 16px 20px;
  }
}
.userprofile-right-sidebar-block .user-info-box {
  gap: 14px;
}
@media (max-width: 991px) {
  .userprofile-right-sidebar-block .user-info-box {
    margin-bottom: 0;
  }
}
.userprofile-right-sidebar-block .user-info-box .avatar {
  height: 100px;
  width: 100px;
  min-width: 100px;
  border-radius: 50%;
}
.userprofile-right-sidebar-block .user-info-box .user-info {
  align-items: center;
}
.userprofile-right-sidebar-block .user-info-box .user-info .code {
  justify-content: center;
}
.userprofile-right-sidebar-block .search-result {
  margin-top: 5px;
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
}
@media (max-width: 991px) {
  .userprofile-right-sidebar-block .search-result {
    border-radius: 15px;
    background-color: #212121;
    height: 31px;
    padding: 3px 22px;
  }
}

.profile-search-bar {
  position: relative;
  width: 100%;
  transition: 0.3s all ease-in-out;
}
@media (max-width: 991px) {
  .profile-search-bar {
    display: none;
  }
}
.profile-search-bar:has(.form-control:not(:focus)) {
  width: 42px;
}
.profile-search-bar:has(.form-control:not(:focus)) .form-control {
  padding-left: 21px;
  cursor: pointer;
}
.profile-search-bar .form-control {
  padding-left: 46px;
  background: #222222;
  border-color: #333333;
  border-radius: 30px;
  height: 42px;
  font-size: 14px;
  width: 100%;
  max-width: 100%;
  transition: 0.3s all ease-in-out;
}
.profile-search-bar .form-control::placeholder {
  color: #cccccc;
}
.profile-search-bar button {
  border: none;
  background: transparent;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  position: absolute;
  padding-left: 12px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.profile-grid-block {
  row-gap: 12px;
  column-gap: 9px;
  max-height: calc(100vh - 247px);
  overflow-y: auto;
}
.profile-grid-block::-webkit-scrollbar {
  width: 4px;
}
.profile-grid-block::-webkit-scrollbar-track {
  background-color: transparent;
}
.profile-grid-block::-webkit-scrollbar-thumb {
  background-color: #222222;
}
.profile-grid-block .grid-item {
  border-radius: 5px;
  max-height: 164px;
}
.profile-grid-block .grid-item img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}

.profile-chatting-block {
  font-family: "Lato";
  height: 100%;
  display: flex;
  flex-direction: column;
}

.profile-header {
  padding: 15px 20px;
  background-color: rgba(26, 26, 26, 0.54);
  border-bottom: 1px solid #222222;
}
@media (max-width: 991px) {
  .profile-header {
    display: none;
  }
}
.profile-header .user-info-box {
  gap: 14px;
}
.profile-header .user-info-box .avatar {
  height: 51px;
  width: 51px;
  min-width: 51px;
  border-radius: 50%;
}

.conversation-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 21px 17px 34px 30px;
  height: calc(100vh - 90px);
  overflow-y: auto;
}
@media (max-width: 991px) {
  .conversation-list {
    padding: 20px 16px 15px 16px;
    height: calc(100vh - 480px);
    margin-bottom: 10px;
    margin-top: 10px;
  }
}
.conversation-list::-webkit-scrollbar {
  width: 4px;
}
.conversation-list::-webkit-scrollbar-track {
  background-color: transparent;
}
.conversation-list::-webkit-scrollbar-thumb {
  background-color: #222222;
}
.conversation-list .conversation-item {
  display: flex;
  gap: 12px;
}
@media (max-width: 991px) {
  .conversation-list .conversation-item {
    gap: 10px;
  }
}
.conversation-list .conversation-item.reverse {
  flex-direction: row-reverse;
}
.conversation-list .conversation-item.reverse .conversation-info .txt {
  background-color: #ff0000;
}
.conversation-list .conversation-item .avatar {
  width: 34px;
  min-width: 34px;
  height: 34px;
  border-radius: 50%;
}
.conversation-list .conversation-item .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.conversation-list .conversation-item .conversation-info .txt {
  padding: 16px 17px 16px 20px;
  border-radius: 11px;
  background-color: #1a1a1a;
  max-width: 421px;
  width: 100%;
  font-size: 15px;
  line-height: 25px;
  color: #ffffff;
  font-weight: 400;
  font-family: "Lato";
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .conversation-list .conversation-item .conversation-info .txt {
    max-width: 226px;
    padding: 16px 10px 16px 16px;
  }
}
.conversation-list .conversation-item .conversation-info img {
  width: 100%;
  max-width: 221px;
  border-radius: 10px;
  cursor: pointer;
}

.chat-image-modal .modal-dialog {
  padding: 0 30px;
}
@media (min-width: 576px) {
  .chat-image-modal .modal-dialog {
    max-width: max-content;
 /*   margin: 1.75rem auto;
    padding: 0 2rem;*/
  }
}
.chat-image-modal .modal-content {
  border-radius: 0;
  background-color: transparent;
  border: none;
}
.chat-image-modal .modal-content .btn-close {
  filter: brightness(0) invert(1);
  position: absolute;
  top: -10px;
  right: -37px;
  opacity: 1;
  z-index: 9;
}
@media (max-width: 1700px) {
  .chat-image-modal .modal-content .btn-close {
    top: -20px;
    right: -30px;
  }
}
.chat-image-modal .modal-body {
  padding: 0;
  text-align: center;
}
.chat-image-modal .modal-body img {
  border-radius: 5px;
  max-height: calc(100vh - 60px);
}

.msg-input-wrapper {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  gap: 13px;
  margin-top: auto;
  position: relative;
}
@media (min-width: 992px) {
  .msg-input-wrapper {
    padding: 15px 16px 22px 16px;
  }
}
.msg-input-wrapper:before {
  content: "";
  height: 1px;
  width: calc(100% - 32px);
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background-color: #222222;
}
@media (min-width: 992px) {
  .msg-input-wrapper:before {
    display: none;
  }
}
.msg-input-wrapper .upload-option-box {
  display: flex;
  gap: 11px;
  align-items: center;
}
@media (max-width: 991px) {
  .msg-input-wrapper .upload-option-box {
    gap: 9px;
  }
}
.msg-input-wrapper .upload-option-box button {
  background-color: transparent;
  border: none;
  box-shadow: none;
  outline: none;
  padding: 0;
  margin: 0;
}
.msg-input-wrapper .upload-option-box .addFile, .msg-input-wrapper .upload-option-box .fileIcon, .msg-input-wrapper .upload-option-box .tagIcon, .msg-input-wrapper .upload-option-box .gifIcon {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.msg-input-wrapper .upload-option-box .addFile label, .msg-input-wrapper .upload-option-box .fileIcon label, .msg-input-wrapper .upload-option-box .tagIcon label, .msg-input-wrapper .upload-option-box .gifIcon label {
  margin: 0;
  cursor: pointer;
}
.msg-input-wrapper .upload-option-box .addFile label img, .msg-input-wrapper .upload-option-box .fileIcon label img, .msg-input-wrapper .upload-option-box .tagIcon label img, .msg-input-wrapper .upload-option-box .gifIcon label img {
  cursor: pointer;
}
.msg-input-wrapper .upload-option-box .addFile input, .msg-input-wrapper .upload-option-box .fileIcon input, .msg-input-wrapper .upload-option-box .tagIcon input, .msg-input-wrapper .upload-option-box .gifIcon input {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  min-width: 100%;
  min-height: 100%;
  text-align: right;
  opacity: 0;
  background: none;
  display: block;
  position: absolute;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
.msg-input-wrapper .type-box {
  position: relative;
  width: 100%;
  max-width: 1042px;
}
.msg-input-wrapper .type-box .form-control {
  padding-left: 46px;
  padding-right: 46px;
  background: #222222;
  border-color: #333333;
  border-radius: 50rem;
  height: 40px;
  font-size: 14px;
  width: 100%;
  max-width: 1042px;
  transition: 0.3s all ease-in-out;
}
@media (max-width: 991px) {
  .msg-input-wrapper .type-box .form-control {
    height: 34px;
  }
}
.msg-input-wrapper .type-box .form-control::placeholder {
  color: #cccccc;
}
.msg-input-wrapper .type-box img {
  position: absolute;
  top: 7px;
  right: 60px;
}
@media (max-width: 991px) {
  .msg-input-wrapper .type-box img {
    width: 18px;
    height: 18px;
  }
}
.msg-input-wrapper .type-box .font-style-option {
  position: absolute;
  top: 50%;
  left: 17px;
  font-size: 15px;
  line-height: 1;
  color: #ffffff;
  font-weight: 400;
  font-family: "Lato";
  transform: translateY(-50%);
}

.register-card {
  padding: 70px 70px 115px;
}
@media screen and (max-width: 575px) {
  .register-card {
    padding: 30px;
  }
}

.form-wrapper .form-control {
  background: #222222;
  border-color: #333333;
  border-radius: 50px;
  color: white;
  padding-left: 60px;
  padding-right: 70px;
  height: 52px;
}
.form-wrapper .form-control::placeholder {
  color: white;
}
@media screen and (max-width: 575px) {
  .form-wrapper .form-control {
    padding-right: 55px;
  }
}
.form-wrapper .input-wrapper {
  position: relative;
  margin-bottom: 30px;
  margin-top: 50px;
}
/*.form-wrapper .input-wrapper .icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}*/
.form-wrapper .input-wrapper .pass-btn {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 575px) {
  .form-wrapper .input-wrapper .pass-btn {
    max-width: 35px;
  }
}

.pass-btn {
  background: transparent;
  border: 0;
  outline: none;
}

.register-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    padding-top: 40px
}

    .register-check label {
        margin-bottom: 0;
        font-size: 14px
    }

    .register-check .custom-checkbox {
        width: 45px;
        height: 45px;
        min-width: 45px
    }

        .register-check .custom-checkbox .check:before {
            width: 45px;
            height: 45px;
            min-width: 45px;
            border-color: #333333;
            border-radius: 12px
        }

        .register-check .custom-checkbox input:checked + .check:before {
            background: transparent;
            border-color: #333333
        }

        .register-check .custom-checkbox input:checked + .check:after {
            border-color: #ff0000;
            height: 22px;
            left: 18px;
            width: 11px;
            top: 10px;
            border-width: 0 3px 3px 0
        }

@media screen and (max-width: 575px) {
    .register-check .custom-checkbox {
        width: 30px;
        height: 30px;
        min-width: 30px
    }

        .register-check .custom-checkbox .check:before {
            width: 30px;
            height: 30px;
            min-width: 30px;
            border-radius: 6px
        }

        .register-check .custom-checkbox input:checked + .check:after {
            height: 15px;
            left: 12px;
            width: 8px;
            top: 6px;
            border-width: 0 2px 2px 0
        }
}

.register-note {
    margin-top: 32px;
    font-size: 14px;
    line-height: normal
}

.profile-card {
    padding: 16px;
    margin: 20px 0;
}


/*.profile-card {
  padding: 16px;
  margin-bottom: 20px;
  margin-top: 20px;
}*/

.profile-info-box {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  padding: 20px 55px;
}
@media screen and (max-width: 767px) {
  .profile-info-box {
    padding: 30px;
  }
}
.profile-info-box .profile-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 0;
}
.profile-info-box .profile-bg img {
  width: 100%;
  height: 100%;
 /* object-fit: cover;*/
  object-position: center;
  /*filter: blur(40px);*/
}
.profile-info-box .profile-info {
  position: relative;
  z-index: 1;
}
    .profile-info-box .profile-info .profile-img {
        width: 320px;
        min-width: 320px;
        height: 320px;
 /*       border-radius: 50%;*/
        display: flex;
        align-items: center;
        justify-content: center;
      /*  overflow: hidden;*/
        position: relative;
    }
@media screen and (max-width: 991px) {
  .profile-info-box .profile-info .profile-img {
    width: 250px;
    min-width: 250px;
    height: 250px;
  }
}
@media screen and (max-width: 575px) {
  .profile-info-box .profile-info .profile-img {
    width: 150px;
    min-width: 150px;
    height: 150px;
  }
}
.profile-info-box .profile-info .profile-img img {
    /*  width: 100%;
  height: 100%;
  object-fit: cover;*/
    transition: all ease 0.4s;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: grab;
     border-radius: 50%; 
    max-width: none !important;
    margin-top: 50px;
}
.profile-info-box .profile-info .profile-img:hover img {
  transform: scale(1.1);
}
.profile-info-box .profile-info .status {
  position: absolute;
  left: 0;
  top: 0;
  padding-left: 15px;
  text-transform: uppercase;
  font-size: 15px;
  color: #ff0000;
  font-weight: 600;
  margin-bottom: 0;
}
.profile-info-box .profile-info .status:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: #ff0000;
}
@media screen and (max-width: 575px) {
  .profile-info-box .profile-info .btn {
    font-size: 13px;
  }
}
.profile-info-box .profile-info .profile-name {
  background: rgba(0, 0, 0, 0.75);
  padding: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  border-radius: 12px;
}
@media screen and (max-width: 767px) {
  .profile-info-box .profile-info .profile-name {
    display: flex;
    justify-content: center;
  }
}
.profile-info-box .profile-info .profile-name p {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
}
@media screen and (max-width: 575px) {
  .profile-info-box .profile-info .profile-name p {
    font-size: 13px;
  }
}
.profile-info-box .profile-info .profile-name .verify {
  font-size: 15px;
  text-transform: uppercase;
  color: #ff0000;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 575px) {
  .profile-info-box .profile-info .profile-name .verify {
    font-size: 13px;
  }
}
.profile-info-box .profile-info .profile-name .verify img {
  display: block;
  width: 12px;
}
.profile-info-box .profile-img-wrapper {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .profile-info-box .profile-img-wrapper {
    flex-direction: column;
    align-items: center;
  }
}
.profile-info-box .profile-img-wrapper .friends-box .title {
  margin-bottom: 10px;
  font-weight: 600;
}
.profile-info-box .profile-img-wrapper .friends-box .friends-list {
  display: flex;
}
.profile-info-box .profile-img-wrapper .friends-box .friends-list .icon {
  margin-left: -15px;
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 575px) {
  .profile-info-box .profile-img-wrapper .friends-box .friends-list .icon {
    width: 35px;
    height: 35px;
    min-width: 35px;
  }
}
.profile-info-box .profile-img-wrapper .friends-box .friends-list .icon:first-child {
  margin-left: 0;
}
.profile-info-box .profile-img-wrapper .friends-box .friends-list .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-info-box .video-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .profile-info-box .video-btn {
    bottom: auto;
    top: 0;
  }
}
.profile-info-box .video-btn input {
  position: absolute;
  opacity: 0;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.profile-tab {
  margin-bottom: 22px;
}

.profile-tab-btn-wrapper {
  padding-bottom: 6px;
  display: flex;
  gap: 5px;
}
.profile-tab-btn-wrapper .btn .icon img {
  max-width: 20px;
}

.info-card {
/*  padding: 50px 55px;*/
  margin-bottom: 27px;
}
@media screen and (max-width: 767px) {
  .info-card {
    margin-bottom: 10px;
    padding: 10px;
  }
}
.info-card .info-para {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  font-size: 19px;
  font-weight: 600;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .info-card .info-para {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.info-card .name-wrapper {
  display: flex;
  gap: 8px;
}
.info-card .name-wrapper .item {
  display: flex;
  gap: 8px;
  align-items: center;
}
.info-card .name-wrapper .item p {
  font-size: 13px;
  margin-bottom: 0;
}
.info-card .profile-desc {
  padding-top: 55px;
  padding-bottom: 40px;
  margin-bottom: 0;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .info-card .profile-desc {
    font-size: 16px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.info-card .data-box {
  padding-bottom: 20px;
}
.info-card .data-box:last-child {
  padding-bottom: 0;
}
.info-card .data-box .title {
  font-family: "Lato", sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .info-card .data-box .title {
    font-size: 18px;
  }
}
.info-card .data-box .desc {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .info-card .data-box .desc {
    font-size: 16px;
  }
}

.photos-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 45px;
  gap: 10px;
}
@media screen and (max-width: 575px) {
  .photos-header {
    margin-bottom: 30px;
  }
}
.photos-header p {
  margin-bottom: 0;
}
.photos-header .title {
  font-size: 18px;
  font-weight: 600;
}
@media screen and (max-width: 575px) {
  .photos-header .title {
    font-size: 16px;
  }
}
.photos-header a {
  color: white;
  font-size: 18px;
}
@media screen and (max-width: 575px) {
  .photos-header a {
    font-size: 13px;
  }
}

.photos-card {
  padding: 25px 55px 112px;
}

   

@media screen and (max-width: 767px) {
  .photos-card {
    padding: 30px;
  }
}

.photos-row {
  row-gap: 24px;
}
.photos-row .photo-box {
  border-radius: 12px;
  overflow: hidden;
  max-height: 320px;
}
.photos-row .photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-live-card {
  background: #222222;
  border-color: #333333;
}

.hot-form.profile {
  padding: 0;
  padding-bottom: 20px;
  border-bottom: 1px solid #333333;
}
@media screen and (max-width: 767px) {
  .hot-form.profile {
    flex-direction: row;
  }
}
.hot-form.profile .hotline-input-wrapper input {
  border-radius: 50px;
}

.uploads-wrapper {
  display: flex;
  gap: 45px;
}
@media screen and (max-width: 767px) {
  .uploads-wrapper {
    gap: 30px;
  }
}
@media screen and (max-width: 575px) {
  .uploads-wrapper {
    flex-direction: column;
    gap: 0;
  }
}

.live-wrapper {
  position: relative;
  padding: 15px 0 10px;
}
.live-wrapper input {
  opacity: 0;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.live-wrapper .upload-box {
  padding-left: 30px;
  position: relative;
}
.live-wrapper .upload-box .live-txt {
  position: absolute;
  padding: 2px 5px;
  border-radius: 6px;
  background-color: #ff0000;
  color: white;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  left: 0px;
  bottom: -5px;
}
.live-wrapper .upload-box .upload-btn {
  display: flex;
  align-items: center;
  gap: 15px;
}

.post-card {
  margin-bottom: 40px;
}

.post-profile {
  align-items: center;
  border-bottom: 0;
  padding-bottom: 20px;
}
    .post-profile .avatar-wrapper {
        position: relative;
        display: inline-block;
    }
.post-profile .avatar-wrapper .status:before {
  left: auto;
  right: 2px;
  top: auto;
  transform: none;
  bottom: 5px;
}
.post-profile .profile-info {
  font-family: "Lato", sans-serif;
}
.post-profile .profile-info .name {
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .post-profile .profile-info .name {
    font-size: 16px;
  }
}
.post-profile .profile-info .time {
  font-size: 15px;
  font-weight: 300;
}

.post-img {
  overflow: hidden;
  /*max-height: 700px;*/ /*bylo 500*/
/*  border-radius: 12px;*/
}
.post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
/*  filter: blur(40px);*/
}

.post-like-comment {
  display: flex;
  gap: 8px;
  padding-top: 20px;
}
.post-like-comment .item {
  display: flex;
  gap: 8px;
  align-items: center;
}
.post-like-comment .item p {
  font-size: 15px;
  margin-bottom: 0;
}

.accr-button, .accordion-item {
  border: 0;
  background: transparent;
  width: 100%;
}

.accordion-body {
  padding: 0;
}


@media screen and (max-width: 991px) {
 .content-wrapper,  .col-md-8, .content-card {
        display: block;
        visibility: visible !important;
        opacity: 1 !important;
        margin-top: 20px;
    }
}

.tab-buttons {
    display: flex;
    justify-content: space-between;
    margin: 0;
    width: 100%;
    position: relative;
    top: -14px;
}

    .tab-buttons button {
        flex-grow: 1;
        padding: 15px 10px;
        border: 1px solid #222222;
        background-color: #111111;
        color: white;
        cursor: pointer;
        transition: background-color 0.3s ease;
        font-size: 13px;
        text-align: center;
        box-sizing: border-box;
        margin-left: 0;
        margin-right: 0;
        border-top: none;
    }

        .tab-buttons button:not(:first-child) {
            margin-left: 1px;
            margin-left: -25px;
            min-width: 200px;
        }

        .tab-buttons button:not(:last-child) {
            margin-right: 15px;
            margin-left: -50px;
            min-width: 235px;
        }

        .tab-buttons button.active,
        .tab-buttons button:hover {
            background-color: #FE0000;
        }

/*.form-control {
    color: black;
}*/

.control-label {
    color: black;
}

.photo-item {
    position: relative;
    display: inline-block;
    margin: 10px;
}

.photo-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
/*    background-color: rgba(0, 0, 0, 0.7);*/
    color: white;
    text-align: center;
    padding: 0px;
    box-sizing: border-box;
    font-size: 11px;
}



.container-fluid {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 320px) and (max-width: 480px) {
    .container-fluid {
        max-width: 100%;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .container-fluid {
        max-width: 100%;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .container-fluid {
        max-width: 1700px;
    }
}

@media (min-width: 1025px) and (max-width: 1200px) {
    .container-fluid {
        max-width: 1700px;
    }
}

@media (min-width: 1201px) {
    .container-fluid {
        max-width: 1700px;
    }
}

.crown-img {
    position: absolute;
    top: 10px; 
    left: 10%;
    transform: translateX(-50%);
    z-index: 1;
}

@media (max-width: 1200px) {
    .crown-img {
        top: 12px; 
        left: 12%;
    }

   
}

@media (max-width: 900px) {
    .crown-img {
        top: 14px; 
        left: 14%;
    }

  
}

@media (max-width: 600px) {
    .crown-img {
        top: 16px; 
        left: 16%;
    }

    
}

@media (max-width: 400px) {
    .crown-img {
        top: 18px; 
        left: 18%;
    }

    
}

.responsive-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px; 
    row-gap: 60px; 
}

@media (max-width: 1200px) {
    .responsive-grid {
        grid-template-columns: repeat(4, 1fr);
    }

        .responsive-grid .itemS {
            margin-top: 15px;
        }
}

@media (max-width: 900px) {
    .responsive-grid {
        grid-template-columns: repeat(3, 1fr);
    }

        .responsive-grid .itemS {
            margin-top: 20px;
        }
}

@media (max-width: 600px) {
    .responsive-grid {
        grid-template-columns: repeat(2, 1fr);
    }

        .responsive-grid .itemS {
            margin-top: 25px;
        }
}

@media (max-width: 400px) {
    .responsive-grid {
        grid-template-columns: 1fr;
    }

        .responsive-grid .itemS {
            margin-top: 30px;
        }
}

.activity-description {
    display: block;
    margin-top: 10px; 
    font-size: 11px;
    color: white;
    /*margin-left: -50px;*/
}

.activity-description {
    display: inline-block; 
    max-width: 160px; 
    word-wrap: break-word; 
    overflow-wrap: break-word; 
    white-space: normal;
    line-height: 1.6; 
}

@media screen and (max-width: 1600px) {
    .activity-description {
        max-width: 150px;
        font-size: 10px;
    }

    .accept-button {
        margin-top: 35px;
        font-size: 8px;
    }

    .icon-circle img {
        width: 45px;
        height: 45px;
    }

    .live-item {
        margin-top: 20px;
    }

    .user-nick-link {
        margin-bottom: 10px;
    }
}


        @media screen and (max-width: 1200px) {
            .activity-description {
                max-width: 150px;
                font-size: 10px;
            }

            .accept-button {
                margin-top: 35px;
                font-size: 8px;
            }

            .icon-circle img {
                width: 45px;
                height: 45px;
            }

            .live-item {
                margin-top: 20px;
            }

            .user-nick-link {
                margin-bottom: 10px;
            }
        }

        .icon-circle img {
    width: 65px;
    height: 65px;
/*    border-radius: 50%;*/
    object-fit: cover;
}
.icon-rectangle img {
    width: 65px;
    height: 65px;
    object-fit: cover;
    display: block;
    margin-left: auto;
    margin-right: 0;
    margin-top: -70px; 
}

.live-list2 .icon-rectangle img {
    margin-right: 10px;

}
/* Fonts settings */
/* Colors */
/* font colors */
/* border colors */
/* transition */
/* important */
* {
  box-sizing: border-box;
}

body {
    font-size: 16px;
    color: white;
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: normal;
    background: #111111;
    overflow-x: hidden;
}

/*canvas#aestheticCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    display: block;
    pointer-events: none;
}
*/

@media screen and (max-width: 1199px) {
  body.overflow_body, body.overly-menu {
    overflow: hidden;
  }
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }
}

a, .btn-sub, button {
  transition: all ease 0.4s;
  outline: 0;
  text-decoration: none;
}

a {
  color: #ff0000;
}
a:hover, a:active, a:focus {
  text-decoration: none;
  outline: none;
}
a img {
  border: 0px;
}
a:hover {
  color: #ff0000;
}
/*zmiana z 100%*/
img {
  max-width: 100%;
}


@media screen and (min-width: 1400px) {
    .container {
    max-width: 1345px;
  }
}

.g-2, .gx-2 {
  --bs-gutter-x:0.6rem;
}

.g-2, .gy-2 {
  --bs-gutter-y:0.6rem;
}

/*general style*/
p {
    color: #ffffff;
    font-size: 16px;
    line-height: 28px;
    margin: 0 0 20px;
    font-weight: 400;
    overflow-wrap: break-word;
}
@media only screen and (max-width: 991px) {
  p {
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 24px;
  }
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: 700;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
}

h1, .h1 {
  font-size: 29px;
  line-height: normal;
  margin: 0 0 18px;
}
h2, .h2 {
  font-size: 29px;
  margin: 0 0 14px;
  line-height: normal;
}
@media only screen and (max-width: 1199px) {
  h2, .h2 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 575px) {
  h2, .h2 {
    font-size: 17px;
  }
}

h3, .h3 {
  font-size: 18px;
  margin: 0 0 15px;
  line-height: normal;
}

h4, .h4 {
  font-size: 16px;
  margin: 0 0 10px;
  line-height: normal;
}

@media only screen and (min-width: 992px) {
  .title-text p {
    font-size: 20px;
    line-height: 34px;
    margin: 0 0 34px;
  }
}

hr {
  opacity: 1;
  color: #ECEDEF;
}

.primary-text {
  color: #ff0000 !important;
}

.white-bg {
  background: white !important;
}

.light-bg {
  background: #222222 !important;
}

.primary-bg {
  background: #ff0000 !important;
}

.secondary-bg {
  background: #111111 !important;
}

.secondary-bg {
  background: #111111 !important;
}

.grey-bg {
  background: #333333 !important;
}

.border {
  border-color: #333333 !important;
}

@media only screen and (max-width: 575px) {
  .sm-w {
    width: 100% !important;
  }
}

/* btn */
.btn {
  font-size: 18px;
  color: white;
  text-decoration: none;
  display: inline-flex;
  padding: 9px 18px;
  font-weight: 600;
  border: none;
  border-radius: 16px;
  transition: all ease 0.4s;
  font-family: "Montserrat", sans-serif;
  position: relative;
  background: #ff0000;
  align-items: center;
  justify-content: center;
 
}
.btn img {
  margin-right: 10px;
  filter: brightness(0) invert(1);
  transition: all ease 0.4s;
  margin-top: -3px;
}
.btn:hover {
  color: white;
  background: #222222;
}
.btn:hover img {
  filter: none;
}
.btn.secondary-btn {
  background: #222222;
  color: white;
}
.btn.secondary-btn img {
  filter: brightness(0) invert(1);
}
.btn.secondary-btn:hover {
  background: #ff0000;
}
.btn.secondary-btn:hover img {
  filter: none;
}
.btn.btn-transparent {
  background: transparent;
}
.btn.btn-transparent:hover {
  background: #222222;
}
@media screen and (max-width: 1199px) {
  .btn {
    font-size: 16px;
  }
}
.btn:focus {
  outline: none;
  box-shadow: none;
}
.btn.arw-none {
  padding: 22px 35px;
}
.btn.arw-none::before, .btn.arw-none::after {
  display: none;
}

label {
  font-weight: normal;
  margin-bottom: 8px;
  font-size: 15px;
}
label span {
  color: #FF0000;
}

.form-control {
  font-size: 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: transparent;
  padding: 8px 20px;
  resize: none;
  height: 44px;
  border-radius: 4px;
  color: white;
}
.form-control:focus {
  color: white;
  box-shadow: none !important;
  outline: none;
  border-color: #333333;
}
.form-control::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.form-control[type=date]::-webkit-calendar-picker-indicator, .form-control[type=datetime-local]::-webkit-calendar-picker-indicator {
  background: url(../images/date-icon.svg) no-repeat right center;
  width: 20px;
  height: 20px;
}

select {
  background: #222222 url(../images/select-arrow.svg) no-repeat center right 20px !important;
  appearance: none;
  cursor: pointer;
  background-size: 14px !important;
  padding-right: 50px !important;
}
select.trans-select {
  border: none;
  color: #111111;
  height: 24px;
  background-color: transparent !important;
  font-size: 12px;
  background-size: 10px !important;
  padding: 3px 25px 4px 10px !important;
  background-position: center right 7px !important;
}
select.sm-select {
  color: #111111;
  height: 38px;
  font-size: 16px;
  padding: 4px 20px 4px 10px;
  background-position: center right 12px !important;
  background-size: 10px !important;
}

select::-ms-expand {
  display: none;
}

textarea.form-control {
  min-height: 130px;
  padding: 14px 20px;
}

.form-check {
  padding-left: 30px;
  min-height: inherit;
  line-height: normal;
}
    .form-check .form-check-input {
        width: 20px !important;
        height: 20px !important;
        border-radius: 2px !important;
        margin-left: -30px !important;
        margin-top: 0 !important;
        cursor: pointer !important;
        border: 1px solid #333333 !important;
    }

.form-check-input:focus {
    box-shadow: none !important;
}

.form-check-input:checked {
    background-color: #ff0000 !important;
    border-color: #ff0000 !important;
}


/* dark block & white-content */
.white-content h1, .white-content h2, .white-content h3, .white-content h4, .white-content h5, .white-content h6 {
  color: white !important;
}
.white-content label, .white-content span, .white-content li, .white-content p {
  color: rgba(255, 0, 0, 0.8) !important;
}
.white-content hr {
  color: rgba(255, 0, 0, 0.8) !important;
  opacity: 0.1;
}

/* breadcrumb */
.breadcrumb {
  padding: 0;
  background: transparent;
  margin-bottom: 0;
}
.breadcrumb .breadcrumb-item {
  font-size: 18px;
  padding-left: 12px;
}
.breadcrumb .breadcrumb-item:before {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 10px;
  padding-right: 12px;
  margin-top: 3px;
  font-size: 14px;
  color: rgba(255, 0, 0, 0.8);
}
.breadcrumb .breadcrumb-item:first-child {
  padding-left: 0;
}
.breadcrumb .breadcrumb-item:first-child::before {
  display: none;
}
.breadcrumb .breadcrumb-item a {
  color: rgba(255, 0, 0, 0.8);
}
.breadcrumb .breadcrumb-item a:hover {
  color: #ff0000;
}
.breadcrumb .breadcrumb-item.active {
  color: #111111;
}
@media only screen and (max-width: 991px) {
  .breadcrumb .breadcrumb-item {
    padding-left: 10px;
    font-size: 16px;
  }
  .breadcrumb .breadcrumb-item:before {
    padding-right: 10px;
    font-size: 12px;
  }
}

.pagination {
  flex-wrap: wrap;
}
.pagination .page-item {
  font-size: 18px;
  min-width: 80px;
  text-align: center;
  margin-bottom: -1px;
}
.pagination .page-item i {
  font-size: 14px;
}
.pagination .page-item .page-link {
  padding: 10px;
  color: #7C7C7C;
}
.pagination .page-item .page-link span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
}
.pagination .page-item .page-link:hover, .pagination .page-item .page-link.current {
  background: #ff0000;
  color: white;
}
.pagination .page-item.active .page-link {
  background: #ff0000;
  color: white;
  border-color: inherit;
}
.pagination .page-item:first-child .page-link {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.pagination .page-item:last-child .page-link {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
@media only screen and (max-width: 1199px) {
  .pagination .page-item {
    font-size: 16px;
    min-width: 44px;
  }
  .pagination .page-item .page-link span {
    min-width: inherit;
  }
}

.social-here ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}
.social-here ul li {
  margin-right: 16px;
  line-height: normal;
  font-size: 30px;
}
.social-here ul li:last-child {
  margin-right: 0;
}
.social-here ul li a {
  color: black;
}
.social-here ul li a:hover {
  opacity: 0.5;
}
@media only screen and (max-width: 1199px) {
  .social-here ul li {
    font-size: 28px;
    margin-right: 13px;
  }
}

.content-larger-wrapper {
  padding: 0 40px;
}

.content-card {
  color: #fff;
  padding: 15px 40px;
  border-radius: 16px;
  border: 1px solid #222222;
  margin-bottom: 53px;
  overflow: hidden;
}
@media screen and (max-width: 1199px) {
  .content-card {
    padding: 15px 20px;
  }
}
@media screen and (max-width: 575px) {
  .content-card {
    padding: 13px 20px;
    margin-bottom: 15px;
  }
}

.card-header {
  padding: 5px 0 20px;
  gap: 40px;
  border-bottom: 1px solid #222222;
  align-items: center;
}
@media screen and (max-width: 1199px) {
  .card-header {
    gap: 25px;
  }
}
@media screen and (max-width: 575px) {
  .card-header {
    padding-top: 0;
    border-bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  .card-header {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px;
  }
}

.col-space-left {
  padding-left: 20px;
}
@media screen and (max-width: 1199px) {
  .col-space-left {
    padding-left: 0;
  }
}

@media screen and (max-width: 575px) {
  .row {
    --bs-gutter-x: 14px;
  }
}

@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/*@import "layout/fonts";*/
header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  padding: 0 30px;
  transition: all ease 0.4s;
  background: #111111;
}
@media screen and (max-width: 1199px) {
  header {
    padding: 0 15px;
  }
}
@media screen and (max-width: 991px) {
  header {
    padding: 12px 0;
    height: 70px;
  }
}
@media screen and (max-width: 480px) {
  header {
    height: 60px;
  }
}
@media screen and (min-width: 1200px) {
  header .container {
    max-width: 1190px;
  }
}
@media screen and (min-width: 1400px) {
  header .container {
    max-width: 1348px;
  }
}
header.sticky, header.sticky-head {
  box-shadow: 0 2px 40px 0 rgba(0, 0, 0, 0.08);
}
@media (max-width: 991px) {
  header.sticky .sub-navbar .navbar-nav .nav-item, header.sticky-head .sub-navbar .navbar-nav .nav-item {
    padding: 0 !important;
  }
}
header .navbar-brand {
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 991px) {
  header .navbar-brand {
   /* order: 2;*/
    margin: 0 20px;
  }
}
@media screen and (max-width: 575px) {
  header .navbar-brand {
    margin: 0 auto;
    flex-grow: 1;
    text-align: center;
    max-width: 110px;
  }
}
@media screen and (max-width: 480px) {
  header .navbar-brand {
    margin: 0 3px;
  }
}
header .navbar {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 22px 0;
  flex-wrap: nowrap;
  justify-content: space-between;
}
header .navbar .head-search {
  position: relative;
  margin-right: 200px;
  flex-grow: 1;
}
header .navbar .head-search .search-bar form {
  display: flex;
  justify-content: flex-end;
}
header .navbar .head-search .search-bar .form-control {
  padding-right: 50px;
  background: #222222;
  border-color: #333333;
  border-radius: 30px;
  height: 40px;
  font-size: 14px;
  width: 600px;
  max-width: 100%;
}
header .navbar .head-search .search-bar .form-control::-webkit-input-placeholder {
  color: #cccccc;
}
@media screen and (max-width: 1399px) {
  header .navbar .head-search .search-bar .form-control {
    width: auto;
    flex-grow: 1;
  }
}
header .navbar .head-search .search-bar button {
  border: none;
  background: transparent;
  width: 50px;
  height: 40px;
  display: flex;
  align-items: center;
  border-left: 1px solid #333333;
  justify-content: center;
  position: absolute;
  border-radius: 0 30px 30px 0;
  right: 0;
  padding-right: 8px;
  top: 0;
}
header .navbar .head-search .search-bar button img {
  filter: brightness(0) invert(1);
}
header .navbar .head-search .search-bar button:hover img {
  opacity: 0.8;
}
header .navbar .head-search .search-bar .close {
  font-size: 14px;
  font-weight: 500;
  color: #828282;
  display: none;
}
@media screen and (max-width: 991px) {
  header .navbar .head-search {
    order: 2;
    width: auto;
    position: static;
    width: 43px;
    min-width: 43px;
    height: 43px;
    background: #222222;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    flex-grow: 0;

  }
  header .navbar .head-search .search-bar {
    position: fixed;
    left: 0;
    width: 100%;
    background: #111111;
    height: 56px;
    top: 0;
    padding: 9px 12px;
    display: none;
    z-index: 5;
  }
  header .navbar .head-search .search-bar .middle {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header .navbar .head-search .search-bar:before {
    display: none;
  }
  header .navbar .head-search .search-bar form {
    position: relative;
    flex-grow: 1;
    margin-right: 16px;
  }
  header .navbar .head-search .search-bar .form-control {
    padding: 8px 42px 8px 20px;
  }
  header .navbar .head-search .search-bar button {
    display: inline-block;
  }
  header .navbar .head-search .search-bar .close {
    display: inline-block;
  }
}
@media screen and (max-width: 576px) {
  header .navbar .head-search {
    width: 26px;
    height: 26px;
    min-width: 26px;
    padding: 7px;
  }
}
header .navbar .headBtns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
header .navbar .headBtns .btn {
  font-size: 16px;
  padding: 7px 20px;
}
header .navbar .head-login-chat {
  flex-shrink: 0;
}
header .navbar .head-login-chat ul {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 25px;
}
@media screen and (max-width: 991px) {
  header .navbar .head-login-chat ul {
    gap: 15px;
  }
}
@media screen and (max-width: 575px) {
  header .navbar .head-login-chat ul {
    gap: 10px;
  }
}
header .navbar .head-login-chat ul li a {
  font-size: 14px;
  font-weight: 500;
  color: #222222;
  width: 43px;
  height: 43px;
  background: #222222;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 576px) {
  header .navbar .head-login-chat ul li a {
    width: 26px;
    height: 26px;
    padding: 8px;
  }
}
header .navbar .head-login-chat ul li a img {
  transition: all ease 0.4s;
}
header .navbar .head-login-chat ul li a:hover {
  color: #ff0000;
}
header .navbar .head-login-chat ul li a:hover img {
  opacity: 0.6;
}
header .navbar .head-login-chat ul li.register::after {
  content: "|";
  margin-left: 16px;
  display: inline-block;
  color: #D9D9D9;
}
header .navbar .head-login-chat ul li.login {
  padding-right: 8px;
}
@media screen and (max-width: 991px) {
  header .navbar .head-login-chat {
    order: 3;
  }
}
header .navbar .head-upload {
  display: flex;
  gap: 38px;
  margin-left: 5px;
}
header .navbar .head-upload .upload-here {
  position: relative;

}
header .navbar .head-upload .upload-here::after {
  content: "";
  width: 19px;
  height: 19px;
  background: #ff0000 url(../images/plush-white.webp) no-repeat center center;
  display: inline-block;
  position: absolute;
  right: -10px;
  bottom: -7px;
  border-radius: 50%;
  pointer-events: none;
}
@media screen and (max-width: 575px) {
  header .navbar .head-upload .upload-here::after {
    width: 11px;
    height: 11px;
    padding: 5px;
    bottom: -2px;
    right: -5px;
    background-size: 5px 5px;
  }
}
@media screen and (max-width: 1199px) {
  header .navbar .head-upload {
    gap: 24px;
  }
}
@media screen and (max-width: 991px) {
  header .navbar .head-upload {
    order: 1;
    gap: 20px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 575px) {
  header .navbar .head-upload {
    gap: 10px;
    margin-right: 0;
  }
}
@media screen and (max-width: 1199px) {
  header .navbar {
    gap: 10px;
  }
}
@media screen and (max-width: 991px) {
  header .navbar {
    padding: 0;
  }
  header .navbar .head-login-cart {
    order: 4;
  }
  header .navbar .head-login-cart .register, header .navbar .head-login-cart .login, header .navbar .head-login-cart .user {
    display: none;
  }
  header .navbar .head-login-cart ul {
    gap: 8px;
  }
}
header .close-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: red;
  height: 48px;
  padding: 12px;
  font-size: 14px;
  font-weight: 500;
}
header .close-menu .navbar-toggler {
  line-height: 0;
}
@media screen and (max-width: 991px) {
  header {
    border-bottom: 1px solid #333333;
  }
  header .container {
    max-width: 100%;
    position: relative;
  }
}

.overly-menu header {
  background: white;
}

/* Navbar toggle CSS */
.navbar-toggler {
  border-radius: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  outline: none;
  cursor: pointer;
}
.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}
.navbar-toggler .navbar-toggler-icon {
  width: 29px;
  height: 19px;
  background: none;
  position: relative;
  display: inline-block;
}
.navbar-toggler .navbar-toggler-icon span {
  height: 3px;
  width: 29px;
  background-color: white;
  display: block;
  position: absolute;
  transition: all ease 0.4s;
}
.navbar-toggler .navbar-toggler-icon span:nth-child(1) {
  top: 0;
}
.navbar-toggler .navbar-toggler-icon span:nth-child(2), .navbar-toggler .navbar-toggler-icon span:nth-child(3) {
  top: 8px;
}
.navbar-toggler .navbar-toggler-icon span:nth-child(4) {
  top: 16px;
}
.navbar-toggler[aria-expanded=true] .navbar-toggler-icon span:nth-child(1), .navbar-toggler[aria-expanded=true] .navbar-toggler-icon span:nth-child(4), .navbar-toggler.active .navbar-toggler-icon span:nth-child(1), .navbar-toggler.active .navbar-toggler-icon span:nth-child(4) {
  top: 11px;
  opacity: 0;
}
.navbar-toggler[aria-expanded=true] .navbar-toggler-icon span:nth-child(2), .navbar-toggler.active .navbar-toggler-icon span:nth-child(2) {
  transform: rotate(-45deg);
}
.navbar-toggler[aria-expanded=true] .navbar-toggler-icon span:nth-child(3), .navbar-toggler.active .navbar-toggler-icon span:nth-child(3) {
  transform: rotate(45deg);
}
@media only screen and (max-width: 1199px) {
  .navbar-toggler {
    display: block;
    position: relative;
  }
  .navbar-toggler.active {
    z-index: 999;
  }
}

.light-dark-mode button {
  margin-top: 35px;
  margin-bottom: 35px;
  border: 2px solid white;
  border-radius: 50px;
  background: transparent;
  color: white;
  position: relative;
  padding: 12px 30px 12px 70px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
}
.light-dark-mode button .icon {
  width: 46px;
  height: 46px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -1px;
  top: -1px;
}

.main-sidebar {
  background: #222222;
  position: fixed;
  top: 0;
  height: 100%;
  width: 370px;
  left: -370px;
  overflow-y: hidden;
  z-index: 99;
  transition: all ease 0.3s;
  border-right: 1px solid #333333;
}
@media screen and (max-width: 480px) {
  .main-sidebar {
    width: 100%;
    left: -100%;
  }
}
.main-sidebar.show {
  left: 0;
}
.main-sidebar::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(17, 17, 17, 0.3);
  border-radius: 0px;
  background-color: #222222;
}
.main-sidebar::-webkit-scrollbar {
  width: 12px;
  background-color: #222222;
}
.main-sidebar::-webkit-scrollbar-thumb {
  border-radius: 0px;
  -webkit-box-shadow: inset 0 0 6px rgba(17, 17, 17, 0.3);
  background-color: #c1c1c1;
}
.main-sidebar .menuLogo {
  display: flex;
  padding: 12px 40px;
  gap: 30px;
}
.main-sidebar ul.sidebar-menu {
    list-style-type: none;
    margin: 0;
    /*padding: 20px;*/
    overflow-x: hidden;
    border-top: 1px solid #333333;
    padding-left: 1rem;
}
.main-sidebar ul.sidebar-menu > li > a {
  display: flex;
  align-items: center;
}
.main-sidebar ul.sidebar-menu > li > a span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.main-sidebar ul.sidebar-menu > li > a span small {
  font-weight: normal;
  font-size: 12px;
}
.main-sidebar ul.sidebar-menu li.hasChild > a {
  padding-right: 35px;
}
.main-sidebar ul.sidebar-menu li.hasChild > a:after {
  content: "\f077";
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 600;
  border: none;
  font-size: 14px;
  margin-left: 7px;
  position: absolute;
  top: 21px;
  right: 15px;
}
.main-sidebar ul.sidebar-menu li.hasChild > a.collapsed:after {
  transform: rotate(180deg);
}
.main-sidebar ul.sidebar-menu li.collapsed {
  background-color: transparent;
}
.main-sidebar ul.sidebar-menu li > a {
  padding: 19px 15px;
  border-bottom: 1px solid #333333;
}
.main-sidebar ul.sidebar-menu li a {
  color: white;
  font-size: 16px;
  line-height: normal;
  font-weight: 700;
  width: 100%;
/*  display: inline-flex;*/
  position: relative;
  transition: all ease 0.4s;
}
.main-sidebar ul.sidebar-menu li a .icon {
  flex-shrink: 0;
  min-width: 25px;
  text-align: center;
  margin-right: 11px;
}
.main-sidebar ul.sidebar-menu li a::before {
  content: "";
  background: #ff0000;
  height: 100%;
  width: calc(100% + 40px);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.25s;
}
.main-sidebar ul.sidebar-menu li a.active, .main-sidebar ul.sidebar-menu li a:hover {
  color: white;
  background: #ff0000;
}
.main-sidebar ul.sidebar-menu li a.active .icon img, .main-sidebar ul.sidebar-menu li a:hover .icon img {
  filter: brightness(0) invert(1);
}
.main-sidebar ul.sidebar-menu li a.active::before, .main-sidebar ul.sidebar-menu li a:hover::before {
  opacity: 1;
  left: -20px;
  right: -20px;
  visibility: visible;
}



.main-sidebar ul.sidebar-menu li a.btn-toggle {
  background-color: transparent;
  color: white;
}
.main-sidebar ul.sidebar-menu li a.btn-toggle.active, .main-sidebar ul.sidebar-menu li a.btn-toggle:hover {
  color: white !important;
  background: #ff0000 !important;
}
.main-sidebar ul.sidebar-menu li a.btn-toggle.collapsed {
  background-color: transparent;
  color: white;
}
.main-sidebar ul.sidebar-menu li a.btn-toggle:not(.collapsed) .icon img {
  filter: brightness(100);
}
.main-sidebar ul.sidebar-menu li ul.btn-toggle-nav {
  padding: 10px 15px 10px 35px;
  background: #333333;
  border-radius: 0;
}
.main-sidebar ul.sidebar-menu li ul.btn-toggle-nav li a {
  padding: 14px 15px;
  border: none;
  font-size: 14px;
}
.main-sidebar ul.sidebar-menu li ul.btn-toggle-nav li a::before {
  display: none;
}
.main-sidebar ul.sidebar-menu li ul.btn-toggle-nav li a.active, .main-sidebar ul.sidebar-menu li ul.btn-toggle-nav li a:hover {
  color: white;
  background: #ff0000;
}

.right-main-sidebar {
  left: auto;
  right: -370px;
}
@media screen and (max-width: 480px) {
  .right-main-sidebar {
    right: -100%;
  }
}
.right-main-sidebar.show {
  left: auto;
  right: 0;
}
.right-main-sidebar .user-nav-toggler {
  border-radius: 0;
  padding: 0;
  border: none;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  box-shadow: none;
  outline: none;
  cursor: pointer;
}
.right-main-sidebar .user-nav-toggler .navbar-toggler-icon {
  width: 29px;
  height: 19px;
  background: none;
  position: relative;
  display: inline-block;
}
.right-main-sidebar .user-nav-toggler .navbar-toggler-icon span {
  height: 3px;
  width: 29px;
  background-color: white;
  display: block;
  position: absolute;
  transition: all ease 0.4s;
}
.right-main-sidebar .user-nav-toggler .navbar-toggler-icon span:nth-child(1) {
  top: 0;
}
.right-main-sidebar .user-nav-toggler .navbar-toggler-icon span:nth-child(2), .right-main-sidebar .user-nav-toggler .navbar-toggler-icon span:nth-child(3) {
  top: 8px;
}
.right-main-sidebar .user-nav-toggler .navbar-toggler-icon span:nth-child(4) {
  top: 16px;
}
.right-main-sidebar .user-nav-toggler[aria-expanded=true] .navbar-toggler-icon span:nth-child(1), .right-main-sidebar .user-nav-toggler[aria-expanded=true] .navbar-toggler-icon span:nth-child(4), .right-main-sidebar .user-nav-toggler.active .navbar-toggler-icon span:nth-child(1), .right-main-sidebar .user-nav-toggler.active .navbar-toggler-icon span:nth-child(4) {
  top: 11px;
  opacity: 0;
}
.right-main-sidebar .user-nav-toggler[aria-expanded=true] .navbar-toggler-icon span:nth-child(2), .right-main-sidebar .user-nav-toggler.active .navbar-toggler-icon span:nth-child(2) {
  transform: rotate(-45deg);
}
.right-main-sidebar .user-nav-toggler[aria-expanded=true] .navbar-toggler-icon span:nth-child(3), .right-main-sidebar .user-nav-toggler.active .navbar-toggler-icon span:nth-child(3) {
  transform: rotate(45deg);
}
.right-main-sidebar .menuLogo {
  justify-content: flex-end;
  padding-top: 25px;
  padding-bottom: 25px;
}

footer {
  background: #222222;
  padding: 60px 0 80px;
}
footer .footer-brand {
  display: inline-block;
}
footer .footer-link {
  display: block;
}
footer .footer-link ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
footer .footer-link ul li {
  font-size: 16px;
  margin-bottom: 5px;
}
footer .footer-link ul li a {
  color: white;
  position: relative;
}
footer .footer-link ul li a:hover, footer .footer-link ul li a.active {
  color: #ff0000;
}
@media only screen and (max-width: 575px) {
  footer .footer-link ul li {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 991px) {
  footer {
    padding: 40px 0 60px;
    border-bottom-width: 6px;
    display: none;
  }
}
/*.mobileFooter {
  background: #222222;
  padding: 17px 10px;
  height: 115px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
@media only screen and (min-width: 992px) {
  .mobileFooter {
    display: none;
  }
}
.mobileFooter .container-fluid {
  flex-wrap: nowrap;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.mobileFooter .btn-block {
  color: white;
  text-align: center;
}
.mobileFooter .btn-block .icon {
  margin-bottom: 12px;
  min-height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobileFooter .btn-block .icon img {
  filter: none;
  opacity: 1;
  max-width: 45px;
}
.mobileFooter .btn-block span {
  font-size: 14px;
  max-width: 60px;
  line-height: normal;
  display: flex;
  min-height: 36px;
  justify-content: center;
  align-items: center;
}
.mobileFooter .footer-brand {
  color: white;
}
@media only screen and (max-width: 480px) {
  .mobileFooter {
    padding: 17px 5px;
    height: 100px;
  }
  .mobileFooter .btn-block .icon {
    min-height: 32px;
    margin-bottom: 8px;
  }
  .mobileFooter .btn-block .icon img {
    max-width: 29px;
    max-height: 29px;
  }
  .mobileFooter .btn-block span {
    font-size: 12px;
    min-height: 32px;
  }
  .mobileFooter .footer-brand .icon img {
    max-width: 40px;
    max-height: 40px;
  }
}
*/
main {
  padding-top: 89px;
}
@media only screen and (max-width: 991px) {
  main {
    padding-bottom: 115px;
    padding-top: 70px;
  }
}
@media only screen and (max-width: 480px) {
  main {
    padding-bottom: 100px;
    padding-top: 60px;
  }
}

.content-wrapper {
  padding: 0 30px;
}
@media screen and (max-width: 1199px) {
  .content-wrapper {
    padding: 0 15px;
  }
}
@media screen and (max-width: 991px) {
  .content-wrapper {
    padding: 0;
  }
}

.category-list {
  margin-bottom: 50px;
  margin-top: 10px;
}
.category-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.category-list ul li a {
  font-size: 16px;
  background: #222222;
  border-radius: 16px;
  padding: 13px 16px;
  display: inline-block;
  line-height: normal;
  color: white;
}
.category-list ul li a:hover {
  background: #ff0000;
  color: white;
}
@media only screen and (max-width: 1199px) {
  .category-list {
    margin-bottom: 30px;
  }
}

.attachmentIcon {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
@media screen and (max-width: 575px) {
  .attachmentIcon {
    max-width: 35px;
  }
}
.attachmentIcon label {
  margin: 0;
  cursor: pointer;
}
.attachmentIcon input {
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  text-align: right;
  opacity: 0;
  background: none;
  display: block;
  position: absolute;
  appearance: none;
  cursor: pointer;
}

@media screen and (max-width: 991px) {
  .tag-filter-list {
    display: none;
  }
}

@media screen and (max-width: 991px) {
  .hide-mobile {
    display: none !important;
  }
}

@media screen and (min-width: 992px) {
  .hide-desktop {
    display: none !important;
  }
}

/*@media screen and (max-width: 991px) {
    .hide-desktop {
        display: none !important; 
    }
}*/

@media screen and (min-width: 576px) {
  .hide-tablet {
    display: none !important;
  }
}

@media screen and (min-width: 481px) {
  .hide-header-tablet {
    display: none !important;
  }
}

@media screen and (max-width: 480px) {
  .hide-small-mobile {
    display: block !important;
  }
}

@media screen and (max-width: 991px) {
  .mobile-top-space {
    margin-top: 12px;
   /* display: none;*/
 
  }
}

.hoters-tab {
  align-items: center;
  background-color: #222222;
  border: 1px solid #ff0000;
  border-radius: 50px;
  flex-wrap: nowrap;
}
.hoters-tab .nav-link {
  padding: 0;
  font-size: 16px;
  color: white;
  padding: 5px 20px;
  border-radius: 50px;
}
.hoters-tab .nav-link.active {
  background-color: #ff0000;
}
@media screen and (max-width: 1199px) {
  .hoters-tab .nav-link {
    padding: 2px 15px;
  }
}
@media screen and (max-width: 575px) {
  .hoters-tab .nav-link {
    font-size: 10px;
  }
}
@media screen and (max-width: 480px) {
  .hoters-tab .nav-link {
    padding: 2px 8px;
  }
}


.profile-container {
    display: flex;
    align-items: center; 
    gap: 20px; 
    margin-left: 30px;
    margin-bottom: 30px;
}
.profile-box {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s ease-in-out;
    margin-left: 200px;
    margin-top: -60px;
}

    .profile-box .icon2 {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #212121;
        position: relative;
        z-index: 1; 
        margin-left: 15px;
    }

        .profile-box .icon2 .progress-ring {
            position: absolute;
            width: 100px; 
            height: 100px; 
            border-radius: 50%;
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
        }

.progress-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg); 
}

.progress-ring circle {
    fill: transparent;
    stroke-width: 10; 
}

.progress-ring .background-circle {
    stroke: #222222; 
}

.progress-ring .progress-circle {
    stroke: #FF0000; 
    stroke-dasharray: 251.327; 
    stroke-dashoffset: 251.327; 
    transition: stroke-dashoffset 0.5s ease; 
}

#progressPercentage {
    font-size: 18px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    z-index: 2; 
}



@media screen and (max-width: 360px) {
    .profile-box {
        gap: 16px;
    }
}

.profile-box h2 {
    margin-bottom: 10px;
}

@media screen and (max-width: 360px) {
    .profile-box h2 {
        font-size: 15px;
        margin-bottom: 5px;
    }
}

.profile-box p {
    margin-bottom: 0;
}

       /* .profile-box .icon:before {
            content: "";
            position: absolute;
            left: -4px;
            top: -4px;
            right: -4px;
            bottom: -4px;
            border: 2px solid #212121; 
            border-radius: 50%; 
            z-index: -1; 
            border-radius: inherit; 
        }*/
         

@media screen and (max-width: 360px) {
  .profile-box {
    gap: 16px;
  }
}
.profile-box h2 {
  margin-bottom: 10px;
}
@media screen and (max-width: 360px) {
  .profile-box h2 {
    font-size: 15px;
    margin-bottom: 5px;
  }
}
.profile-box p {
  margin-bottom: 0;
}

.person-img-wrapper {
  padding-top: 58px;
}
.person-img-wrapper .btn-margin {
  margin-top: 27px;
}
@media screen and (max-width: 575px) {
  .person-img-wrapper .btn-margin {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 1399px) {
  .person-img-wrapper .btn {
    padding: 9px 18px;
  }
}
@media screen and (max-width: 575px) {
  .person-img-wrapper .btn {
    font-size: 10px;
    font-weight: 400;
  }
}
@media screen and (max-width: 1199px) {
  .person-img-wrapper {
    padding-top: 30px;
  }
}
@media screen and (max-width: 575px) {
  .person-img-wrapper {
    padding-top: 0;
  }
}

.filmy-person .btn-margin {
  margin-top: 50px;
  margin-bottom: 25px;
}
@media screen and (max-width: 575px) {
  .filmy-person .btn-margin {
    margin-top: 10px;
    margin-bottom: 0;
  }
}

.ranking-person .ranking-person-wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 80px;
}
@media screen and (max-width: 1199px) {
  .ranking-person .ranking-person-wrapper {
    row-gap: 50px;
  }
}
.ranking-person .btn-margin {
  margin-top: 80px;
  margin-bottom: 40px;
}
@media screen and (max-width: 575px) {
  .ranking-person .btn-margin {
    margin-top: 15px;
    margin-bottom: 18px;
  }
}

.new-person .btn-margin {
  margin-top: 60px;
  margin-bottom: 55px;
}
@media screen and (max-width: 575px) {
  .new-person .btn-margin {
    margin-top: 10px;
    margin-bottom: 0;
  }
}

.album-item {
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  position: relative;
  cursor: pointer;
}
.album-item img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  transition: all ease 0.4s;
  max-height: 250px;
}

.photo-blur {
    filter: blur(8px) !important;
   
}
.album-item:hover img {
  transform: scale(1.1);
}
.album-item .album-info-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  transition: all ease 0.4s;
  align-items: flex-end;
  justify-content: space-between;
  padding-left: 10px;
  padding-right: 15px;
  padding-bottom: 12px;
}
.album-item .album-info-wrapper:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8547794118) 0%, rgba(0, 0, 0, 0) 60%);
  transition: all ease 0.4s;
}
.album-item .album-info-wrapper .name-wrapper {
  display: flex;
  position: relative;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 1199px) {
  .album-item .album-info-wrapper .name-wrapper {
    gap: 4px;
  }
}
.album-item .album-info-wrapper .name-wrapper .icon {
  width: 12px;
  min-width: 12px;
}
@media screen and (max-width: 1199px) {
  .album-item .album-info-wrapper .name-wrapper .icon {
    width: 10px;
    min-width: 10px;
  }
}
@media screen and (max-width: 1199px) {
  .album-item .album-info-wrapper .name-wrapper .icon {
    width: 8px;
    min-width: 8px;
  }
}
.album-item .album-info-wrapper .name-wrapper .icon img {
  width: 100%;
  height: auto;
  display: block;
}
.album-item .album-info-wrapper .name-wrapper p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
}
@media screen and (max-width: 1199px) {
  .album-item .album-info-wrapper .name-wrapper p {
    font-size: 8px;
  }
}
.album-item .album-info-wrapper .name-wrapper .item {
  display: flex;
  gap: 8px;
  align-items: center;
}
@media screen and (max-width: 1199px) {
  .album-item .album-info-wrapper .name-wrapper .item {
    gap: 4px;
  }
}
@media screen and (max-width: 1599px) {
  .album-item .album-info-wrapper {
    flex-direction: column;
    justify-content: flex-end;
  }
}
@media screen and (max-width: 1199px) {
  .album-item .album-info-wrapper {
    padding-right: 6px;
    padding-left: 6px;
  }
}
@media screen and (max-width: 575px) {
  .album-item .album-info-wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media screen and (max-width: 479px) {
  .album-item .album-info-wrapper {
    flex-direction: column;
    justify-content: flex-end;
  }
}
.album-item:hover .album-info-wrapper {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 2400px) {
  .album-item {
    border-radius: 20px;
  }
}

.five-row {
  flex-wrap: wrap;
  row-gap: 24px;
}
.five-row .col {
  width: 20%;
  flex: 1 0 20%;
}
.five-row .col.large {
  width: 40%;
  flex: 1 0 40%;
}
@media screen and (max-width: 991px) {
  .five-row .col {
    width: 33.33%;
    flex: 1 0 33.33%;
  }
  .five-row .col.large {
    width: 66.66%;
    flex: 1 0 66.66%;
  }
}
@media screen and (max-width: 575px) {
  .five-row {
    row-gap: 14px;
  }
}

.statistics-card {
    margin-bottom: 40px
}

@media only screen and (max-width: 1199px) {
    .statistics-card {
        margin-bottom: 20px
    }
}

.test-card {
    margin-bottom: 40px
}

@media only screen and (max-width: 1199px) {
    .test-card {
        margin-bottom: 20px
    }
}


.statistics-list {
    list-style: none;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
    padding: 20px 30px 20px 20px;
    padding-right: 30px
}

@media only screen and (max-width: 1199px) {
    .statistics-list {
        padding: 5px;
        gap: 20px
    }
}

@media screen and (max-width: 991px) {
    .statistics-list {
        padding: 20px 30px 20px 20px;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        border-top: 1px solid #333333
    }
}

@media screen and (max-width: 991px) {
    .statistics-item {
        width: 33.33%
    }
}

.statistics-item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: white;
    font-size: 14px
}

@media only screen and (max-width: 1199px) {
    .statistics-item a {
        gap: 20px
    }
}

@media screen and (max-width: 991px) {
    .statistics-item a {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
        font-size: 11px;
        gap: 11px
    }

        .statistics-item a strong {
            font-size: 19px;
            display: block
        }
}

@media screen and (max-width: 575px) {
    .statistics-item a strong {
        font-size: 16px
    }
}

.statistics-item .icon {
    min-width: 40px
}
.live-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.live-card {
    margin-top: 44px;
    margin-bottom: 40px;
    position: relative;
    padding-left: 35px;
    overflow-y: auto; 
    scroll-behavior: smooth; 
    max-height: 525px; 
}

  
    .live-card::-webkit-scrollbar {
        width: 3px; 
    }

    .live-card::-webkit-scrollbar-track {
        background: #222222; 
        border-radius: 4px;
    }

    .live-card::-webkit-scrollbar-thumb {
        background-color: #888; 
        border-radius: 4px;
    }

        .live-card::-webkit-scrollbar-thumb:hover {
            background-color: #555; 
        }

@media screen and (max-width: 1199px) {
    .live-card {
        margin-top: 20px;
        margin-bottom: 20px;
        padding-left: 25px;
        max-height: 250px; /* Optional: adjust max height for smaller screens */
    }
}

@media screen and (max-width: 575px) {
    .live-card {
        position: static;
        margin-top: 0;
        padding-left: 20px;
        max-height: 200px; /* Optional: adjust max height for mobile */
    }
}


.live-tag {
  position: absolute;
  padding: 6px 15px;
  border-radius: 6px;
  background-color: #ff0000;
  color: white;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  left: -4px;
  top: 10px;
}
@media screen and (max-width: 575px) {
  .live-tag {
    position: static;
    font-size: 16px;
  }
}

.live-list {
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 70px 0 0;
  margin-top: -75px;
}
@media screen and (max-width: 1199px) {
  .live-list {
    padding-top: 50px;
  }
}
@media screen and (max-width: 575px) {
  .live-list {
    padding: 20px 0;
  }
}

.live-item {
    display: flex;
    flex-wrap: wrap;
    column-gap: 5px;
    row-gap: 4px;
    align-items: center;
    font-size: 13px;
    line-height: 1;
    border-bottom: 1px solid #222222;
    padding: 5px 0;
/*    margin-left: 5px; */
    margin-right: -5px;
}

@media only screen and (max-width: 991px) {
    .live-item {
   /* margin-left: -30px;*/
    }

    .icon-rectangle img {
        margin-right: 15px !important;

    }

}


#activity-modal .live-item {
    margin-left: -30px;
}


#activity-modal .icon-rectangle img {
   /* margin-right: 15px !important; */
}

.live-item .icon:first-child {
  margin-left: 0;
  margin-right: 5px;
  display: block;
}

.event-card {
  margin-top: 44px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1199px) {
  .event-card {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.event-box .img-wrapper img {
  width: 100%;
}
.event-box .content {
  padding: 20px 45px 30px 25px;
/*  width: 370px;*/
}

.profile-event .event-box .content {
    width: auto !important;
}

@media screen and (max-width: 575px) {
  .event-box .content {
    padding: 0;
    padding-top: 15px;
  }
}
.event-box .content .subtitle {
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1;
}
@media screen and (max-width: 575px) {
  .event-box .content .subtitle {
    font-size: 17px;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 400px) {
  .event-box .content .subtitle {
    font-size: 12px;
  }
}
.event-box .content .title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
    overflow-wrap: break-word;
}
@media screen and (max-width: 575px) {
  .event-box .content .title {
    font-size: 17px;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 400px) {
  .event-box .content .title {
    font-size: 12px;
  }
}
@media screen and (max-width: 575px) {
  .event-box {
    padding: 18px 12px 30px;
  }
}

.guest-list .guest-title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
    overflow-wrap: break-word;
}
@media screen and (max-width: 575px) {
  .guest-list .guest-title {
    font-size: 17px;
    line-height: 1;
  }
}
@media screen and (max-width: 575px) and (max-width: 400px) {
  .guest-list .guest-title {
    font-size: 12px;
  }
}
.guest-list .item {
  display: flex;
  gap: 10px;
  align-items: center;
}
.guest-list .item .icon-wrapper {
  display: flex;
}
    .guest-list .item .icon-wrapper .icon {
        margin-left: -15px;
        width: 41px;
        height: 41px;
        min-width: 41px;
        border-radius: 50%;
       
        align-items: center;
        justify-content: center;
        overflow: hidden;
        position: relative;
    }

        .guest-list .item .icon-wrapper .icon img {
            
            width: 100%;
            height: 100%;
            object-fit: cover;
            cursor: grab;

            max-width: none !important;
            top: 20px;
        }
            @media screen and (max-width: 575px) {
                .guest-list .item .icon-wrapper .icon {
                    width: 35px;
                    height: 35px;
                    min-width: 35px;
                }
            }

            @media screen and (max-width: 400px) {
                .guest-list .item .icon-wrapper .icon {
                    width: 32px;
                    height: 32px;
                    min-width: 32px;
                }
            }

            .guest-list .item .icon-wrapper .icon:first-child {
  margin-left: 0;
}
.guest-list .item .guest-name {
  font-size: 13px;
  margin-bottom: 0;
  line-height: 1.3;
}
.guest-list .item .guest-name a {
  margin-right: 5px;
}
@media screen and (max-width: 575px) {
  .guest-list .item .guest-name {
    font-size: 8px;
  }
}
.guest-list .btn {
  width: 100%;
  margin-top: 18px;
  font-size: 18px;
  font-weight: normal;
  line-height: 1;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media screen and (max-width: 575px) {
  .guest-list .btn {
    font-size: 12px;
    padding: 10px;
  }
}
@media screen and (max-width: 480px) {
  .guest-list .btn {
    font-size: 10px;
  }
}

.ranking-slider .swiper-wrapper {
  flex-wrap: wrap;
  row-gap: 80px;
}
@media screen and (max-width: 1199px) {
  .ranking-slider .swiper-wrapper {
    flex-wrap: nowrap;
  }
}
.ranking-slider .swiper-slide {
  width: 25%;
  position: relative;
}
.ranking-slider .crown-img {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.ranking-slider .ranking-img-wrapper {
  max-width: 174px;
  max-height: 174px;
  width: 100%;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 2400px) {
  .ranking-slider .ranking-img-wrapper {
    max-width: 174px;
    max-height: 174px;
  }
}
@media screen and (max-width: 1599px) {
  .ranking-slider .ranking-img-wrapper {
    max-width: 160px;
    max-height: 160px;
  }
}
@media screen and (max-width: 1399px) {
  .ranking-slider .ranking-img-wrapper {
    max-width: 130px;
    max-height: 130px;
  }
}
.ranking-slider .ranking-img-wrapper .ranking-item > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all ease 0.4s;
}
.ranking-slider .ranking-img-wrapper .ranking-item:hover > img {
  transform: scale(1.1);
}
.ranking-slider .album-info-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  transition: all ease 0.4s;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-left: 10px;
  padding-right: 15px;
  padding-bottom: 35px;
}
.ranking-slider .album-info-wrapper:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 20%, rgba(0, 0, 0, 0) 60%);
  transition: all ease 0.4s;
}
.ranking-slider .album-info-wrapper .name-wrapper {
  display: flex;
  position: relative;
  align-items: center;
  gap: 6px;
}
.ranking-slider .album-info-wrapper .name-wrapper .rank-name {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
}
@media screen and (max-width: 1599px) {
  .ranking-slider .album-info-wrapper .name-wrapper .rank-name {
    font-size: 17px;
  }
}
@media screen and (max-width: 1399px) {
  .ranking-slider .album-info-wrapper .name-wrapper .rank-name {
    font-size: 14px;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 991px) {
  .ranking-slider .album-info-wrapper .name-wrapper .rank-name {
    font-size: 22px;
  }
}
.ranking-slider .album-info-wrapper .name-wrapper .icon {
  width: 15px;
  min-width: 15px;
}
@media screen and (max-width: 1599px) {
  .ranking-slider .album-info-wrapper .name-wrapper .icon {
    width: 12px;
    min-width: 12px;
  }
}
@media screen and (max-width: 1399px) {
  .ranking-slider .album-info-wrapper .name-wrapper .icon {
    width: 10px;
    min-width: 10px;
  }
}
.ranking-slider .album-info-wrapper .name-wrapper .icon img {
  width: 100%;
  height: auto;
}
.ranking-slider .album-info-wrapper .name-wrapper p {
  margin: 0;
  font-size: 20px;
}
@media screen and (max-width: 1599px) {
  .ranking-slider .album-info-wrapper .name-wrapper p {
    font-size: 17px;
  }
}
@media screen and (max-width: 1399px) {
  .ranking-slider .album-info-wrapper .name-wrapper p {
    font-size: 15px;
    line-height: 1;
  }
}
.ranking-slider .album-info-wrapper .name-wrapper .item {
  display: flex;
  gap: 6px;
  align-items: center;
}

.layer-img-wrapper {
  display: flex;
  justify-content: center;
  margin-top: -30px;
  position: relative;
  height: 50px;
}
.layer-img-wrapper .layers-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.layer-img-wrapper .layer {
  display: flex;
  width: 41px;
  height: 41px;
  min-width: 41px;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 1599px) {
  .layer-img-wrapper .layer {
    height: 31px;
    width: 31px;
    min-width: 31px;
  }
}
@media screen and (max-width: 991px) {
  .layer-img-wrapper .layer {
    height: 24px;
    width: 24px;
    min-width: 24px;
  }
}
.layer-img-wrapper .layer.active {
  width: 75px;
  height: 75px;
  min-width: 75px;
}
@media screen and (max-width: 1599px) {
  .layer-img-wrapper .layer.active {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }
}
@media screen and (max-width: 991px) {
  .layer-img-wrapper .layer.active {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
}
.layer-img-wrapper .layer:first-child {
  margin-right: -10px;
}
@media screen and (max-width: 1599px) {
  .layer-img-wrapper .layer:first-child {
    margin-right: -5px;
  }
}
.layer-img-wrapper .layer:last-child {
  margin-left: -10px;
}
@media screen and (max-width: 1599px) {
  .layer-img-wrapper .layer:last-child {
    nav-left: -5px;
  }
}

.ranking-slider-wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .ranking-slider-wrapper {
    padding: 0 20px;
    padding-top: 30px;
    overflow: hidden;
  }
}

.user-card {
  padding: 25px 40px;
  background: #161616;
  border-radius: 10px;
}
@media screen and (max-width: 1199px) {
  .user-card {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 991px) {
  .user-card {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 575px) {
  .user-card {
    padding: 12px 22px;
  }
}

.user-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.user-list p {
  margin-bottom: 20px;
  line-height: 1.2;
  font-size: 17px;
  font-weight: 700;
}
.user-list p span {
  font-weight: 400;
}
@media screen and (max-width: 575px) {
  .user-list p {
    font-size: 16px;
    margin-bottom: 5px;
  }
}

.more-btn {
  padding-left: 45px;
  padding-right: 45px;
  width: 250px;
}
@media screen and (max-width: 575px) {
  .more-btn {
    padding: 10px 20px;
  }
}
@media screen and (max-width: 480px) {
  .more-btn {
    padding: 5px 15px;
    font-size: 10px;
    font-weight: 400;
  }
}

.ranking-slider .swiper-button-next, .ranking-slider .swiper-button-prev {
  height: auto;
  margin: 0;
  padding: 0;
  display: none;
  margin-top: -12px;
}
@media screen and (max-width: 1199px) {
  .ranking-slider .swiper-button-next, .ranking-slider .swiper-button-prev {
    display: flex;
  }
}
.ranking-slider .swiper-button-next::after, .ranking-slider .swiper-button-prev::after {
  font-size: 24px;
  font-weight: 800;
  color: #ff0000;
}
.ranking-slider .swiper-button-disabled {
  opacity: 1;
}
.ranking-slider .swiper-button-disabled:after {
  color: #d1d1d1;
}
.ranking-slider .swiper-button-prev {
  flex-direction: row-reverse;
  left: -5px;
}
.ranking-slider .swiper-button-prev::before {
  margin: 0 0 0 -3px;
}
.ranking-slider .swiper-button-next {
  right: -5px;
}

@media screen and (max-width: 575px) {
  .event-title {
    text-align: left !important;
  }
}

.col-load-more {
  display: none;
}

.ranking-card {
  position: relative;
  text-align: center;
}
.ranking-card:before {
  content: "";
  position: absolute;
  top: 15%;
  bottom: 0;
  left: 0;
  right: 0;
  border: 1px solid #a60000;
  border-radius: 16px;
  z-index: -1;
}
.ranking-card .name-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 575px) {
  .ranking-card .name-wrapper {
    gap: 20px;
  }
}
.ranking-card .name-wrapper .item {
  display: flex;
  gap: 15px;
}
.ranking-card .name-wrapper .item p {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .ranking-card .name-wrapper .item p {
    margin-bottom: 30px;
  }
}
.ranking-card .name-wrapper .rank-name {
  font-size: 20px;
  margin-bottom: 25px;
  font-weight: 700;
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .ranking-card .name-wrapper .rank-name {
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 575px) {
  .ranking-card .name-wrapper .rank-name {
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.ranking-card .name-wrapper .rank-desc {
  max-width: 150px;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .ranking-card .name-wrapper .rank-desc {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 575px) {
  .ranking-card .name-wrapper .rank-desc {
    font-size: 14px;
  }
}
.ranking-card .album-info-wrapper .name-wrapper .rank-name {
  font-size: 33px;
  font-weight: 700;
}
.ranking-card.gray-border:before {
  border-color: #333333;
}

@media screen and (max-width: 991px) {
  .ranking-slider-main {
    padding: 0;
  }
}

.ranking-box-slider {
  padding-bottom: 115px;
}
@media screen and (max-width: 767px) {
  .ranking-box-slider {
    padding-bottom: 60px;
  }
}
.ranking-box-slider .swiper-wrapper {
  row-gap: 35px;
  margin-left: -20px;
  margin-right: -20px;
}
@media screen and (max-width: 1199px) {
  .ranking-box-slider .swiper-wrapper {
    flex-wrap: wrap;
    width: auto;
  }
}
.ranking-box-slider .swiper-wrapper .swiper-slide {
  padding: 0 20px;
}
@media screen and (max-width: 1199px) {
  .ranking-box-slider .swiper-wrapper .swiper-slide {
    width: 25%;
  }
}
@media screen and (max-width: 991px) {
  .ranking-box-slider .swiper-wrapper .swiper-slide {
    width: 33.33%;
  }
}
@media screen and (max-width: 767px) {
  .ranking-box-slider .swiper-wrapper .swiper-slide {
    width: 50%;
    padding: 0 5px;
  }
}
@media screen and (max-width: 359px) {
  .ranking-box-slider .swiper-wrapper .swiper-slide {
    width: 100%;
  }
}
@media screen and (max-width: 1199px) {
  .ranking-box-slider .swiper-button-next, .ranking-box-slider .swiper-button-prev {
    display: none;
  }
}

.ranking-header {
  gap: 15px;
}
.ranking-header .hoters-tab {
  margin-right: 5px;
}

.ranking-header-select {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 575px) {
  .ranking-header-select {
    gap: 15px;
    flex-wrap: wrap;
  }
}

.activity-tab {
  align-items: center;
  border-bottom: 1px solid #222222;
  flex-wrap: nowrap;
  margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
  .activity-tab {
    overflow: auto;
    margin-bottom: 30px;
  }
}
.activity-tab .nav-link {
  padding: 0;
  font-size: 20px;
  color: white;
  padding: 30px 20px 25px;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  line-height: 1;
  font-family: "Lato", sans-serif;
}
.activity-tab .nav-link.active {
  background: transparent;
  border-color: #ff0000;
  color: #ff0000;
}
@media screen and (max-width: 1399px) {
  .activity-tab .nav-link {
    padding: 20px 15px;
    font-size: 16px;
  }
}
@media screen and (max-width: 1399px) {
  .activity-tab .nav-link {
    padding: 15px 10px;
    font-size: 15px;
  }
}
@media screen and (max-width: 575px) {
  .activity-tab .nav-link {
    font-size: 14px;
    border-bottom: 0;
  }
}

.activity-section {
  margin-top: 35px;
}
@media screen and (max-width: 575px) {
  .activity-section {
    margin-top: 0;
  }
}

.activity-list-card {
  padding: 25px 15px;
}

.activity-profile {
  display: flex;
  gap: 20px;
  padding: 0 0px 30px;
  border-bottom: 1px solid #222222;
}
    .activity-profile .avatar {
        width: 70px;
        height: 70px;
        min-width: 70px;
        border-radius: 70px;
        overflow: hidden
    }

        .activity-profile .avatar img {
            width: 100%;
            height: 100%;
            -o-object-fit: cover;
            object-fit: cover;
            -o-object-position: top;
            object-position: top
        }

.activity-profile p {
  margin: 0;
  line-height: 1.2;
  font-weight: 600;
}
.activity-profile p.name {
  font-size: 14px;
}
.activity-profile p.verify {
  font-size: 12px;
  text-transform: uppercase;
  color: #ff0000;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 3px;
}
.activity-profile p.verify img {
  display: block;
}
.activity-profile p.status {
  position: relative;
  padding-left: 1px;
  text-transform: uppercase;
  font-size: 13px;
  color: #ff0000;
}
.activity-profile p.status::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: #ff0000;
}

.activity-side-list {
  list-style: none;
  padding: 30px 15px;
  margin: 0;
  border-bottom: 1px solid #222222;
}
.activity-side-list li {
  padding-bottom: 15px;
}
.activity-side-list li:last-child {
  padding-bottom: 0;
}
.activity-side-list li a {
  color: #fff;
}
.activity-side-list li a:hover {
  color: #ff0000;
}

.activity-list-btn {
  font-weight: normal;
  border-radius: 50px;
  font-size: 14px;
  padding: 10px 25px;
  margin-top: 15px;
  margin-left: 15px;
}

/*.activity-content {
  padding-left: 56px;
}*/
@media screen and (max-width: 1199px) {
  .activity-content {
    padding-left: 30px;
  }
}
@media screen and (max-width: 991px) {
  .activity-content {
    padding-left: 0;
  }
}

.activity-card {
  background: #222222;
  border-color: #333333;
  padding: 23px 44px;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 767px) {
  .activity-card {
    padding: 25px 30px;
  }
}
@media screen and (max-width: 575px) {
  .activity-card {
    padding: 20px;
  }
}

.activity-card-title {
  font-weight: 600;
  margin-bottom: 25px;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 20px;
}
.activity-item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 575px) {
  .activity-item {
    border-bottom: 1px solid #333333;
    padding: 10px 20px;
    margin: 0;
    margin-left: -20px;
    margin-right: -20px;
  }
  .activity-item:first-child {
    padding-top: 0;
  }
  .activity-item:last-child {
    border-bottom: 0;
  }
}
.activity-item .avatar {
/*    display: flex;*/
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 70px;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    position: relative;
}
@media screen and (max-width: 767px) {
  .activity-item .avatar {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }
}
.activity-item .avatar img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: grab;
    max-width: none !important;
    object-position: top;
    transition: all ease 0.4s;
}
.activity-item .avatar:hover img {
  transform: scale(1.1);
}
.activity-item p {
  margin: 0;
}
.activity-item .live-item {
  column-gap: 10px;
  font-size: 16px;
}
.activity-item .live-item .icon {
  margin-left: 0;
}
.activity-item .live-item strong {
  font-weight: 600;
}
.activity-item .live-item .avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  margin-left: 8px;
}
@media screen and (max-width: 767px) {
  .activity-item .live-item {
    font-size: 14px;
  }
 /* .activity-item .live-item .icon {
    max-width: 20px;
  }*/
}

.hot-line-card {
  padding: 0;
  margin-bottom: 15px;
}

.hot-header {
  display: flex;
  padding: 10px 43px;
  align-items: center;
  border-bottom: 1px solid #ff0000;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .hot-header {
    padding: 10px 30px;
  }
}
.hot-header .icon {
  display: block;
  margin-right: 8px;
}
.hot-header .icon img {
  display: block;
}
.hot-header p {
  margin-left: 15px;
  font-size: 12px;
  background-color: #ff0000;
  line-height: 24px;
  margin-bottom: 0;
  padding: 0 8px;
  border-radius: 4px;
}

.hot-form {
  padding: 15px 35px;
  padding-bottom: 40px;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .hot-form {
    padding: 15px 30px;
  }
}
@media screen and (max-width: 575px) {
  .hot-form {
    flex-direction: column;
    gap: 10px;
  }
}
.hot-form .avatar {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50px;
    overflow: hidden;
    background-color: white;
/*    display: flex;*/
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
    .hot-form .avatar img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
        max-width: none !important;
/*        top: 10px;
        left: 45%;*/
    }
.hot-form .hot-form-wrapper {
  flex-grow: 1;
}
.hot-form .hotline-input-wrapper {
  display: flex;
  border: 1px solid #333333;
  margin-top: 5px;
  border-radius: 50px;
}
.hot-form .hotline-input-wrapper input {
  background: #111111;
  border: 0;
  border-right: 1px solid #333333;
  border-radius: 50px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  height: 40px;
}
.hot-form .hotline-input-wrapper input:focus {
  background: #111111;
}
.hot-form .hotline-input-wrapper .btn {
  padding-left: 45px;
  padding-right: 45px;
  height: 40px;
  font-size: 16px;
  border-radius: 50px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.video-emoji {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}
.video-emoji .video-wrapper {
  display: flex;
}
.video-emoji .video-wrapper input {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  opacity: 0;
  z-index: 1;
}
.video-emoji .video-wrapper .video-btn {
  position: relative;
  border-radius: 16px;
  border: 1px solid #333333;
  background: #111111;
  padding: 11px 12px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.video-emoji .btn {
  border-radius: 16px;
  border: 1px solid #333333;
  background: #111111;
  padding: 11px 12px;
  font-size: 14px;
}
.video-emoji .btn img {
  margin: 0;
}

.hot-check-list {
  padding: 0;
  margin-top: 10px;
}
.hot-check-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.hot-check-list li:last-child {
  margin-bottom: 0;
}
.hot-check-list li label {
  margin-bottom: 0;
}

.hot-radio-list {
  display: flex;
  padding: 0;
  list-style: none;
  margin-bottom: 0;
}
.hot-radio-list li {
  position: relative;
}
.hot-radio-list li label {
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 0;
}
.hot-radio-list li input {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
}
.hot-radio-list li input:checked + label {
  border-color: #333333;
  background: #111111;
}

.hot-radio-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.hot-radio-wrapper p {
  color: #ff0000;
  font-size: 14px;
  margin-bottom: 0;
}

.comment-card {
  background: #222222;
  border-color: #ff0000;
  padding: 63px 36px;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 767px) {
  .comment-card {
    padding: 30px;
  }
}
@media screen and (max-width: 575px) {
  .comment-card {
    padding: 20px;
  }
}

.comment-profile {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid #222222;
  align-items: center;
}
@media screen and (max-width: 1199px) {
  .comment-profile {
    padding-bottom: 20px;
  }
}
.comment-profile .avatar {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50px;
  overflow: hidden;
}
.comment-profile .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.comment-profile p {
  margin: 0;
  line-height: 1.2;
}
.comment-profile p.name {
  font-weight: 600;
  font-size: 17px;
}
.comment-profile p.status {
  font-size: 13px;
}

.comment-desc {
  font-size: 15px;
  line-height: 2.2;
  margin-bottom: 60px;
}
@media screen and (max-width: 1199px) {
  .comment-desc {
    margin-bottom: 30px;
  }
}

.comment-bottom {
  display: flex;
  justify-content: space-between;
}
.comment-bottom .name-wrapper {
  display: flex;
  position: relative;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1199px) {
  .comment-bottom .name-wrapper {
    gap: 8px;
  }
}
.comment-bottom .name-wrapper .icon {
  width: 14px;
  min-width: 14px;
}
.comment-bottom .name-wrapper .icon img {
  width: 100%;
  height: auto;
  display: block;
}
.comment-bottom .name-wrapper p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}
.comment-bottom .name-wrapper .item {
  display: flex;
  gap: 10px;
  align-items: center;
}
@media screen and (max-width: 1199px) {
  .comment-bottom .name-wrapper .item {
    gap: 8px;
  }
}

@media (min-width: 576px) {
  .gallery-modal .modal-dialog {
   /* max-width: 1677px;*/
   max-width: 100%;
/*    margin: 1.75rem auto;*/
 /*   padding: 0 2rem;*/
  }
}
.gallery-modal .modal-content {
  border-radius: 3px;
  background-color: #212121;
  border: 1px solid #333333;
}
    .gallery-modal .modal-content .btn-close {
        filter: brightness(0) invert(1);
        position: absolute;
        top: 10px;
       /* right: 5px;*/
        left: 5px;
        opacity: 1;
        z-index: 9;
    }
@media (max-width: 1700px) {
    .gallery-modal .modal-content .btn-close {
        top: 10px;
        /* right: 5px;*/
        left: 5px;
    }
}
.gallery-modal .modal-body {
  padding: 0;
}
.gallery-modal .modal-body .slider-col {
  width: 71%;
  flex: 0 0 71%;
}
@media (max-width: 1535px) {
  .gallery-modal .modal-body .slider-col {
    width: 70%;
    flex: 0 0 70%;
  }
}
@media (max-width: 1199px) {
  .gallery-modal .modal-body .slider-col {
    width: 60%;
    flex: 0 0 60%;
  }
}
@media (max-width: 991px) {
  .gallery-modal .modal-body .slider-col {
    width: 100%;
    flex: 0 0 100%;
  }
}
.gallery-modal .modal-body .info-col {
  width: 29%;
  flex: 0 0 29%;
}
@media (max-width: 1535px) {
  .gallery-modal .modal-body .info-col {
    width: 30%;
    flex: 0 0 30%;
  }
}
@media (max-width: 1199px) {
  .gallery-modal .modal-body .info-col {
    width: 40%;
    flex: 0 0 40%;
  }
}
@media (max-width: 991px) {
  .gallery-modal .modal-body .info-col {
    width: 100%;
    flex: 0 0 100%;
  }
}

.gallery-slider-block {
  padding: 25px 40px 30px;
  position: relative;
  max-width: 908px;
  margin: 0 auto;
}
@media (max-width: 575px) {
    .gallery-slider-block {
        padding: 25px 20px 30px;
     /*   margin-top: -90px;*/
    }
}
.gallery-slider-block .swiper-button-next, .gallery-slider-block .swiper-rtl .swiper-button-prev {
  right: -75px;
  left: auto;
}
@media (max-width: 1699px) {
  .gallery-slider-block .swiper-button-next, .gallery-slider-block .swiper-rtl .swiper-button-prev {
    right: -50px;
  }
}
@media (max-width: 1535px) {
  .gallery-slider-block .swiper-button-next, .gallery-slider-block .swiper-rtl .swiper-button-prev {
    right: 0px;
  }
}
@media (max-width: 991px) {
  .gallery-slider-block .swiper-button-next, .gallery-slider-block .swiper-rtl .swiper-button-prev {
    right: 25px;
  }
}
@media (max-width: 767px) {
  .gallery-slider-block .swiper-button-next, .gallery-slider-block .swiper-rtl .swiper-button-prev {
    right: 0px;
  }
}
.gallery-slider-block .swiper-button-prev, .gallery-slider-block .swiper-rtl .swiper-button-next {
  left: -75px;
  right: auto;
}
@media (max-width: 1699px) {
  .gallery-slider-block .swiper-button-prev, .gallery-slider-block .swiper-rtl .swiper-button-next {
    left: -40px;
  }
}
@media (max-width: 1535px) {
  .gallery-slider-block .swiper-button-prev, .gallery-slider-block .swiper-rtl .swiper-button-next {
    left: 0px;
  }
}
@media (max-width: 991px) {
  .gallery-slider-block .swiper-button-prev, .gallery-slider-block .swiper-rtl .swiper-button-next {
    left: 25px;
  }
}
@media (max-width: 767px) {
  .gallery-slider-block .swiper-button-prev, .gallery-slider-block .swiper-rtl .swiper-button-next {
    left: 0px;
  }
}
.gallery-slider-block .swiper-button-next, .gallery-slider-block .swiper-button-prev {
  color: #fff;
}
@media (max-width: 1535px) {
  .gallery-slider-block .swiper-button-next:after, .gallery-slider-block .swiper-button-prev:after {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .gallery-slider-block .swiper-button-next:after, .gallery-slider-block .swiper-button-prev:after {
    font-size: 25px;
  }
}
.gallery-slider-block .swiper-button-next.swiper-button-disabled, .gallery-slider-block .swiper-button-prev.swiper-button-disabled {
  opacity: 0.28;
}

@media (max-width: 991px) {
  .gallerySwiperMain .slide-box {
    height: 600px;
  }
}
@media (max-width: 767px) {
  .gallerySwiperMain .slide-box {
    height: auto;
  }
}
.gallerySwiperMain .slide-box:has(video):before {
  height: 78px;
  width: 78px;
}
/*.gallerySwiperMain .slide-box img, .gallerySwiperMain .slide-box video, .gallerySwiperMain .slide-box svg {
    height: 100%;
    width: 100%;
    object-fit: cover;
    max-height: calc(100vh - 221px);
}
*/
.gallerySwiperMain .slide-box img, .gallerySwiperMain .slide-box video, .gallerySwiperMain .slide-box svg {
    height: 100%;
    width: 100%;
    object-fit: cover;
    /* max-height: calc(100vh - 221px); */
    display: flex;
     align-items: center; 
     justify-content: center; 
    max-height: 80vh;
/*    max-height: 80vh;*/
}





/*.swiper-slide img,
.swiper-slide-active img,
.main-gallery-image {
    max-width: 100%;
    max-height: 90vh;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    background: #000;
}*/

#gallerySwiperMain .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    /*  max-height: 100vh;*/
    max-height: 80vh;
}

@media (max-width: 991px) {
  .gallerySwiperMain .slide-box img, .gallerySwiperMain .slide-box video, .gallerySwiperMain .slide-box svg {
    object-fit: contain;
  }
}

#gallerySwiperMain {
/*    max-height: calc(100vh - 221px);*/
    align-items: center;
}

.gallerySwiperThumbnail {
  padding-top: 20px;
}
.gallerySwiperThumbnail .swiper-slide .slide-box {
  width: 100%;
  max-width: 110px;
  height: 101px;
  overflow: hidden;
}
@media (max-width: 575px) {
  .gallerySwiperThumbnail .swiper-slide .slide-box {
    height: 80px;
  }
}
.gallerySwiperThumbnail .swiper-slide .slide-box img, .gallerySwiperThumbnail .swiper-slide .slide-box video, .gallerySwiperThumbnail .swiper-slide .slide-box svg {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.slide-box:has(video) {
  position: relative;
}
.slide-box:has(video):before {
  content: "";
  height: 48px;
  width: 48px;
  background-image: url(../../../images/video-play.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #000;
}

.info-block {
  background-color: #111111;
  border-left: 1px solid #333333;
  border-radius: 0 3px 3px 0;
  height: 100%;
  padding: 17px 55px 20px 46px;
  font-family: "Lato", sans-serif;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1535px) {
  .info-block {
    padding: 17px 20px 20px 20px;
  }
}
@media (max-width: 991px) {
  .info-block {
    padding: 17px 55px 20px 46px;
    border-left: none;
    border-top: 1px solid #333333;
  }
}
@media (max-width: 575px) {
  .info-block {
    padding: 23px 25px 20px 25px;
    border-left: none;
    border-top: 1px solid #333333;
  }
}

.user-info-box {
  display: flex;
  gap: 18px;
  margin-bottom: 20px;
}
.user-info-box .avatar {
  height: 71px;
  width: 71px;
  min-width: 71px;
  overflow: hidden;
  border-radius: 50%;
}
    /*.user-info-box .avatar img {
        height: 120%;
        width: 120%;
        object-fit: cover;
        position: relative;
        top: -20%;*/
        /*left: 40%;*/
    /*}*/
.user-info-box .user-info {
  display: flex;
  flex-direction: column;
}
.user-info-box .user-info p {
  margin-bottom: 0;
}
.user-info-box .user-info .name {
  font-size: 15px;
  line-height: 1;
  font-weight: bold;
  color: #fff;
  margin-bottom: 5px;
}
.user-info-box .user-info .time {
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 10px;
  color: #fff;
}
.user-info-box .user-info .code {
  display: flex;
  align-items: center;
  font-size: 15px;
  line-height: 1;
  font-weight: bold;
  gap: 6px;
  margin-bottom: 10px;
}
.user-info-box .user-info .date {
  font-size: 13px;
  line-height: 1;
  font-weight: bold;
  color: #848484;
}

.user-desc-box {
  padding-left: 10px;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .user-desc-box {
    padding-left: 0;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    margin-bottom: 25px;
  }
}
.user-desc-box .desc {
  font-size: 14px;
/*  font-weight: bold;*/
  color: #fff;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .user-desc-box .desc {
    margin-bottom: 8px;
  }
}
.user-desc-box .album-info {
  font-size: 20px;
  line-height: 1;
  font-weight: bold;
  color: #fff;
}
@media (max-width: 991px) {
  .user-desc-box .album-info {
    margin-bottom: 0;
  }
}

.like-comment-info {
  display: flex;
  align-items: center;
}

/*.like-comment-box,
.favorite-button,
.view-count-box {
    display: flex;
    align-items: center;*/ /* Wyrównuje zawartość do środka */
    /*gap: 5px;*/ /* Dodaje odstęp między ikoną a liczbą */
/*}*/

.like-comment-box {
  display: inline-flex;
  align-items: center;
 /* font-size: 15px;*/
  line-height: normal;
  font-weight: 500;
  color: #fff;
  margin-right: 12px;
}
@media (max-width: 991px) {
  .like-comment-box {
 /*   font-size: 12px;*/
  }
}

.text-red {
  color: #ff0000;
}

.user-chat-lsting-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 760px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 4px;
}



@media (max-width: 991px) {
    .user-chat-lsting-block {
        height: auto !important;
        max-height: none !important;
        overflow-y: visible !important;
    }

    /* ✅ Nowe – scroll działa dla całego body */
    #modalBodyWrapper {
        max-height: 100vh;
        overflow-y: auto;
    }

    .user-chat-lsting-block {
        padding-bottom: 100px; /* wysokość inputa na dole + zapas */
    }

}
.user-chat-lsting-block::-webkit-scrollbar {
  width: 4px;
}
.user-chat-lsting-block::-webkit-scrollbar-track {
  background-color: transparent;
}
.user-chat-lsting-block::-webkit-scrollbar-thumb {
  background-color: #222222;
  border-radius: 50rem;
}
.user-chat-lsting-block + .msg-input-wrapper:before {
  display: none;
}
@media (max-width: 991px) {
  .user-chat-lsting-block {
    gap: 20px;
  }
}
.user-chat-lsting-block .chat-list-box {
  display: flex;
  gap: 18px;
}
.user-chat-lsting-block .chat-list-box .avatar {
  height: 41px;
  width: 41px;
  min-width: 41px;
  border-radius: 50%;
}
.user-chat-lsting-block .chat-list-box .avatar img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
}
    .user-chat-lsting-block .chat-list-box .chat-info-box {
        margin-top: 15px;
        padding: 5px 20px 20px 20px;
        border-radius: 11px;
        background-color: #1a1a1a;
        flex: 1;
    }
@media (max-width: 991px) {
  .user-chat-lsting-block .chat-list-box .chat-info-box {
    margin-top: 0;
  }
}
.user-chat-lsting-block .chat-list-box .chat-info-box .name {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 17px;
    line-height: 1;
    font-weight: bold;
    color: #fff;
    margin-bottom: 4px;
    justify-content: space-between;
}
@media (max-width: 991px) {
  .user-chat-lsting-block .chat-list-box .chat-info-box .name {
    font-size: 15px;
  }
}
.user-chat-lsting-block .chat-list-box .chat-info-box .time {
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 10px;
  color: #fff;
}
.user-chat-lsting-block .chat-list-box .chat-info-box .chat-txt {
    font-size: 15px;
    line-height: 22px;
    font-weight: 400;
    margin-bottom: 15px;
    word-wrap: break-word;
    white-space: normal;
    max-width: calc(100% - 60px);
}
@media (max-width: 991px) {
  .user-chat-lsting-block .chat-list-box .chat-info-box .chat-txt {
    font-size: 13px;
    line-height: 16px;
  }
}
.user-chat-lsting-block .chat-list-box .chat-info-box .chat-bottom-info {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
}
@media (max-width: 991px) {
  .user-chat-lsting-block .chat-list-box .chat-info-box .chat-bottom-info {
    align-items: flex-end;
  }
}
.user-chat-lsting-block .chat-list-box .chat-info-box .chat-bottom-info .date {
  font-size: 10px; /*13px;*/
  line-height: 1;
  font-weight: bold;
  color: #848484;
  margin-left: auto;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .user-chat-lsting-block .chat-list-box .chat-info-box .chat-bottom-info .date {
    font-size: 10px;
  }
}

.feature-card {
  padding: 75px 25px;
  background: #222222;
  border: 2px solid #333333;
  height: 100%;
  margin-bottom: 0;
  position: relative;
}
@media screen and (max-width: 575px) {
  .feature-card {
    padding: 60px 20px;
    padding-bottom: 30px;
  }
}
.feature-card.active {
  border: 2px solid #ff0000;
}
.feature-card .crown {
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
}
.feature-card .crown.small {
  top: 24px;
}
.feature-card .title {
  text-align: center;
  font-size: 29px;
  font-weight: 600;
  margin: 0;
}
.feature-card .title .primary {
  color: #ff0000;
}
@media screen and (max-width: 575px) {
  .feature-card .title {
    font-size: 24px;
  }
}
.feature-card .desc {
  text-align: center;
  font-size: 18px;
  margin-bottom: 60px;
}
.feature-card .desc .primary {
  display: block;
  font-weight: 600;
  color: #ff0000;
}
@media screen and (max-width: 575px) {
  .feature-card .desc {
    margin-bottom: 30px;
  }
}

.feature-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.feature-list li {
  margin-bottom: 45px;
  font-size: 18px;
  padding-left: 40px;
  position: relative;
}
.feature-list li:last-child {
  margin-bottom: 0;
}
.feature-list li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: url("../images/check.webp");
}
@media screen and (max-width: 1699px) {
  .feature-list li {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 575px) {
  .feature-list li {
    font-size: 14px;
    padding-left: 30px;
  }
  .feature-list li::after {
    width: 14px;
    height: 14px;
    background-size: cover;
  }
}

.period-box {
  background: #fff;
  border-radius: 12px;
  margin-top: 30px;
  overflow: hidden;
}
.period-box .period-tab {
  background: #ff0000;
  border-radius: 12px;
  display: flex;
  flex-wrap: nowrap;
}
.period-box .period-tab .nav-item {
  flex-grow: 1;
}
.period-box .period-tab .nav-link {
  color: white;
  font-size: 18px;
  font-weight: 700;
  border-radius: 0;
  width: 100%;
  padding: 8px;
}
.period-box .period-tab .nav-link.active {
  background: white;
  color: #111111;
}
@media screen and (max-width: 1699px) {
  .period-box .period-tab .nav-link {
    font-size: 16px;
  }
}
@media screen and (max-width: 575px) {
  .period-box .period-tab .nav-link {
    font-size: 14px;
  }
}

.plan-list {
  padding: 0;
  margin: 0;
  list-style: none;
  padding: 10px 6px;
}
.plan-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  padding-right: 40px;
  border-radius: 16px;
  border: 1px solid #e2e2e2;
  margin-bottom: 6px;
  gap: 20px;
}
.plan-list li p {
  margin-bottom: 0;
  color: #111111;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 1699px) {
  .plan-list li {
    padding-right: 15px;
  }
  .plan-list li p {
    font-size: 16px;
  }
}
@media screen and (max-width: 575px) {
  .plan-list li p {
    font-size: 14px;
  }
}

.payment-desc {
  margin-top: 55px;
  margin-bottom: 50px;
  padding-left: 20px;
}
.payment-desc p {
  margin-bottom: 20px;
}
.payment-desc p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 575px) {
  .payment-desc p {
    font-size: 14px;
  }
}
@media screen and (max-width: 575px) {
  .payment-desc {
    margin-top: 0;
    padding-left: 0;
    margin-bottom: 30px;
  }
}

.features-row {
  row-gap: 24px;
}

.online {
  color: #019a1d;
}

body.chat-page .category-list {
  margin-bottom: 27px;
}
@media (max-width: 991px) {
  body.chat-page .mobile-top-space {
    display: none;
  }
}

.chat-main-wrapper {
  border-top: 1px solid #222222;
}
@media (min-width: 992px) {
  .chat-main-wrapper .col-lg-2 {
    width: 100%;
    max-width: 318px;
  }
}
@media (min-width: 992px) {
  .chat-main-wrapper .col-lg-8 {
    width: 100%;
    max-width: calc(100% - 636px);
  }
}

.chat-left-sidebar-block {
  height: 100%;
  padding: 20px 5px 40px;
  border-right: 1px solid #222222;
}
@media (max-width: 991px) {
  .chat-left-sidebar-block {
    border-right: none;
    border-bottom: 1px solid #222222;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    column-gap: 20px;
    row-gap: 15px;
    padding: 20px 16px 10px;
  }
}
.chat-left-sidebar-block .heading {
  font-size: 29px;
  font-weight: bold;
  color: #fff;
  padding-left: 10px;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .chat-left-sidebar-block .heading {
    padding-left: 0;
    margin-bottom: 0;
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .chat-left-sidebar-block .heading {
    padding-left: 0;
    margin-bottom: 0;
    font-size: 17px;
  }
}

.chat-search-bar {
  position: relative;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .chat-search-bar {
    margin-bottom: 0;
    width: calc(100% - 84px);
  }
}
@media (max-width: 767px) {
  .chat-search-bar {
    width: calc(100% - 70px);
  }
}
.chat-search-bar .form-control {
  padding-left: 46px;
  background: #222222;
  border-color: #333333;
  border-radius: 30px;
  height: 37px;
  font-size: 14px;
  width: 100%;
  max-width: 100%;
}
.chat-search-bar .form-control::placeholder {
  color: #cccccc;
}
.chat-search-bar button {
  border: none;
  background: transparent;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  position: absolute;
  padding-left: 14px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.chat-sidebar-listing-block {
  font-family: "Lato", sans-serif;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  width: 100%;
}
@media (max-width: 991px) {
  .chat-sidebar-listing-block {
    max-height: 154px;
  }
}
.chat-sidebar-listing-block::-webkit-scrollbar {
  width: 4px;
}
.chat-sidebar-listing-block::-webkit-scrollbar-track {
  background-color: transparent;
}
.chat-sidebar-listing-block::-webkit-scrollbar-thumb {
  background-color: #222222;
  border-radius: 50rem;
}
.chat-sidebar-listing-block .chat-list-box {
  padding: 10px 8px;
  border-radius: 11px;
  background-color: transparent;
  gap: 9px;
  align-items: center;
  cursor: pointer;
}
.chat-sidebar-listing-block .chat-list-box.active, .chat-sidebar-listing-block .chat-list-box:hover {
  background-color: rgba(34, 34, 34, 0.5);
}
.chat-sidebar-listing-block .chat-list-box .avatar {
  position: relative;
}
.chat-sidebar-listing-block .chat-list-box .avatar .user-status {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #ff0000;
  position: absolute;
  bottom: 3px;
  right: 3px;
}
.chat-sidebar-listing-block .chat-list-box .avatar .user-status.online {
  background-color: #019a1d;
}
.chat-sidebar-listing-block .chat-list-box .chat-info-box {
  margin-top: 0;
  padding: 0;
  border-radius: 0;
  width: 100%;
  background-color: transparent;
}
.chat-sidebar-listing-block .chat-list-box .chat-info-box .name {
  margin-bottom: 2px;
}
.chat-sidebar-listing-block .chat-list-box .chat-info-box .chat-txt {
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 80%;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 992px) {
  .chat-sidebar-listing-block .chat-list-box .chat-info-box .chat-txt {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
.chat-sidebar-listing-block .chat-list-box .chat-info-box .time {
  margin-bottom: 0;
  position: absolute;
  top: 5px;
  right: 0;
}

.userprofile-right-sidebar-block {
  padding: 18px 22px 40px;
  border-left: 1px solid #222222;
  font-family: "Lato";
  height: 100%;
}
@media (max-width: 991px) {
  .userprofile-right-sidebar-block {
    border-left: none;
    border-bottom: 1px solid #222222;
    padding: 15px 16px 20px;
  }
}
.userprofile-right-sidebar-block .user-info-box {
  gap: 14px;
}
@media (max-width: 991px) {
  .userprofile-right-sidebar-block .user-info-box {
    margin-bottom: 0;
  }
}
.userprofile-right-sidebar-block .user-info-box .avatar {
  height: 100px;
  width: 100px;
  min-width: 100px;
  border-radius: 50%;
}
.userprofile-right-sidebar-block .user-info-box .user-info {
  align-items: center;
}
.userprofile-right-sidebar-block .user-info-box .user-info .code {
  justify-content: center;
}
.userprofile-right-sidebar-block .search-result {
  margin-top: 5px;
  font-size: 15px;
  font-weight: 400;
  color: #ffffff;
}
@media (max-width: 991px) {
  .userprofile-right-sidebar-block .search-result {
    border-radius: 15px;
    background-color: #212121;
    height: 31px;
    padding: 3px 22px;
  }
}

.profile-search-bar {
  position: relative;
  width: 100%;
  transition: 0.3s all ease-in-out;
}
@media (max-width: 991px) {
  .profile-search-bar {
    display: none;
  }
}
.profile-search-bar:has(.form-control:not(:focus)) {
  width: 42px;
}
.profile-search-bar:has(.form-control:not(:focus)) .form-control {
  padding-left: 21px;
  cursor: pointer;
}
.profile-search-bar .form-control {
  padding-left: 46px;
  background: #222222;
  border-color: #333333;
  border-radius: 30px;
  height: 42px;
  font-size: 14px;
  width: 100%;
  max-width: 100%;
  transition: 0.3s all ease-in-out;
}
.profile-search-bar .form-control::placeholder {
  color: #cccccc;
}
.profile-search-bar button {
  border: none;
  background: transparent;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  position: absolute;
  padding-left: 12px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.profile-grid-block {
  row-gap: 12px;
  column-gap: 9px;
  max-height: calc(100vh - 247px);
  overflow-y: auto;
}
.profile-grid-block::-webkit-scrollbar {
  width: 4px;
}
.profile-grid-block::-webkit-scrollbar-track {
  background-color: transparent;
}
.profile-grid-block::-webkit-scrollbar-thumb {
  background-color: #222222;
}
.profile-grid-block .grid-item {
  border-radius: 5px;
  max-height: 164px;
}
.profile-grid-block .grid-item img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}

.profile-chatting-block {
  font-family: "Lato";
  height: 100%;
  display: flex;
  flex-direction: column;
}

.profile-header {
  padding: 15px 20px;
  background-color: rgba(26, 26, 26, 0.54);
  border-bottom: 1px solid #222222;
}
@media (max-width: 991px) {
  .profile-header {
    display: none;
  }
}
.profile-header .user-info-box {
  gap: 14px;
}
.profile-header .user-info-box .avatar {
  height: 51px;
  width: 51px;
  min-width: 51px;
  border-radius: 50%;
}

.conversation-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 21px 17px 34px 30px;
  height: calc(100vh - 90px);
  overflow-y: auto;
}
@media (max-width: 991px) {
  .conversation-list {
    padding: 20px 16px 15px 16px;
    height: calc(100vh - 480px);
    margin-bottom: 10px;
    margin-top: 10px;
  }
}
.conversation-list::-webkit-scrollbar {
  width: 4px;
}
.conversation-list::-webkit-scrollbar-track {
  background-color: transparent;
}
.conversation-list::-webkit-scrollbar-thumb {
  background-color: #222222;
}
.conversation-list .conversation-item {
  display: flex;
  gap: 12px;
}
@media (max-width: 991px) {
  .conversation-list .conversation-item {
    gap: 10px;
  }
}
.conversation-list .conversation-item.reverse {
  flex-direction: row-reverse;
}
.conversation-list .conversation-item.reverse .conversation-info .txt {
  background-color: #ff0000;
}
.conversation-list .conversation-item .avatar {
  width: 34px;
  min-width: 34px;
  height: 34px;
  border-radius: 50%;
}
.conversation-list .conversation-item .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.conversation-list .conversation-item .conversation-info .txt {
  padding: 16px 17px 16px 20px;
  border-radius: 11px;
  background-color: #1a1a1a;
  max-width: 421px;
  width: 100%;
  font-size: 15px;
  line-height: 25px;
  color: #ffffff;
  font-weight: 400;
  font-family: "Lato";
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .conversation-list .conversation-item .conversation-info .txt {
    max-width: 226px;
    padding: 16px 10px 16px 16px;
  }
}
.conversation-list .conversation-item .conversation-info img {
  width: 100%;
  max-width: 221px;
  border-radius: 10px;
  cursor: pointer;
}

.chat-image-modal .modal-dialog {
  padding: 0 30px;
}
@media (min-width: 576px) {
  .chat-image-modal .modal-dialog {
    max-width: max-content;
 /*   margin: 1.75rem auto;
    padding: 0 2rem;*/
  }
}
.chat-image-modal .modal-content {
  border-radius: 0;
  background-color: transparent;
  border: none;
}
.chat-image-modal .modal-content .btn-close {
  filter: brightness(0) invert(1);
  position: absolute;
  top: -10px;
  right: -37px;
  opacity: 1;
  z-index: 9;
}
@media (max-width: 1700px) {
  .chat-image-modal .modal-content .btn-close {
    top: -20px;
    right: -30px;
  }
}
.chat-image-modal .modal-body {
  padding: 0;
  text-align: center;
}
.chat-image-modal .modal-body img {
  border-radius: 5px;
  max-height: calc(100vh - 60px);
}

.msg-input-wrapper {
  display: flex;
  align-items: center;
  padding: 20px 24px;
  gap: 13px;
  margin-top: auto;
  position: relative;
}
@media (min-width: 992px) {
  .msg-input-wrapper {
    padding: 15px 16px 22px 16px;
  }
}
.msg-input-wrapper:before {
  content: "";
  height: 1px;
  width: calc(100% - 32px);
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background-color: #222222;
}
@media (min-width: 992px) {
  .msg-input-wrapper:before {
    display: none;
  }
}
.msg-input-wrapper .upload-option-box {
  display: flex;
  gap: 11px;
  align-items: center;
}
@media (max-width: 991px) {
  .msg-input-wrapper .upload-option-box {
    gap: 9px;
  }
}
.msg-input-wrapper .upload-option-box button {
  background-color: transparent;
  border: none;
  box-shadow: none;
  outline: none;
  padding: 0;
  margin: 0;
}
.msg-input-wrapper .upload-option-box .addFile, .msg-input-wrapper .upload-option-box .fileIcon, .msg-input-wrapper .upload-option-box .tagIcon, .msg-input-wrapper .upload-option-box .gifIcon {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.msg-input-wrapper .upload-option-box .addFile label, .msg-input-wrapper .upload-option-box .fileIcon label, .msg-input-wrapper .upload-option-box .tagIcon label, .msg-input-wrapper .upload-option-box .gifIcon label {
  margin: 0;
  cursor: pointer;
}
.msg-input-wrapper .upload-option-box .addFile label img, .msg-input-wrapper .upload-option-box .fileIcon label img, .msg-input-wrapper .upload-option-box .tagIcon label img, .msg-input-wrapper .upload-option-box .gifIcon label img {
  cursor: pointer;
}
.msg-input-wrapper .upload-option-box .addFile input, .msg-input-wrapper .upload-option-box .fileIcon input, .msg-input-wrapper .upload-option-box .tagIcon input, .msg-input-wrapper .upload-option-box .gifIcon input {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  min-width: 100%;
  min-height: 100%;
  text-align: right;
  opacity: 0;
  background: none;
  display: block;
  position: absolute;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
.msg-input-wrapper .type-box {
  position: relative;
  width: 100%;
  max-width: 1042px;
}
.msg-input-wrapper .type-box .form-control {
  padding-left: 46px;
  padding-right: 46px;
  background: #222222;
  border-color: #333333;
  border-radius: 50rem;
  height: 40px;
  font-size: 14px;
  width: 100%;
  max-width: 1042px;
  transition: 0.3s all ease-in-out;
}
@media (max-width: 991px) {
  .msg-input-wrapper .type-box .form-control {
    height: 34px;
  }
}
.msg-input-wrapper .type-box .form-control::placeholder {
  color: #cccccc;
}
.msg-input-wrapper .type-box img {
  position: absolute;
  top: 7px;
  right: 60px;
}
@media (max-width: 991px) {
  .msg-input-wrapper .type-box img {
    width: 18px;
    height: 18px;
  }
}
.msg-input-wrapper .type-box .font-style-option {
  position: absolute;
  top: 50%;
  left: 17px;
  font-size: 15px;
  line-height: 1;
  color: #ffffff;
  font-weight: 400;
  font-family: "Lato";
  transform: translateY(-50%);
}

.register-card {
  padding: 70px 70px 115px;
}
@media screen and (max-width: 575px) {
  .register-card {
    padding: 30px;
  }
}

.form-wrapper .form-control {
  background: #222222;
  border-color: #333333;
  border-radius: 50px;
  color: white;
  padding-left: 60px;
  padding-right: 70px;
  height: 52px;
}
.form-wrapper .form-control::placeholder {
  color: white;
}
@media screen and (max-width: 575px) {
  .form-wrapper .form-control {
    padding-right: 55px;
  }
}
.form-wrapper .input-wrapper {
  position: relative;
  margin-bottom: 30px;
  margin-top: 50px;
}
/*.form-wrapper .input-wrapper .icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}*/
.form-wrapper .input-wrapper .pass-btn {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 575px) {
  .form-wrapper .input-wrapper .pass-btn {
    max-width: 35px;
  }
}

.pass-btn {
  background: transparent;
  border: 0;
  outline: none;
}

.register-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    padding-top: 40px
}

    .register-check label {
        margin-bottom: 0;
        font-size: 14px
    }

    .register-check .custom-checkbox {
        width: 45px;
        height: 45px;
        min-width: 45px
    }

        .register-check .custom-checkbox .check:before {
            width: 45px;
            height: 45px;
            min-width: 45px;
            border-color: #333333;
            border-radius: 12px
        }

        .register-check .custom-checkbox input:checked + .check:before {
            background: transparent;
            border-color: #333333
        }

        .register-check .custom-checkbox input:checked + .check:after {
            border-color: #ff0000;
            height: 22px;
            left: 18px;
            width: 11px;
            top: 10px;
            border-width: 0 3px 3px 0
        }

@media screen and (max-width: 575px) {
    .register-check .custom-checkbox {
        width: 30px;
        height: 30px;
        min-width: 30px
    }

        .register-check .custom-checkbox .check:before {
            width: 30px;
            height: 30px;
            min-width: 30px;
            border-radius: 6px
        }

        .register-check .custom-checkbox input:checked + .check:after {
            height: 15px;
            left: 12px;
            width: 8px;
            top: 6px;
            border-width: 0 2px 2px 0
        }
}

.register-note {
    margin-top: 32px;
    font-size: 14px;
    line-height: normal
}


.profile-card {
  padding: 16px;
  margin-bottom: 20px;
}

.profile-info-box {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  padding: 20px 55px;
}
@media screen and (max-width: 767px) {
  .profile-info-box {
    padding: 30px;
  }
}
.profile-info-box .profile-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 0;
}
.profile-info-box .profile-bg img {
  width: 100%;
  height: 100%;
 /* object-fit: cover;*/
  object-position: center;
  /*filter: blur(40px);*/
}
.profile-info-box .profile-info {
  position: relative;
  z-index: 1;
}
    .profile-info-box .profile-info .profile-img {
        width: 320px;
        min-width: 320px;
        height: 320px;
 /*       border-radius: 50%;*/
        display: flex;
        align-items: center;
        justify-content: center;
      /*  overflow: hidden;*/
        position: relative;
    }
@media screen and (max-width: 991px) {
  .profile-info-box .profile-info .profile-img {
    width: 250px;
    min-width: 250px;
    height: 250px;
  }
}
@media screen and (max-width: 575px) {
  .profile-info-box .profile-info .profile-img {
    width: 150px;
    min-width: 150px;
    height: 150px;
  }
}
.profile-info-box .profile-info .profile-img img {
    /*  width: 100%;
  height: 100%;
  object-fit: cover;*/
    transition: all ease 0.4s;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: grab;
     border-radius: 50%; 
    max-width: none !important;
    margin-top: 50px;
}
.profile-info-box .profile-info .profile-img:hover img {
  /*transform: scale(1.1);*/
}
.profile-info-box .profile-info .status {
  position: absolute;
  left: 0;
  top: 0;
  padding-left: 15px;
  text-transform: uppercase;
  font-size: 15px;
  color: #ff0000;
  font-weight: 600;
  margin-bottom: 0;
}
.profile-info-box .profile-info .status:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: #ff0000;
}
@media screen and (max-width: 575px) {
  .profile-info-box .profile-info .btn {
    font-size: 13px;
  }
}
.profile-info-box .profile-info .profile-name {
  background: rgba(0, 0, 0, 0.75);
  padding: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  border-radius: 12px;
}
@media screen and (max-width: 767px) {
  .profile-info-box .profile-info .profile-name {
    display: flex;
    justify-content: center;
  }
}
.profile-info-box .profile-info .profile-name p {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
}
@media screen and (max-width: 575px) {
  .profile-info-box .profile-info .profile-name p {
    font-size: 13px;
  }
}
.profile-info-box .profile-info .profile-name .verify {
  font-size: 15px;
  text-transform: uppercase;
  color: #ff0000;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 575px) {
  .profile-info-box .profile-info .profile-name .verify {
    font-size: 13px;
  }
}
.profile-info-box .profile-info .profile-name .verify img {
  display: block;
  width: 12px;
}
.profile-info-box .profile-img-wrapper {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .profile-info-box .profile-img-wrapper {
    flex-direction: column;
    align-items: center;
  }
}
.profile-info-box .profile-img-wrapper .friends-box .title {
  margin-bottom: 10px;
  font-weight: 600;
}
.profile-info-box .profile-img-wrapper .friends-box .friends-list {
  display: flex;
}
.profile-info-box .profile-img-wrapper .friends-box .friends-list .icon {
  margin-left: -15px;
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (max-width: 575px) {
  .profile-info-box .profile-img-wrapper .friends-box .friends-list .icon {
    width: 35px;
    height: 35px;
    min-width: 35px;
  }
}
.profile-info-box .profile-img-wrapper .friends-box .friends-list .icon:first-child {
  margin-left: 0;
}
.profile-info-box .profile-img-wrapper .friends-box .friends-list .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-info-box .video-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .profile-info-box .video-btn {
    bottom: auto;
    top: 0;
  }
}
.profile-info-box .video-btn input {
  position: absolute;
  opacity: 0;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.profile-tab {
  margin-bottom: 22px;
}

.profile-tab-btn-wrapper {
  padding-bottom: 6px;
  display: flex;
  gap: 5px;
}
.profile-tab-btn-wrapper .btn .icon img {
  max-width: 20px;
}

.info-card {
/*  padding: 50px 55px;*/
  margin-bottom: 27px;
}
@media screen and (max-width: 767px) {
  .info-card {
    margin-bottom: 10px;
    padding: 10px;
  }
}
.info-card .info-para {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  font-size: 19px;
  font-weight: 600;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .info-card .info-para {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.info-card .name-wrapper {
  display: flex;
  gap: 8px;
}
.info-card .name-wrapper .item {
  display: flex;
  gap: 8px;
  align-items: center;
}
.info-card .name-wrapper .item p {
  font-size: 13px;
  margin-bottom: 0;
}
.info-card .profile-desc {
  padding-top: 55px;
  padding-bottom: 40px;
  margin-bottom: 0;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .info-card .profile-desc {
    font-size: 16px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.info-card .data-box {
  padding-bottom: 20px;
}
.info-card .data-box:last-child {
  padding-bottom: 0;
}
.info-card .data-box .title {
  font-family: "Lato", sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .info-card .data-box .title {
    font-size: 18px;
  }
}
.info-card .data-box .desc {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .info-card .data-box .desc {
    font-size: 16px;
  }
}

.photos-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 45px;
  gap: 10px;
}
@media screen and (max-width: 575px) {
  .photos-header {
    margin-bottom: 30px;
  }
}
.photos-header p {
  margin-bottom: 0;
}
.photos-header .title {
  font-size: 18px;
  font-weight: 600;
}
@media screen and (max-width: 575px) {
  .photos-header .title {
    font-size: 16px;
  }
}
.photos-header a {
  color: white;
  font-size: 18px;
}
@media screen and (max-width: 575px) {
  .photos-header a {
    font-size: 13px;
  }
}

.photos-card {
  padding: 25px 55px 112px;
}
@media screen and (max-width: 767px) {
  .photos-card {
    padding: 30px;
  }
}

.photos-row {
  row-gap: 24px;
}
.photos-row .photo-box {
  border-radius: 12px;
  overflow: hidden;
  max-height: 320px;
}
.photos-row .photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-live-card {
  background: #222222;
  border-color: #333333;
}

.hot-form.profile {
  padding: 0;
  padding-bottom: 20px;
  border-bottom: 1px solid #333333;
}
@media screen and (max-width: 767px) {
  .hot-form.profile {
    flex-direction: row;
  }
}
.hot-form.profile .hotline-input-wrapper input {
  border-radius: 50px;
}

.uploads-wrapper {
  display: flex;
  gap: 45px;
}
@media screen and (max-width: 767px) {
  .uploads-wrapper {
    gap: 30px;
  }
}
@media screen and (max-width: 575px) {
  .uploads-wrapper {
    flex-direction: column;
    gap: 0;
  }
}

.live-wrapper {
  position: relative;
  padding: 15px 0 10px;
}
.live-wrapper input {
  opacity: 0;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.live-wrapper .upload-box {
  padding-left: 30px;
  position: relative;
}
.live-wrapper .upload-box .live-txt {
  position: absolute;
  padding: 2px 5px;
  border-radius: 6px;
  background-color: #ff0000;
  color: white;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  left: 0px;
  bottom: -5px;
}
.live-wrapper .upload-box .upload-btn {
  display: flex;
  align-items: center;
  gap: 15px;
}

.post-card {
  margin-bottom: 40px;
}

.post-profile {
  align-items: center;
  border-bottom: 0;
  padding-bottom: 20px;
}
    .post-profile .avatar-wrapper {
        position: relative;
        display: inline-block;
    }
.post-profile .avatar-wrapper .status:before {
  left: auto;
  right: 2px;
  top: auto;
  transform: none;
  bottom: 5px;
}
.post-profile .profile-info {
  font-family: "Lato", sans-serif;
}
.post-profile .profile-info .name {
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .post-profile .profile-info .name {
    font-size: 16px;
  }
}
.post-profile .profile-info .time {
  font-size: 15px;
  font-weight: 300;
}

.post-img {
  overflow: hidden;
  /*max-height: 700px;*/ /*bylo 500*/
/*  border-radius: 12px;*/
}
.post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
/*  filter: blur(40px);*/
}

.post-like-comment {
  display: flex;
  gap: 8px;
  padding-top: 20px;
}
.post-like-comment .item {
  display: flex;
  gap: 8px;
  align-items: center;
}
.post-like-comment .item p {
  font-size: 15px;
  margin-bottom: 0;
}

.accr-button, .accordion-item {
  border: 0;
  background: transparent;
  width: 100%;
}

.accordion-body {
  padding: 0;
}


@media screen and (max-width: 991px) {
 .content-wrapper,  .col-md-8, .content-card {
        display: block;
        visibility: visible !important;
        opacity: 1 !important;
        margin-top: 20px;
    }
}

.tab-buttons {
    display: flex;
    justify-content: space-between;
    margin: 0;
    width: 100%;
    position: relative;
    top: -14px;
}

    .tab-buttons button {
        flex-grow: 1;
        padding: 15px 10px;
        border: 1px solid #222222;
        background-color: #111111;
        color: white;
        cursor: pointer;
        transition: background-color 0.3s ease;
        font-size: 13px;
        text-align: center;
        box-sizing: border-box;
        margin-left: 0;
        margin-right: 0;
        border-top: none;
    }

        .tab-buttons button:not(:first-child) {
            margin-left: 1px;
            margin-left: -25px;
            min-width: 200px;
        }

        .tab-buttons button:not(:last-child) {
            margin-right: 15px;
            margin-left: -50px;
            min-width: 235px;
        }

        .tab-buttons button.active,
        .tab-buttons button:hover {
            background-color: #FE0000;
        }

/*.form-control {
    color: black;
}*/

.control-label {
    color: black;
}

.photo-item {
    position: relative;
    display: inline-block;
    margin: 10px;
}

.photo-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
/*    background-color: rgba(0, 0, 0, 0.7);*/
    color: white;
    text-align: center;
    padding: 0px;
    box-sizing: border-box;
    font-size: 11px;
}



.container-fluid {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 320px) and (max-width: 480px) {
    .container-fluid {
        max-width: 100%;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .container-fluid {
        max-width: 100%;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .container-fluid {
        max-width: 1700px;
    }
}

@media (min-width: 1025px) and (max-width: 1200px) {
    .container-fluid {
        max-width: 1700px;
    }
}

@media (min-width: 1201px) {
    .container-fluid {
        max-width: 1700px;
    }
}

.crown-img {
    position: absolute;
    top: 10px; 
    left: 10%;
    transform: translateX(-50%);
    z-index: 1;
}

@media (max-width: 1200px) {
    .crown-img {
        top: 12px; 
        left: 12%;
    }

   
}

@media (max-width: 900px) {
    .crown-img {
        top: 14px; 
        left: 14%;
    }

  
}

@media (max-width: 600px) {
    .crown-img {
        top: 16px; 
        left: 16%;
    }

    
}

@media (max-width: 400px) {
    .crown-img {
        top: 18px; 
        left: 18%;
    }

    
}

.responsive-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px; 
    row-gap: 60px; 
}

@media (max-width: 1200px) {
    .responsive-grid {
        grid-template-columns: repeat(4, 1fr);
    }

        .responsive-grid .itemS {
            margin-top: 15px;
        }
}

@media (max-width: 900px) {
    .responsive-grid {
        grid-template-columns: repeat(3, 1fr);
    }

        .responsive-grid .itemS {
            margin-top: 20px;
        }
}

@media (max-width: 600px) {
    .responsive-grid {
        grid-template-columns: repeat(2, 1fr);
    }

        .responsive-grid .itemS {
            margin-top: 25px;
        }
}

@media (max-width: 400px) {
    .responsive-grid {
        grid-template-columns: 1fr;
    }

        .responsive-grid .itemS {
            margin-top: 30px;
        }
}

.activity-description {
    display: block;
    margin-top: 10px; 
    font-size: 11px;
    color: white;
    /*margin-left: -50px;*/
}

.activity-description {
    display: inline-block; 
    max-width: 160px; 
    word-wrap: break-word; 
    overflow-wrap: break-word; 
    white-space: normal;
    line-height: 1.6; 
}

@media screen and (max-width: 1600px) {
    .activity-description {
        max-width: 150px;
        font-size: 10px;
    }

    .accept-button {
        margin-top: 35px;
        font-size: 8px;
    }

    .icon-circle img {
        width: 45px;
        height: 45px;
    }

    .live-item {
        margin-top: 20px;
    }

    .user-nick-link {
        margin-bottom: 10px;
    }
}


        @media screen and (max-width: 1200px) {
            .activity-description {
                max-width: 150px;
                font-size: 10px;
            }

            .accept-button {
                margin-top: 35px;
                font-size: 8px;
            }

            .icon-circle img {
                width: 45px;
                height: 45px;
            }

            .live-item {
                margin-top: 20px;
            }

            .user-nick-link {
                margin-bottom: 10px;
            }
        }

        .icon-circle img {
    width: 65px;
    height: 65px;
/*    border-radius: 50%;*/
    object-fit: cover;
}
.icon-rectangle img {
    width: 65px;
    height: 65px;
    object-fit: cover;
    display: block;
    margin-left: auto;
    margin-right: 0;
    margin-top: -70px; 
}

.live-list2 .icon-rectangle img {
    margin-right: 10px;

}
.icon-rectangle {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%; 
}



.user-nick-link {
/*    margin-top: -15px;*/ 
    display: inline-block; 
}






.play-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10px;
    color: white;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
    width: 50px;
}

.play-icon-overlay-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10px;
    color: white;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
    width: 80px; 
}



.duration-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.6); 
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    display: none; 
}


.video-container {
    position: relative;
    width: 100%; 
    max-width: 600px; 
    margin: 0 auto; 
    overflow: hidden;
}

.select-wrapper select {
    height: auto;
    padding: 9px 20px;
    border-radius: 30px;
    line-height: 1;
    padding-right: 40px !important
}

@media screen and (max-width: 575px) {
    .select-wrapper select {
        font-size: 12px;
        padding: 7px 15px
    }
}

.file-preview {
    display: flex;
    justify-content: center; /* Wyśrodkowanie poziome */
    align-items: center; /* Wyśrodkowanie pionowe */
    width: 100%; /* Pełna szerokość kontenera */
    height: auto; /* Dostosowanie wysokości do zawartości */
    max-height: 250px; /* Maksymalna wysokość */
    overflow: hidden; /* Zapobiega wyciekom treści */
    position: relative;

}


    .file-preview img, .file-preview video {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain; /* Całe zdjęcie widoczne */
        display: block;
    }



/*.file-preview {*/
   /* margin-top: 15px;*/
    /*display: flex;
    justify-content: center;
    align-items: center;
    max-height: 350px;
    overflow: hidden;
    position:relative
}

    .file-preview img, .file-preview video {
        max-width: 100%;
      
    }*/

 

.visibility-options {
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
}

.modal-buttons {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

    .modal-buttons .btn {
        padding: 10px 15px;
        cursor: pointer;
    }

    .modal-buttons .btn-primary {
        background-color: #E93323; 
        color: white;
        border: none;
    }

.custom-checkbox {
    position: relative;
    z-index: 1;
  /*  width: 20px;*/
    height: 20px;
    display: inline-block
}

    .custom-checkbox .check {
        font-size: 16px;
        margin: 15px;
    }

        .custom-checkbox .check:before {
            content: "";
            height: 20px;
            left: 0;
            position: absolute;
            width: 20px;
            top: 50%;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
            border: 1px solid white;
            border-radius: 3px;
            overflow: hidden
        }

        .custom-checkbox .check:after {
            border: solid #fff;
            border-width: 0 2px 2px 0;
            content: "";
            height: 10px;
            left: 7px;
            position: absolute;
            top: calc(50% - 7px);
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
            width: 6px;
            opacity: 0
        }

    .custom-checkbox input {
        opacity: 0;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        cursor: pointer;
        z-index: 1
    }

        .custom-checkbox input:checked + .check:after {
            opacity: 1
        }

        .custom-checkbox input:checked + .check:before {
            background-color: #ff0000;
            border-color: #ff0000
        }

        .custom-checkbox input:checked + .check + span {
            background: rgba(4,208,147,0.08);
            border: 1px solid #ff0000
        }

.like-icon {
    width: 14px;
    cursor: pointer
}

.like {
    display: none
}

.liked .unlike {
    display: none
}

.liked .like {
    display: block
}

@-webkit-keyframes rotating {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes rotating {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}



.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.82);
    display: flex; 
    align-items: center; 
    justify-content: center; 
    z-index: 1000;
}


.custom-modal-content {
    background-color: #111111;
    color: white;
    text-align: center;
    padding: 40px;
    border-radius: 8px;
    max-width: 550px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
  /* margin-top: 15%;*/
    margin-left: 35%;
    /* Tło obrazu */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; 
  
}

@media (max-width: 991px) {
    .custom-modal-content {
        margin-left: 0; 
    }
}
#stepImageContainer {
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    height: 300px; 
    margin-top: 20px;
}

/*    #stepImageContainer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5); 
        z-index: 1;
    }*/

.remove-padding-margin {
    padding: 0 !important;
    margin-left: 0 !important;
}

    .custom-modal-content .close {
        position: absolute;
        top: 10px;
        right: 20px;
        color: #aaa;
        font-size: 28px;
        font-weight: bold;
        cursor: pointer;
    }


.button-group {
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    margin-top: 20px;
}


#skipLabel {
    display: inline-block;
    margin: 20px auto; 
    font-weight: bold;
    color: white;
    font-size: 16px;
    text-align: center;
    cursor: pointer; 
    position: relative;
    width: 100%; 
}

#progress {
    margin-top: 40px;
}

#progressText {
    font-size: 16px;
    color: white;
    margin-bottom: 10px;
    display: block;
}

#progressBarContainer {
    width: 100%; 
    background-color: #ced4da;
    border-radius: 0; 
    height: 10px;
    position: relative;
    margin: 0 auto; 
    box-sizing: border-box;
  
}

#progressBar {
    background-color: #FE0000;
    height: 100%;
    width: 0%;
    border-radius: 0;
    transition: width 0.3s ease;
}


.checkbox-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
    gap: 15px 20px; 
    margin-bottom: 20px; 
    justify-items: start; 
}

#heightSlider {
    -webkit-appearance: none;
    appearance: none;
    width: 300px;
    height: 3px; 
    background: linear-gradient(to right, #FE0000 0%, #ddd 0%);
    border-radius: 5px;
    outline: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

    #heightSlider::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 25px;
        height: 25px;
        background: #FE0000;
        border-radius: 50%;
        cursor: pointer;
        position: relative;
        margin-top: -10px;
        z-index: 2;
    }

    #heightSlider::-moz-range-thumb {
        width: 15px;
        height: 15px;
        background: #FE0000;
        border-radius: 50%;
        cursor: pointer;
        position: relative;
        z-index: 2;
    }

    #heightSlider::-webkit-slider-runnable-track {
        background: transparent;
        border-radius: 5px;
        height: 5px; 
        position: relative;
        z-index: 1;
    }



#birthdate {
    appearance: none; 
    -webkit-appearance: none; 
    border: none; 
    border-bottom: 1px solid #333333; 
    background: #222222; 
    color: white; 
    font-size: 16px; 
    text-align: center; 
    width: 150px; 
    padding: 5px 0; 
    outline: none;
    margin-top: 20px;
}

    #birthdate::placeholder {
        color: white; 
        font-style: italic; 
    }

    #birthdate:focus {
        border-bottom: 2px solid #FE0000; 
        color: white; 
    }

#additionalLanguages {
    background: #222222;
    color: white;
    font-size: 14px;
    outline: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
    width: 100%;
}
    #additionalLanguages:focus {
        border-color: #FE0000;
    }

.checkbox-group-tekst {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px; 
    margin-top: 10px;
}



.upload-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.upload-label {
    display: inline-block;
    padding: 10px 20px;
    background-color: #FE0000;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

    .upload-label:hover {
        background-color: #d00000;
    }


.preview-circle {
    width: 250px;
    height: 250px;
    border: 2px solid #ddd;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

#previewImage {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

#stepImage {
    width: 100%; 
    height: auto; 
    margin-top: 20px; 
    border-radius: 5px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}








.article-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding: 10px;
    border-radius: 10px;
    border: 2px solid #444444;
    margin-bottom: 30px;
}

.gallery-title {
    font-weight: bold;
    font-size: 22px;
    color: white;
    text-align: center;
    margin-bottom: 20px;
}

.article-items {
    display: flex;
    gap: 15px; 
    justify-content: center; 
    flex-wrap: wrap;
}

.article-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 180px;
    height: 280px;
    padding: 10px;
    background-color: #111111;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
 
}


.article-photo {
    width: 100%;
    height: 160px; 
    object-fit: cover; 
    border-radius: 50%; 
    margin-bottom: 15px;
}

.article-info {
    text-align: center;
}

.article-nick {
    font-weight: bold;
    font-size: 16px;
    color: #FE0000;
    text-decoration: none;
    margin-bottom: 5px;
}

    .article-nick:hover {
        text-decoration: underline; 
    }

.article-address {
    font-size: 14px;
    color: white;
}



.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1055;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    outline: 0
}
/*modal mobilne*/
/*@media (max-width: 991px) {
    .modal {
        overflow-y: auto;
    }
}*/


.modal-dialog {
    position: relative;
    width: auto;
    margin: 0.5rem;
    pointer-events: none
}

.modal.fade .modal-dialog {
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out,-webkit-transform 0.3s ease-out;
    -webkit-transform: translate(0,-50px);
    transform: translate(0,-50px)
}

@media (prefers-reduced-motion:reduce) {
    .modal.fade .modal-dialog {
        -webkit-transition: none;
        transition: none
    }
}

.modal.show .modal-dialog {
    -webkit-transform: none;
    transform: none
}

.modal.modal-static .modal-dialog {
    -webkit-transform: scale(1.02);
    transform: scale(1.02)
}

.modal-dialog-scrollable {
    height: calc(100% - 1rem)
}

    .modal-dialog-scrollable .modal-content {
        max-height: 100%;
        overflow: hidden
    }

    .modal-dialog-scrollable .modal-body {
        overflow-y: auto
    }

.modal-dialog-centered {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - 1rem)
}

.modal-content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 0.3rem;
    outline: 0
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    width: 100vw;
    height: 100vh;
    background-color: #000
}

    .modal-backdrop.fade {
        opacity: 0
    }

    .modal-backdrop.show {
        opacity: 0.5
    }

.modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px)
}

    .modal-header .btn-close {
        padding: 0.5rem 0.5rem;
        margin: -0.5rem -0.5rem -0.5rem auto
    }

.btn-close {
    font-size: 1.3rem; 
    
}


.modal-title {
    margin-bottom: 0;
    line-height: 1.5
}

.modal-body {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem
}

.modal-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 0.75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(0.3rem - 1px);
    border-bottom-left-radius: calc(0.3rem - 1px)
}

    .modal-footer > * {
        margin: 0.25rem
    }

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        /*margin: 1.75rem auto*/
    }

    .modal-dialog-scrollable {
        height: calc(100% - 3.5rem)
    }

    .modal-dialog-centered {
        min-height: calc(100% - 3.5rem)
    }

    .modal-sm {
        max-width: 300px
    }
}

@media (min-width: 992px) {
    .modal-lg, .modal-xl {
        max-width: 800px
    }
}

@media (min-width: 1200px) {
    .modal-xl {
        max-width: 1140px
    }
}

.modal-fullscreen {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0
}

    .modal-fullscreen .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0
    }

    .modal-fullscreen .modal-header {
        border-radius: 0
    }

    .modal-fullscreen .modal-body {
        overflow-y: auto
    }

    .modal-fullscreen .modal-footer {
        border-radius: 0
    }

@media (max-width: 575.98px) {
    .modal-fullscreen-sm-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

        .modal-fullscreen-sm-down .modal-content {
            height: 100%;
            border: 0;
            border-radius: 0
        }

        .modal-fullscreen-sm-down .modal-header {
            border-radius: 0
        }

        .modal-fullscreen-sm-down .modal-body {
            overflow-y: auto
        }

        .modal-fullscreen-sm-down .modal-footer {
            border-radius: 0
        }
}

@media (max-width: 767.98px) {
    .modal-fullscreen-md-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

        .modal-fullscreen-md-down .modal-content {
            height: 100%;
            border: 0;
            border-radius: 0
        }

        .modal-fullscreen-md-down .modal-header {
            border-radius: 0
        }

        .modal-fullscreen-md-down .modal-body {
            overflow-y: auto
        }

        .modal-fullscreen-md-down .modal-footer {
            border-radius: 0
        }
}

@media (max-width: 991.98px) {
    .modal-fullscreen-lg-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

        .modal-fullscreen-lg-down .modal-content {
            height: 100%;
            border: 0;
            border-radius: 0
        }

        .modal-fullscreen-lg-down .modal-header {
            border-radius: 0
        }

        .modal-fullscreen-lg-down .modal-body {
            overflow-y: auto
        }

        .modal-fullscreen-lg-down .modal-footer {
            border-radius: 0
        }
}

@media (max-width: 1199.98px) {
    .modal-fullscreen-xl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

        .modal-fullscreen-xl-down .modal-content {
            height: 100%;
            border: 0;
            border-radius: 0
        }

        .modal-fullscreen-xl-down .modal-header {
            border-radius: 0
        }

        .modal-fullscreen-xl-down .modal-body {
            overflow-y: auto
        }

        .modal-fullscreen-xl-down .modal-footer {
            border-radius: 0
        }
}

@media (max-width: 1399.98px) {
    .modal-fullscreen-xxl-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0
    }

        .modal-fullscreen-xxl-down .modal-content {
            height: 100%;
            border: 0;
            border-radius: 0
        }

        .modal-fullscreen-xxl-down .modal-header {
            border-radius: 0
        }

        .modal-fullscreen-xxl-down .modal-body {
            overflow-y: auto
        }

        .modal-fullscreen-xxl-down .modal-footer {
            border-radius: 0
        }
}

.tooltip {
    position: absolute;
    z-index: 1080;
    display: block;
    margin: 0;
    font-family: var(--bs-font-sans-serif);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: 0.875rem;
    word-wrap: break-word;
    opacity: 0
}

    .tooltip.show {
        opacity: 0.9
    }

    .tooltip .tooltip-arrow {
        position: absolute;
        display: block;
        width: 0.8rem;
        height: 0.4rem
    }

        .tooltip .tooltip-arrow:before {
            position: absolute;
            content: "";
            border-color: transparent;
            border-style: solid
        }

.bs-tooltip-auto[data-popper-placement^=top], .bs-tooltip-top {
    padding: 0.4rem 0
}

    .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow, .bs-tooltip-top .tooltip-arrow {
        bottom: 0
    }

        .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow:before, .bs-tooltip-top .tooltip-arrow:before {
            top: -1px;
            border-width: 0.4rem 0.4rem 0;
            border-top-color: #000
        }

.bs-tooltip-auto[data-popper-placement^=right], .bs-tooltip-end {
    padding: 0 0.4rem
}

    .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow, .bs-tooltip-end .tooltip-arrow {
        left: 0;
        width: 0.4rem;
        height: 0.8rem
    }

        .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow:before, .bs-tooltip-end .tooltip-arrow:before {
            right: -1px;
            border-width: 0.4rem 0.4rem 0.4rem 0;
            border-right-color: #000
        }

.bs-tooltip-auto[data-popper-placement^=bottom], .bs-tooltip-bottom {
    padding: 0.4rem 0
}

    .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow, .bs-tooltip-bottom .tooltip-arrow {
        top: 0
    }

        .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow:before, .bs-tooltip-bottom .tooltip-arrow:before {
            bottom: -1px;
            border-width: 0 0.4rem 0.4rem;
            border-bottom-color: #000
        }

.bs-tooltip-auto[data-popper-placement^=left], .bs-tooltip-start {
    padding: 0 0.4rem
}

    .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow, .bs-tooltip-start .tooltip-arrow {
        right: 0;
        width: 0.4rem;
        height: 0.8rem
    }

        .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow:before, .bs-tooltip-start .tooltip-arrow:before {
            left: -1px;
            border-width: 0.4rem 0 0.4rem 0.4rem;
            border-left-color: #000
        }

.tooltip-inner {
    max-width: 200px;
    padding: 0.25rem 0.5rem;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: 0.25rem
}

.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1070;
    display: block;
    max-width: 276px;
    font-family: var(--bs-font-sans-serif);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: 0.875rem;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 0.3rem
}

    .popover .popover-arrow {
        position: absolute;
        display: block;
        width: 1rem;
        height: 0.5rem
    }

        .popover .popover-arrow:after, .popover .popover-arrow:before {
            position: absolute;
            display: block;
            content: "";
            border-color: transparent;
            border-style: solid
        }

.bs-popover-auto[data-popper-placement^=top] > .popover-arrow, .bs-popover-top > .popover-arrow {
    bottom: calc(-0.5rem - 1px)
}

    .bs-popover-auto[data-popper-placement^=top] > .popover-arrow:before, .bs-popover-top > .popover-arrow:before {
        bottom: 0;
        border-width: 0.5rem 0.5rem 0;
        border-top-color: rgba(0,0,0,0.25)
    }

    .bs-popover-auto[data-popper-placement^=top] > .popover-arrow:after, .bs-popover-top > .popover-arrow:after {
        bottom: 1px;
        border-width: 0.5rem 0.5rem 0;
        border-top-color: #fff
    }

.bs-popover-auto[data-popper-placement^=right] > .popover-arrow, .bs-popover-end > .popover-arrow {
    left: calc(-0.5rem - 1px);
    width: 0.5rem;
    height: 1rem
}

    .bs-popover-auto[data-popper-placement^=right] > .popover-arrow:before, .bs-popover-end > .popover-arrow:before {
        left: 0;
        border-width: 0.5rem 0.5rem 0.5rem 0;
        border-right-color: rgba(0,0,0,0.25)
    }

    .bs-popover-auto[data-popper-placement^=right] > .popover-arrow:after, .bs-popover-end > .popover-arrow:after {
        left: 1px;
        border-width: 0.5rem 0.5rem 0.5rem 0;
        border-right-color: #fff
    }

.bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow, .bs-popover-bottom > .popover-arrow {
    top: calc(-0.5rem - 1px)
}

    .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow:before, .bs-popover-bottom > .popover-arrow:before {
        top: 0;
        border-width: 0 0.5rem 0.5rem 0.5rem;
        border-bottom-color: rgba(0,0,0,0.25)
    }

    .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow:after, .bs-popover-bottom > .popover-arrow:after {
        top: 1px;
        border-width: 0 0.5rem 0.5rem 0.5rem;
        border-bottom-color: #fff
    }

.bs-popover-auto[data-popper-placement^=bottom] .popover-header:before, .bs-popover-bottom .popover-header:before {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 1rem;
    margin-left: -0.5rem;
    content: "";
    border-bottom: 1px solid #f0f0f0
}

.bs-popover-auto[data-popper-placement^=left] > .popover-arrow, .bs-popover-start > .popover-arrow {
    right: calc(-0.5rem - 1px);
    width: 0.5rem;
    height: 1rem
}

    .bs-popover-auto[data-popper-placement^=left] > .popover-arrow:before, .bs-popover-start > .popover-arrow:before {
        right: 0;
        border-width: 0.5rem 0 0.5rem 0.5rem;
        border-left-color: rgba(0,0,0,0.25)
    }

    .bs-popover-auto[data-popper-placement^=left] > .popover-arrow:after, .bs-popover-start > .popover-arrow:after {
        right: 1px;
        border-width: 0.5rem 0 0.5rem 0.5rem;
        border-left-color: #fff
    }

.popover-header {
    padding: 0.5rem 1rem;
    margin-bottom: 0;
    font-size: 1rem;
    background-color: #f0f0f0;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px)
}

    .popover-header:empty {
        display: none
    }

.popover-body {
    padding: 1rem 1rem;
    color: #212529
}

.carousel {
    position: relative
}

    .carousel.pointer-event {
        -ms-touch-action: pan-y;
        touch-action: pan-y
    }

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden
}

    .carousel-inner:after {
        display: block;
        clear: both;
        content: ""
    }

.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    transition: -webkit-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out,-webkit-transform 0.6s ease-in-out
}

@media (prefers-reduced-motion:reduce) {
    .carousel-item {
        -webkit-transition: none;
        transition: none
    }
}

.carousel-item-next, .carousel-item-prev, .carousel-item.active {
    display: block
}

    .active.carousel-item-end, .carousel-item-next:not(.carousel-item-start) {
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }

    .active.carousel-item-start, .carousel-item-prev:not(.carousel-item-end) {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }

.carousel-fade .carousel-item {
    opacity: 0;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transform: none;
    transform: none
}

    .carousel-fade .carousel-item-next.carousel-item-start, .carousel-fade .carousel-item-prev.carousel-item-end, .carousel-fade .carousel-item.active {
        z-index: 1;
        opacity: 1
    }

.carousel-fade .active.carousel-item-end, .carousel-fade .active.carousel-item-start {
    z-index: 0;
    opacity: 0;
    -webkit-transition: opacity 0s 0.6s;
    transition: opacity 0s 0.6s
}

@media (prefers-reduced-motion:reduce) {
    .carousel-fade .active.carousel-item-end, .carousel-fade .active.carousel-item-start {
        -webkit-transition: none;
        transition: none
    }
}

.carousel-control-next, .carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 15%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: 0.5;
    -webkit-transition: opacity 0.15s ease;
    transition: opacity 0.15s ease
}

@media (prefers-reduced-motion:reduce) {
    .carousel-control-next, .carousel-control-prev {
        -webkit-transition: none;
        transition: none
    }
}

.carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: 0.9
}

.carousel-control-prev {
    left: 0
}

.carousel-control-next {
    right: 0
}

.carousel-control-next-icon, .carousel-control-prev-icon {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;
    list-style: none
}

    .carousel-indicators [data-bs-target] {
        -webkit-box-sizing: content-box;
        box-sizing: content-box;
        -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
        flex: 0 1 auto;
        width: 30px;
        height: 3px;
        padding: 0;
        margin-right: 3px;
        margin-left: 3px;
        text-indent: -999px;
        cursor: pointer;
        background-color: #fff;
        background-clip: padding-box;
        border: 0;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
        opacity: 0.5;
        -webkit-transition: opacity 0.6s ease;
        transition: opacity 0.6s ease
    }

@media (prefers-reduced-motion:reduce) {
    .carousel-indicators [data-bs-target] {
        -webkit-transition: none;
        transition: none
    }
}

.carousel-indicators .active {
    opacity: 1
}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 1.25rem;
    left: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center
}

.carousel-dark .carousel-control-next-icon, .carousel-dark .carousel-control-prev-icon {
    -webkit-filter: invert(1) grayscale(100);
    filter: invert(1) grayscale(100)
}

.carousel-dark .carousel-indicators [data-bs-target] {
    background-color: #000
}

.carousel-dark .carousel-caption {
    color: #000
}

@-webkit-keyframes spinner-border {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes spinner-border {
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}




.slide-box:has(video) {
    position: relative
}

    .slide-box:has(video):before {
        content: "";
        height: 48px;
        width: 48px;
        background-image: url(../../../images/video-play.png);
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
        background-color: #000
    }

.info-block {
    background-color: #111111;
    border-left: 1px solid #333333;
    border-radius: 0 3px 3px 0;
    height: 100%;
    padding: 17px 55px 20px 46px;
    font-family: "Lato",sans-serif;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

@media (max-width: 1535px) {
    .info-block {
        padding: 17px 20px 20px 20px
    }
}

@media (max-width: 991px) {
    .info-block {
        padding: 17px 55px 20px 46px;
        border-left: none;
        border-top: 1px solid #333333
    }
}

@media (max-width: 575px) {
    .info-block {
        padding: 23px 25px 20px 25px;
        border-left: none;
        border-top: 1px solid #333333
    }
}

.user-info-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 18px;
    margin-bottom: 20px
}

    .user-info-box .avatar {
        height: 71px;
        width: 71px;
        min-width: 71px;
        overflow: hidden;
        border-radius: 50%
    }

        .user-info-box .avatar img {
            height: 100%;
            width: 100%;
            -o-object-fit: cover;
            object-fit: cover
        }

    .user-info-box .user-info {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

        .user-info-box .user-info p {
            margin-bottom: 0
        }

        .user-info-box .user-info .name {
            font-size: 17px;
            line-height: 1;
            font-weight: bold;
            color: #fff;
            margin-bottom: 5px
        }

        .user-info-box .user-info .time {
            font-size: 13px;
            font-weight: 400;
            line-height: 1;
            margin-bottom: 10px;
            color: #fff
        }

        .user-info-box .user-info .code {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            font-size: 15px;
            line-height: 1;
            font-weight: bold;
            gap: 6px;
            margin-bottom: 10px
        }

        .user-info-box .user-info .date {
            font-size: 13px;
            line-height: 1;
            font-weight: bold;
            color: #848484
        }

.user-desc-box {
    padding-left: 10px;
    margin-bottom: 40px
}

@media (max-width: 991px) {
    .user-desc-box {
        padding-left: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        gap: 6px;
        margin-bottom: 25px
    }
}

/*.user-desc-box .desc {
    font-size: 17px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px
}*/

@media (max-width: 991px) {
    .user-desc-box .desc {
        margin-bottom: 8px
    }
}

/*.user-desc-box .album-info {
    font-size: 17px;
    line-height: 1;
    font-weight: bold;
    color: #fff
}

@media (max-width: 991px) {
    .user-desc-box .album-info {
        margin-bottom: 0
    }
}*/

.like-comment-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.like-comment-box {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 15px;
    line-height: normal;
    font-weight: 500;
    color: #fff;
    gap: 8px;
    margin-right: 12px
}

@media (max-width: 991px) {
    .like-comment-box {
        font-size: 12px
    }
}

.text-red {
    color: #ff0000
}

.user-chat-lsting-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    /* max-height: 760px;*/
    height: calc(100vh - 390px);
    overflow-y: auto;
    padding-right: 4px
}

@media (max-width: 991px) {
  /*  .user-chat-lsting-block {
        max-height: 356px
    }*/
}

.user-chat-lsting-block::-webkit-scrollbar {
    width: 4px
}

.user-chat-lsting-block::-webkit-scrollbar-track {
    background-color: transparent
}

.user-chat-lsting-block::-webkit-scrollbar-thumb {
    background-color: #222222;
    border-radius: 50rem
}

.user-chat-lsting-block + .msg-input-wrapper:before {
    display: none
}

/*#gallerySwiperThumbnail {
    margin-top: 18%;*/ /* Ustawiamy margines górny na 20% wysokości rodzica */
/*}*/


@media (max-width: 991px) {
    .user-chat-lsting-block {
        gap: 20px ;
/*        height: 356px;*/
    }
}

.user-chat-lsting-block .chat-list-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 18px
}

    .user-chat-lsting-block .chat-list-box .avatar {
        height: 41px;
        width: 41px;
        min-width: 41px;
        border-radius: 50%
    }

        .user-chat-lsting-block .chat-list-box .avatar img {
            height: 100%;
            width: 100%;
            -o-object-fit: cover;
            object-fit: cover;
            border-radius: 50%
        }

    .user-chat-lsting-block .chat-list-box .chat-info-box {
        margin-top: 15px;
        padding: 5px 20px 20px 20px;
        border-radius: 11px;
        background-color: #1a1a1a
    }

@media (max-width: 991px) {
    .user-chat-lsting-block .chat-list-box .chat-info-box {
        margin-top: 0
    }
}

.user-chat-lsting-block .chat-list-box .chat-info-box .name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    font-size: 17px;
    line-height: 1;
    font-weight: bold;
    color: #fff;
    margin-bottom: 4px
}

@media (max-width: 991px) {
    .user-chat-lsting-block .chat-list-box .chat-info-box .name {
        font-size: 15px
    }
}

.user-chat-lsting-block .chat-list-box .chat-info-box .time {
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 10px;
    color: #fff
}

.user-chat-lsting-block .chat-list-box .chat-info-box .chat-txt {
    font-size: 15px;
    line-height: 22px;
    font-weight: 400;
    margin-bottom: 15px
}

@media (max-width: 991px) {
    .user-chat-lsting-block .chat-list-box .chat-info-box .chat-txt {
        font-size: 13px;
        line-height: 16px
    }
}

.user-chat-lsting-block .chat-list-box .chat-info-box .chat-bottom-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 10px
}

@media (max-width: 991px) {
    .user-chat-lsting-block .chat-list-box .chat-info-box .chat-bottom-info {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end
    }
}

/*.user-chat-lsting-block .chat-list-box .chat-info-box .chat-bottom-info .date {
    font-size: 13px;
    line-height: 1;
    font-weight: bold;
    color: #848484;
    margin-left: auto;
    margin-bottom: 0
}*/
.user-chat-lsting-block .chat-list-box .chat-info-box .chat-bottom-info {
    justify-content: space-between;
}

@media (max-width: 991px) {
    .user-chat-lsting-block .chat-list-box .chat-info-box .chat-bottom-info .date {
        font-size: 10px
    }
}

.feature-card {
    padding: 75px 25px;
    background: #222222;
    border: 2px solid #333333;
    height: 100%;
    margin-bottom: 0;
    position: relative
}

@media screen and (max-width: 575px) {
    .feature-card {
        padding: 60px 20px;
        padding-bottom: 30px
    }
}

.feature-card.active {
    border: 2px solid #ff0000
}

.feature-card .crown {
    position: absolute;
    left: 50%;
    top: 20px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

    .feature-card .crown.small {
        top: 24px
    }

.feature-card .title {
    text-align: center;
    font-size: 29px;
    font-weight: 600;
    margin: 0
}

    .feature-card .title .primary {
        color: #ff0000
    }

@media screen and (max-width: 575px) {
    .feature-card .title {
        font-size: 24px
    }
}

.feature-card .desc {
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px
}

    .feature-card .desc .primary {
        display: block;
        font-weight: 600;
        color: #ff0000
    }

@media screen and (max-width: 575px) {
    .feature-card .desc {
        margin-bottom: 30px
    }
}

.feature-list {
    padding: 0;
    margin: 0;
    list-style: none
}

    .feature-list li {
        margin-bottom: 45px;
        font-size: 18px;
        padding-left: 40px;
        position: relative
    }

        .feature-list li:last-child {
            margin-bottom: 0
        }

        .feature-list li:after {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
            width: 22px;
            height: 22px;
            background: url("../images/check.webp")
        }

@media screen and (max-width: 1699px) {
    .feature-list li {
        font-size: 16px;
        margin-bottom: 30px
    }
}

@media screen and (max-width: 575px) {
    .feature-list li {
        font-size: 14px;
        padding-left: 30px
    }

        .feature-list li:after {
            width: 14px;
            height: 14px;
            background-size: cover
        }
}

.period-box {
    background: #fff;
    border-radius: 12px;
    margin-top: 30px;
    overflow: hidden
}

    .period-box .period-tab {
        background: #ff0000;
        border-radius: 12px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }

        .period-box .period-tab .nav-item {
            -webkit-box-flex: 1;
            -ms-flex-positive: 1;
            flex-grow: 1
        }

        .period-box .period-tab .nav-link {
            color: white;
            font-size: 18px;
            font-weight: 700;
            border-radius: 0;
            width: 100%;
            padding: 8px
        }

            .period-box .period-tab .nav-link.active {
                background: white;
                color: #111111
            }

@media screen and (max-width: 1699px) {
    .period-box .period-tab .nav-link {
        font-size: 16px
    }
}

@media screen and (max-width: 575px) {
    .period-box .period-tab .nav-link {
        font-size: 14px
    }
}

.plan-list {
    padding: 0;
    margin: 0;
    list-style: none;
    padding: 10px 6px
}

    .plan-list li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 15px;
        padding-right: 40px;
        border-radius: 16px;
        border: 1px solid #e2e2e2;
        margin-bottom: 6px;
        gap: 20px
    }

        .plan-list li p {
            margin-bottom: 0;
            color: #111111;
            font-size: 18px;
            font-weight: 700
        }

@media screen and (max-width: 1699px) {
    .plan-list li {
        padding-right: 15px
    }

        .plan-list li p {
            font-size: 16px
        }
}

@media screen and (max-width: 575px) {
    .plan-list li p {
        font-size: 14px
    }
}

.payment-desc {
    margin-top: 55px;
    margin-bottom: 50px;
    padding-left: 20px
}

    .payment-desc p {
        margin-bottom: 20px
    }

        .payment-desc p:last-child {
            margin-bottom: 0
        }

@media screen and (max-width: 575px) {
    .payment-desc p {
        font-size: 14px
    }
}

@media screen and (max-width: 575px) {
    .payment-desc {
        margin-top: 0;
        padding-left: 0;
        margin-bottom: 30px
    }
}

.features-row {
    row-gap: 24px
}

.online {
    color: #019a1d
}

body.chat-page .category-list {
    margin-bottom: 27px
}

@media (max-width: 991px) {
    body.chat-page .mobile-top-space {
        display: none
    }
}

.chat-main-wrapper {
    border-top: 1px solid #222222
}

@media (min-width: 992px) {
    .chat-main-wrapper .col-lg-2 {
        width: 100%;
        max-width: 318px
    }
}

@media (min-width: 992px) {
    .chat-main-wrapper .col-lg-8 {
        width: 100%;
        max-width: calc(100% - 636px)
    }
}

.chat-left-sidebar-block {
    height: 100%;
    padding: 20px 5px 40px;
    border-right: 1px solid #222222
}

@media (max-width: 991px) {
    .chat-left-sidebar-block {
        border-right: none;
        border-bottom: 1px solid #222222;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-column-gap: 20px;
        -moz-column-gap: 20px;
        column-gap: 20px;
        row-gap: 15px;
        padding: 20px 16px 10px
    }
}

.chat-left-sidebar-block .heading {
    font-size: 29px;
    font-weight: bold;
    color: #fff;
    padding-left: 10px;
    margin-bottom: 10px
}

@media (max-width: 991px) {
    .chat-left-sidebar-block .heading {
        padding-left: 0;
        margin-bottom: 0;
        font-size: 22px
    }
}

@media (max-width: 767px) {
    .chat-left-sidebar-block .heading {
        padding-left: 0;
        margin-bottom: 0;
        font-size: 17px
    }
}

.chat-search-bar {
    position: relative;
    margin-bottom: 15px
}

@media (max-width: 991px) {
    .chat-search-bar {
        margin-bottom: 0;
        width: calc(100% - 84px)
    }
}

@media (max-width: 767px) {
    .chat-search-bar {
        width: calc(100% - 70px)
    }
}

.chat-search-bar .form-control {
    padding-left: 46px;
    background: #222222;
    border-color: #333333;
    border-radius: 30px;
    height: 37px;
    font-size: 14px;
    width: 100%;
    max-width: 100%
}

    .chat-search-bar .form-control::-webkit-input-placeholder {
        color: #cccccc
    }

    .chat-search-bar .form-control::-moz-placeholder {
        color: #cccccc
    }

    .chat-search-bar .form-control:-ms-input-placeholder {
        color: #cccccc
    }

    .chat-search-bar .form-control::-ms-input-placeholder {
        color: #cccccc
    }

    .chat-search-bar .form-control::placeholder {
        color: #cccccc
    }

.chat-search-bar button {
    border: none;
    background: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    padding-left: 14px;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.chat-sidebar-listing-block {
    font-family: "Lato",sans-serif;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    width: 100%
}

@media (max-width: 991px) {
    .chat-sidebar-listing-block {
        max-height: 154px
    }
}

.chat-sidebar-listing-block::-webkit-scrollbar {
    width: 4px
}

.chat-sidebar-listing-block::-webkit-scrollbar-track {
    background-color: transparent
}

.chat-sidebar-listing-block::-webkit-scrollbar-thumb {
    background-color: #222222;
    border-radius: 50rem
}

.chat-sidebar-listing-block .chat-list-box {
    padding: 10px 8px;
    border-radius: 11px;
    background-color: transparent;
    gap: 9px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer
}

    .chat-sidebar-listing-block .chat-list-box.active, .chat-sidebar-listing-block .chat-list-box:hover {
        background-color: rgba(34,34,34,0.5)
    }

    .chat-sidebar-listing-block .chat-list-box .avatar {
        position: relative
    }

        .chat-sidebar-listing-block .chat-list-box .avatar .user-status {
            width: 10px;
            height: 10px;
            border-radius: 5px;
            background-color: #ff0000;
            position: absolute;
            bottom: 3px;
            right: 3px
        }

            .chat-sidebar-listing-block .chat-list-box .avatar .user-status.online {
                background-color: #019a1d
            }

    .chat-sidebar-listing-block .chat-list-box .chat-info-box {
        margin-top: 0;
        padding: 0;
        border-radius: 0;
        width: 100%;
        background-color: transparent
    }

        .chat-sidebar-listing-block .chat-list-box .chat-info-box .name {
            margin-bottom: 2px
        }

        .chat-sidebar-listing-block .chat-list-box .chat-info-box .chat-txt {
            font-size: 13px;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 80%;
            margin-bottom: 0;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden
        }

@media (min-width: 992px) {
    .chat-sidebar-listing-block .chat-list-box .chat-info-box .chat-txt {
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden
    }
}

.chat-sidebar-listing-block .chat-list-box .chat-info-box .time {
    margin-bottom: 0;
    position: absolute;
    top: 5px;
    right: 0
}

.userprofile-right-sidebar-block {
    padding: 18px 22px 40px;
    border-left: 1px solid #222222;
    font-family: "Lato";
    height: 100%
}

@media (max-width: 991px) {
    .userprofile-right-sidebar-block {
        border-left: none;
        border-bottom: 1px solid #222222;
        padding: 15px 16px 20px
    }
}

.userprofile-right-sidebar-block .user-info-box {
    gap: 14px
}

@media (max-width: 991px) {
    .userprofile-right-sidebar-block .user-info-box {
        margin-bottom: 0
    }
}

.userprofile-right-sidebar-block .user-info-box .avatar {
    height: 100px;
    width: 100px;
    min-width: 100px;
    border-radius: 50%
}

.userprofile-right-sidebar-block .user-info-box .user-info {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

    .userprofile-right-sidebar-block .user-info-box .user-info .code {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

.userprofile-right-sidebar-block .search-result {
    margin-top: 5px;
    font-size: 15px;
    font-weight: 400;
    color: #ffffff
}

@media (max-width: 991px) {
    .userprofile-right-sidebar-block .search-result {
        border-radius: 15px;
        background-color: #212121;
        height: 31px;
        padding: 3px 22px
    }
}

.profile-search-bar {
    position: relative;
    width: 100%;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out
}

@media (max-width: 991px) {
    .profile-search-bar {
        display: none
    }
}

.profile-search-bar:has(.form-control:not(:focus)) {
    width: 42px
}

    .profile-search-bar:has(.form-control:not(:focus)) .form-control {
        padding-left: 21px;
        cursor: pointer
    }

.profile-search-bar .form-control {
    padding-left: 46px;
    background: #222222;
    border-color: #333333;
    border-radius: 30px;
    height: 42px;
    font-size: 14px;
    width: 100%;
    max-width: 100%;
    -webkit-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out
}

    .profile-search-bar .form-control::-webkit-input-placeholder {
        color: #cccccc
    }

    .profile-search-bar .form-control::-moz-placeholder {
        color: #cccccc
    }

    .profile-search-bar .form-control:-ms-input-placeholder {
        color: #cccccc
    }

    .profile-search-bar .form-control::-ms-input-placeholder {
        color: #cccccc
    }

    .profile-search-bar .form-control::placeholder {
        color: #cccccc
    }

.profile-search-bar button {
    border: none;
    background: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    padding-left: 12px;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    pointer-events: none
}

.profile-grid-block {
    row-gap: 12px;
    -webkit-column-gap: 9px;
    -moz-column-gap: 9px;
    column-gap: 9px;
    max-height: calc(100vh - 247px);
    overflow-y: auto
}

    .profile-grid-block::-webkit-scrollbar {
        width: 4px
    }

    .profile-grid-block::-webkit-scrollbar-track {
        background-color: transparent
    }

    .profile-grid-block::-webkit-scrollbar-thumb {
        background-color: #222222
    }

    .profile-grid-block .grid-item {
        border-radius: 5px;
        max-height: 164px
    }

        .profile-grid-block .grid-item img {
            width: 100%;
            height: 100%;
            border-radius: 5px;
            -o-object-fit: cover;
            object-fit: cover
        }

.profile-chatting-block {
    font-family: "Lato";
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.profile-header {
    padding: 15px 20px;
    background-color: rgba(26,26,26,0.54);
    border-bottom: 1px solid #222222
}

@media (max-width: 991px) {
    .profile-header {
        display: none
    }
}

.profile-header .user-info-box {
    gap: 14px
}

    .profile-header .user-info-box .avatar {
        height: 51px;
        width: 51px;
        min-width: 51px;
        border-radius: 50%
    }

.conversation-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    padding: 21px 17px 34px 30px;
    height: calc(100vh - 90px);
    overflow-y: auto
}

@media (max-width: 991px) {
    .conversation-list {
        padding: 20px 16px 15px 16px;
        height: calc(100vh - 480px);
        margin-bottom: 10px;
        margin-top: 10px
    }
}

.conversation-list::-webkit-scrollbar {
    width: 4px
}

.conversation-list::-webkit-scrollbar-track {
    background-color: transparent
}

.conversation-list::-webkit-scrollbar-thumb {
    background-color: #222222
}

.conversation-list .conversation-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px
}

@media (max-width: 991px) {
    .conversation-list .conversation-item {
        gap: 10px
    }
}

.conversation-list .conversation-item.reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

    .conversation-list .conversation-item.reverse .conversation-info .txt {
        background-color: #ff0000
    }

.conversation-list .conversation-item .avatar {
    width: 34px;
    min-width: 34px;
    height: 34px;
    border-radius: 50%
}

    .conversation-list .conversation-item .avatar img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        border-radius: 50%
    }

.conversation-list .conversation-item .conversation-info .txt {
    padding: 16px 17px 16px 20px;
    border-radius: 11px;
    background-color: #1a1a1a;
    max-width: 421px;
    width: 100%;
    font-size: 15px;
    line-height: 25px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Lato";
    margin-bottom: 0
}

@media (max-width: 767px) {
    .conversation-list .conversation-item .conversation-info .txt {
        max-width: 226px;
        padding: 16px 10px 16px 16px
    }
}

.conversation-list .conversation-item .conversation-info img {
    width: 100%;
    max-width: 221px;
    border-radius: 10px;
    cursor: pointer
}

.chat-image-modal .modal-dialog {
    padding: 0 30px
}

@media (min-width: 576px) {
    .chat-image-modal .modal-dialog {
        max-width: -webkit-max-content;
        max-width: -moz-max-content;
        max-width: max-content;
        margin: 1.75rem auto;
        padding: 0 2rem
    }
}

.chat-image-modal .modal-content {
    border-radius: 0;
    background-color: transparent;
    border: none
}

    .chat-image-modal .modal-content .btn-close {
        -webkit-filter: brightness(0) invert(1);
        filter: brightness(0) invert(1);
        position: absolute;
        top: 10px;
        right: 10px;
        opacity: 1;
        z-index: 9
    }

@media (max-width: 1700px) {
    .chat-image-modal .modal-content .btn-close {
        top: 10px;
        right: 5px
    }
}



.chat-image-modal .modal-body {
    padding: 0;
    text-align: center
}

    .chat-image-modal .modal-body img {
        border-radius: 5px;
        max-height: calc(100vh - 60px)
    }

.msg-input-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 24px;
    gap: 13px;
    margin-top: auto;
    position: relative
}

@media (min-width: 992px) {
    .msg-input-wrapper {
        padding: 15px 16px 22px 16px
    }
}

.msg-input-wrapper:before {
    content: "";
    height: 1px;
    width: calc(100% - 32px);
    position: absolute;
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #222222
}

@media (min-width: 992px) {
    .msg-input-wrapper:before {
        display: none
    }
}

.msg-input-wrapper .upload-option-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 11px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media (max-width: 991px) {
    .msg-input-wrapper .upload-option-box {
        gap: 9px
    }
}

.msg-input-wrapper .upload-option-box button {
    background-color: transparent;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none;
    padding: 0;
    margin: 0
}

.msg-input-wrapper .upload-option-box .addFile, .msg-input-wrapper .upload-option-box .fileIcon, .msg-input-wrapper .upload-option-box .gifIcon, .msg-input-wrapper .upload-option-box .tagIcon {
    position: relative;
    cursor: pointer;
    overflow: hidden
}

    .msg-input-wrapper .upload-option-box .addFile label, .msg-input-wrapper .upload-option-box .fileIcon label, .msg-input-wrapper .upload-option-box .gifIcon label, .msg-input-wrapper .upload-option-box .tagIcon label {
        margin: 0;
        cursor: pointer
    }

        .msg-input-wrapper .upload-option-box .addFile label img, .msg-input-wrapper .upload-option-box .fileIcon label img, .msg-input-wrapper .upload-option-box .gifIcon label img, .msg-input-wrapper .upload-option-box .tagIcon label img {
            cursor: pointer
        }

    .msg-input-wrapper .upload-option-box .addFile input, .msg-input-wrapper .upload-option-box .fileIcon input, .msg-input-wrapper .upload-option-box .gifIcon input, .msg-input-wrapper .upload-option-box .tagIcon input {
        top: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        min-width: 100%;
        min-height: 100%;
        text-align: right;
        opacity: 0;
        background: none;
        display: block;
        position: absolute;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        cursor: pointer
    }

.msg-input-wrapper .type-box {
    position: relative;
    width: 100%;
    max-width: 1042px
}

    .msg-input-wrapper .type-box .form-control {
        padding-left: 46px;
        padding-right: 46px;
        background: #222222;
        border-color: #333333;
        border-radius: 50rem;
        height: 40px;
        font-size: 14px;
        width: 100%;
        max-width: 1042px;
        -webkit-transition: 0.3s all ease-in-out;
        transition: 0.3s all ease-in-out
    }

@media (max-width: 991px) {
    .msg-input-wrapper .type-box .form-control {
        height: 34px
    }
}

.msg-input-wrapper .type-box .form-control::-webkit-input-placeholder {
    color: #cccccc
}

.msg-input-wrapper .type-box .form-control::-moz-placeholder {
    color: #cccccc
}

.msg-input-wrapper .type-box .form-control:-ms-input-placeholder {
    color: #cccccc
}

.msg-input-wrapper .type-box .form-control::-ms-input-placeholder {
    color: #cccccc
}

.msg-input-wrapper .type-box .form-control::placeholder {
    color: #cccccc
}

.msg-input-wrapper .type-box img {
    position: absolute;
    top: 7px;
    right: 60px
}

@media (max-width: 991px) {
    .msg-input-wrapper .type-box img {
        width: 18px;
        height: 18px
    }
}

.msg-input-wrapper .type-box .font-style-option {
    position: absolute;
    top: 50%;
    left: 17px;
    font-size: 15px;
    line-height: 1;
    color: #ffffff;
    font-weight: 400;
    font-family: "Lato";
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.register-card {
    padding: 70px 70px 115px
}

@media screen and (max-width: 575px) {
    .register-card {
        padding: 30px;
        margin-top: 5px;
    }
}
/*
.form-wrapper .form-control {
    background: #222222;
    border-color: #333333;
    border-radius: 50px;
    color: white;
    padding-left: 60px;
    padding-right: 70px;
    height: 52px
}*/

    .form-wrapper .form-control::-webkit-input-placeholder {
        color: white
    }

    .form-wrapper .form-control::-moz-placeholder {
        color: white
    }

    .form-wrapper .form-control:-ms-input-placeholder {
        color: white
    }

    .form-wrapper .form-control::-ms-input-placeholder {
        color: white
    }

    .form-wrapper .form-control::placeholder {
        color: white
    }

@media screen and (max-width: 575px) {
    .form-wrapper .form-control {
        padding-right: 55px
    }
}

.form-wrapper .input-wrapper {
    position: relative;
    margin-bottom: 30px
}

    .form-wrapper .input-wrapper .icon {
        position: absolute;
        left: 20px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%)
    }

    .form-wrapper .input-wrapper .pass-btn {
        position: absolute;
        right: 20px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%)
    }

@media screen and (max-width: 575px) {
    .form-wrapper .input-wrapper .pass-btn {
        max-width: 35px
    }
}

.pass-btn {
    background: transparent;
    border: 0;
    outline: none
}

.register-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    padding-top: 40px
}

    .register-check label {
        margin-bottom: 0;
        font-size: 14px
    }

  

.register-note {
    margin-top: 32px;
    font-size: 14px;
    line-height: normal
}

.profile-card {
    padding: 16px;
    margin-bottom: 20px
}

.profile-info-box {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    padding: 20px 55px
}

@media screen and (max-width: 767px) {
    .profile-info-box {
        padding: 30px
    }
}

.profile-info-box .profile-bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 0
}

    .profile-info-box .profile-bg img {
        width: 100%;
        height: 100%;
/*        -o-object-fit: cover;*/
/*        object-fit: cover;*/
        -o-object-position: center;
        object-position: center;
        /* -webkit-filter: blur(40px);
        filter: blur(40px)*/
        mask-image: linear-gradient(rgba(200, 200, 200, 0) 0%, rgba(200, 200, 200, 0.5) 0%);
    }

.profile-info-box .profile-info {
    position: relative;
    z-index: 1
}

/*    .profile-info-box .profile-info .profile-img {
        width: 320px;
        min-width: 320px;
        height: 320px;
        border-radius: 50%;
        overflow: hidden
    }*/

@media screen and (max-width: 991px) {
    .profile-info-box .profile-info .profile-img {
        width: 250px;
        min-width: 250px;
        height: 250px
    }
}

@media screen and (max-width: 575px) {
    .profile-info-box .profile-info .profile-img {
        width: 150px;
        min-width: 150px;
        height: 150px
    }
}

/*.profile-info-box .profile-info .profile-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s
}*/

/*.profile-info-box .profile-info .profile-img:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}*/

.profile-info-box .profile-info .status {
    position: absolute;
    left: 0;
    top: 0;
    padding-left: 15px;
    text-transform: uppercase;
    font-size: 15px;
    color: #ff0000;
    font-weight: 600;
    margin-bottom: 0
}

    .profile-info-box .profile-info .status:before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 10px;
        height: 10px;
        border-radius: 10px;
        background-color: #ff0000
    }

@media screen and (max-width: 575px) {
    .profile-info-box .profile-info .btn {
        font-size: 13px
    }
}

.profile-info-box .profile-info .profile-name {
    background: rgba(0,0,0,0.75);
    padding: 15px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    border-radius: 12px
}

@media screen and (max-width: 767px) {
    .profile-info-box .profile-info .profile-name {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.profile-info-box .profile-info .profile-name p {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 600
}

@media screen and (max-width: 575px) {
    .profile-info-box .profile-info .profile-name p {
        font-size: 13px
    }
}

.profile-info-box .profile-info .profile-name .verify {
    font-size: 15px;
    text-transform: uppercase;
    color: #ff0000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px
}

@media screen and (max-width: 575px) {
    .profile-info-box .profile-info .profile-name .verify {
        font-size: 13px
    }
}

.profile-info-box .profile-info .profile-name .verify img {
    display: block;
    width: 12px
}

.profile-info-box .profile-img-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media screen and (max-width: 767px) {
    .profile-info-box .profile-img-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
}

.profile-info-box .profile-img-wrapper .friends-box .title {
    margin-bottom: 10px;
    font-weight: 600
}

.profile-info-box .profile-img-wrapper .friends-box .friends-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

    .profile-info-box .profile-img-wrapper .friends-box .friends-list .icon {
        margin-left: -15px;
        width: 50px;
        height: 50px;
        min-width: 50px;
        border-radius: 50%;
        overflow: hidden
    }

@media screen and (max-width: 575px) {
    .profile-info-box .profile-img-wrapper .friends-box .friends-list .icon {
        width: 35px;
        height: 35px;
        min-width: 35px
    }
}

.profile-info-box .profile-img-wrapper .friends-box .friends-list .icon:first-child {
    margin-left: 0
}

.profile-info-box .profile-img-wrapper .friends-box .friends-list .icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.profile-info-box .video-btn {
    position: absolute;
    bottom: 0;
    right: 0
}

@media screen and (max-width: 767px) {
    .profile-info-box .video-btn {
        bottom: auto;
        top: 0
    }
}

.profile-info-box .video-btn input {
    position: absolute;
    opacity: 0;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1
}

.profile-tab {
    margin-bottom: 22px
}

.profile-tab-btn-wrapper {
    padding-bottom: 6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px
}

    .profile-tab-btn-wrapper .btn .icon img {
        max-width: 20px
    }

/*.info-card {
    padding: 50px 55px;
    margin-bottom: 27px
}
*/
/*@media screen and (max-width: 767px) {
    .info-card {
        margin-bottom: 20px;
        padding: 30px
    }
}*/

.info-card .info-para {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 19px;
    font-weight: 600;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media screen and (max-width: 767px) {
    .info-card .info-para {
        font-size: 16px;
        margin-bottom: 20px
    }
}

.info-card .name-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px
}

    .info-card .name-wrapper .item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 8px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

        .info-card .name-wrapper .item p {
            font-size: 13px;
            margin-bottom: 0
        }

.info-card .profile-desc {
    padding-top: 55px;
    padding-bottom: 40px;
    margin-bottom: 0;
    font-size: 20px
}

@media screen and (max-width: 767px) {
    .info-card .profile-desc {
        font-size: 16px;
        padding-top: 30px;
        padding-bottom: 30px
    }
}

.info-card .data-box {
    padding-bottom: 20px
}

    .info-card .data-box:last-child {
        padding-bottom: 0
    }

    .info-card .data-box .title {
        font-family: "Lato",sans-serif;
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 15px
    }

@media screen and (max-width: 767px) {
    .info-card .data-box .title {
        font-size: 18px
    }
}

.info-card .data-box .desc {
    font-family: "Lato",sans-serif;
    font-size: 18px;
    margin-bottom: 10px
}

@media screen and (max-width: 767px) {
    .info-card .data-box .desc {
        font-size: 16px
    }
}

.photos-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 45px;
    gap: 10px
}

@media screen and (max-width: 575px) {
    .photos-header {
        margin-bottom: 30px
    }
}

.photos-header p {
    margin-bottom: 0
}



@media screen and (max-width: 575px) {
    .photos-header .title {
        font-size: 12px
    }
}

.photos-header a {
    color: white;
    font-size: 18px
}

@media screen and (max-width: 575px) {
    .photos-header a {
        font-size: 13px
    }
}

.photos-card {
    padding: 25px 55px 112px
}

@media screen and (max-width: 767px) {
    .photos-card {
        padding: 30px
    }
}

.photos-row {
    row-gap: 24px
}

    .photos-row .photo-box {
        border-radius: 12px;
        overflow: hidden;
       /* max-height: 320px*/
       height: 220px;
    }

        .photos-row .photo-box img {
            width: 100%;
            height: 100%;
            -o-object-fit: cover;
            object-fit: cover
        }

.profile-live-card {
    background: #222222;
    border-color: #333333
}

.hot-form.profile {
    padding: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #333333
}

@media screen and (max-width: 767px) {
    .hot-form.profile {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }
}

.hot-form.profile .hotline-input-wrapper input {
    border-radius: 50px
}

.uploads-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 45px
}

@media screen and (max-width: 767px) {
    .uploads-wrapper {
        gap: 30px
    }
}

@media screen and (max-width: 575px) {
    .uploads-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 0
    }
}

.live-wrapper {
    position: relative;
    padding: 15px 0 10px
}

    .live-wrapper input {
        opacity: 0;
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0
    }

    .live-wrapper .upload-box {
        padding-left: 30px;
        position: relative
    }

        .live-wrapper .upload-box .live-txt {
            position: absolute;
            padding: 2px 5px;
            border-radius: 6px;
            background-color: #ff0000;
            color: white;
            font-size: 18px;
            font-weight: 700;
            line-height: 1;
            left: 0px;
            bottom: -5px
        }

        .live-wrapper .upload-box .upload-btn {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            gap: 15px
        }

.post-card {
    margin-bottom: 40px
}

.post-profile {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 0;
    padding-bottom: 20px
}

  /*  .post-profile .avatar-wrapper {
        position: relative
    }
*/
        .post-profile .avatar-wrapper .status:before {
            left: auto;
            right: 2px;
            top: auto;
            -webkit-transform: none;
            transform: none;
            bottom: 5px
        }

    .post-profile .profile-info {
        font-family: "Lato",sans-serif
    }

        .post-profile .profile-info .name {
            font-size: 24px;
            font-weight: 600;
            padding-bottom: 10px
        }

@media screen and (max-width: 767px) {
    .post-profile .profile-info .name {
        font-size: 18px
    }
}

.post-profile .profile-info .time {
    font-size: 15px;
    font-weight: 300
}

/*.post-img {
    overflow: hidden;
    max-height: 500px;
    border-radius: 12px
}*/

    .post-img img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
       /* -webkit-filter: blur(5px);
        filter: blur(5px)*/
    }

.post-like-comment {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    padding-top: 20px
}

    .post-like-comment .item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 8px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

        .post-like-comment .item p {
            font-size: 15px;
            margin-bottom: 0
        }

.accordion-item, .accr-button {
    border: 0;
    background: transparent;
    width: 100%
}

.accordion-body {
    padding: 0
}


.send-icon {
    position: absolute;
    right: 10px;
    cursor: pointer;
    margin-right: -45px;
    max-width: 25px;
    max-height: 25px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    display: block;
    opacity: 1 !important;
}

    .send-icon.visible {
        opacity: 1 !important; 
    }

.delete-icon {
    cursor: pointer; 
    width: 17px; 
    height: 15px; 
    transition: transform 0.2s ease; 
    margin-left: 75px;
}

    .delete-icon:hover {
        transform: scale(1.2); 
    }




.report-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999; 
}


    .report-modal .modal-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -10%);
        background-color: #222222;
        padding: 20px;
        border-radius: 10px;
        width: 80%;
        max-width: 600px;
        z-index: 10000; 
    }


    .report-modal .close {
        font-size: 30px;
        cursor: pointer;
        position: absolute;
        top: 10px;
        right: 20px;
    }

    .report-modal .custom-input {
        margin-bottom: 20px;
    }

        .report-modal .custom-input label {
            display: block;
            font-weight: bold;
            margin-bottom: 5px;
        }

        .report-modal .custom-input input {
            width: 100%;
            padding: 10px;
            font-size: 14px;
            border: 1px solid #222222;
            border-radius: 5px;
            background-color: #454343;
            color: #333;
            outline: none;
        }


            .report-modal .custom-input input:focus {
                border-color: #007bff;
                background-color: #454343;
            }


    .report-modal button {
        background-color: #FE0000;
        color: white;
        padding: 10px 15px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        margin-top: 10px;
    }

        .report-modal button:hover {
            background-color: #FE0000;
        }

#reportReason {
    color: white;
    background-color: #454343;
}
/*
#reportLink {
    cursor: pointer;
    color: #afabab;
    font-size: 13px;
    text-align: right;
}

    #reportLink:hover {
        color: #afabab;
    }*/


.favorite-button {
    display: inline-block;
    cursor: pointer;
    float: right;
    margin-left: 15px;
}


    .favorite-button img {
        width: 22px; 
        height: 22px; 
        margin-right: 5px;
        margin-top: -5px;
    }

    .favorite-button:hover img {
        opacity: 0.7; 
    }

.report-link-class {
    cursor: pointer;
    color: #afabab;
    font-size: 10px;
    margin-left: 150px;
}

    .report-link-class:hover {
        color: #afabab;
    }


.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1
}

.swiper-vertical > .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform,-webkit-transform;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

.swiper-android .swiper-slide, .swiper-wrapper {
    -webkit-transform: translate3d(0px,0,0);
    transform: translate3d(0px,0,0);
    margin-bottom: 30px;
}

.swiper-pointer-events {
    -ms-touch-action: pan-y;
    touch-action: pan-y
}

    .swiper-pointer-events.swiper-vertical {
        -ms-touch-action: pan-x;
        touch-action: pan-x
    }

.swiper-slide {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform,-webkit-transform
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
    height: auto
}

    .swiper-autoheight .swiper-wrapper {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-transition-property: height,-webkit-transform;
        transition-property: height,-webkit-transform;
        transition-property: transform,height;
        transition-property: transform,height,-webkit-transform
    }

.swiper-backface-hidden .swiper-slide {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
    -webkit-perspective: 1200px;
    perspective: 1200px
}

    .swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide, .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-wrapper {
        -webkit-transform-style: preserve-3d;
        transform-style: preserve-3d
    }

    .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 10
    }

    .swiper-3d .swiper-slide-shadow {
        background: rgba(0,0,0,0.15)
    }

    .swiper-3d .swiper-slide-shadow-left {
        background-image: -webkit-gradient(linear,right top,left top,from(rgba(0,0,0,0.5)),to(rgba(0,0,0,0)));
        background-image: linear-gradient(to left,rgba(0,0,0,0.5),rgba(0,0,0,0))
    }

    .swiper-3d .swiper-slide-shadow-right {
        background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,0.5)),to(rgba(0,0,0,0)));
        background-image: linear-gradient(to right,rgba(0,0,0,0.5),rgba(0,0,0,0))
    }

    .swiper-3d .swiper-slide-shadow-top {
        background-image: -webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,0.5)),to(rgba(0,0,0,0)));
        background-image: linear-gradient(to top,rgba(0,0,0,0.5),rgba(0,0,0,0))
    }

    .swiper-3d .swiper-slide-shadow-bottom {
        background-image: -webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,0.5)),to(rgba(0,0,0,0)));
        background-image: linear-gradient(to bottom,rgba(0,0,0,0.5),rgba(0,0,0,0))
    }

.swiper-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

    .swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
        display: none
    }

    .swiper-css-mode > .swiper-wrapper > .swiper-slide {
        scroll-snap-align: start start
    }

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
    -ms-scroll-snap-type: x mandatory;
    scroll-snap-type: x mandatory
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
    -ms-scroll-snap-type: y mandatory;
    scroll-snap-type: y mandatory
}

.swiper-centered > .swiper-wrapper:before {
    content: "";
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-ordinal-group: 10000;
    -ms-flex-order: 9999;
    order: 9999
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
    -webkit-margin-start: var(--swiper-centered-offset-before);
    margin-inline-start: var(--swiper-centered-offset-before)
}

.swiper-centered.swiper-horizontal > .swiper-wrapper: before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after)
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
    -webkit-margin-before: var(--swiper-centered-offset-before);
    margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper: before {
    width: 100%;
    min-width: 1px;
    height: var(--swiper-centered-offset-after)
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: center center
}

.swiper-virtual .swiper-slide {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
}

.swiper-virtual.swiper-css-mode .swiper-wrapper:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper:after {
    height: 1px;
    width: var(--swiper-virtual-size)
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper:after {
    width: 1px;
    height: var(--swiper-virtual-size)
}

:root {
    --swiper-navigation-size: 44px
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - var(--swiper-navigation-size) / 2);
    z-index: 10;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--swiper-navigation-color,var(--swiper-theme-color))
}

    .swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
        opacity: 0.35;
        cursor: auto;
        pointer-events: none
    }

    .swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
        opacity: 0;
        cursor: auto;
        pointer-events: none
    }

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
    display: none !important
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: 10px;
    right: auto
}

    .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
        content: "prev"
    }

.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: 10px;
    left: auto
}

    .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
        content: "next"
    }

.swiper-button-lock {
    display: none
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    -webkit-transition: 0.3s opacity;
    transition: 0.3s opacity;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    z-index: 10
}

    .swiper-pagination.swiper-pagination-hidden {
        opacity: 0
    }

    .swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
        display: none !important
    }

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0
}

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
        -webkit-transform: scale(0.33);
        transform: scale(0.33);
        position: relative
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
        -webkit-transform: scale(0.66);
        transform: scale(0.66)
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
        -webkit-transform: scale(0.33);
        transform: scale(0.33)
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
        -webkit-transform: scale(0.66);
        transform: scale(0.66)
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
        -webkit-transform: scale(0.33);
        transform: scale(0.33)
    }

.swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));
    height: var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));
    display: inline-block;
    border-radius: 50%;
    background: var(--swiper-pagination-bullet-inactive-color,#000);
    opacity: var(--swiper-pagination-bullet-inactive-opacity,0.2)
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-bullet:only-child {
    display: none !important
}

.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity,1);
    background: var(--swiper-pagination-color,var(--swiper-theme-color))
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    -webkit-transform: translate3d(0px,-50%,0);
    transform: translate3d(0px,-50%,0)
}

    .swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
        margin: var(--swiper-pagination-bullet-vertical-gap,6px) 0;
        display: block
    }

    .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 8px
    }

        .swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
            display: inline-block;
            -webkit-transition: 0.2s top,0.2s -webkit-transform;
            transition: 0.2s top,0.2s -webkit-transform;
            transition: 0.2s transform,0.2s top;
            transition: 0.2s transform,0.2s top,0.2s -webkit-transform
        }

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap,4px)
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap
}

    .swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
        -webkit-transition: 0.2s left,0.2s -webkit-transform;
        transition: 0.2s left,0.2s -webkit-transform;
        transition: 0.2s transform,0.2s left;
        transition: 0.2s transform,0.2s left,0.2s -webkit-transform
    }

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: 0.2s right,0.2s -webkit-transform;
    transition: 0.2s right,0.2s -webkit-transform;
    transition: 0.2s transform,0.2s right;
    transition: 0.2s transform,0.2s right,0.2s -webkit-transform
}

.swiper-pagination-progressbar {
    background: rgba(0,0,0,0.25);
    position: absolute
}

    .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
        background: var(--swiper-pagination-color,var(--swiper-theme-color));
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        -webkit-transform: scale(0);
        transform: scale(0);
        -webkit-transform-origin: left top;
        transform-origin: left top
    }

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    -webkit-transform-origin: right top;
    transform-origin: right top
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0
}

    .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
        width: 4px;
        height: 100%;
        left: 0;
        top: 0
    }

.swiper-pagination-lock {
    display: none
}

.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0,0,0,0.1)
}

    .swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
        display: none !important
    }

    .swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
        position: absolute;
        left: 1%;
        bottom: 3px;
        z-index: 50;
        height: 5px;
        width: 98%
    }

    .swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
        position: absolute;
        right: 3px;
        top: 1%;
        z-index: 50;
        width: 5px;
        height: 98%
    }

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0,0,0,0.5);
    border-radius: 10px;
    left: 0;
    top: 0
}

.swiper-scrollbar-cursor-drag {
    cursor: move
}

.swiper-scrollbar-lock {
    display: none
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center
}

    .swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
        max-width: 100%;
        max-height: 100%;
        -o-object-fit: contain;
        object-fit: contain
    }

.swiper-slide-zoomed {
    cursor: move
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color,var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
    -webkit-animation: swiper-preloader-spin 1s infinite linear;
    animation: swiper-preloader-spin 1s infinite linear
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000
}

@-webkit-keyframes swiper-preloader-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes swiper-preloader-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.swiper .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000
}

.swiper-free-mode > .swiper-wrapper {
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    margin: 0 auto
}

.swiper-grid > .swiper-wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.swiper-grid-column > .swiper-wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.swiper-fade.swiper-free-mode .swiper-slide {
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out
}

.swiper-fade .swiper-slide {
    pointer-events: none;
    -webkit-transition-property: opacity;
    transition-property: opacity
}

    .swiper-fade .swiper-slide .swiper-slide {
        pointer-events: none
    }

.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-cube {
    overflow: visible
}

    .swiper-cube .swiper-slide {
        pointer-events: none;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        z-index: 1;
        visibility: hidden;
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0;
        width: 100%;
        height: 100%
    }

        .swiper-cube .swiper-slide .swiper-slide {
            pointer-events: none
        }

    .swiper-cube.swiper-rtl .swiper-slide {
        -webkit-transform-origin: 100% 0;
        transform-origin: 100% 0
    }

    .swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
        pointer-events: auto
    }

    .swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-next + .swiper-slide, .swiper-cube .swiper-slide-prev {
        pointer-events: auto;
        visibility: visible
    }

    .swiper-cube .swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-top {
        z-index: 0;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden
    }

    .swiper-cube .swiper-cube-shadow {
        position: absolute;
        left: 0;
        bottom: 0px;
        width: 100%;
        height: 100%;
        opacity: 0.6;
        z-index: 0
    }

        .swiper-cube .swiper-cube-shadow:before {
            content: "";
            background: #000;
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            right: 0;
            -webkit-filter: blur(50px);
            filter: blur(50px)
        }

.swiper-flip {
    overflow: visible
}

    .swiper-flip .swiper-slide {
        pointer-events: none;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        z-index: 1
    }

        .swiper-flip .swiper-slide .swiper-slide {
            pointer-events: none
        }

    .swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
        pointer-events: auto
    }

    .swiper-flip .swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-top {
        z-index: 0;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden
    }

.swiper-creative .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
    -webkit-transition-property: opacity,height,-webkit-transform;
    transition-property: opacity,height,-webkit-transform;
    transition-property: transform,opacity,height;
    transition-property: transform,opacity,height,-webkit-transform
}

.swiper-cards {
    overflow: visible
}

    .swiper-cards .swiper-slide {
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        overflow: hidden
    }

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}


.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    cursor: pointer;
}

    .play-button img {
        width: 40px; 
        height: 40px;
    }


@media (max-width: 991px) {
    .user-info-box .user-info .name {
        font-size: 17px;
        line-height: 1;
        font-weight: bold;
        color: #fff;
        margin-bottom: 5px;
       
    }

    .swiper-slide {
        -ms-flex-negative: 0;
        flex-shrink: 0;
        width: 100%;
        height: 100%;
        position: relative;
        transition-property: transform, -webkit-transform;
        -webkit-transition-property: -webkit-transform;
        margin-top: 10px;
    }

    .user-info-box .avatar {
        height: 71px;
        width: 71px;
        min-width: 71px;
        overflow: hidden;
        border-radius: 50%;
        margin-top: 0px;
    }
}

@media (max-width: 991px) {
    #userVerificationStatus,
    img[src="/images/verify-primary.webp"] {
        display: none;
    }
}



.verification-icon img {
    width: 10px;
    height: auto;
/*    margin-left: 58px;
    margin-top: -55px;*/
}


.kebab-button {
    display: inline-block;
    cursor: pointer;
    float: right;
}


    .kebab-button img {
        width: 50px;
        height: 50px;
        margin-right: 15px;
        margin-top: 10px;
        filter: brightness(0) invert(1);
        position: absolute;
        top: -10px;
        right: 20px;
        opacity: 1;
        z-index: 9;
    }

    .kebab-button:hover img {
        opacity: 0.7;
    }

.kebab-menu-icon {
    cursor: pointer;
    width: 35px;
    height: 35px;
/*    transition: transform 0.2s ease;*/
    margin-left: auto;
    transform: translateX(14px);
    position: relative;
}

    .kebab-menu-icon:hover {
        transform: scale(1.0);
        transform: translateX(14px);
    }

.menu-options {
    display: none;
    position: absolute;
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 6000;
    padding: 8px 0;
    border-radius: 4px;
}

.menu-option {
    padding: 8px 16px;
    cursor: pointer;
}

    .menu-option:hover {
        background-color: #f0f0f0;
    }




textarea#comments {
    position: relative;
    z-index: 3200;
    pointer-events: auto !important;
}
.file-modal {
    position: fixed !important;
    top: 55%;
    left: 90%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3099900;
    color: #222222;
    pointer-events: auto;
}
@media (max-width: 991px) {
    .file-modal {
        left: 50%;
    }
}

.file-modal-content {
    background: #121211;
    width: 50%;
    max-width: 450px;
    height: auto;
    /* max-height: 80%; */
    padding: 1px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}




.form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border-radius: 10px;
    background-color: #333;
    color: white;
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    -webkit-transition: border-color 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,-webkit-box-shadow 0.15s ease-in-out
}

 
    .form-control2:focus {
        outline: none; 
    }

   
    .form-control2::placeholder {
        color: white; 
    }

.form-control2 {
    z-index: 10060; 
    position: relative;
}

#comments {
    color: white; 
    background-color: #333; 
    border: 1px solid #444; 
    padding: 10px; 
    resize: none; 
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    cursor: pointer;
}




.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background-color: #f0f0f0;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
}

.add-tag-btn {
    background-color: #ddd;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 18px;
    cursor: pointer;
    border: none;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        font-size: 16px;
        display: block;
        margin-bottom: 5px;
    }



input::placeholder, textarea::placeholder {
    color: white; 
    opacity: 1; 
}


input[type="text"], textarea {
    width: 100%;
    padding: 12px 16px; 
    font-size: 16px;
    font-family: 'Montserrat', sans-serif; 
    border-radius: 8px; 
    box-sizing: border-box; 
    background-color: #333; 
    color: white; 
}

 
    input[type="text"]:focus::placeholder, textarea:focus::placeholder {
        color: white; 
    }


    input[type="text"]:focus, textarea:focus {
        
        outline: none; 
    }


textarea {
    height: 150px; 
    resize: vertical; 
    margin-top: 5px; 
}


.textarea-icon a {
    display: inline-block;
    margin-right: 10px;
}

.textarea-icon img {
    width: 20px; /* Set icon size */
    height: auto;
}





.action-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: -20px;
}

.btn.secondary-btn2 {
    background-color: #454141;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

    .btn.secondary-btn2:hover {
        background: #ff0000;
    }

@media (max-width: 1099px) {
    .file-modal-content {
        width: 90%;
    }

    .action-buttons {
        flex-direction: row; 
        align-items: center; 
        justify-content: center; 
        gap: 10px; 
    }

        .action-buttons .btn {
            width: auto;
            font-size: 12px; 
        }
}

@media (max-width: 768px) {
    .file-modal-content {
        width: 100%;
    }

    .action-buttons {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

        .action-buttons .btn {
            width: auto;
            font-size: 12px;
            padding: 5px 10px;
        }
}

.pass-btn {
    background: transparent;
    border: 0;
    outline: none
}

.register-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    padding-top: 40px
}

    .register-check label {
        margin-bottom: 0;
        font-size: 14px;
        color: white;
       /* margin-top: -80px;*/
    }

        .register-check label img {
            margin-right: 3px;
            width: 14px; 
            height: auto; 
        }


 

.register-note {
    margin-top: 32px;
    font-size: 14px;
    line-height: normal
}


.content-card.dodaj-post textarea {
    background: #454545;
    border: none;
    height: 252px;
    border-radius: 0 10px 10px 0px;
    color: #fff;
    font-size: 17px;
    padding: 18px 23px
}

.content-card.dodaj-post .textarea-icon {
    padding: 20px;
    border: 1px solid #333333;
    border-radius: 10px 0 0 10px
}

.content-card.dodaj-post input::-webkit-input-placeholder {
    color: #fff;
    font-size: 17px
}

.content-card.dodaj-post input:-ms-input-placeholder {
    color: #fff;
    font-size: 17px
}

.content-card.dodaj-post input::-moz-placeholder {
    color: #fff;
    font-size: 17px
}

.content-card.dodaj-post input::-ms-input-placeholder {
    color: #fff;
    font-size: 17px
}

.content-card.dodaj-post input::placeholder {
    color: #fff;
    font-size: 17px
}

.content-card.dodaj-post textarea::-webkit-input-placeholder {
    color: #fff;
    font-size: 17px
}

.content-card.dodaj-post textarea:-ms-input-placeholder {
    color: #fff;
    font-size: 17px
}

.content-card.dodaj-post textarea::-moz-placeholder {
    color: #fff;
    font-size: 17px
}

.content-card.dodaj-post textarea::-ms-input-placeholder {
    color: #fff;
    font-size: 17px
}

.content-card.dodaj-post textarea::placeholder {
    color: #fff;
    font-size: 17px
}

.content-card.profile-details {
    padding: 45px 30px
}

    .content-card.profile-details .activity-profile {
        padding: 0 0px 20px
    }

        .content-card.profile-details .activity-profile p {
            font-size: 18px
        }

            .content-card.profile-details .activity-profile p.verify img {
                width: 15px;
                height: 15px
            }

    .content-card.profile-details p {
        margin: 0
    }

.content-card.profile-edit-post .post-card {
    background: #151515;
    padding: 16px 22px;
    border-radius: 10px;
    border: 1px solid #333333
}

    .content-card.profile-edit-post .post-card .post-text p {
        margin-bottom: 0
    }

    .content-card.profile-edit-post .post-card .post-like-comment {
        padding-top: 0
    }

    .content-card.profile-edit-post .post-card .post-img {
        width: 111px;
        margin: 20px auto
    }

        .content-card.profile-edit-post .post-card .post-img img {
            -webkit-filter: none;
            filter: none
        }

.content-card.profile-edit-post .secondary-btn {
    border: 1px solid #222222
}

    .content-card.profile-edit-post .secondary-btn:hover {
        background: #151515;
        border: 1px solid #333333
    }

/*.content-card .tag-search {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    border-radius: 10px
}*/

.content-card .tag-search {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    background: #1A1A19;
    border-radius: 10px
}


.content-card .upload-container {
/*    display: -webkit-box;*/
    display: -ms-flexbox;
   /* display: flex;*/
    gap: 43px
}

/*.upload-container.no-flex {
    all: unset;
    display: revert;
}*/

.content-card .upload-box {
    width: 280px;
    min-width: 280px;
    height: 280px;
    background-color: #222222;
    color: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 8px;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    justify-content: center;
    padding: 35px 30px;
    border: 1px solid #656565;
    border-radius: 10px
}

    .content-card .upload-box img {
        margin: 30px
    }

    .content-card .upload-box .btn {
        pointer-events: none
    }

.content-card .image-preview {
    position: relative;
    width: 280px;
    height: 280px;
    border-radius: 10px;
    overflow: hidden
}

    .content-card .image-preview .preview-overlay {
        position: absolute;
        bottom: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: 100%;
        padding: 25px;
        height: 100%;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: end;
        background: -webkit-gradient(linear,left bottom,left top,from(rgb(0,0,0)),to(rgba(255,255,255,0.4990371148)));
        background: linear-gradient(0deg,rgb(0,0,0) 0%,rgba(255,255,255,0.4990371148) 100%)
    }

    .content-card .image-preview img.lock-icon {
        position: absolute;
        top: 50%;
        z-index: 9;
        left: 50%;
        width: auto;
        height: auto;
        -webkit-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%)
    }

    .content-card .image-preview img, .content-card .image-preview video {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover
    }

.content-card .button-container {
    position: absolute;
    top: 5px;
    right: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px
}

.content-card .action-button {
    background-color: transparent;
    color: white;
    border: none
}

    .content-card .action-button img {
        height: auto;
        width: auto
    }

.content-card div.preview-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 43px
}

.content-card .register-check .custom-checkbox {
    width: 23px;
    height: 23px;
    min-width: 23px
}

    .content-card .register-check .custom-checkbox .check:before {
        width: 23px;
        height: 23px;
        min-width: 23px;
        border-radius: 5px
    }

    .content-card .register-check .custom-checkbox input:checked + .check:after {
        height: 14px;
        left: 8px;
        width: 8px;
        top: 2px;
        border-width: 0 2px 2px 0
    }

@media screen and (max-width: 991px) {
    .content-card .upload-container {
        gap: 20px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 30px
    }

    .content-card div.preview-container {
        gap: 20px
    }

    .content-card .image-preview {
        width: 150px;
        height: 150px
    }

    .content-card .upload-box {
        width: 320px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

        .content-card .upload-box img {
            margin: 20px
        }

    .content-card .register-check {
        padding-top: 0
    }

    .content-card.profile-edit-post .secondary-btn {
        font-size: 12px;
        min-width: auto
    }

    .content-card.profile-edit-post .post-card {
        margin-bottom: 10px
    }
}

@media screen and (max-width: 767px) {
    .content-card h2 {
        font-size: 15px
    }

    .content-card #searchInput {
        padding: 10px;
        font-size: 14px
    }

    .content-card .tag-item {
        padding: 5px 10px;
        font-size: 14px
    }

    .content-card .image-preview {
        width: 140px;
        height: 140px
    }

    .content-card .register-check {
        padding-top: 0
    }

        .content-card .register-check label {
            font-size: 12px
        }

    .content-card .hastag {
        padding: 5px;
        gap: 5px
    }

        .content-card .hastag .hastag-item {
            font-size: 12px;
            border-radius: 40px;
            padding: 2px 8px 2px 10px
        }

            .content-card .hastag .hastag-item span {
                font-size: 18px
            }

            .content-card .hastag .hastag-item img {
                width: 20px;
                margin-left: 2px;
                height: 18px;
            }
}

#profileupdate .modal-dialog {
    max-width: 792px
}

    #profileupdate .modal-dialog .modal-content {
        background: #222222;
        border: 1px solid #333333
    }


    @media screen and (max-width: 767px) {
    .content-card .form-group {
        gap:0
    }

    .content-card .form-group .form-label {
        font-size: 13px;
        min-width: 115px
    }

    .content-card .form-group .form-select {
        min-height: auto;
        border-radius: 13px
    }

    .content-card .form-group .form-check {
        padding-left: 10px
    }

    .content-card .form-group .form-check label {
        font-size: 10px;
        margin-bottom: 0;
        margin-left: 3px
    }

    .content-card .form-group .form-check .form-check-input {
        margin-left: -20px
    }

    .content-card .form-group .form-check-list {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .content-card .form-group .form-check-list .form-check {
        margin-right: 3px
    }

    .content-card .form-group .form-check-list .form-check label {
        font-size: 13px;
        padding: 9px 10px
    }
}

.content-card.dodaj-post .form-control {
    border: 1px solid #1A1A19;
    background: #1A1A19;
    border-radius: 10px
}

.content-card.dodaj-post textarea {
    background: #454545;
    border: none;
    height: 252px;
    border-radius: 0 10px 10px 0px;
    color: #fff;
    font-size: 17px;
    padding: 18px 23px
}

.content-card.dodaj-post .textarea-icon {
    padding: 20px;
    border: 1px solid #333333;
    border-radius: 10px 0 0 10px
}

.content-card.dodaj-post input::-webkit-input-placeholder {
    color: #fff;
    font-size: 17px
}

.content-card.dodaj-post input:-ms-input-placeholder {
    color: #fff;
    font-size: 17px
}

.content-card.dodaj-post input::-moz-placeholder {
    color: #fff;
    font-size: 17px
}

.content-card.dodaj-post input::-ms-input-placeholder {
    color: #fff;
    font-size: 17px
}

.content-card.dodaj-post input::placeholder {
    color: #fff;
    font-size: 17px
}

.content-card.dodaj-post textarea::-webkit-input-placeholder {
    color: #fff;
    font-size: 17px
}

.content-card.dodaj-post textarea:-ms-input-placeholder {
    color: #fff;
    font-size: 17px
}

.content-card.dodaj-post textarea::-moz-placeholder {
    color: #fff;
    font-size: 17px
}

.content-card.dodaj-post textarea::-ms-input-placeholder {
    color: #fff;
    font-size: 17px
}

.content-card.dodaj-post textarea::placeholder {
    color: #fff;
    font-size: 17px
}

.content-card.profile-details {
    padding: 45px 30px
}

.content-card.profile-details .activity-profile {
    padding: 0 0px 20px
}

.content-card.profile-details .activity-profile p {
    font-size: 18px
}

.content-card.profile-details .activity-profile p.verify img {
    width: 15px;
    height: 15px
}

.content-card.profile-details p {
    margin: 0
}

.content-card.profile-edit-post .post-card {
    background: #151515;
    padding: 16px 22px;
    border-radius: 10px;
    border: 1px solid #333333
}

.content-card.profile-edit-post .post-card .post-text p {
    margin-bottom: 0
}

.content-card.profile-edit-post .post-card .post-like-comment {
    padding-top: 0
}

.content-card.profile-edit-post .post-card .post-img {
    width: 111px;
    margin: 20px auto
}

.content-card.profile-edit-post .post-card .post-img img {
    -webkit-filter: none;
    filter: none
}

.content-card.profile-edit-post .secondary-btn {
    border: 1px solid #222222
}

.content-card.profile-edit-post .secondary-btn:hover {
    background: #151515;
    border: 1px solid #333333
}

/*.content-card .tag-search {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    background: #1A1A19;
    border-radius: 10px
}*/


/*.content-card .upload-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 43px
}*/

.content-card .upload-box {
    width: 280px;
    min-width: 280px;
    height: 280px;
    background-color: #222222;
    color: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 8px;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    justify-content: center;
    padding: 35px 30px;
    border: 1px solid #656565;
    border-radius: 10px
}

.content-card .upload-box img {
    margin: 30px
}

.content-card .upload-box .btn {
    pointer-events: none
}

.content-card .image-preview {
    position: relative;
    width: 280px;
    height: 280px;
    border-radius: 10px;
    overflow: hidden
}

.content-card .image-preview .preview-overlay {
    position: absolute;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding: 25px;
    height: 100%;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    background: -webkit-gradient(linear,left bottom,left top,from(rgb(0,0,0)),to(rgba(255,255,255,0.4990371148)));
    background: linear-gradient(0deg,rgb(0,0,0) 0%,rgba(255,255,255,0.4990371148) 100%)
}

.content-card .image-preview img.lock-icon {
    position: absolute;
    top: 50%;
    z-index: 9;
    left: 50%;
    width: auto;
    height: auto;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%)
}

.content-card .image-preview img,.content-card .image-preview video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.content-card .button-container {
    position: absolute;
    top: 5px;
    right: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px
}

.content-card .action-button {
    background-color: transparent;
    color: white;
    border: none
}

.content-card .action-button img {
    height: auto;
    width: auto
}

.content-card div.preview-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 43px
}



/*@media screen and (max-width: 991px) {
    .content-card .upload-container {
        gap:20px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 30px
    }

    .content-card div.preview-container {
        gap: 20px
    }

    .content-card .image-preview {
        width: 150px;
        height: 150px
    }

    .content-card .upload-box {
        width: 320px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .content-card .upload-box img {
        margin: 20px
    }

    .content-card .register-check {
        padding-top: 0
    }

    .content-card.profile-edit-post .secondary-btn {
        font-size: 12px;
        min-width: auto
    }

    .content-card.profile-edit-post .post-card {
        margin-bottom: 10px
    }
}
*/
@media screen and (max-width: 767px) {
    .content-card h2 {
        font-size:15px
    }

    .content-card #searchInput {
        padding: 10px;
        font-size: 14px
    }

    .content-card .tag-item {
        padding: 5px 10px;
        font-size: 14px
    }

    .content-card .image-preview {
        width: 140px;
        height: 140px
    }

    .content-card .register-check {
        padding-top: 0
    }

    .content-card .register-check label {
        font-size: 12px
    }

    .content-card .hastag {
        padding: 5px;
        gap: 5px;
        
    }

    .content-card .hastag .hastag-item {
        font-size: 12px;
        border-radius: 40px;
        padding: 2px 8px 2px 10px
    }

    .content-card .hastag .hastag-item span {
        font-size: 18px
    }

    .content-card .hastag .hastag-item img {
        width: 20px;
        margin-left: 2px;
        height: 15px;
        
    }
}

#profileupdate .modal-dialog {
    max-width: 792px
}

#profileupdate .modal-dialog .modal-content {
    background: #222222;
    border: 1px solid #333333
}


.title-text {
    color: white; 
    font-family: 'Montserrat', sans-serif; 
    font-weight: 600; 
    margin-bottom: 8px; 
    display: block; 
}



.profile-info1 {
    display: flex;
    align-items: center;

    border-radius: 10px;
    color: white;
    width: 400px;
    /* margin-bottom: 20px; */
    margin-top: 15px;
    margin-left: 20px;
    margin-bottom: -20px;
}

.profile-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%; 
    object-fit: cover;
    margin-right: 15px; 
}


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

.profile-name {
    font-size: 12px;
    font-weight: bold;
    margin: 0;
    display: inline-block;
}

@media (min-width: 992px) {
    .profile-info1 {
        display: none; 
    }
}


@media (max-width: 991px) {
    .profile-info1 {
        display: flex; 
    }


    .verification-icon img {
        width: 10px;
        height: auto;
        margin-left: 63px;
        margin-top: -20px;
    }
}


@media (max-width: 991px) {
    .user-info-box .avatar,
    .user-info-box .user-info {
        display: none; 
    }

    .user-info-box #kebabButton {
        display: block; 
    }
}

@media (min-width: 2099px) {
    #kebabMenu {
        right: 385px !important;
        
    }
}


@media (max-width: 1023px) {
    #kebabMenu {
        right: 20px; 
       
    }
}

@media (min-width: 991px) {
    .fullscreen-btn {
        display: none;
    }
}


@media (min-width: 991px) {
    .hidden {
        display: none;
    }
}




.chat-info-box.reply-info-box {
    background-color: #292929 !important;
}

.chat-list-box.sub-reply-box {
    margin-left: 50px; 
    padding: 10px; 
    margin-bottom: 10px; 
}

.chat-info-box.sub-reply-info-box {
    background-color: #3d3a3a !important;
}





@media (max-width: 460px) {
    .user-chat-lsting-block .chat-list-box .chat-info-box {
        margin-top: 0;
        max-width: 460px;
    }

    .reply-text {
        color: white;
        cursor: pointer;
        font-size: 10px !important;
        margin-top: 7px;
        
    }

    .user-chat-lsting-block .chat-list-box .chat-info-box .chat-bottom-info .date {
        font-size: 10px;
    }

    .chat-list-box.sub-reply-box {
        margin-left: 25px;
        padding: 10px;
        margin-bottom: 10px;
    }

    .user-chat-lsting-block .chat-list-box {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 18px;
        margin-left: 15px;
    }

        .user-chat-lsting-block .chat-list-box .chat-info-box .name {
            font-size: 13px;
            margin-top: -12px;
        }

    .user-desc-box {
        padding-left: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        gap: 6px;
        margin-bottom: 25px;
        margin-top: -20px;
    }

    .like-comment-info {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
      /*  margin-left: 20px; */
    }
    .user-chat-lsting-block .chat-list-box .avatar img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        margin-left: 12px;
        border-radius: 50%;
        margin-left: -5px;
    }

    .user-chat-lsting-block .chat-list-box .chat-info-box {
        margin-top: 15px;
        padding: 5px 20px 20px 20px;
        border-radius: 11px;
        background-color: #1a1a1a;
        margin-left: -10px;
    }
}

#modalCommentText {
    padding-left: 10px !important; 
}



@media screen and (max-width: 990px) {
 .navbar-toggler-icon span {
        display: none !important;
    }

   /* header .navbar .head-upload {
        gap: 30px;
        margin-right: 50px;
        margin-left: -40px;
       
    }*/
}

.head-login-chat.hidden {
    display: none !important;
}



@media (max-width: 991px) {
    .head-search.hidden {
        display: none !important;
    }

   /* .head-upload {
        display: none !important;
    }*/
}


@media (min-width: 992px) {
    .head-search {
        display: block !important;
    }
}



@media (max-width: 991px) {
    .head-upload {
        display: none !important;
    }
}


@media (min-width: 992px) {
    .head-upload {
        display: block !important;
    }
}

@media (max-width: 991px) {
    .navbar-brand {
        margin-left: -45px !important;
        margin-right: auto !important;
    }
}



@media (max-width: 991px) {
    .head-upload.visible-on-small-screen {
        display: none;
    }

    .head-upload.logged-in.visible-on-small-screen {
        display: block;
    }
}


@media (min-width: 992px) {
    .head-upload.visible-on-small-screen {
        display: block !important;
    }
}



@media screen and (max-width: 476px) {
    header .navbar {
        position: relative; 
    }

        header .navbar .head-upload {
            position: absolute; 
            left: 0; 
            top: 5px; 
            margin-left: 120px !important; 
            gap: 30px; 
        }
}

@media screen and (max-width: 576px) {
    header .navbar {
        position: relative;
    }

        header .navbar .head-upload {
            position: absolute;
            left: 0;
            top: 0px;
            margin-left: 120px !important;
            gap: 30px;
        }
}

@media screen and (max-width: 991px) {
    header .navbar {
        position: relative;
    }

        header .navbar .head-upload {
            position: absolute;
            left: 0;
            top: 5px;
            margin-left: 180px;
            gap: 30px;
        }

        header .navbar .head-search {
           display: none !important
        }
}



@media screen and (max-width: 481px) {
    header .navbar .headBtns .btn {

        font-size: 11px !important; 
        padding: 3px 5px; 
    }

    header .navbar .head-upload {
        position: absolute;
        left: 0;
        top: 2px;
        margin-left: 95px !important;
        gap: 30px;
    }

    header .navbar-brand {
        margin: 0 3px;
        max-width: 90px;
    }

    .attachmentIcon {
        max-width: 30px;
    }
}





@media (max-width: 991px) {
    .close-icon {
        display: block !important;
        max-width: 20px;
        margin-left: -40px;
        margin-top: -30px;
    }


}

@media (max-width: 991px) {
    .close-icon-left {
        display: block !important;
        max-width: 20px;
        margin-left: -40px;

    }
}


@media only screen and (max-width: 1199px) {
    .category-list {
        margin-bottom: 30px;
    }
}


@media (max-width: 991px) {
    .category-list {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; 
        -ms-overflow-style: none; 
        margin-bottom: 50px;
        white-space: nowrap; 
    }

        .category-list ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            gap: 12px;
            flex-wrap: nowrap; 
        }

            .category-list ul li {
                flex-shrink: 0; 
            }

                .category-list ul li a {
                    font-size: 13px;
                    margin-top: 10px;
                    background: #222222;
                    border-radius: 16px;
                    padding: 13px 16px;
                    display: inline-block;
                    line-height: normal;
                    color: white;
                    text-align: center;
                }

                    .category-list ul li a:hover {
                        background: #ff0000;
                        color: white;
                    }
}


html, body {
    /*overflow-x: hidden ; 
*/}



.modal-body .form-wrapper .input-wrapper {
    position: relative;
    margin-bottom: 30px;
    width: 80%;
    max-width: 400px; 
    margin-top: 10px;
    margin-left: 10px;
}

.modal-body .btn-primary {
    margin-left: 10px;
    margin-bottom: 10px;
}

.modal-body .register-check .custom-checkbox{
    margin-left: 10px;
}



/*Chmurki*/

.like-comment-info {
    display: flex;
    align-items: center;

}


.like-comment-box,
.favorite-button,
.like-icon
{
    position: relative;
    cursor: pointer;
    text-align: center;
}


    .view-count-box[data-tooltip]:hover::after,
    .like-comment-box[data-tooltip]:hover::after,
    .favorite-button[data-tooltip]:hover::after,
    .like-icon[data-tooltip]:hover::after {
        content: attr(data-tooltip);
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        background-color: #555;
        color: white;
        padding: 3px 5px;
        border-radius: 5px;
        font-size: 11px !important;
        white-space: nowrap;
        z-index: 10;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }

    .view-count-box[data-tooltip]:hover::after,
    .like-comment-box[data-tooltip]:hover::after,
    .favorite-button[data-tooltip]:hover::after,
    .like-icon[data-tooltip]:hover::after {
        opacity: 1;
        visibility: visible;
    }

.kebab-button[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #555;
    color: white;
    padding: 4px 6px;
    border-radius: 5px;
    font-size: 12px !important;
    white-space: nowrap;
    z-index: 1000000;
    opacity: 1;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.kebab-button[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
}



/* Ukrywanie tooltipa w razie potrzeby */
.tooltip-hidden[data-tooltip]:hover::after {
    opacity: 0;
    visibility: hidden;
}




.tooltip-text {
    display: none;
    position: absolute;
    top: 30px;
    left: 95%;
    transform: translateX(-50%);
    background-color: #555;
    color: white;
    padding: 4px 6px; /* Zmniejszony padding */
    border-radius: 3px; /* Mniejszy zaokrąglenie */
    font-size: 12px !important; /* Mniejsza czcionka */
    white-space: nowrap;
    z-index: 999999 !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.kebab-button:hover .tooltip-text {
    display: block;
    opacity: 1;
    visibility: visible;
}

@media (max-width: 576px) {
    .tooltip-text {
        left: 90%; 
    }
}




.kebab-button[data-tooltip]:hover::after {
    content: attr(data-tooltip); 
    position: absolute;
    top: 40px; 
    left: 50%;
    transform: translateX(-50%); 
    background-color: #555;
    color: white;
    padding: 3px 5px;
    border-radius: 5px;
    font-size: 11px !important;
    white-space: nowrap;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}



.custom-tooltip {
    display: none;
    position: absolute; 
    background-color: #555;
    color: white;
    padding: 3px 5px;
    border-radius: 5px;
    font-size: 11px !important;
    white-space: nowrap;
    z-index: 100000; 
    pointer-events: none; 
}



.reply-tooltip {
    position: absolute;
    background-color: #555;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    pointer-events: none; 
    transition: opacity 0.2s ease-in-out; 
    z-index: 10000; 
}

   
    .reply-tooltip.show {
        opacity: 1;
    }



.rep-tooltip {
    position: absolute;
    background-color: #555;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 1;
    pointer-events: none; 
    transition: opacity 0.2s ease-in-out; 
    z-index: 200000; 
}


    .rep-tooltip.show {
        opacity: 1;
    }




.info-bubble {
    position: absolute;
    background-color: #555;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1000;
    top: 105%;
    pointer-events: none;
}

    .info-bubble.show {
        opacity: 1;
        visibility: visible;
    }


@media (max-width: 1199px) {
    #profileTitle2 {
        font-size: 6vw; 
        margin-left: 50px; 
        margin-top: 50px;
        margin-bottom: -30px;
    }
}


@media (max-width: 991px) {
    #profileTitle2 {
        font-size: 7vw; 
        margin-left: 20px; 
        margin-top: 40px;
        margin-bottom: -20px;
    }
}


@media (max-width: 767px) {
    #profileTitle2 {
        font-size: 8vw; 
        margin-left: 10px; 
        margin-top: 30px;
        margin-bottom: -10px;
    }
}

@media (max-width: 991px) {
    .profile-container {
        margin: 20px auto 0 !important;
        width: 50%; 
    }
}


@media (max-width: 991px) {
    .preview-circle {
        width: 150px;
        height: 150px;
        margin-bottom: 10px;
        margin-top: -30px;
    }

   
}


.custom-location-input {
    width: 70% !important;
    padding: 12px 16px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    border-radius: 8px;
    box-sizing: border-box;
    background-color: #111111 !important;
    color: white;
    border: none; 
    outline: none; 
    margin-bottom: 10px;
}

    .custom-location-input::placeholder {
        color: #bbbbbb; 
        opacity: 1; 
    }

.hidden_btn {
    display: none !important;
}


@media screen and (max-width: 991px) {
  

    .dialog-content{
        font-size: 20px !important;
    }
}
.btn-login {
    font-size: 18px;
    color: white;
    text-decoration: none;
    display: inline-flex;
    padding: 9px 18px;
    font-weight: 600;
    border: none;
    border-radius: 16px;
    transition: all ease 0.4s;
    font-family: "Montserrat", sans-serif;
    position: relative;
    background: #ff0000;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-bottom: 10px !important;
}

@media (max-width: 481px) {
    .btn-login {
        font-size: 10px !important;
        margin-bottom: 10px !important;
    }
}

.close-icon-btn {
    display: block !important;
    max-width: 20px;

}




.modal-content-wrapper {
    background-color: #111111;
    color: white;
    text-align: center;
    padding: 40px;
    border-radius: 8px;
    max-width: 550px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    margin-top: 15%;
    margin-left: 35%;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 991px) {
    .modal-content-wrapper {
        margin-left: 0;
    }
}




.gender-buttons {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    gap: 10px; 
}

    .gender-buttons button {
        padding: 10px 20px;
        font-size: 16px;
        cursor: pointer;
        border: none;
        border-radius: 40px;
        transition: background-color 0.3s;
        flex-grow: 1; 
    }

     
        .gender-buttons button:hover {
            opacity: 0.8;
        }


/*.custom-modal .modal-content-wrapper h2 {
    font-size: 42px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}*/


@media (max-width: 600px) {

    .gender-buttons button {
        font-size: 14px; 
        padding: 8px 15px; 
    }

    
    .gender-buttons {
        flex-direction: column; 
        gap: 15px; 
    }
}


.tab-buttons2 {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    width: 100%;
}    .tab-buttons2 button {
        flex-grow: 1;
        padding: 15px 10px;
        background-color: #111111;
        color: white;
        cursor: pointer;
        transition: background-color 0.3s ease, border 0.3s ease;
        font-size: 13px;
        text-align: center;
        box-sizing: border-box;
        margin-left: -20px;
        margin-right: -20px;
        border: 1px solid transparent;
    }

        .tab-buttons2 button.active {
            background-color: #fe0000;
            color: white;
            border: 1px solid #fe0000; 
        }

        .tab-buttons2 button:focus {
            outline: none;
        }

        .tab-buttons2 button:last-child {
            display: block; 
            font-size: 12px; 
            background-color: #fe0000; 
            color: white; 
            border: 1px solid #fe0000;

        }

        .tab-buttons2 button:first-child {
            display: none;

        }

            .tab-buttons2 button:last-child.active {
                background-color: #fe0000;
                color: white;
                border: 1px solid #fe0000; 
            }



    .activity-modal {
        display: none;
       /* position: fixed;*/
/*        top: 7%;
        right: 10%;*/
        width: 350px;
        background-color: #111111;
        z-index: 9999;
        transform: translateX(0);
    }

        .activity-modal .modal-content {
            background-color: #111111;
            padding: 20px;
            height: 40%;
        }

    .live-heading2 {
        margin-bottom: 20px;
    }

    .load-more-btn {
        width: 100%;
        padding: 6px 0;
        background-color: #222222;
        color: white;
        border: 1px solid #222222;
        cursor: pointer;
        font-size: 10px;
        border-radius: 25px;
        transition: background-color 0.3s ease, border 0.3s ease;
        text-align: center;
        position: relative;
        bottom: -10px;
    }

        .load-more-btn:hover {
            background-color: #444444;
            border-color: #444444;
        }
/*
    .live-list2 {
        height: 220px;
    }*/

    @media (max-width: 991px) {
        .activity-modal {
           /* display: none;
            position: fixed;*/
            top: 0;
            left: 0;
            width: 100%;
            height: calc(100vh - 90px);
            background-color: #111111;
            z-index: 9999;
        }

            .activity-modal .modal-content {
                background-color: #111111;
                padding: 20px;
                height: 100%;
            }

        .live-heading2 {
            margin-bottom: 20px;
        }

        .load-more-btn {
            width: 100%;
            padding: 6px 0;
            background-color: #222222;
            color: white;
            border: 1px solid #222222;
            cursor: pointer;
            font-size: 13px;
            border-radius: 25px;
            transition: background-color 0.3s ease, border 0.3s ease;
            text-align: center;
            position: relative;
            bottom: -10px;
        }

            .load-more-btn:hover {
                background-color: #444444;
                border-color: #444444;
            }


        .scroll-wrapper {
            width: 100%;
            overflow-x: hidden !important;
            overflow-y: auto;
            white-space: nowrap;
        }


            .scroll-wrapper::-webkit-scrollbar {
                height: 1px;
                width: 3px;
            }

            .scroll-wrapper::-webkit-scrollbar-thumb {
                border-radius: 10px;
                border: 2px solid #454545;
            }

            .scroll-wrapper::-webkit-scrollbar-track {
                background: #222222;
                border-radius: 10px;
            }


        .tab-buttons2 {
            display: flex;
            justify-content: space-around;
            margin-bottom: 20px;
            width: 100%;
        }

            .tab-buttons2 button {
                flex-grow: 1;
                padding: 15px 10px;
                border: 1px solid #222222 !important;
                background-color: #111111;
                color: white;
                cursor: pointer;
                transition: background-color 0.3s ease;
                font-size: 12px;
                text-align: center;
                box-sizing: border-box;
                margin-left: 0;
                /*margin-right: 0;
                margin-right: -40px;*/
            }

                .tab-buttons2 button.active {
                    background-color: #fe0000;
                    color: white;
                }


                .tab-buttons2 button:hover {
                    background-color: #fe0000;
                    color: white;
                }


                .tab-buttons2 button:focus {
                    outline: none;
                }

                .tab-buttons2 button:first-child {
                    margin-left: -25px;
                    display: block;
                }

                .tab-buttons2 button:last-child {
                    background-color: #111111;
                    color: white;
                    border: none;
                }

       /* .live-list2 {
            height: 800px;
        }*/
    }

    .load-more-container {
        width: 100%;
        padding: 10px;
    }



.notification-circle {
    position: absolute;
    color: red;
    font-size: 16px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}


.top-left {
    top: 30px;
    right: 105px;
    transform: translate(-50%, -50%); 
}

.bottom-right {
    right: 65px; 
    transform: translate(50%, 50%); 
    top: 4px;
}



#openModalButton {
    position: relative;
}


@media (max-width: 991px) {
    .top-left {
        top: 10px;
        right: 80px;
        transform: translate(-50%, -50%);
    }

    .bottom-right {
        right: 55px;
        transform: translate(50%, 50%);
        top: -15px;
    }

}

@media (max-width: 576px) {
    .top-left {
        top: 7px;
        right: 55px;
        transform: translate(-50%, -50%);
    }

    .bottom-right {
        right: 37px;
        transform: translate(50%, 50%);
        top: -10px;
    }

    .notification-circle {
        width: 17px;
        height: 17px;
        font-size: 8px;
    }
}

.tab-buttons .notification-circle.top-left {
    top: 10px; 
    left: 10px;
}

.tab-buttons .notification-circle.bottom-right {
    bottom: 10px; 
    right: 10px;
}

.activity-item .live-item .icon {
/*    max-width: 80px;*/
    max-height: 80px;
}


.load-more-text {
    font-size: 18px;
    color: white;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold; 

    position: absolute;
 
    left: 50%; 
    transform: translate(-50%, -50%); 
}

.content-card.activity-card {
    position: relative; 
}

.line {
    /*width: 100%; 
    height: 1px; 
    background-color: #ccc; 
    margin-bottom: 30px; 
    margin-top: 10px;*/
}



.activity-container {
    scrollbar-width: thin; 
    scrollbar-color: #555 #222; 
}

    .activity-container .activity-item {
        padding: 10px;
        border-bottom: 1px solid #4f4b4b;
        margin-bottom: 20px;
    }

    .activity-container::-webkit-scrollbar {
        width: 3px; 
        height: 3px; 
    }

    .activity-container::-webkit-scrollbar-track {
        background: #222;
        border-radius: 4px; 
    }

    .activity-container::-webkit-scrollbar-thumb {
        background-color: #555; 
        border-radius: 4px; 
        border: 1px solid #444;
    }

        .activity-container::-webkit-scrollbar-thumb:hover {
            background-color: #777; 
        }



.info-card .profile-desc .edit-icon {
    position: absolute;
    transform: translateY(-50%);
    cursor: pointer;
    width: 20px;
    margin-left: 25%;
    margin-top: -40px;
}

@media (min-width: 1200px) {
    .info-card .profile-desc .edit-icon {
        margin-left: 25%; 
    }
}


@media (min-width: 768px) and (max-width: 1199px) {
    .info-card .profile-desc .edit-icon {
        margin-left: 30%; 
    }
}

@media (max-width: 767px) {
    .info-card .profile-desc .edit-icon {
        margin-left: 40%; 
        margin-top: 10px;
    }
}


.edit-icon:hover::after {
    content: "Edytuj";
    position: absolute;
    background-color: #444444;
    color: red;
    padding: 5px;
    border-radius: 5px;
    font-size: 14px;
    top: 30px;
    right: 0px;
    width: max-content;
    white-space: nowrap;
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}


.edit-icon::after {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}



.message-modal {
    display: none;
    position: fixed;
    z-index: 999999994000;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    /*  background-color: rgba(0, 0, 0, 0.5);  */
    height: auto;
    max-height: 90%;
    overflow: hidden;
    padding: 20px;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
}



.message-modal-content {
    background-color: #333333;
    /* padding: 20px; */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    width: 100%;
    text-align: center;
    position: relative;
    max-width: 600px;
    height: auto;
    max-height: 90%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -5%);
    border: 2px solid #5d5858;
}

.message-modal-header {
    background-color: #222222;
    color: white;
    padding: 10px;
    margin-bottom: 10px;
}

    .message-modal-header p {
        font-size: 20px;
        border: black;
        font-weight: 600;
    }
    .message-modal-close-btn {
    width: 28%;
    padding: 8px;
    margin-top: 10px;
    background-color: #555151;
    color: white;
    border: none;
    cursor: pointer;
    margin-bottom: 20px;
}

    .message-modal-close-btn:hover {
        background-color: #555;
    }


.action-buttons-container {
    margin-left: 40%;
    margin-top: -40px;
    font-size: 12px;
}

@media (max-width: 768px) {
    .action-buttons-container {
        margin-left: 65%; 

    }
}


@media (max-width: 480px) {
    .action-buttons-container {
        margin-left: 40%; 

        width: 100%; 
    }
}


.accept-button, .reject-button {
    background-color: #111111;
    color: white;
    border: none;
    padding: 10px;
    margin: 5px 0;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 40px;
    font-size: 10px;
}

.reject-button {
    margin-top: 20px; 
}


.activity-item-border {
    border-bottom: 1px solid white;
    margin: 10px 0; 
}


.activity-list > .activity-item:last-child + .activity-item-border {
    display: none;
}

.action-buttons-container2 {

    margin-top: -10px;
    font-size: 12px;
}

.action-buttons-container2 {

    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-left: 180px;
}


@media (max-width: 480px) {
    .action-buttons-container2 {
        width: 100%;
        font-size: 10px;
        margin-left: 0px;
    }
}


.event-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #222222; 
    padding-bottom: 10px; 
}

#closeBtnMessage {
    cursor: pointer;
}

    #closeBtnMessage img {
        width: 20px;
        height: 20px;
    }


.friends-modal {
    display: none; 
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}


.friends-modal-content {
    background-color: #222222;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    margin-left: 100px;
}


.close-btn {
    color: white;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 10px; 
    cursor: pointer;
    z-index: 100; 
}

.close-btnF {
    color: white;
    font-size: 28px;
    font-weight: bold;
    top: 10px;
    right: 10px;
    cursor: pointer;
    z-index: 100;
}


.friends-modal .close-icon-btn {
    margin-left: 540px;
}


.close-icon-btn {
    width: 25px;
    height: 25px;
}

.close-btn:hover,
.close-btn:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}


.modal-title {
    text-align: center; 
    font-size: 24px; 

    margin-bottom: 20px; 

}

.add-event-text {
    /*font-weight: bold; */
    margin-left: 15px;
    font-size: 13px;
}
.plus-icon {
    width: 13px; 
    height: 13px; 
    transition: opacity 0.3s ease !important; 
    margin-left: 10px !important;
}


.btn.secondary-btn:hover .plus-icon {
    opacity: 1 !important; 
}


.event-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Powiększenie na cały ekran */
    background-color: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 190;
}

.event-modal-content {
    background-color: #121211;
    padding: 20px;
    border-radius: 10px;
    max-width: 510px;
    width: 90%;
    max-height: 80vh; /* Maksymalna wysokość - 80% widoku */
    overflow-y: auto; /* Tylko przewijanie w pionie */
    overflow-x: hidden; /* Brak przewijania w poziomie */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

    /* --- Stylizacja paska przewijania --- */

    /* Dla Webkit (Chrome, Edge, Safari) */
    .event-modal-content::-webkit-scrollbar {
        width: 3px; /* Szerokość paska przewijania */
    }

    .event-modal-content::-webkit-scrollbar-thumb {
        background-color: #333333; /* Kolor paska */
        border-radius: 5px; /* Zaokrąglenie */
    }

    .event-modal-content::-webkit-scrollbar-track {
        background-color: #222222; /* Kolor tła przewijania */
    }

/* Dla Firefoxa */
.event-modal-content {
    scrollbar-width: thin; /* Cienki pasek */
    scrollbar-color: #333333 #222222; /* Pasek #333333 na tle #222222 */
}





@media (max-width: 768px) {
    .event-item {
        flex-direction: column;
        align-items: flex-start;
    }

        .event-item img {
            width: 50px;
            height: 50px;
        }

        .event-item span {
            font-size: 16px;
        }

    #accordionFriendsEvents h3 {

        text-align: center;
    }

    #accordionOtherEvents h3 {
        text-align: center;
    }

    #accordionEvent h3 {
        text-align: center;
    }

    .friends-list{
        margin-top: 10px;
    }
        
}


@media (max-width: 480px) {
    .event-item {
        flex-direction: column;
        align-items: flex-start;
    }

        .event-item img {
            width: 40px;
            height: 40px;
        }

        .event-item span {
            font-size: 14px;
        }

     

    #accordionFriendsEvents h3 {

        text-align: center;
        margin-bottom: 30px;
    }

    #accordionOtherEvents h3 {
        text-align: center;
        margin-bottom: 30px;
    }

    #accordionEvent h3 {
        text-align: center;
        margin-bottom: 30px;
    }

    .event-item .friends-list {
        position: absolute; 
        z-index: 2; 
        padding-left: 20px;
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
    }

  


    .friends-list {
       /* margin-top: 10px;
        margin-bottom: 30px;*/
    }
}

.d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important
}

.content-card .d-flex {
    gap: 10px;
}


.d-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important
}

.d-none {
    display: none !important
}


.close-icon-btn {
    position: absolute;
   margin-left: 450px;
    width: 30px; 
    cursor: pointer;
}


@media (max-width: 520px) {
    .close-icon-btn {
        right: 8%;
    }
}


.custom-label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #ffffff; 
}


.custom-input {
    width: 100%;
    padding: 12px 15px; 
    font-size: 14px;
    border: 1px solid #555; 
    border-radius: 8px; 
    background-color: #333333; 
    color: white; 
    box-sizing: border-box; 
}


    .custom-input:focus {
        border-color: #007bff; 
        background-color: #444444; 
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); 
    }

  
    .custom-input:hover {
        border-color: #222222; 
    }


.custom-file-upload input[type="file"] {
    display: none;
}


.custom-file-label {
    display: inline-block;
    padding: 10px 20px;
    background-color: #555;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 10px;
    width: 150px;
    transition: background-color 0.3s ease;
}

   
    .custom-file-label:hover {
        background-color: #333333;
    }


input[type="file"]:valid + .custom-file-label {
    background-color: #333333;
}

    input[type="file"]:valid + .custom-file-label::after {
        content: ' - ' attr(data-file-name);
    }


.custom-file-label::after {
    content: ' - Brak wybranego pliku';
    display: inline-block;
    font-size: 10px;
    color: #ccc;
}



.event-item span {
    font-size: 16px;
    margin-left: 0;
    text-align: left;
    padding-left: 10px;
}


.event-item img {
    display: block;
}

.event-item {
    background-image: none; 
}


@media (max-width: 576px) {
    .event-item img {
        display: none; 
        z-index: 1;
    }

    .event-item {
        background-image: url('/images/event-img-default.webp');
        background-size: cover;
        background-position: center;
        height: 250px;
        position: relative;
    }

        .event-item span {
            font-size: 16px;
            margin-left: 0;
            text-align: left;
            padding-left: 10px;
            margin-top: 50px;
            color: white;
            z-index: 2;
            font-weight: bold;
        }

        .event-item .btn.secondary-btn {
            font-size: 11px !important;
            margin-bottom: 10px;
            margin-right: 10px !important;
            margin-top: 45px;
            color: white;
            z-index: 2;
        }
}


@media screen and (max-width: 991px) {
    #modalText {
        margin-left: 0 !important;
    }
}


.checkbox-container {
    position: absolute;
 
    display: flex;

    align-items: flex-start; 
}

.profil-container {
    color: white;
    margin-bottom: 10px; 
}

.checkbox-container {
    display: flex;
    align-items: center !important; 
    margin-bottom: 20px !important; 
}

.form-check-inline {
    margin-right: 15px !important; 
}


.form-check-input {
    width: 20px !important;
    height: 20px!important;
    border: 2px solid #222222 !important;
    background-color: #111111 !important;
    border-radius: 4px !important;
}

   


.input-wrapper form-group {
    margin-bottom: 15px !important;
}


    .form-check-input:checked {
        background-color: #111111 !important; 
        border-color: #222222 !important; 
    }

        .form-check-input:checked + .form-check-label::before {
      
            color: red !important;
            position: absolute !important;
            left: 3px !important;
            top: 2px !important;
        }

#editFormHours {

    padding: 20px;
    border-radius: 12px; 
    width: 150px;

}


.desc {
    margin-bottom: 15px;
    color: white; 
    font-size: 16px;
}


#editFormHours input[type="time"] {
    background-color: #222222; 
    color: white; 
    border: none; 
    border-radius: 8px; 
    padding: 10px; 
    font-size: 16px;
    width: 100%;
}


.edit-icon {
    width: 20px;
    height: 20px;
    cursor: pointer;
    transition: transform 0.2s ease;
    margin-top: -90px;
}

    .edit-icon:hover {
        transform: scale(1.2); 
    }


.edit-icon-wrapper {
    margin-left: 90%; 
}

.btn-container {
    display: flex; 
    justify-content: space-between; 
    gap: 10px; 
}

.line {
    display: block; 
    width: 100%; 
    height: 1px; 
    background-color: #222222; 
    margin-top: 10px; 
    margin-bottom: 10px; 
}


.event-info-box {
    padding: 0 35px 55px
}

@media screen and (max-width: 575px) {
    .event-info-box {
        padding: 0 20px 20px
    }
}

.event-banner-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    min-height: 385px
}

    .event-banner-info .icon {
        display: block;
        margin-bottom: 30px
    }

@media screen and (max-width: 575px) {
    .event-banner-info .icon {
        max-width: 40px;
        margin-bottom: 15px
    }
}

.event-banner-info .desc {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 24px
}

@media screen and (max-width: 575px) {
    .event-banner-info .desc {
        margin-bottom: 10px
    }
}

.event-banner-info .title {
    font-size: 29px;
    font-weight: 700;
    overflow-wrap: break-word;
}

@media screen and (max-width: 575px) {
    .event-banner-info .title {
        font-size: 22px;
        line-height: 1.2;
        margin-bottom: 0
    }
}

.event-btns-wrapper {
    gap: 12px;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

    .event-btns-wrapper .btn {
        font-size: 16px;
        font-weight: 500
    }

.event-banner-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
}

@media screen and (max-width: 1400px) {
    .event-banner-bottom {
        padding-top: 10px
    }
}

@media screen and (max-width: 991px) {
    .event-banner-bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        gap: 20px
    }
}

.event-banner-bottom .profile-tab {
    margin-bottom: 0
}

.event-banner-bottom .profile-tab-btn-wrapper {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
}

@media screen and (max-width: 1400px) {
    .event-banner-bottom .profile-tab-btn-wrapper {
        padding-bottom: 0
    }
}

@media screen and (max-width: 991px) {
    .event-banner-bottom .profile-tab-btn-wrapper {
        -webkit-box-pack: stretch;
        -ms-flex-pack: stretch;
        justify-content: stretch;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.event-banner-bottom .tab-content {
    padding-left: 50px;
    padding-bottom: 6px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    border-bottom: 1px solid #222222
}

@media screen and (max-width: 1600px) {
    .event-banner-bottom .tab-content {
        padding-left: 10px
    }
}

@media screen and (max-width: 991px) {
    .event-banner-bottom .tab-content {
        padding-left: 0
    }
}

.event-info-card {
    padding: 32px 45px 100px;
    margin-bottom: 32px
}

@media screen and (max-width: 1400px) {
    .event-info-card {
        padding-bottom: 50px
    }
}

.event-info-card .info-para {
    display: flex; /* Ustawienie elementów w jednej linii */
    align-items: center; /* Wyrównanie do środka */
    gap: 12px; /* Odstęp między ikoną a tekstem */
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 30px;
    flex-wrap: wrap; /* Pozwala tekstowi przejść do nowej linii, jeśli jest długi */
}

@media screen and (max-width: 1400px) {
    .event-info-card .info-para {
        font-size: 16px;
    }
}

.event-info-card .info-para .icon {
    width: 23px;
    flex-shrink: 0; /* Zapobiega zmniejszaniu ikony */
    display: flex;
    align-items: center; /* Zapewnia, że ikona nie zmienia rozmiaru */
}

    .event-info-card .info-para .icon img {
        width: 23px; /* Stała szerokość ikony */
        height: auto;
    }

.event-info-card .info-para .event-title {
    white-space: nowrap; /* Zapobiega złamaniu "Wydarzenie:" na nową linię */
}

.event-info-card .info-para .event-name {
    flex: 1; /* Zapewnia, że tekst może się rozszerzać */
    white-space: normal; /* Pozwala na zawijanie tekstu */
    word-wrap: break-word; /* Zapobiega wyjściu poza kontener */
    overflow-wrap: break-word; /* Nowoczesne zawijanie */
    min-width: 100%; /* Gwarantuje, że długi tekst przejdzie do nowej linii */
}


.event-info-card .profile-desc {
    font-size: 18px;
    overflow-wrap: break-word; 
}



@media screen and (max-width: 1400px) {
    .event-info-card .profile-desc {
        font-size: 16px
    }
}

.event-card-title {
    font-size: 22px;
    margin-bottom: 44px
}

@media screen and (max-width: 1400px) {
    .event-card-title {
        font-size: 18px
    }
}

.event-organizer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 80px;
    padding-bottom: 40px
}

@media screen and (max-width: 1700px) {
    .event-organizer {
        gap: 40px
    }
}

@media screen and (max-width: 767px) {
    .event-organizer {
        gap: 20px
    }
}

.event-organizer .profile-img {
    width: 190px;
    min-width: 190px;
    height: 190px;
    border-radius: 50%;
    overflow: hidden
}

@media screen and (max-width: 575px) {
    .event-organizer .profile-img {
        width: 100px;
        min-width: 100px;
        height: 100px
    }
}

.event-organizer .profile-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: all ease 0.4s;
    transition: all ease 0.4s
}

.event-organizer .profile-name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    padding-bottom: 60px
}

@media screen and (max-width: 1600px) {
    .event-organizer .profile-name {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding-bottom: 40px
    }
}

@media screen and (max-width: 1200px) {
    .event-organizer .profile-name {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
}

@media screen and (max-width: 767px) {
    .event-organizer .profile-name {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding-bottom: 20px
    }
}

.event-organizer .profile-name p {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 600
}

@media screen and (max-width: 575px) {
    .event-organizer .profile-name p {
        font-size: 13px
    }
}

.event-organizer .profile-name .verify {
    font-size: 15px;
    text-transform: uppercase;
    color: #ff0000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px
}

@media screen and (max-width: 575px) {
    .event-organizer .profile-name .verify {
        font-size: 13px
    }
}

.event-organizer .profile-name .verify img {
    display: block;
    width: 12px
}

.event-card {
    margin-bottom: 32px
}

.event-hr-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 24px;
    padding-bottom: 20px;
    margin-bottom: 15px;
    border-bottom: 1px solid #333333
}

@media screen and (max-width: 575px) {
    .event-hr-box {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.event-hr-box:last-child {
    margin-bottom: 0;
    border-bottom: 0
}

.event-hr-box .img-wrapper {
    max-width: 70px;
    height: 70px;
    border-radius: 6px;
    overflow: hidden;
    width: 70px
}

    .event-hr-box .img-wrapper img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover
    }

.event-hr-box .content {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    gap: 35px
}

@media screen and (max-width: 1600px) {
    .event-hr-box .content {
        gap: 20px
    }
}

.event-hr-box .content .subtitle {
    margin-bottom: 10px;
    font-size: 15px
}

.event-hr-box .content .title {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px
}

@media screen and (max-width: 1700px) {
    .event-hr-box .content .title {
        font-size: 22px
    }
}

@media screen and (max-width: 1600px) {
    .event-hr-box .content .title {
        font-size: 20px
    }
}

.event-hr-box .content .guest-title {
    font-size: 13px;
    line-height: 1.2;
    margin-bottom: 0
}

.event-hr-box .content .guest-list .item .icon-wrapper .icon {
    width: 28px;
    height: 28px;
    min-width: 28px
}

.event-hr-box .content .guest-list .btn {
    font-size: 15px;
    margin-left: 20px;
    width: auto
}

    .event-hr-box .content .guest-list .btn img {
        min-width: 20px;
        margin-right: 20px
    }

    .event-hr-box .content .guest-list .btn:first-child {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        margin-left: 0
    }

@media screen and (max-width: 575px) {
    .event-hr-box .guest-last-content {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1
    }

        .event-hr-box .guest-last-content .item .guest-name {
            font-size: 12px
        }
}

.ticket-card-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 80px;
    padding: 20px 0 25px
}

@media screen and (max-width: 1600px) {
    .ticket-card-content {
        gap: 20px
    }
}

@media screen and (max-width: 1400px) {
    .ticket-card-content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }
}

@media screen and (max-width: 575px) {
    .ticket-card-content {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }
}

.ticket-card-content h3 {
    margin-bottom: 0
}

.ticket-card-content .btn {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.venue-card .event-card-title {
    margin-bottom: 25px
}

.venue-card iframe {
    width: 100%;
    min-height: 215px
}

.venue-card .venue-name {
    padding-top: 35px;
    font-size: 22px;
    line-height: 1;
    margin-bottom: 0;
    overflow-wrap: break-word;
}

@media screen and (max-width: 1400px) {
    .venue-card .venue-name {
        font-size: 18px
    }
}

.venue-card .venue-desc {
    font-size: 15px;
    overflow-wrap: break-word;
}

.guest-count-wrapper {
    margin-bottom: 22px;
    padding-bottom: 35px;
    border-bottom: 1px solid #333333
}

@media screen and (max-width: 1400px) {
    .guest-count-wrapper {
        padding-bottom: 15px
    }
}

.guest-count-wrapper .count-box {
    padding: 20px;
    text-align: center;
    border-radius: 20px
}

@media screen and (max-width: 1400px) {
    .guest-count-wrapper .count-box {
        padding: 20px 5px
    }
}

.guest-count-wrapper .count-box.active {
    background: #1c1b1b
}

.guest-count-wrapper .count-box .count {
    font-size: 33px;
    line-height: 1;
    margin-bottom: 12px;
    font-weight: 700
}

@media screen and (max-width: 1400px) {
    .guest-count-wrapper .count-box .count {
        font-size: 24px
    }
}

.guest-count-wrapper .count-box .count-name {
    font-size: 12px;
    line-height: 1;
    margin-bottom: 0
}

.friends-invite-list {
    list-style: none;
    padding: 0;
    margin: 0
}

    .friends-invite-list li {
        padding-bottom: 15px
    }

        .friends-invite-list li .comment-profile {
            border-bottom: 0;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between
        }

        .friends-invite-list li .profile {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            gap: 20px
        }

        .friends-invite-list li .avatar {
            width: 40px;
            height: 40px;
            min-width: 40px
        }

        .friends-invite-list li .name {
            font-size: 13px;
            font-weight: normal
        }

        .friends-invite-list li .btn {
            font-size: 13px;
            font-weight: normal;
            border-radius: 50px
        }

.friends-invite-title {
    margin-bottom: 30px
}

@media screen and (max-width: 1400px) {
    .event-stat-list {
        gap: 20px
    }
}

@media screen and (max-width: 991px) {
    .event-stat-list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        border-top: 0
    }
}

.event-stat-list li p {
    margin-bottom: 0;
    font-weight: 600
}

.event-stat-list .statistics-item {
    width: 100%
}

    .event-stat-list .statistics-item a {
        gap: 24px
    }

@media screen and (max-width: 991px) {
    .event-stat-list .statistics-item a {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }
}

.event-stat-list .statistics-item .icon {
    min-width: 20px
}

    .event-stat-list .statistics-item .icon img {
        width: 100%
    }

.proposed-event-slider {
    overflow-x: hidden;
    position: relative
}

    .proposed-event-slider .swiper-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

@media screen and (max-width: 991px) {
    .proposed-event-slider .swiper-wrapper {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }
}

@media screen and (max-width: 991px) {
    .proposed-event-slider .swiper-wrapper .event-box {
        padding-bottom: 60px
    }
}

.proposed-event-slider .event-swiper-pagination {
    display: none;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    bottom: 55px
}

@media screen and (max-width: 991px) {
    .proposed-event-slider .event-swiper-pagination {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
}

.proposed-event-slider .event-swiper-pagination .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    background-color: #fff;
    opacity: 1
}

    .proposed-event-slider .event-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background-color: #ff0000
    }

.edit-profile-page .content-card {
    padding: 27px 30px
}
/*
    .edit-profile-page .content-card .btn {
        min-width: 100px;
        font-weight: 500;
        font-size: 16px;
        padding: 13px 10px;
        z-index: 444;
    }*/

.edit-profile-page .remove-photo-btn img {
    width: 40px;
    height: 40px;
}
    .edit-profile-page .content-card .btn {
        min-width: 90px; /* było: 100px */
        font-weight: 500;
        font-size: 14px; /* było: 16px */
        padding: 10px 16px; /* było: 13px 10px */
        z-index: 444;
    }


    .edit-profile-page .content-card .register-check {
        padding-top: 20px
    }

    .edit-profile-page .content-card.photos-card .photo-box {
        position: relative;
        max-height: 110px
    }

        .edit-profile-page .content-card.photos-card .photo-box:hover .button-container {
            opacity: 1
        }

        .edit-profile-page .content-card.photos-card .photo-box .button-container {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: reverse;
            -ms-flex-flow: column-reverse;
            flex-flow: column-reverse;
            opacity: 0;
            -webkit-transition: 0.3s;
            transition: 0.3s
        }

            .edit-profile-page .content-card.photos-card .photo-box .button-container .action-button {
                padding: 0
            }

@media screen and (max-width: 991px) {
    .edit-profile-page .content-card {
        padding: 27px 20px
    }

        .edit-profile-page .content-card .btn {
            padding: 10px;
            margin-left: 0;
            margin-right: 5px !important
        }

        .edit-profile-page .content-card h2 {
            font-size: 16px
        }

        .edit-profile-page .content-card.photos-card .photo-box .button-container {
            opacity: 1
        }

    .edit-profile-page .profile-card .profile-info-box {
  /*      display: -webkit-box;*/
        display: -ms-flexbox;
/*        display: flex;*/
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
/*        justify-content: space-between*/
    }
}

@media screen and (max-width: 767px) {
    .edit-profile-page .content-card {
        padding: 20px 15px !important
    }

        .edit-profile-page .content-card .btn {
            min-width: 100px
        }

        .edit-profile-page .content-card .card-footer {
            text-align: center !important
        }

        .edit-profile-page .content-card.profile-card a {
            word-break: break-all
        }
}

.switch-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.modal-header .btn-close {
    background: url(../../images/close_btn.svg);
    background-repeat: no-repeat;
    opacity: 1
}

.content-card {
}

    .content-card .card-header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

        .content-card .card-header button {
            color: #fff
        }

        .content-card .card-header .btn-close {
            background: url(../../assets/images/close_btn.svg);
            background-repeat: no-repeat;
            opacity: 1
        }

    .content-card .btn-secondary {
        background: #454141;
        color: #fff;
        margin-left: 20px
    }

    .content-card h2 {
        font-size: 22px
    }

    .content-card.profile-opis textarea {
        border-radius: 10px;
        padding: 25px 30px
    }

    .content-card.profile-dodatkowe {
        padding: 32px 30px 37px 30px
    }

    .content-card.profile-tagi {
        padding: 20px 30px 37px 30px
    }

    .content-card .form-group {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 15px;
        margin-bottom: 18px
    }

        .content-card .form-group .form-label {
            margin: 0;
            min-width: 150px;
            font-weight: 500
        }

        .content-card .form-group .form-select {
            min-height: 55px;
            background: #fff url(../images/select_arrow_down.png) no-repeat center right 20px !important;
            border: none;
            max-width: 437px;
            border-radius: 10px
        }

        .content-card .form-group .form-check-list {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap
        }

            .content-card .form-group .form-check-list .form-check {
                padding: 0;
                position: relative;
                margin-bottom: 10px;
                margin-right: 10px
            }

                .content-card .form-group .form-check-list .form-check input[type=checkbox] {
                    position: absolute;
                    opacity: 0;
                    left: 0;
                    margin: 0;
                    -webkit-transition: 0.3s;
                    transition: 0.3s
                }

                    .content-card .form-group .form-check-list .form-check input[type=checkbox]:checked + .form-check-label {
                        background-color: #ff0000;
                        color: white
                    }

                .content-card .form-group .form-check-list .form-check label {
                    margin: 0;
                    padding: 15px 20px;
                    border-radius: 30px;
                    background: #454141;
                    color: #fff
                }

@media screen and (max-width: 767px) {
    .content-card .form-group {
        gap: 20px;
    }

        .content-card .form-group .form-label {
            font-size: 13px;
            min-width: 115px
        }

        .content-card .form-group .form-select {
            min-height: auto;
            border-radius: 13px
        }

        .content-card .form-group .form-check {
            padding-left: 10px
        }

            .content-card .form-group .form-check label {
                font-size: 10px;
                margin-bottom: 0;
                margin-left: 3px
            }

            .content-card .form-group .form-check .form-check-input {
                margin-left: -20px
            }

        .content-card .form-group .form-check-list {
            -ms-flex-wrap: wrap;
            flex-wrap: wrap
        }

            .content-card .form-group .form-check-list .form-check {
                margin-right: 3px
            }

                .content-card .form-group .form-check-list .form-check label {
                    font-size: 13px;
                    padding: 9px 10px
                }
}

/*.content-card.dodaj-post .form-control {
    border: 1px solid #333333;
    background: #454545;
    border-radius: 10px
}*/

.content-card.dodaj-post textarea {
    background: #454545;
    border: none;
    height: 252px;
    border-radius: 0 10px 10px 0px;
    color: #fff;
    font-size: 17px;
    padding: 18px 23px
}

.content-card.dodaj-post .textarea-icon {
    padding: 20px;
    border: 1px solid #333333;
    border-radius: 10px 0 0 10px
}

.content-card.dodaj-post input::-webkit-input-placeholder {
    color: #fff;
    font-size: 17px
}

.content-card.dodaj-post input:-ms-input-placeholder {
    color: #fff;
    font-size: 17px
}

.content-card.dodaj-post input::-moz-placeholder {
    color: #fff;
    font-size: 17px
}

.content-card.dodaj-post input::-ms-input-placeholder {
    color: #fff;
    font-size: 17px
}

.content-card.dodaj-post input::placeholder {
    color: #fff;
    font-size: 17px
}

.content-card.dodaj-post textarea::-webkit-input-placeholder {
    color: #fff;
    font-size: 17px
}

.content-card.dodaj-post textarea:-ms-input-placeholder {
    color: #fff;
    font-size: 17px
}

.content-card.dodaj-post textarea::-moz-placeholder {
    color: #fff;
    font-size: 17px
}

.content-card.dodaj-post textarea::-ms-input-placeholder {
    color: #fff;
    font-size: 17px
}

.content-card.dodaj-post textarea::placeholder {
    color: #fff;
    font-size: 17px
}

.content-card.profile-details {
    padding: 45px 30px
}

    .content-card.profile-details .activity-profile {
        padding: 0 0px 20px
    }

        .content-card.profile-details .activity-profile p {
            font-size: 18px
        }

            .content-card.profile-details .activity-profile p.verify img {
                width: 15px;
                height: 15px
            }

    .content-card.profile-details p {
        margin: 0
    }

.content-card.profile-edit-post .post-card {
    background: #151515;
    padding: 16px 22px;
    border-radius: 10px;
    border: 1px solid #333333
}

    .content-card.profile-edit-post .post-card .post-text p {
        margin-bottom: 0
    }

    .content-card.profile-edit-post .post-card .post-like-comment {
        padding-top: 0
    }

    .content-card.profile-edit-post .post-card .post-img {
        width: 111px;
        margin: 20px auto
    }

        .content-card.profile-edit-post .post-card .post-img img {
            -webkit-filter: none;
            filter: none
        }

.content-card.profile-edit-post .secondary-btn {
    border: 1px solid #222222
}

    .content-card.profile-edit-post .secondary-btn:hover {
        background: #151515;
        border: 1px solid #333333
    }

/*.content-card .tag-search {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    border-radius: 10px
}*/

/*.content-card #searchInput {
    width: 100%;
    padding: 10px 30px;
    margin-bottom: 10px;
    border: none;
    margin-bottom: 0;
    border-radius: 10px 10px 0px 0px !important;
    height: 67px;
    background: #fff url(../images/search_icon.png) no-repeat center right 20px !important;
    border-bottom: 1px solid #000
}*/

.content-card #searchInput {
    width: 100%;
    padding: 10px 30px;
    margin-bottom: 10px;
    border: none;
    margin-bottom: 0;
    border-radius: 10px 10px 0px 0px !important;
    height: 67px;
    background: #1A1A19 url(../images/search.webp) no-repeat center right 20px !important;
    border-bottom: 1px solid #1A1A19;
}

    .content-card #searchInput.active {
        background: #1A1A19 url(../images/search_2.webp) no-repeat center right 20px !important;
        background-size: 10px 10px;
    }


/*.content-card .tag-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px 30px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    color: #111111;
    font-size: 18px;
    font-weight: 500
}*/
.content-card .tag-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px 30px;
    border-bottom: 1px solid #444;
    cursor: pointer;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500
}

    .content-card .tag-item:hover {
        background-color: #222222
    }

.content-card .count {
    color: #808080
}

.content-card #selectedTags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px
}

.content-card .selected-tag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #eee;
    border-radius: 5px;
    padding: 5px 10px
}

    .content-card .selected-tag span {
        margin-right: 5px
    }

.content-card .remove-tag {
    cursor: pointer;
    font-weight: bold
}
.content-card .hastag {
    /* display: -webkit-box; */
    display: -ms-flexbox;
    /* display: flex; */
    /* padding: 10px 30px; */
    /* gap: 10px; */
    -ms-flex-wrap: wrap;
    /* flex-wrap: wrap; */
}


/*.content-card .hastag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px 30px;
    gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}*/

/*    .content-card .hastag .hastag-item {
        color: #808080;
        font-size: 14px;
        border: 1px solid #cccccc;
        border-radius: 40px;
        padding: 0px 4px 0px 5px;
        background: #fff;
        font-weight: 700
    }*/

    .content-card .hastag .hastag-item {
        color: #ccc;
        font-size: 14px;
        border: 1px solid #222;
        border-radius: 40px;
        padding: 0px 4px 0px 5px;
        background: #222;
        font-weight: 700
    }

        .content-card .hastag .hastag-item span {
            font-size: 16px;
            margin-right: 5px;
            font-weight: 500
        }

        .content-card .hastag .hastag-item img {
            margin-left: 10px;
            height: 13px;
        }

/*.content-card .upload-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 43px
}
*/
    .content-card .upload-box {
    width: 280px;
    min-width: 280px;
    height: 280px;
    background-color: #222222;
    color: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 8px;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    justify-content: center;
    padding: 35px 30px;
    border: 1px solid #656565;
    border-radius: 10px
}

    .content-card .upload-box img {
        margin: 30px
    }

    .content-card .upload-box .btn {
        pointer-events: none
    }

.content-card .image-preview {
    position: relative;
    width: 280px;
    height: 280px;
    border-radius: 10px;
    overflow: hidden
}

    .content-card .image-preview .preview-overlay {
        position: absolute;
        bottom: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: 100%;
        padding: 25px;
        height: 100%;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: end;
        background: -webkit-gradient(linear,left bottom,left top,from(rgb(0,0,0)),to(rgba(255,255,255,0.4990371148)));
        background: linear-gradient(0deg,rgb(0,0,0) 0%,rgba(255,255,255,0.4990371148) 100%)
    }

    .content-card .image-preview img.lock-icon {
        position: absolute;
        top: 50%;
        z-index: 9;
        left: 50%;
        width: auto;
        height: auto;
        -webkit-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%)
    }

    .content-card .image-preview img, .content-card .image-preview video {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover
    }

.content-card .button-container {
    position: absolute;
    top: 5px;
    right: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px
}

.content-card .action-button {
    background-color: transparent;
    color: white;
    border: none
}

    .content-card .action-button img {
        height: auto;
        width: auto
    }

.content-card div.preview-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 43px
}

.content-card .register-check .custom-checkbox {
    width: 23px;
    height: 23px;
    min-width: 23px
}

    .content-card .register-check .custom-checkbox .check:before {
        width: 23px;
        height: 23px;
        min-width: 23px;
        border-radius: 5px
    }

    .content-card .register-check .custom-checkbox input:checked + .check:after {
        height: 14px;
        left: 8px;
        width: 8px;
        top: 2px;
        border-width: 0 2px 2px 0
    }

@media screen and (max-width: 991px) {
    .content-card .upload-container {
        gap: 20px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 30px
    }

    .content-card div.preview-container {
        gap: 20px
    }

    .content-card .image-preview {
        width: 150px;
        height: 150px
    }

    .content-card .upload-box {
        width: 320px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

        .content-card .upload-box img {
            margin: 20px
        }

    .content-card .register-check {
        padding-top: 0
    }

    .content-card.profile-edit-post .secondary-btn {
        font-size: 12px;
        min-width: auto
    }

    .content-card.profile-edit-post .post-card {
        margin-bottom: 10px
    }
}

@media screen and (max-width: 767px) {
    .content-card h2 {
        font-size: 15px
    }

    .content-card #searchInput {
        padding: 10px;
        font-size: 14px
    }

    .content-card .tag-item {
        padding: 5px 10px;
        font-size: 14px
    }

    .content-card .image-preview {
        width: 140px;
        height: 140px
    }

    .content-card .register-check {
        padding-top: 0
    }

        .content-card .register-check label {
            font-size: 12px
        }

    .content-card .hastag {
        padding: 5px;
        gap: 5px
    }

        .content-card .hastag .hastag-item {
            font-size: 12px;
            border-radius: 40px;
            padding: 2px 8px 2px 10px
        }

            .content-card .hastag .hastag-item span {
                font-size: 18px
            }

            .content-card .hastag .hastag-item img {
                width: 20px;
                margin-left: 2px;
                height: 15px;
            }
}

#profileupdate .modal-dialog {
    max-width: 792px
}

    #profileupdate .modal-dialog .modal-content {
        background: #222222;
        border: 1px solid #333333
    }

#eventForm .form-group {

    gap: 20px; 
}


.blur-image {
    -webkit-filter: blur(40px); 
    filter: blur(40px); 
}


.title-with-line {
    margin-bottom: 50px;
    position: relative;
    text-align: left !important;
}

   /* .title-with-line::after {
        content: ''; 
        position: absolute;
        left: 0;
        bottom: -10px; 
        width: 100%; 
        height: 1px; 
        background-color: #222222; 
    }*/


    #closeBtnMessage {
        display: none; 
    }

    .icon-event {
        width: 25px;
        height: 25px;
        margin-left: 95%;
    }

   



@media (max-width: 991px) {
    #loginDialog {
        padding: 20px;
        width: 90%;
        border-radius: 5px;
    }

        #loginDialog h1 {
            font-size: 18px !important;
        }

        #loginDialog p {
            font-size: 14px !important;
        }

        #loginDialog button {
            padding: 12px;
            font-size: 14px;
        }

        #loginDialog .footer {
            font-size: 8px;
        }

        #loginDialog button {
            padding: 10px;
            font-size: 10px !important;
            max-width: 130px !important;
        }

    #closeModalLogin {

        top: 0px;
        right: 5px;
    }
}


@media (max-width: 600px) {
    #loginDialog {
        padding: 15px;
        border-radius: 5px;
    }

        #loginDialog h1 {
            font-size: 16px !important;
        }

        #loginDialog p {
            font-size: 11px !important; 
        }

        #loginDialog button {
            padding: 10px;
            font-size: 8px !important;
            max-width: 130px !important;
        }

        #loginDialog .footer {
            font-size: 7px;
        }


    #closeModalLogin {
        top: 0px;
        right: 5px;
    }
}

/*loginmodal*/

#loginModal, #loginModal * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    color: red;
}


#loginModal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}




    #loginModal .login-modal-content {
        position: relative;
        display: flex;
        background-color: #111111;
        border-radius: 12px;
        overflow: hidden;
        max-width: 900px;
        width: 90%;
        box-shadow: 0 0 30px rgba(0,0,0,0.5);
        color: #fff;
    }

    #loginModal .login-modal-close {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 1.6rem;
        color: #6A6A6A;
        cursor: pointer;
        z-index: 1001;
        opacity: 0.9;
        transition: color 0.3s ease, transform 0.2s ease;
    }

       


    /* Lewa sekcja ze zdjęciem */
    #loginModal .login-modal-image {
        flex: 1;
        background-color: #111;
    }

        #loginModal .login-modal-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    /* Prawa sekcja z formularzem */
    #loginModal .login-modal-form {
        flex: 1;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        color: white;
        margin-top: -20px;
    }

    /* Logo wyśrodkowane */
    #loginModal .login-modal-logo {
        width: 130px;
        margin: 0 auto 1rem;
        display: block;
    }

    /* Tytuł */
    #loginModal .login-modal-title {
        font-size: 1.5rem;
        font-weight: bold;
        color: lightgray;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    /* Podtytuł */
    #loginModal .login-modal-subtitle {
        font-size: 1.1rem;
        color: #aba1a1;
        margin-bottom: 0.8rem;
    }

    /* Lista Funkcji */
    #loginModal .login-modal-features {
        display: flex;
        justify-content: space-around;
        margin-top: 0.7rem;
        gap: 20px;
        margin-bottom: 10px;
    }

    #loginModal .feature-item {
        font-size: 0.9rem;
        color: #aba1a1;
        flex: 1;
        text-align: center;
        margin: 5px 0; /* Zmniejszenie odstępów między elementami */
        line-height: 1.2; /* Zmniejszenie odstępu wewnątrz tekstu */
    }


    /* Styl Inputów */
    #loginModal form input {
        width: 100%;
        padding: 12px;
        margin-top: 15px;
        border: 1px solid #343434;
        border-radius: 8px;
        background: #212121;
        color: #6A6A6A;
        font-size: 1rem;
        margin-bottom: 10px;
    }

    /* Styl pola hasła z ikoną */
    #loginModal .password-container {
        position: relative;
        width: 100%;
        margin-bottom: 20px;
    }

        #loginModal .password-container input {
            width: 100%;
            padding: 12px;
            border: 1px solid #343434;
            border-radius: 8px;
            background: #212121;
            color: #343434;
            font-size: 1rem;
        }

    #loginModal .password-toggle {
        position: absolute;
        right: 15px;
        top: 20px;
        transform: translateY(-50%);
        cursor: pointer;
        width: 28px;
        height: 24px;
    }

    /* Przycisk Rejestracji */
    #loginModal .login-modal-submit-button {
        width: 50%;
        padding: 10px;
        margin-top: 100px;
        background-color: #212121;
        border: none;
        border-radius: 5px;
        color: #929292;
        font-size: 1.2rem;
        cursor: not-allowed;
        transition: background-color 0.3s ease;
        margin-bottom: 25px;
    }

        #loginModal .login-modal-submit-button:enabled {
            background-color: #212121;
            cursor: pointer;
        }

        #loginModal .login-modal-submit-button:hover:enabled {
            background-color: #212121;
        }

    #loginModal input[type="email"],
    #loginModal input[type="password"],
    #loginModal input[type="nick"] {
        color: #6A6A6A;
        background-color: #212121; 
        border: 1px solid #333131; 
        padding: 10px;
        border-radius: 5px;
        margin-bottom: 10px;
    }

 
    #loginModal input::placeholder {
        color: #6A6A6A; 
        opacity: 1; 
    }




    #loginModal input:focus {
        outline: none;
        border-color: #6A6A6A;
        color: #6A6A6A;
    }


    /* Styl dla pól input w trybie autofill (Chrome i WebKit) */
    #loginModal input:-webkit-autofill {
        -webkit-box-shadow: 0 0 0 1000px #212121 inset; /* Tło ciemnoszare */
        -webkit-text-fill-color: #6A6A6A; /* Kolor tekstu */
        border: 1px solid #333131;
        border-radius: 5px;
        padding: 10px;
        font-size: 1rem;
        transition: background-color 5000s ease-in-out 0s; /* Zapobiega szybkiej zmianie koloru */
    }

    /* Styl dla Firefox */
    #loginModal input:-moz-autofill {
        background-color: #212121 !important;
        color: #6A6A6A !important;
        border: 1px solid #333131;
        border-radius: 5px;
    }

    /* Styl dla Edge */
    #loginModal input:autofill {
        background-color: #212121 !important;
        color: #6A6A6A !important;
        border: 1px solid #333131;
    }

    /* Styl placeholdera */
    #loginModal input::placeholder {
        color: #6A6A6A;
        opacity: 1;
    }

    /* Styl dla aktywnego inputa (po kliknięciu) */
    #loginModal input:focus {
        outline: none;
        border-color: #6A6A6A;
        color: #6A6A6A;
    }


    /* Linki i stopka */
    #loginModal .login-modal-footer,
    #loginModal .login-modal-privacy-policy {
        font-size: 0.8rem;
        margin-top: 4px;
        text-align: center;
        color: #B4B4B4;
        line-height: 1.4;
    }

    #loginModal .login-modal-link {
        color: red;
        text-decoration: none;
        font-weight: bold;
    }

        #loginModal .login-modal-link:hover {
            text-decoration: underline;
        }


@media screen and (max-width: 768px) {
    #loginModal .login-modal-content {
        flex-direction: column;
        width: 95%;
    }

    #loginModal .login-modal-image {
        height: 300px;
    }

    #loginModal .login-modal-form {
        padding: 1.6rem;
    }

    #loginModal .login-modal-title {
        font-size: 1.6rem;
    }
}

.empty {
    display: none;
}


.full-width {
    flex: 1 1 100%;
}

.col-adjusted {
    flex: 0 0 auto;
    width: 49.33333333%; 
}

.col-adjusted2 {
    flex: 0 0 auto;
    width: 99.33333333%;
}


@media (max-width: 991px) {
    .col-adjusted {
        width: 100%;
        flex: 1 1 100%;
    }
}


/* Wyłączenie stylów dla checkboxów w tej sekcji */
.checkbox-container .form-check-input {
    margin-top: 0 !important;
    background: transparent !important;
    margin-bottom: 0 !important;
    border: 1px solid #333 !important;
    width: 20px !important;
    height: 20px !important;
    position: relative;
    cursor: pointer;
    appearance: none; /* Usunięcie domyślnego wyglądu przeglądarki */
}

    /* Dodanie czerwonego ptaszka po zaznaczeniu */
    .checkbox-container .form-check-input:checked {
        background-color: #111111 !important;
        border-color: dimgrey !important;
    }

        /* Dodanie pseudo-elementu do checkboxa po zaznaczeniu */
        .checkbox-container .form-check-input:checked::after {
            content: '✔';
            color: red;
            font-size: 16px;
            font-weight: bold;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }


    /*wyszukiwarka*/
/* Wyszukiwarka - Modal */
.search-modal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Darker background for better focus */

}

.search-modal-content {
    background-color: #222;
    padding: 20px;
    border-radius: 10px;
    width: 30%;
    max-width: 500px;
    color: white;
    position: relative; /* Ensures absolute children like suggestions are correctly positioned */
}

.search-close {
    float: right;
    font-size: 28px;
    cursor: pointer;
}

    .search-close:hover {
        color: #ff4d4d;
    }

/* Filters styling */
.search-filters {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Equal spacing between filter elements */
}

/* Dropdown styling */
.dropdown-container {
    position: relative;
    display: flex;
    flex-direction: column;
}

.dropdown-button {
    padding: 10px;
    border: 1px solid #ddd;
    background-color: #fff;
    text-align: left;
    cursor: pointer;
    border-radius: 5px;
}
/*
    .dropdown-button:hover {
        background-color: #f5f5f5;
    }*/

.dropdown-container.active .dropdown-content {
    display: block;
}


.dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 5px); /* Ensure dropdown appears just below the button */
    left: 0;
    background-color: #222;
    border: 1px solid #ddd;
    z-index: 1050;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    color: white;
}

.dropdown-container:hover .dropdown-content {
    display: block;
}

.checkbox-label {
    display: block;
    padding: 5px 0;
    cursor: pointer;
}

/* Autocomplete container */
.autocomplete-container {
    position: relative;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box; /* Ensure consistent sizing */
}

.suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #1e1e1e;
    color: white;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1050;
    box-sizing: border-box;
    /* Limit height and enable scroll */
    max-height: 100px; /* Adjust this value if needed */
    overflow-y: auto;
}

    /* Custom scrollbar styles */
    .suggestions::-webkit-scrollbar {
        width: 6px;
    }

    .suggestions::-webkit-scrollbar-thumb {
        background-color: #888;
        border-radius: 10px;
    }

        .suggestions::-webkit-scrollbar-thumb:hover {
            background-color: #555;
        }


/* Styl pojedynczego elementu w podpowiedziach */
.suggestion-item {
    padding: 10px;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
    overflow-wrap: break-word;
}

    .suggestion-item:last-child {
        border-bottom: none; /* Usunięcie linii dla ostatniego elementu */
    }

    /* Efekt hover */
    .suggestion-item:hover {
        background-color: #333;
    }

/* Strzałka w polu */
.dropdown-arrow {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    pointer-events: none;
    color: #555;
}

/* Search button */
.search-submit-button {
    margin-top: 20px;
    width: 100%;
    padding: 10px;
    border: none;
    background-color: #fe0000;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

    .search-submit-button:hover {
        background-color: #cc0000;
    }





/* Ustawienie dla albumów */
.album-list {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.album-container {
    width: 200px;
    height: 250px;
    background-color: #222222; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border: 1px solid #333333;
    transition: background-color 0.3s ease;
}

    .album-container:hover {
        background-color: #222222; /* Jaśniejszy szary przy najechaniu */
    }



/* Styl dla zdjęć w albumie */
.album-thumbnail {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-bottom: 1px solid #ccc;
}

/* Informacje o albumie */
.album-info-wrapper {
    padding: 10px;
    text-align: center;
}

.name-wrapper {
    font-size: 14px;
}

.name {
   /* font-weight: bold;*/
}

/* Sekcja zdjęć wybranego albumu */
#albumPhotosSection {
    margin-top: 20px;
}

.album-photo {
    width: 100%;
    max-width: 300px;
    margin: 10px;
    border: 1px solid #ccc;
}


/* Dynamic grid layout for photos */
.photo-grid {
    display: grid;
    gap: 10px;
}

    /* Adjusting the grid based on the number of photos */
    .photo-grid img:nth-child(1) {
        grid-template-columns: 1fr;
    }

    .photo-grid img:nth-child(2) {
        grid-template-columns: repeat(2, 1fr);
    }

    .photo-grid img:nth-child(3) {
        grid-template-columns: repeat(3, 1fr);
    }

    .photo-grid img:nth-child(4),
    .photo-grid img:nth-child(5),
    .photo-grid img:nth-child(6) {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }

   


.album-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: 5px;
/*    left: 5px;*/
    width: calc(100%); 
    padding: 5px;
    border-radius: 0 0 12px 12px;
    color: white;
    font-size: 12px;
    box-sizing: border-box;
}

.album-title {
    margin: 0;
    font-weight: bold;
   
}


.album-photo-count {
    margin: 0;
    font-weight: bold;
    font-size: 11px;
    line-height: 20px;
}

.album-info {
    display: flex;
    flex-direction: column;
    gap: 2px; /* dodaje minimalny odstęp między tytułem a typem */
}

.album-title {
    margin: 0;
    font-weight: bold;
    font-size: 12px !important;
    line-height: 1.1;
    white-space: normal; /* pozwala na zawijanie */
    word-break: break-word; /* łamie długie słowa, jeśli trzeba */
}

.album-type {
    font-size: 12px;
    margin: 0;
    color: #ccc;
    line-height: 1; /* jeszcze ciaśniej pod tytułem */
}

.album-type-icon {
    width: 14px;
    height: 14px;
    vertical-align: text-bottom;
    margin-left: 4px;
    opacity: 0.8;
}


/* Container for the photo grid layout */
#albumPhotosSection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 15px; 
    padding: 10px;
    justify-items: center;
}

/* Consistent styling for all album photos */
.styled-photo {
    width: 100%;
    max-width: 350px;
    height: 250px;
    object-fit: cover; 
    border-radius: 20px; /* Rounded corners */
    border: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.2s ease-in-out;
}

/* Hover effect for better interaction */
.styled-photo:hover {
    transform: scale(1.05);
    cursor: pointer;
}

#accordionEvent {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 10px;
}


.row.four-row {
    display: flex;
    flex-wrap: wrap;
    row-gap: 24px;
    column-gap: 24px;
}

.four-row .col {
    width: 25%; /
    flex: 1 0 25%;
    box-sizing: border-box;
}

    .four-row .col.large {
        width: 50%; 
        flex: 1 0 50%;
    }


#accordionEvent2,
#accordionEventNew,
#accordionEventPopular,
#accordionEventMy,
#accordionEventInvites,
#accordionEventParticipating {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

@media (max-width: 768px) {
    #accordionEvent2,
    #accordionEventNew,
    #accordionEventPopular,
    #accordionEventMy,
    #accordionEventInvites,
    #accordionEventParticipating {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    #accordionEvent2,
    #accordionEventNew,
    #accordionEventPopular,
    #accordionEventMy,
    #accordionEventInvites,
    #accordionEventParticipating {
        grid-template-columns: repeat(1, 1fr);
    }
}


#loader {
    display: none; 
    position: fixed;
    z-index: 1050;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}



.responsive-label {
    white-space: normal; /* Allow wrapping */
    word-wrap: break-word; /* Break long words if needed */
    margin-left: 8px;
}

@media (max-width: 768px) { /* Adjust for small screens */
    .responsive-label {
        display: block; /* Force label to span two lines */
        margin-left: 1.5rem; /* Optional: Adjust spacing from the checkbox */
    }
}

.custom-form .form-wrapper .form-control {
    padding-left: 20px !important;
    padding-right: 20px !important;
}


.file-upload-wrapper .custom-file-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #222222; /* Button background color */
    color: white; /* Button text color */
    cursor: pointer;
    border-radius: 15px; /* Rounded corners */
    border: 1px solid #333333; /* Border color */
    font-size: 14px; /* Text size */
    transition: background-color 0.3s, color 0.3s; /* Smooth transition for hover effects */
}

    .file-upload-wrapper .custom-file-button:hover {
        background-color: #333333; /* Lighter shade on hover */
        color: #ffffff; /* Keep text color white */
    }

    .file-upload-wrapper .custom-file-button:active {
        background-color: #444444; /* Darker shade when active/clicked */
    }

#file-info {
    margin-left: 10px; /* Spacing between button and file info */
}

#file-error {
    display: none; /* Initially hide the error message */
    margin-top: 5px; /* Space above the error message */
    color: #dc3545; /* Bootstrap danger color (red) */
}


.content-card.activation-card {
    border: none;
}


.event-input {
    background-color: #222222;
    border: 1px solid #6a6a6a;
    color: #ffffff;
    border-radius: 10px;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

    .event-input:focus {

        border: 1px solid #6a6a6a;
    }




.photo-overlay {
    position: absolute;
    top: 0;
    left: 50%; 
    width: 50%; 
    height: 100%; 
    background: rgba(0, 0, 0, 0.9); 
    color: white; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 10; 
    font-family: Arial, sans-serif; 

}


    .photo-overlay .overlay-content {
        padding: 40px;
        max-width: 100%;
        text-align: left;
        font-size: 14px;
        line-height: 1.5;
        margin-top: 30px;

    }
.overlay-content {

    z-index: 20;
}
.photo-overlay h2 {
        color: #ff4444; 
        font-size: 28px;
        font-weight: bold; 
        margin-bottom: 15px;
    }


.photo-overlay p {
    margin: 15px 0;
    font-size: 13px;
     line-height: 1.6; 
}
   
    .photo-overlay .btn-register {
        background-color: red;
        color: white;
        text-decoration: none;
        padding: 15px 45px; 
        border-radius: 5px;
        margin: 20px 0;
        font-weight: bold;
        font-size: 15px;
        text-transform: uppercase; 
    }

.photo-overlay .close-overlay-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;

    color: white;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
}

@media (max-width: 1200px) {
    .photo-overlay .btn-register {
        padding: 15px 20px;
        font-size: 12px;
    }

    .photo-overlay .checklist {
        margin: 40px 0;
    }
}

@media (max-width: 991px) {
    .photo-overley-mobile .photo-overlay {
        top: 0;
        left: 0%;
        width: 100%;
        height: 100vh; /* Pełna wysokość ekranu */
        display: flex;
        justify-content: center; /* Wyśrodkowanie poziome */
        align-items: center;
        position: fixed;
        z-index: 555559999999999555555555555555559995555555;
    }



    .photo-overlay .overlay-content {
        padding: 0px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); /* Przesuwa element na środek */
        text-align: left; /* Jeśli chcesz tekst wyrównać do lewej */
    }

    .progress-bar-container.mobile-progress {
        /*   max-width: 90% !important;*/
        margin-left: 22px !important;
        margin-right: 22px !important;
    }

        .progress-bar-container.mobile-progress .progress-bar-fill {
            height: 15px !important;
        }

    .progress-bar {
        height: 15px !important;

    }

    .photo-overlay p {
        margin: 5px 0;
        /*        font-size: 6px;*/
        line-height: 1.6;
        margin-bottom: 30px !important;
    }

    .photo-overlay h2 {
        color: #ff4444;
        font-size: 38px;
        font-weight: bold;
        margin-bottom: 45px;
    }

    .photo-overlay .checklist {

        margin: 20px 0;

    }

    .photo-overlay p {
        margin: 15px 0;
        font-size: 16px;
        line-height: 1.6;
    }

    .photo-overlay .btn-register {
        padding: 15px 20px;
        font-size: 14px;
    }

    .photo-overlay .checklist span {
        color: #ff4444;
        font-weight: bold;
        font-size: 16px;
    }


}
        .photo-overlay .btn-register:hover {
            background-color: darkred;
        }

   
    .photo-overlay .login-text {
        margin-top: 15px;
        font-size: 14px; 
        color: white;
    }

        .photo-overlay .login-text a {
            color: white;
            text-decoration: underline;
            font-weight: bold;
            font-size: 14px;
        }

            .photo-overlay .login-text a:hover {
                color: #ccc;
            }


    .photo-overlay .checklist {
        text-align: left;
        font-size: 13px!important; 
        margin: 60px 0;
        line-height: 1.6; 
    }

.check-icon {
    color: gray !important; /* Wymusza biały kolor */
    font-family: Arial, sans-serif; /* Upewnia się, że znak nie jest emoji */
    font-size: 1.2em; /* Opcjonalnie powiększenie */
    font-weight: bold;
    margin-right: 8px;
}



        .photo-overlay .checklist span {
            color: #ff4444; 
            font-weight: bold;
            font-size: 14px; 
        }






.progress-bar-container {
    margin-bottom: 20px;
    position: relative;
    height: 20px;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background-color: #cccccc;
    border-radius: 3px;
    position: relative;
}

.progress-bar-fill {
    height: 6px;
    background-color: #fe0000;
    border-radius: 3px;
    width: 0%;
    transition: width 0.3s ease-in-out;
}

.progress-bar-step {
    position: absolute;
    top: 50%;
    left: 50%; 
    transform: translate(-50%, -50%); 
    font-size: 14px;
    color: #fff;
    margin-top: 15px;
}


.steps-wrapper {
    position: relative;
    overflow: hidden;
}

.steps-slide {
    display: none;
    text-align: center;
}

    .steps-slide h2 {
        font-size: 15px;
        margin-bottom: 15px;
    }

.step-background {
    position: relative; 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    padding: 20px; 
    height: 300px;
    border-radius: 0 0 25px 25px; 
    overflow: hidden;
    
}

    .step-background::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)); 
        z-index: 0; 
        pointer-events: none; 
    }

    .step-background > * {
        position: relative;
        z-index: 1;
    }



.step-checkbox-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    margin-top: 15px;

}

.steps-navigation {
    display: flex;
    justify-content: space-between; 
    position: absolute; 
    bottom: 20px; 
    left: 0;
    right: 0;
    padding: 0 10px; 
    z-index: 0;
}

    .steps-navigation button {
        width: 100px;
        padding: 10px;
        border: none;
        border-radius: 25px;
        font-size: 14px;
        font-weight: bold;
        cursor: pointer;
        transition: background-color 0.3s;
    }

.step-checkbox-group{
    text-align: left !important;
}

#skipButton {
    background-color: transparent;
    color: #fff;
    font-size: 14px;
    border: none;
    cursor: pointer;
    margin: 0 auto;
}


#prevButton {
    background-color: #555;
    color: #fff;
}

    #prevButton:disabled {
        background-color: #333;
        cursor: not-allowed;
    }

#nextButton {
    background-color: #fe0000;
    color: #fff;
}

    #nextButton:hover {
        background-color: #ff3333;
    }


.photo-upload-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: -10px;
}

.photo-preview-circle {
    width: 190px;
    height: 190px;
    border: 2px dashed #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
    position: relative;
    background-color: #222222;
    background-image: url(/images/upload.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60px;
}
/*
    .photo-preview-circle img {
        max-width: 100%;
        max-height: 100%;
        display: none; 
        object-fit: cover; 
        position: absolute;
    }*/

    .photo-preview-circle img {
        position: absolute; /* Umożliwia przesuwanie */
        top: 0;
        left: 0;
        width: 150%; /* Domyślny rozmiar */
        height: 150%;
        object-fit: cover;
 /*       object-fit: cover;*/
        cursor: grab;
        display: none;
    }

.photo-upload-label {
    background-color: #e60000;
    color: #fff;
    font-size: 14px;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
}

    .photo-upload-label:hover {
        background-color: #cc0000; 
    }

#photoUploadInput {
    display: none; 
}


.city-input {
    width: 90%;
    max-width: 300px;
    padding: 10px;
    font-size: 14px !important;
    border: none;
    border-radius: 8px;
    background-color: #111111!important; 
    color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    margin-top: 10px;
    outline: none;
    transition: all 0.3s ease-in-out;
}

    .city-input::placeholder {
        color: #aaa; 
    }


    .city-input:focus {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        background-color: #333; 
    }


.city-suggestions {
    list-style: none;
    padding: 0;
/*    margin: 5px auto 0;*/
    max-width: 400px;
    width: 100%;
    border: 1px solid #111111;
    border-radius: 8px;
    background-color: #111111; 
    overflow: hidden;
    position: absolute;
    z-index: 1050;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

    .city-suggestions li {
        padding: 10px;
        font-size: 10px;
        color: #fff;
        cursor: pointer;
        transition: background-color 0.2s ease-in-out;
        border-bottom: 1px solid #444;
    }


        .city-suggestions li:hover {
            background-color: #333; 
        }

.name-input {
    width: 90%;
    max-width: 300px;
    padding: 10px;
    font-size: 14px !important;
    border: none;
    border-radius: 8px;
    background-color: #111111 !important; 
    color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    margin-top: 10px;
    outline: none;
    transition: all 0.3s ease-in-out;
}

    .name-input::placeholder {
        color: #aaa; 
    }


    .name-input:focus {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        background-color: #333; 
    }

.name-error {
    margin-top: 10px;
    font-size: 12px;
    color: red;
    padding: 5px;
    border-radius: 4px;
    display: inline-block; 

}


.photo-preview-circle {

    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

#photoPreviewImage {
    width: 100% !important;
    height: 100% !important;
/*    object-fit: cover; */
    display: block; 

}

.photo-preview-circle img {
    max-width: none !important ;  
}



.album-container {
    position: relative;
    width: 200px; /* Szerokość kontenera */
    height: 300px; /* Wysokość kontenera */
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid black;
}

/* Rozmyte tło */
.blur-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1; /* Tło znajduje się niżej niż tekst */
}


/* Tekst nad obrazem */
.album-footer {
    position: absolute;
    bottom: 0;
    color: white;
    text-align: center;
    padding: 10px;
    z-index: 2; /* Tekst znajduje się wyżej niż tło */
    background-color: rgba(0, 0, 0, 0.5);
}

.album-title {
    margin: 0;
    font-size: 13px;
    font-weight: bold;
}

.album-photo-count {
    margin: 0;
    font-size: 12px;
}

.image-preview-box {
    display: flex;
    justify-content: center;
    align-items: center;
/*    border: 1px dashed #ddd;*/
    padding: 6px;
    max-width: 50px;
    max-height: 50px;
    overflow: hidden;
}

    .image-preview-box img.preview-image {
        max-width: 100%;
        max-height: 100%;
        border-radius: 5px;
        object-fit: cover;
    }


.chat-content-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.user-photo-container {
    margin-top: 10px;
}


.user-photo {
    max-width: 100px; 
    max-height: 100px; 
    border-radius: 8px; 
    margin-bottom: 10px;
}




@media (min-width: 891px) and (max-width: 991px) {
    .reply-form .send-button-icon {
        margin-left: 10px;
        margin-top: 0;
    }
}

.reply-text {
    color: white;
    cursor: pointer;
    font-size: 11px !important;
    margin-top: 5px;
    float: right;
}


.reply-form {
    display: flex; /* Use Flexbox layout */
    padding: 10px;
    border-radius: 5px;
    width: 80%;
    margin-left: 40px;
    align-items: center;
    justify-content: space-between;
}

    .reply-form textarea {
        width: 250px;
        height: 60px;
        padding: 5px;
        font-size: 12px;
        border-radius: 5px;
        resize: none;
        /* Optional styling */
    }

 

    .reply-form button {
        margin-top: 5px;
        padding: 5px 10px;
        background-color: #007bff;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }

.reply-form {
    align-items: center; /* Vertically center the content */
}


.reply-box {
    margin-top: 10px;
    padding: 10px;
    border-radius: 5px;
    margin-left: 20px;
}

.reply-form {
    position: relative;
    width: 100%;
}

.reply-form {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

    /* Styl dla pola tekstowego */
    .reply-form .replyContent {
        width: 85%;
        min-height: 90px;
        padding: 12px 50px 12px 12px;
        font-size: 12px;
        border-radius: 20px;
        resize: none;
        border: 1px solid #444;
        background-color: #222;
        color: white;
        outline: none;
        position: relative;
        overflow-y: auto;
    }

        .reply-form .replyContent::-webkit-scrollbar {
            width: 3px;
            
        }

        .reply-form .replyContent::-webkit-scrollbar-track {
            background: #000;
         
        }

        .reply-form .replyContent::-webkit-scrollbar-thumb {
            background-color: #222222;
           
        }

            .reply-form .replyContent::-webkit-scrollbar-thumb:hover {
                background-color: #444;
             
            }
    /* Stylizacja paska przewijania dla Firefox */
    .reply-form .replyContent {
        scrollbar-width: thin;
       
    }

    .reply-form .emoji-icon,
    .reply-form .send-button-icon {
        width: 20px;
        height: 20px;
        cursor: pointer;
        flex-shrink: 0; /* Zapobiega rozciąganiu */
    }

  
    .reply-form .emoji-icon {
        width: 20px;
        height: 20px;
        cursor: pointer;
        margin-right: 5px;
    }


    .reply-form .send-button-icon {
        width: 22px;
        height: 22px;
        cursor: pointer;
        transition: transform 0.2s ease-in-out;
    }

        .reply-form .send-button-icon:hover {
            transform: scale(1.1);
        }

/* Kontener dla podglądu i dodawania pliku */
.reply-upload-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.upload-option-box input[type="file"] {
    display: none;
}

.image-preview-box {

    height: 50px;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;

}

.upload-option-box .addFile label img {
    width: 34px;
    height: 30px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

    .upload-option-box .addFile label img:hover {
        transform: scale(1.1);
    }

.load-more-comments-btn,
.load-more-replies-btn { 
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #222222;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

    .load-more-comments-btn:hover,
    .load-more-replies-btn:hover { 
        background-color: #333333;
    }


    /* video*/

.custom-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
}

    .custom-video-wrapper video {
        width: 100%;
        display: block;
    }


@media (max-width: 991px) {
    .custom-video-wrapper video::-webkit-media-controls {
        display: none !important;
    }
}


.custom-video-wrapper .custom-video-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 12px;
    color: white;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    border-radius: 5px;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    z-index: 109999999999999;
}


    .custom-video-wrapper .custom-video-controls.hidden {
        opacity: 0;
        pointer-events: none;
    }


.custom-video-wrapper .play-pause-btn,
.custom-video-wrapper .volume-btn,
.custom-video-wrapper .fullscreen-btn {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: block;
}


.custom-video-wrapper .progress-container {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 10px;
    position: relative;
    cursor: pointer;
    border-radius: 3px;
}

.custom-video-wrapper .progress-bar {
    height: 100%;
    width: 0%;
    background: red;
    border-radius: 3px;
    transition: width 0.1s ease-in-out;
}


.custom-video-wrapper .time-container {
    font-size: 14px;
    color: white;
    margin-right: 10px;
}


.custom-video-wrapper video::-webkit-media-controls {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.custom-video-wrapper video::-webkit-media-controls-enclosure {
    display: none !important;
}

.custom-video-wrapper video::-webkit-media-controls-panel {
    display: none !important;
}


.custom-video-wrapper video::-webkit-media-controls-play-button,
.custom-video-wrapper video::-webkit-media-controls-timeline {
    display: none !important;
}


@media (max-width: 991px) {
   /* .custom-video-wrapper video {
        pointer-events: none !important;
    }*/
}


.custom-video-wrapper.fullscreen {
    width: 100vw !important;
    height: 100vh !important;
    background: black;
    display: block !important;
}


body.fullscreen-active {
    background: black;
    overflow: hidden;
}

.fullscreen-active .custom-video-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: black;
    z-index: 9999;
}

  
    .fullscreen-active .custom-video-wrapper video {
        width: 100%;
        height: 100%;
        object-fit: contain; 
    }


.fullscreen-active .custom-video-controls {
    width: 95%;
    bottom: 20px;
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
}

@media (min-width: 992px) {
    .fullscreen-active .custom-video-wrapper video {
        width: auto;
        height: 100vh !important;
        max-width: 100vw !important;
        object-fit: contain;
    }
}

/*
#userInfoLoader {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 50px;
    height: 50px;
}

    #userInfoLoader::before {
        content: "";
        width: 50px;
        height: 50px;
        border: 5px solid #f3f3f3;
        border-top: 5px solid #3498db;
        border-radius: 50%;
        animation: userInfoLoader-spin 1s linear infinite;
    }
*/

.lc-emoji-picker {
    z-index: 177100 !important; 
    position: absolute !important;
}


#file-modal .content-card .btn-secondary {

    margin-left: 0 !important;
}

#file-modal .btn img{
    width: 10px;
}

#file-modal .btn-primary {
    margin-left: 0px !important;
/*    margin-bottom: 0px !important;*/
}

#file-modal .content-card .d-flex {
    gap: 0px;
}


#file-modal .btn {
    font-size: 10px !important;
    color: white;
    text-decoration: none;
    display: inline-flex;
    padding: 8px 14px !important;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    transition: all ease 0.4s;
    font-family: "Montserrat", sans-serif;
    position: relative;
    align-items: center;
    justify-content: center;
    /* margin-bottom: 5px; */
    width: 130px;
    margin-left: 40px;
/*    margin-top: -20px;*/
}

#file-modal .content-card.dodaj-post .textarea-icon {
    padding: 10px;
    border: 1px solid #333333;
    border-radius: 10px 0 0 10px;
    margin-top: 5px;
}

#file-modal .content-card.dodaj-post textarea {
    border: 1px solid #1A1A19;
    background: #1A1A19;
    height: 125px;
    border-radius: 0 10px 10px 0px;
    color: #fff;
    font-size: 14px;
    padding: 10px 10px;
}
#file-modal .register-check {
    padding-top: 5px;
}

#file-modal .content-card .hastag .hastag-item span {
    font-size: 12px;
}
#file-modal .content-card .hastag .hastag-item img {
    width: 12px;
    margin-left: 3px;
}

#file-modal .content-card .hastag .hastag-item {
    padding: 2px 3px 2px 2px;
    font-weight: 600;
    font-size: 9px;
}

#file-modal .content-card{
    border: none;
    margin-top: -20px;
}

    #file-modal .content-card.dodaj-post .form-control {
        height: 35px !important;
    }




.file-modal .textarea {
    position: relative;
    z-index: 3100;
    pointer-events: auto !important;
    height: 70px;
}

#file-modal h3, .h3 {
    font-size: 14px;
    margin: 0 0 18px;
    line-height: normal;
    margin-top: 10px;
    margin-bottom: 20px;
}

.ml-40 {
    margin-left: 40px !important;
    font-weight: normal;
}


.reply-form-content {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

/* Kontener flexbox dla inputa i ikon */
.reply-input-container {
    position: relative;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* Pole tekstowe */
.replyContent {
    width: 100%;
    min-height: 50px;
    resize: none;
    padding: 8px;
    padding-right: 60px; /* Zapewnia miejsce na ikony */
    border-radius: 20px;
    border: 1px solid #ccc;
    background: #1a1a1a;
    color: #fff;
    font-size: 16px;
}

/* Ikony umieszczone wewnątrz pola */
.reply-actions {
    position: absolute;
    right: 16%;
    bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

    /* Styl dla ikon */
    .reply-actions img {
        width: 22px;
        height: 22px;
        cursor: pointer;
        filter: brightness(0.8);
    }

        .reply-actions img:hover {
            filter: brightness(1);
        }


#file-modal .card-footer {

    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
   /* justify-content: center;*/ 
}
#file-modal .register-check{
    gap: 4px;
}

#file-modal .content-card .tag-search {

    margin-bottom: 10px;
}


#file-modal .form-control::placeholder {
    font-size: 14px !important;
    color: white;
}
#file-modal  .register-check label

{
    
    font-size: 11px;


}

.custom-close-btn {
    position: absolute;
    /* top: 5px; */
    right: 5px;
    background: none;
    border: none;
    font-size: 32px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: lighter;
}


.custom-close-btn4 {
    position: absolute;
    top: 1px;
    right: 5px;
    width: 34px; /* Dopasuj rozmiar */
    height: 34px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="white" d="M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z"/></svg>') no-repeat center center;
    background-size: contain;
    border: none;
    background-color: transparent;
    opacity: 1; /* Zawsze pełna widoczność */
}




.image-preview-container {
    position: relative; /* Zapewnia pozycjonowanie dla ikon */
    display: inline-block;
    /*//margin-bottom: 20px;*/
}

.button-container {
    position: absolute;
/*    top: 10px;
    right: 40px;*/
    display: flex;
    gap: 8px;
    z-index: 44444444;
}

.action-button {
    background: #4f494900;
    border: none;
    outline: none;
    border-radius: 50%;
    /* width: 32px; */
    /* height: 32px; */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}



    .action-button img {
        width: 30px;
        height: 30px;
        filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.3));
    }
/*
.action-button {
    background: #4f4949;
    border: none;
    outline: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}



    .action-button img {
        width: 20px;
        height: 20px;
        filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.3));
    }*/

.small-image {
    max-width: 100px;
    max-height: 100px;
    opacity: 0.8; 
}

.image-preview-container {
    width: 370px;
    height: 250px;
    display: flex;
    justify-content: center;
    /*    align-items: center;*/
    overflow: hidden;
    margin-left: 40px;
    margin-bottom: -20px;
    background-color: #1A1A19;
    border-radius: 10px;
    position: relative;
    border: 1px solid #1A1A19;
    cursor: pointer;
    background-image: url('/images/upload.webp');
    background-size: 60px auto; /* Pokrywa cały kontener */
    background-position: center; /* Centruje obraz */
    background-repeat: no-repeat;
    margin-bottom: 30px;
}
@media (max-width: 1200px) {
    .image-preview-container {
        width: 380px;
        height: 350px;
    }
}


@media (max-width: 991px) {
    .image-preview-container {
        width: 390px;
        height: 320px;
        margin-left: 20px;
    }
}


@media (max-width: 576px) {
    .image-preview-container {
        width: 95%;
        height: 240px;
        margin-left: 5px;
    }
}


.preview-image .preview-video {
    width: 600px;
    height: 400px;
    object-fit: cover;
    display: none;
    transform: translate(140px, 100px);
}



.image-preview-container.drag-over {
    border: 2px dashed #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

/*emotki*/
/*#emoji-picker {
    position: absolute;
    display: none;
    z-index: 2000;
}
*/
#emoji-picker {
    position: absolute;
    z-index: 49999000;
    visibility: hidden; 
    opacity: 0; 
    transition: opacity 0.2s ease-in-out; 
}


    #emoji-picker.show {
        visibility: visible;
        opacity: 1;
    }


#file-modal .content-card .hastag {

    padding: 10px 0px;;
    margin-top: -20px;
}


.album-modal {
    display: none;
    position: fixed;
    z-index: 3099901;
    left: 50%;
    bottom: 40%;
    height: 400px;
    width: 1050px;
    justify-content: center;
    transform: translateX(-50%);
}

.album-modal-content {
    background: #111112;
    padding: 20px;
    width: 450px;
    border-radius: 10px;
    position: relative;
    height: 330px;
    /*    overflow-x: hidden;*/
}

.album-modal-center {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6); /* maska przyciemniająca */
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.album-modal-content {
    /*    padding: 24px 32px;*/
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    max-width: 400px;
    /*    width: 90%;*/
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* gap: 16px;*/
    position: relative;
}


.album-modal-title {
    font-size: 22px; /* lub np. 24px */
    font-weight: 600;
    margin-bottom: 50px;
}

.album-modal-btns {
    display: flex;
    justify-content: space-between; /* przyciski w lewo i prawo */
    width: 100%;
    margin-top: auto; /* wypycha w dół w flexboxie */
    padding-top: 20px;
}



.close-album-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 44px;
    cursor: pointer;
}

.content-card .upload-container2 {
    display: -webkit-box;
    display: -ms-flexbox;

    gap: 43px
}

@media screen and (max-width: 991px) {
    .content-card .upload-container2 {
        gap: 20px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 30px
    }

    .content-card div.preview-container {
        gap: 20px
    }

    .content-card .image-preview {
        width: 150px;
        height: 150px
    }

    .content-card .upload-box {
        width: 320px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

        .content-card .upload-box img {
            margin: 20px
        }

    .content-card .register-check {
        padding-top: 0
    }

    .content-card.profile-edit-post .secondary-btn {
        font-size: 12px;
        min-width: auto
    }

    .content-card.profile-edit-post .post-card {
        margin-bottom: 10px
    }
}

#uploadPhotoInputId::placeholder {
    font-size: 14px; 
    
}


.custom-password-btn {
    width: 250px;
    margin-top: 10px;
    font-size: 14px;
    display: block;
    text-align: center !important; 
    line-height: 30px !important; 
    margin-left: auto !important;
    margin-right: auto !important;
    background-color: #222222;
    color: white !important;
    border-radius: 5px;
    border: 1px solid #333333;
    transition: background-color 0.3s ease;
    height: 30px; 
}


    .custom-password-btn:hover {
        background-color: #222222; 
    }

.login-return-link {
    color: white !important; 
    text-decoration: underline !important; 
    background-color: #111111;
    border: none !important;
}
    .login-return-link:hover {
        background-color: #111111;
    }


.content-card.password-card h3 {
    font-size: 14px; 
    line-height: 1.6; 
    text-align: center; 
}

.mention {
    color: red; 
    font-weight: bold; 
}

#file-modal .content-card #searchInput {
    height: 38px;
}

#file-modal .content-card .hastag {
    gap: 8px;
}

#file-modal .content-card .tag-item {

    padding: 5px 30px;
    font-size: 12px;

}


.dropdown {
    display: none;
    position: absolute;
    background: #181818;
    border: 1px solid #333333;
    width: 160px;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

    .dropdown ul {
        list-style: none;
        padding: 0;
        margin: 0;
        font-size: 11px;
    }

    .dropdown li {
        display: flex;
        justify-content: space-between;
        padding: 6px;
        cursor: pointer;
        border-bottom: 1px solid #333333;
        align-items: center;
    }


      

.add-album {
    display: flex;
    align-items: center;
    padding: 8px;
}

    .add-album input {
        flex-grow: 1;
        padding: 5px;
        margin-right: 5px;
        border: 1px solid #ccc;
        display: none;
    }
    .add-album button {
        background: none;
        border: none;
        font-size: 11px;
        cursor: pointer;
        color:white
    }
add-album button::before {
    content: "➕";
    color: #28a745; 
    font-weight: bold;
}

.dropdown::-webkit-scrollbar {
    width: 3px; /* Cieńszy pasek przewijania */
}

.dropdown::-webkit-scrollbar-track {
    background: #333333; /* Tło tracka scrolla */
}

.dropdown::-webkit-scrollbar-thumb {
    background: #222222; /* Kolor scrolla */
    border-radius: 3px;
}

#fileInput {
    display: none;
}

#editedImage {
/*    width: 100px; 
    height: 100px;*/
    object-fit: cover; 
    display: block; 
}

#eventModal .form-wrapper .form-control {
    border-radius: 0;
    padding-left: 10px;
    height: 52px;
}

#eventModal .post-profile .profile-info .name{
    font-size: 18px;
}
#eventModal .textarea.form-control {
    height: 80px !important;
    padding: 14px 20px;
}

.custom-input-container {
    position: relative;
    display: flex;
    flex-direction: column;
}

.custom-placeholder {
    position: absolute;
    left: 25px;
    top: 10px;
    transform: translateY(-50%);
    color: #999;
    font-size: 12px;
    pointer-events: none;
    transition: 0.2s;
    margin-bottom: 5px;
}

.custom-input:focus + .custom-placeholder,
.custom-input:not(:placeholder-shown) + .custom-placeholder {
    top: 9px;
    font-size: 9px;
    color: white;
    margin-left: 15px;
}

#eventModal .btn {
    font-size: 14px;
}

.uploaded-images-container {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.uploaded-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid #ddd;
}

#eventModal .form-group label{
    display:block;
    color: white;
    font-size: 12px;
}

#previewContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
    justify-content: center;
/*    width: 100%;
    height: 100%;*/
}

    #previewContainer img {
        width: 200% !important;
        height: 200% !important;
        
    }

    #uploadText {
        font-size: 14px;
        color: #888;
        text-align: center;
    }

#eventModal .uploaded-images-container {
    width: 100%;
    height: 350px;
    border: 1px dashed #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 10px;
    margin-bottom: 20px;
}

#eventModal .change-button-class {
    z-index: 99999999;
}

.change-button-class {
    font-size: 12px;
    color: white;
    text-decoration: none;
    display: inline-flex;
    padding: 9px 10px;
    font-weight: 600;
    border: none;
    border-radius: 16px; /* Zaokrąglone rogi */
    transition: all 0.4s ease;
    font-family: "Montserrat", sans-serif;
    position: absolute;
    background: #ff0000; /* Czerwony kolor */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    /* bottom: 50%; */
    /* left: 50%; */
    /* transform: translate(-50%, 50%); */
    z-index: 9999; /* Wysoki z-index, żeby zawsze był widoczny */
    /* margin-left: 25%; */
    /*margin-top: 140px;*/
}

    .change-button-class:hover {
        background: #cc0000; /* Ciemniejszy czerwony po najechaniu */
    }


#eventModal .uploaded-image {
    max-width: 100%;
    max-height: 100%;
}

.content-card.activity-list-card {
    overflow-x: visible !important;
}

.inline-display {
    display: flex; /* Ustawia flexbox, który pozwala na jednoliniowe wyświetlanie elementów */
    align-items: center; /* Wyrównuje elementy wertykalnie do środka */
    gap: 5px;
}


/*#galleryModal svg {
    transform: translateY(-1px);*/ /* Przesuwa element SVG o 1 piksel do góry */
/*}*/


/*komunikat 18 lat*/

#ageVerificationPopup {
    position: fixed ;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000000;

}

    #ageVerificationPopup .popup-content {
        background: white;
        padding: 20px;
        text-align: center;
        width: 550px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
        border: 2px solid black;
    }

        #ageVerificationPopup .popup-content h2 {
            color: black;
            font-size: 26px;
            margin-bottom: 10px;
        }

            #ageVerificationPopup .popup-content h2 span {
                color: red;
            }

    #ageVerificationPopup .popup-options {
        display: flex;
        justify-content: center;
        gap: 10px;

    }

        #ageVerificationPopup .popup-options button {
            padding: 10px 15px;
            font-size: 16px;
            border: 2px solid black;
            cursor: pointer;
            border-radius: 5px;
        }

    #ageVerificationPopup .btn-option-hetero {
        border-color: red;
        background: white;
        font-weight: bold;
    }

    #ageVerificationPopup .btn-option-homo,
    #ageVerificationPopup .btn-option-trans,
    #ageVerificationPopup .btn-option-lesbian {
        background: white;
        font-weight: bold;
    }

    #ageVerificationPopup .popup-options button.active {
        border-color: red;

        font-weight: bold;
    }


    #ageVerificationPopup .enter-button {
        background: red;
        color: white;
        padding: 15px;
        font-size: 18px;
        font-weight: bold;
        width: 90%;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        margin-top: 10px;
        margin-bottom:40px;
    }

    #ageVerificationPopup .close-button-age {
        background: black;
        color: white;
        padding: 10px;
        font-size: 14px;
        font-weight: bold;
        width: 90%;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        margin-top: 35px;
        border: 1px solid red;
    }

    #ageVerificationPopup .logo {
        width: 150px;
        margin-bottom: 10px;
    }

    #ageVerificationPopup .header {
        background: #111111;
        padding: 4px;
        text-align: center;
        width: calc(100% + 40px);
        margin: -20px -20px 10px -20px;
    }

        #ageVerificationPopup .header img {
            max-width: 150px;
        }

.warning-text {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

    .warning-text span {
        display: block;
        color: red;
        font-size: 28px;
    }

/* Strzałka interaktywna */
.arrow-indicator {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid red;
    display: none;
}

.enter-arrow {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid red;
    display: none;
}

.view-count-box {
    display: flex;
    align-items: center; /* Wyśrodkowanie pionowe */
    gap: 6px;
    transform: translateX(13px);
}

    .view-count-box img {
        width: 27px; /* Dostosowanie rozmiaru ikony */
        height: 19px;
    }


@media (max-width: 991px) {
    #file-modal #plus-icon {
        margin-right: 10px;
    }
}


.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 11111111111;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}


#viewCountElementProfile{
    color: white;
}


/* Media query dla ekranów mniejszych niż 768px */
@media (max-width: 768px) {
    #ageVerificationPopup .close-button-age {
        width: 80%; /* Zmniejszenie szerokości przycisku na mniejszych ekranach */
        font-size: 10px; /* Zmniejszenie rozmiaru czcionki na urządzeniach mobilnych */
     
    }
}

#viewCountElement {
    font-size: 15px;
    margin-top: 2px;

}


/*komunikat cookie*/
.cookie-banner {
    position: fixed;
    background: white;
    max-width: 550px;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    z-index: 555555;
    top: 50%;
    left: 50%;
    height: 340px;
    transform: translate(-50%, -50%);
}

    .cookie-banner .header {
        background: black;
        padding: 10px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .cookie-banner img {
        width: 180px;
        height: auto;
    }

    .cookie-banner button {
        background-color: red;
        color: white;
        border: none;
        padding: 10px 80px;
        font-size: 20px;
        cursor: pointer;
        margin: 10px;
        border-radius: 3px;
    }


        .cookie-banner button.reject {
            background: none;
            color: black;
            font-weight: bold;
            text-decoration: underline;
            font-size: 16px;
        }

    .cookie-banner a {
        color: black;
        font-weight: bold;
        text-decoration: underline;
    }

    .cookie-banner p {
        color: #222222;
        font-size: 12px;
        line-height: 1.4;
        margin: 12px 20px 9px 40px;
        margin-top: -10px;
    }

@media (max-width: 1200px) {
    .cookie-banner {
        width: 95%;
        height: auto;

    }

        .cookie-banner button {
            padding: 10px 40px;
            width: 90%;
            font-size: 16px;
        }

        .cookie-banner p {
            font-size: 11px;
            margin: 10px 15px;
            margin-top: -10px;
        }
}

@media (max-width: 480px) {
    .cookie-banner {
        width: 100%;
        border-radius: 0;
        height: auto;

    }

        .cookie-banner button {
            width: 90%;
            padding: 10px;
            font-size: 14px;
        }

            .cookie-banner button.reject {
                background: none;
                color: black;
                font-weight: bold;
                text-decoration: underline;
                font-size: 13px;
            }

        .cookie-banner p {
            font-size: 10px;
            margin: 8px 10px;
            margin-top: -10px;
        }

        .cookie-banner img {
            width: 140px;
            height: auto;
        }
}

#commentIcon{
    width: 19px;
}

#loadMorePostCard {
    display: block;
    margin: 20px auto; 
    background-color: #111111;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.text-center .load-more-btn {
    padding: 8px 10px;
    font-size: 11px;
}

.steps-navigation.step1 #skip-button {
    margin: 0 !important;
}

.validation-message,
.name-error,
.validation-location,
.validation-birthdate,
.location-error {
    color: red;
    display: block;
    padding-bottom: 5px;
    margin-top: 10px;
    padding-top: 10px;
    font-size: 14px;
    background: #0000008c;
    border-radius: 5px;
}

#modalTextProfile {
    margin-top: -30px;
    margin-bottom: 20px;
}

/*profil mobile*/
/*@media (max-width: 991px) {
 #photos {
        margin-top: -25px !important;
    }
}*/


@media (max-width: 991px) {
    .profile-progress {
        color: white;
        padding: 20px;
        font-size: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: -20px;
    }
}



    .hidden {
        display: block;
    }

    @media (min-width: 992px) {
        .profile-progress, .col-space-left-mobile {
            display: none;
        }
    }

    @media (max-width: 991px) {
        .profile-progress .btn {
            font-size: 12px;
            padding: 4px 20px;
            border-radius: 10px;
            white-space: nowrap;
            max-width: 100%;
            /*  margin-top: -5px;*/
            background-color: #ff0000;
        }
       /* #modal-profile{
            margin-left: 18px;
            margin-right: 18px;
        }*/

            .profile-progress .btn.active {
                background: #222222;
            }

            .profile-progress .btn:not(.active):hover {
                color: white;
                background: #ff0000;
            }
    }
@media (min-width: 992px) {
    .progress-bar-container.mobile-progress {
        display: none ;
    }
}



@media (min-width: 992px) {
    .profile-mobile {
        display: none;
    }
}


@media (max-width: 991px) {
    .profile-desktop {
        display: none;
    }
}


@media (max-width: 991px) {
    #modalProfile {
        margin-left: 18px;
        margin-right: 18px;
    }
    #profileSectionMobile {
        max-height: 0px;
        opacity: 0;
        overflow: hidden;
        display: none;
        transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
      /*  margin-top: -25px;*/
    }

    .hidden {
        display: none;
    }

}

@media (min-width: 992px) {
    #profileSectionDesktop {
        padding-left: 0 !important;
    }
}


@media (max-width: 991px) {
    .content-card .mobile-card {
        margin-top: -10px !important;
    }
}

@media (max-width: 991px) {
    .col-lg-8.col-xl-9 {
        margin-top: -50px !important;
    }
}


@media (max-width: 991px) {
    .content-card.live-card {
        display: none !important;
    }
    /*#galleryModal span {
        font-family: Arial, Helvetica, sans-serif !important;
        font-weight: 100 !important;*/ /* Możesz testować 100, 200, 300 */
        /*font-size: 14px;
        color: white;
        margin-top: 5px;
    }

    #galleryModal .heart-icon {
        transform: translateY(5px);
    }*/

    #galleryModal .heart-icon {
        transform: translateY(1px);
    }

}


#galleryModal span {
    font-family: 'Poppins', 'Roboto', 'Arial', sans-serif !important;
    font-weight: 100 !important; /* Najcieńsza dostępna wersja */
    font-size: 14px;
    color: white;
}


#galleryModal #likesCount{
    margin-left: 5px;
}

#galleryModal .like-box.like-comment-box span {
    margin-left: 5px !important;
}


.like-icon svg {
    width: 17px !important;
    height: 17px !important;
    
    }

.heart-icon svg {
    width: 22px !important; /* Powiększony rozmiar */
    height: 22px !important;
}

#galleryModal .chat-info-box .like-box.like-comment-box span {
    margin-left: 3px !important;
}


.loading-container {
    display: none;
    text-align: center;
    margin-top: 10px;
}


.eventLoadingIcon {
    width: 40px;
    height: 40px;
    border: 5px solid rgba(200, 200, 200, 0.15); /* tło koła */
    border-top-color: #222222; /* główny kolor obracania */
    border-radius: 50%;
    animation: rotateLoader 1s linear infinite;
    margin: auto;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1050;
    background-color: transparent; /* <- gwarantuje brak tła */
}



@keyframes rotateLoader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


#galleryModal .comment-box.like-comment-box #commentCount {
    margin-left: -2px !important;
}

/*@media (max-width: 991px) {
    #gallryModal #albumName {
        font-size: 18px !important;
    }
}*/

#otherLanguages {
    scrollbar-width: thin; /* Cienki pasek przewijania */
    scrollbar-color: #333333 #111111; /* Kolor paska i tła */
}

    /* Dla przeglądarek opartych na Webkit (Chrome, Edge, Opera) */
    #otherLanguages::-webkit-scrollbar {
        width: 6px; /* Szerokość paska przewijania */
    }

    #otherLanguages::-webkit-scrollbar-thumb {
        background-color: #333333; /* Kolor paska */
        border-radius: 10px; /* Zaokrąglenie */
    }

    #otherLanguages::-webkit-scrollbar-track {
        background-color: #111111; /* Kolor tła */
    }

.error-messages {
    display: block;
    color: red;
    margin-left: 25px;
    margin-top: 10px;
}


/* Modal - pełnoekranowe tło */
.image-modal {
    display: none;
    position: fixed;
    z-index: 19999000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);

    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 5vh;
}

.full-image-preview {
    width: 100vw;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}


.close-btn-image {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    font-size: 35px;
    cursor: pointer;
}

@media (max-width: 991px) {
    .close-btn-image {
        top: 4vh; 
        font-size: 45px;
    }
}




/*.photoPreviewImage {
    width: 120% !important;
    height: 120% !important;
    display: block;
    transform: translate(0px, 0px) scale(1);
    cursor: grab;

}

.photo-preview-circle img {
    position: absolute;*/ /* Umożliwia przesuwanie */
    /*top: 0;
    left: 0;
    width: 150%;*/ /* Domyślny rozmiar */
    /*height: 150%;
    object-fit: cover;*/
    /*       object-fit: cover;*/
    /* cursor: grab; */
    /* display: none; */
/*}*/

.icon.icon-circle {
    width: 71px; 
    height: 71px;
    min-width: 71px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center !important;
    align-items: center !important;
    position: relative; 
}

    .icon.icon-circle img {
        width: 100%; 
        height: 100%;
        object-fit: cover; 
        position: relative;  
    }



.profile-photo {
    width: 71px;
    height: 71px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
}


    .profile-photo img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        cursor: grab;
  
        max-width: none !important;
        border-radius: 50%;
    
    
}

/* Link obejmujący cały element */
.user-link {
    display: flex; /* Ustawienie elementów w jednej linii */
    align-items: center; /* Wyśrodkowanie w pionie */
    text-decoration: none; /* Usunięcie podkreślenia linku */
    color: inherit; /* Zachowanie domyślnego koloru tekstu */
}

/* Kontener na zdjęcie */
/*.profile-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}*/

    /* Dostosowanie wersji małej */
    .profile-photo.small {
        width: 40px;
        height: 40px;
        margin-right: 10px; /* Odstęp między zdjęciem a nickiem */
    }
#eventModal .photo-preview-circle {
    width: 350px;
    height: 250px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 !important;
    border: none !important;
    position: relative;
}

#eventModal #photoPreviewImage {
    width: 100% !important;
    height: 100% !important;
/*    position: absolute;*/
    object-fit: cover; /* Zapewnia pełne wypełnienie */
}


.event-box .img-wrapper {
/*    width: 500px;*/
  /*  height: 300px;*/
    overflow: hidden; /* Zapobiega wychodzeniu obrazu poza kontener */
    position: relative;
}

    .event-box .img-wrapper img {
        width: 100%; /* Obraz dopasuje się do szerokości kontenera */
        height: 100%; /* Obraz dopasuje się do wysokości kontenera */
        object-fit: cover; /* Zapewnia, że obraz wypełnia kontener bez deformacji */
    }


.cropper-container {
    z-index: 555; /* Ustawiona wartość z-index */
}

@media (max-width: 991px) {
    .comment-box.like-comment-box {
        position: relative;
        top: 2px;
    }
}

.ck-label.ck-voice-label {
    display: none !important;
}



.tox .tox-promotion{
    display: none;
}

.tox:not(.tox-tinymce-inline) .tox-editor-header {
    background-color: #333333 !important;

}

.tox .tox-toolbar, .tox .tox-toolbar__overflow, .tox .tox-toolbar__primary {
    background-color: #333333 !important;

}

.border-highlight {
    border: 1px solid red; /* Możesz zmienić kolor */
}


.profile-text {
    display: flex;
    flex-direction: column; /* Układa dwa <span> w dwóch wierszach */
}


@media (max-width: 991px) {
    #profileContent {
        margin-top: -30px;
    }
}


.unique-progress-container {
    display: flex;
    flex-direction: column; /* Ustawienie elementów w dwóch wierszach */
    align-items: center;
    width: 400px;
    background-color: #333333;
    padding: 8px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #333;
    margin: 10px auto; /* Wyśrodkowanie kontenera */
}

/* Stylizacja nazwy pliku */
.progress-filename {
    /*display: block;*/
    font-size: 12px;
    font-weight: bold;
    color: white;
    text-align: left;
    word-break: break-word; /* Zapobiega przepełnieniu */
    margin-bottom: 8px;
    max-width: 100%;
    margin-left: 10px;
}

/* Kontener paska postępu i procentów */
.progress-content {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

/* Stylizacja paska postępu */
.progress-wrapper {
    flex: 1;
    margin: 0 10px;
    background-color: #ddd;
    border-radius: 5px;
    overflow: hidden;
    height: 5px;
}

.unique-progress-bar {
    height: 5px;
    width: 0%;
    background-color: #fe0000;
    transition: width 0.3s ease-in-out;
    border-radius: 5px;
}

/* Stylizacja tekstu procentowego */
.progress-text {
    font-size: 14px;
    color: white;
}


.w-auto2 {
    width: 29px !important;
}



#kebabButton {
    position: absolute;
    top: 10px; 
    right: 20px;
}


    #kebabButton svg {
        transform: scale(0.8); 
    }


.kebab-menu-icon svg {
    
    transform: scale(0.5);
    margin-left: 24px;
}


input[type="date"]::-webkit-calendar-picker-indicator {
    display: block !important; /* Upewnij się, że ikona jest widoczna */
    color: white;
}



/*#eventModal .button-container {
    position: absolute;
    top: 62px; 
    right: 12px; 
    display: flex;
    gap: 8px;
    z-index: 9999;
    border-radius: 5px;
}*/

#eventModal .suggestions-box, .suggestion-item {
    border: 1px solid #413a3a;
}

.photo-upload-container .cropper-view-box,
.photo-upload-container .cropper-dashed {
  /* // border-radius: 50% !important; */
}

.photo-upload-container .cropper-crop-box {
    border-radius: 50% !important; 
    overflow: hidden; 
}



/* Styl dla przycisku usuwania */
.remove-photo-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

    /* Styl podstawowy dla ikony w przycisku */
    .remove-photo-btn img {
        width: 30px;
        height: 30px;
        object-fit: contain; /* Zapewnia poprawne dopasowanie obrazu */
        max-width: unset !important; /* Wyłącza ograniczenia szerokości */
    }

/* Zapobieganie zmniejszaniu się ikony na iPhonie 16 Pro Max */
@media (max-width: 430px) and (min-device-pixel-ratio: 3) {
    .remove-photo-btn img {
        width: 60px !important;
        height: 30px !important;
    }
}

/* Styl dla #profileContent img na ekranach poniżej 991px */
@media (max-width: 991px) {
    #profileContent .remove-photo-btn img {
        width: 60px !important;
        height: 30px !important;
    }
}

/* Styl dla sugestii w #profileContent */
#profileContent .suggestion-item {
    padding: 5px !important;
    font-size: 10px;
}


.text-white-admin{
    color: white;
}

.icon-event-profile {
    position: absolute; /* Pozycjonowanie absolutne względem profile-img */
    bottom: 250px; /* Ustawienie odległości od dolnej krawędzi */
    right: 60px; /* Ustawienie odległości od prawej krawędzi */
    width: 45px !important;
    height: 45px !important;
    /* Obramowanie i cień dla lepszego wyglądu */
    /* border: 2px solid rgba(0, 0, 0, 0.1); */
    border-radius: 50%;
    /* box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.15); */
    /* background-color: #5e5959; */
    padding: 7px;
}

/*.icon-event-profile {
    position: absolute;*/ /* Pozycjonowanie absolutne względem profile-img */
    /*bottom: 260px;*/ /* Ustawienie odległości od dolnej krawędzi */
    /*right: 60px;*/ /* Ustawienie odległości od prawej krawędzi */
    /*width: 35px !important;
    height: 35px !important;*/
    /* Obramowanie i cień dla lepszego wyglądu */
    /*border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.15);
    background-color: #5e5959;
    padding: 7px;
}*/

@media only screen and (max-width: 991px) {

    .icon-event-profile {
        bottom: 200px;
    }
}

    @media only screen and (max-width: 576px) {
        /*.icon-event-profile {
        right: 5px;*/ /* Zmniejszenie odległości od prawej krawędzi */
        /*width: 25px !important;*/ /* Zmniejszenie szerokości ikony */
        /*height: 25px !important;*/ /* Zmniejszenie wysokości ikony */
        /*bottom: 80px;
    }*/
        .icon-event-profile {
            right: -2px; /* Zmniejszenie odległości od prawej krawędzi */
            /*width: 25px !important;*/ /* Zmniejszenie szerokości ikony */
            /*height: 25px !important;*/ /* Zmniejszenie wysokości ikony */
            bottom: 70px;
            z-index: 2;
        }
    }

    #eventModal .image-preview-container {
        width: 410px;
        margin-left: 0px;
    }

    #eventModal .button-container {
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 2000000;
    }

    .info-para {
        display: block; /* Zapewnia poprawne zachowanie */
        word-wrap: break-word; /* Starsza wersja - kompatybilność */
        overflow-wrap: break-word; /* Nowoczesna metoda */
        word-break: break-word; /* Zapewnia dodatkową kompatybilność */
        white-space: normal; /* Pozwala na zawijanie */
        max-width: 100%; /* Zapobiega wyjściu poza kontener */
        overflow: hidden; /* Zapobiega wychodzeniu poza element */
    }


    .custom-close-btn {
        position: absolute;
        top: 1px;
        right: 5px;
        width: 24px; /* Dopasuj rozmiar */
        height: 24px;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="white" d="M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z"/></svg>') no-repeat center center;
        background-size: contain;
        border: none;
        background-color: transparent;
        opacity: 1; /* Zawsze pełna widoczność */
    }

        .custom-close-btn:hover {
            opacity: 0.8; /* Delikatny efekt przy najechaniu */
        }


    #openModalButton[title] {
        display: none;
    }

    .btn-right {
        float: right;
        padding: 7px 14px;
        font-size: 12px;
    }

    #accordionEventNew .content-card.event-card,
    #accordionEventPopular .content-card.event-card,
    #accordionEventMy .content-card.event-card,
    #accordionEventInvites .content-card.event-card,
    #accordionEventParticipating .content-card.event-card {
        max-width: 500px;
    }


    .tab-content.event #accordionEventNew .content-card.event-card,
    .tab-content.event #accordionEventPopular .content-card.event-card,
    .tab-content.event #accordionEventMy .content-card.event-card,
    .tab-content.event #accordionEventInvites .content-card.event-card,
    .tab-content.event #accordionEventParticipating .content-card.event-card {
        max-width: 350px;
    }



    .hoters-tab.event .nav-link {
        font-size: 12px;
    }


    .autocomplete-container.smaller-input input[type="text"] {
        padding: 10px 12px; /* Smaller padding */
        font-size: 12px;
    }

    .btn.btn-primary.event {
        font-size: 12px; /* Reduced font size */
        padding: 6px 12px; /* Reduced padding */
    }

    .event-message {
        color: white;
        font-size: 16px;
        margin-top: 20px;
    }


    /*.chat-content-container .kebab-menu-icon {
    display: none;*/ /* Domyślnie ukryte na wszystkich ekranach */
    /*}*/

    /* Pokazuje ikonę tylko po najechaniu na .chat-info-box dla ekranów powyżej 991px */
    /*@media (min-width: 992px) {
    .chat-info-box:hover .chat-content-container .kebab-menu-icon {
        display: block !important;
    }
}*/


    @media (max-width: 991px) {
        .kebab-menu-icon {
            display: block !important;
            margin-top: 5px;
        }
    }


    /*modal-dodawanie-posta*/

    .post-modal {
        width: 500px;
        background: #222222;
        padding: 15px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        position: fixed; /* Zmiana z absolute na fixed */
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); /* Zapewnia idealne wyśrodkowanie */
        display: none; /* Ukryte na start */
        z-index: 1000; /* Zapewnia, że modal będzie na wierzchu */
    }

    .post-modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95); /* Ciemne tło z przezroczystością */
        z-index: 999; /* tuż pod modalem (modal ma 1000) */
        display: none;
    }


    .post-modal #visibility {
        color: white; /* Zmienia kolor tekstu w select */
        background: #222222; /* Zmienia tło selecta */
        border: 1px solid #444;
        padding: 5px;
        border-radius: 5px;
    }

        .post-modal #visibility option {
            color: white; /* Kolor tekstu */
            background: #222222; /* Tło opcji */
        }



    .post-modal .close-btn {
        cursor: pointer;
        font-size: 20px;
    }

    .post-modal .post-content {
        margin-top: 10px;
    }

    .post-modal .post-input {
        width: 100%;
        border: none;
        outline: none;
        font-size: 16px;
        resize: none;
        min-height: 50px;
    }

    .post-modal .visibility-selector, .tag-friends, .location-picker {
        margin-top: 10px;
    }

    /*.post-modal select, button, input[type="file"] {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}*/



    .post-modal .post-btn:disabled {
        background: #b3cde0;
        cursor: not-allowed;
    }

    .post-modal .content-card {
        border: none;
    }

        .post-modal .content-card .d-flex {
            gap: 0px;
        }

    .post-modal .post-profile .profile-info .name {
        font-size: 18px;
    }


    #confirmButtonPost {
        padding: 6px 12px;
        font-size: 12px;
    }

    #postModal .content-card.dodaj-post .form-control {
        border-radius: 0px;
        height: 300px;
        margin-top: -1px;
    }


    #postModal .content-card.dodaj-post .visibility-selector .form-control {
        height: auto;
        border-radius: 4px;
        color: white;
    }

    #postModal .media-preview .img-container {
        position: relative;
        display: inline-block;
        margin-right: 10px;
    }

    #postModal .media-preview img {
        width: 100px;
        height: auto;
    }

    #postModal .media-preview {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
        align-items: center;
        padding: 5px;
        gap: 10px;
        max-width: 100%;
    }

        #postModal .media-preview .img-container {
            position: relative;
            display: inline-block;
            flex-shrink: 0;
        }

        #postModal .media-preview::-webkit-scrollbar {
            height: 3px;
        }

        #postModal .media-preview::-webkit-scrollbar-thumb {
            background-color: #6A6A6A;
            border-radius: 10px;
        }


    #postModal .delete-icon {
        position: absolute;
        top: 5px;
        right: 5px;
        cursor: pointer;
        width: 25px !important;
        height: 25px !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .autocomplete-container-post {
        display: block; /* Hide initially */
    }

        /* Show when activated */
        .autocomplete-container-post.active {
            display: block;
        }

    #postModal input[type="text"] {
        height: 40px; /* Set height */
        border: 1px solid #222222; /* Thin border */
        border-radius: 4px;
    }


    #postModal .search-input-post {
        font-size: 14px;
    }


        #postModal .search-input-post::placeholder {
            font-size: 13px;
            color: white;
        }

    #postModal
    .suggestion-item {
        padding: 5px;
    }

    #postModal .mention-list {
        position: absolute;
        background: #333333;
        color: white;
        border: 1px solid #6A6A6A;
        list-style: none;
        padding: 5px;
        max-height: 150px;
        overflow-y: auto;
        z-index: 1000;
        width: 100%; /* Dopasowanie do szerokości textarea */
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
        overflow-y: auto;
    }

    #postModal .mention-item {
        padding: 8px;
        cursor: pointer;
    }

        #postModal .mention-item:hover {
            background: #f0f0f0;
            color: black;
        }

    #postModal .hidden {
        display: none;
    }


    #postModal .mention-list::-webkit-scrollbar {
        width: 3px; /* Szerokość scrolla */
    }

    #postModal .mention-list::-webkit-scrollbar-thumb {
        background: #cccccc; /* Kolor scrolla */
        border-radius: 3px; /* Zaokrąglenie scrolla */
    }

    #postModal .mention-list::-webkit-scrollbar-track {
        background: transparent; /* Tło tracka */
    }


    .loader-container {
        display: none; /* Ukryj loader domyślnie */
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 18888050; /* Wyższa niż modal, aby na pewno był na wierzchu */
    }

    .loader {
        border: 5px solid rgba(200, 200, 200, 0.15); /* tło koła */
        border-top-color: #222222; /* główny kolor obracania */
        border-radius: 50%;
        width: 40px; /* Mniejsza szerokość */
        height: 40px; /* Mniejsza wysokość */
        animation: spin 2s linear infinite;
    }


    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }


    .custom-close-btn2 {
        position: absolute;
        top: 1px;
        right: 5px;
        width: 50px; /* Dopasuj rozmiar */
        height: 50px;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="white" d="M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z"/></svg>') no-repeat center center;
        background-size: contain;
        border: none;
        background-color: transparent;
        opacity: 1; /* Zawsze pełna widoczność */
    }


    /*.file-modal-content2 {
    background: #222222;
    width: 100%;
    max-width: 480px;
    height: auto;*/
    /* max-height: 80%; */
    /*padding: 1px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}*/
    .file-modal-content2 {
        background: #121211;
        width: 100%;
        max-width: 480px;
        height: auto;
        /* max-height: 80%; */
        padding: 1px;
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        position: relative;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .file-modal2 .content-card .btn-secondary {
        margin-left: 0 !important;
    }

    .file-modal2 .btn img {
        width: 10px;
    }

    .file-modal2 .btn-primary {
        margin-left: 0px !important;
        margin-bottom: 0px !important;
    }

    .file-modal2 .content-card .d-flex {
        gap: 0px;
    }


    .file-modal2 .btn {
        font-size: 10px !important;
        color: white;
        text-decoration: none;
        display: inline-flex;
        padding: 8px 14px !important;
        font-weight: 600;
        border: none;
        border-radius: 10px;
        transition: all ease 0.4s;
        font-family: "Montserrat", sans-serif;
        position: relative;
        align-items: center;
        justify-content: center;
        /* margin-bottom: 5px; */
    }

    .file-modal2 .content-card.dodaj-post .textarea-icon {
        padding: 10px;
        border: 1px solid #3333;
        margin-top: 5px;
    }

    .file-modal2 .content-card.dodaj-post textarea {
        background: #1A1A19;
        border: none;
        height: 125px;
        border-radius: 0 10px 10px 0px;
        color: #fff;
        font-size: 14px;
        padding: 10px 10px;
    }


    /*.file-modal2 .content-card.dodaj-post .textarea-icon {
    padding: 10px;
    border: 1px solid #333333;
    border-radius: 10px 0 0 10px;
    margin-top: 5px;
}

.file-modal2 .content-card.dodaj-post textarea {
    background: #454545;
    border: none;
    height: 125px;
    border-radius: 0 10px 10px 0px;
    color: #fff;
    font-size: 14px;
    padding: 10px 10px;
}*/

    .file-modal2 .register-check {
        padding-top: 5px;
    }

    .file-modal2 .content-card .hastag .hastag-item span {
        font-size: 9px;
    }

    .file-modal2 .content-card .hastag .hastag-item img {
        width: 12px;
        margin-left: 3px;
    }

    .file-modal2 .content-card .hastag .hastag-item {
        padding: 2px 3px 2px 2px;
        font-weight: 600;
        font-size: 9px;
    }

    .file-modal2 .content-card {
        border: none;
        margin-top: -20px;
    }

        .file-modal2 .content-card.dodaj-post .form-control {
            height: 35px !important;
        }




    .file-modal2 .textarea {
        position: relative;
        z-index: 31;
        pointer-events: auto !important;
        height: 70px;
    }

    .file-modal2 h3, .h3 {
        font-size: 14px;
        margin: 0 0 18px;
        line-height: normal;
        margin-top: 10px;
        margin-bottom: 20px;
    }





    .file-modal2 .content-card .search-input {
        width: 100%;
        padding: 10px 30px;
        margin-bottom: 10px;
        border: none;
        margin-bottom: 0;
        border-radius: 10px 10px 0px 0px !important;
        height: 67px;
        background: #fff url(../images/search.webp) no-repeat center right 20px !important;
        border-bottom: 1px solid #000;
    }

        .file-modal2 .content-card .search-input.active {
            background: #fff url(../images/search.webp) no-repeat center right 20px !important;
            background-size: 20px 20px; /* Fixed the size issue */
        }

    .file-modal2 .content-card .tag-search {
        margin-bottom: 10px !important;
    }


    .file-modal2 .form-control::placeholder {
        font-size: 14px !important;
        color: white;
    }

    .file-modal2 .register-check label {
        font-size: 11px;
    }




    .file-modal2 .content-card .hastag {
        display: -webkit-box;
        /*    display: -ms-flexbox;
    display: flex;
    padding: 10px 10px;
    gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;*/
        margin-top: -10px;
        margin-bottom: 20px;
    }

    .file-modal2 .content-card .tag-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 6px 15px;
        border-bottom: 1px solid #444;
        cursor: pointer;
        color: #ffffff;
        font-size: 12px;
        font-weight: 500
    }


    .test-modal {
        margin-bottom: 20px;
    }

    /*zmiana galerii - mobilne*/

    .flatlist {
        display: none;
        flex-direction: column;
        gap: 10px;
        max-width: 300px;
        overflow-y: auto;
        height: 500px;
    }

        .flatlist img {
            width: 100%;
            border-radius: 10px;
        }




    @media (max-width: 991px) {
        .profile-name-comment {
            font-size: 16px;
            font-weight: bold;
            margin: 0;
            display: inline-block;
            /*  margin-top: 20px;*/
        }


        #userInfoLoader {
            left: 50%;
        }

        .custom-video-wrapper .swiper-slide {
            /*max-height: 80vh;*/ /* dopasuj do widoku okna */
            object-fit: contain;
            max-height: 50vh;
            display: block;
            margin: 0 auto;
        }


        /*    .user-chat-lsting-block {
        height: auto !important;
    }*/

        .modal-body-scrollable {
            height: 100vh;
            overflow-y: auto;
            padding-top: 60px;
            -webkit-overflow-scrolling: touch;
        }


        /* Naprawa dla iOS: przewijanie tylko tej sekcji */
        /*.modal-body-scrollable {*/
        /*max-height: 100vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-top: 60px;*/ /* wysokość Twojego fixed menu */

        /*max-height: 100vh;*/ /* Umożliwia scroll w obrębie modala */
        /*overflow-y: auto;*/ /* Włącza przewijanie */
        /*-webkit-overflow-scrolling: touch;
        padding-top: 60px;
        position: relative;
    }*/

        /* Górne menu: naprawione na górze */
        .profile-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 10000;
            background: #222;
            height: 70px;
        }

        #button-modal-gallery2 {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 10000;
            /*height: 50px;*/
        }

        #kebabButton {
            position: fixed;
            /*        top: 0;*/
            /*  left: 0;
        right: 0;*/
            z-index: 10000;
            /* background: #222;*/
            /*height: 50px;*/
        }


        #galleryModal .custom-close-btn2 {
            width: 40px;
            height: 40px;
        }

        #galleryModal .profile-photo {
            width: 40px;
            height: 40px;
        }

        .profile-info1 {
            display: flex;
            gap: 10px;
            margin-top: -10px;
        }

        #userJoinDate {
            color: white;
            margin-left: 20px !important;
            font-size: 11px !important;
        }

        #flatGallery {
            margin-top: -10px;
        }

        .info-container {
            display: flex;
            flex-direction: column; /* Układa w jednej kolumnie */
            align-items: center; /* Wyśrodkowanie w poziomie */
            gap: 1px; /* Dystans między elementami */
        }

        .view-count, .join-date {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .view-count-box img {
            width: 20px; /* Dostosowanie rozmiaru ikony */
            height: 14px;
        }

        .gallery-slider-block {
            padding: 15px 1px 20px;
            margin-top: -30px;
        }

        .gallery-modal .modal-content .btn-close {
            left: 5px;
        }

        #galleryModal .photo-1 {
            display: none;
        }

        .user-info-box .avatar,
        .user-info-box .user-info {
            display: none;
        }

        .user-desc-box {
            display: none;
        }



        .profile-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
        }

        .profile-info1 {
            display: flex;
            align-items: center;
            border-radius: 10px;
            color: white;
            /* width: 150px;*/
        }

        .user-chat-lsting-block {
            display: none
        }


        .msg-input-wrapper {
            display: none;
        }

        .chat-content-container {
            margin-bottom: 20px;
        }


        #kebabButton {
            right: 15px;
        }

        .interaction-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

        .left-info {
            display: flex;
            align-items: center;
        }

        .right-info {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .comment-box.like-comment-box {
            margin-left: 15px;
        }

        .favorite-button img {
            margin-top: 0px;
        }

        .like-comment-box {
            margin-right: 0px;
        }

        .profile-details {
            margin-top: -10px;
        }

        .profile-comment {
            display: block;
        }


        .msg-input-fixed {
            display: flex !important;
            align-items: center;
            gap: 10px;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            /* margin: 0 15px;*/
            width: auto;
            z-index: 999;
            background-color: #111;
            padding: 10px;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
        }

            /* Styl pola input + ikon */
            .msg-input-fixed input[type="text"] {
                flex: 1;
                background: #222;
                border: none;
                color: #fff;
                padding: 10px;
                border-radius: 6px;
                font-size: 16px;
            }

            .msg-input-fixed img {
                width: 24px;
                height: 24px;
                cursor: pointer;
            }
    }


    .double-tap-heart {
        position: absolute;
        top: 45%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.8);
        font-size: 60px;
        color: red;
        opacity: 0;
        transition: all 0.4s ease;
        pointer-events: none;
    }

        .double-tap-heart.show {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1.2);
        }



    #flatGallery {
        scrollbar-width: thin;
        scrollbar-color: #222222 transparent;
    }

        /* Dla przeglądarek Webkit (Chrome, Edge, Safari) */
        #flatGallery::-webkit-scrollbar {
            width: 3px;
        }

        #flatGallery::-webkit-scrollbar-track {
            background: transparent;
        }

        #flatGallery::-webkit-scrollbar-thumb {
            background-color: #222222;
            border-radius: 3px;
        }


    #profile-comment {
        display: none;
    }


    #button-modal-gallery2 {
        display: none;
    }

    @media (max-width: 991px) {
        .profile-wrapper {
            left: 0;
            margin-left: auto;
            margin-right: auto;
            width: calc(100% - 5px); /* lub tyle co padding/modal marginesy */
            max-width: 908px; /* jeśli modal ma max-width */

            margin-top: -1px;
        }

        .custom-close-btn2 {
            top: 160px;
        }


        #button-modal-gallery {
            z-index: 444944;
        }


        .modal-dialog {
            margin: 0.1rem;
        }

        #button-modal-gallery2 {
            top: 5px;
        }
    }


    #accordionActivity, #accordionFriends, #accordionObservation, #accordionSettings {
        display: none;
    }



    .activity-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex: 1;
        /*  margin-left: 10px;*/
    }

    .user-nick-link {
        /* display: block;*/
    }

    .activity-description {
        display: block;
        margin-top: 5px;
    }


    #eventForm .photo-upload-container .cropper-crop-box {
        border-radius: 0% !important;
    }


    @keyframes hoters-spin {
        to {
            transform: rotate(360deg);
        }
    }


    .language-tag:hover {
        background-color: #444;
        border-color: #888;
    }


    .form-group-test .city-suggestions {
        max-width: 300px;
        background-color: #111111;
        overflow: hidden;
        position: absolute;
        z-index: 1050;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        margin-left: 160px;
        margin-top: -15px;
    }


    /*.form-wrapper .validation-message,
.name-error,
.validation-location,
.validation-birthdate,
.location-error {
    color: red;
    display: block;
    padding-bottom: 5px;
    margin-top: 10px;
    padding-top: 10px;
    font-size: 14px;*/
    /* margin-left: 160px;*/
    /*background: none;
    border-radius: 5px;
    margin-bottom: 10px;
}*/

    /* Gdy widoczna walidacja – usuń tło */
    /*.content-card[data-section-id="profile-info"]:has(.validation-message[style*="display: block"]) {
    background: transparent !important;
}*/

    /*edycja profilu*/

    /*.profile-bg {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
}

    .profile-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-radius: 10px;
    }

.profile-info::before {
    content: "";
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;

    z-index: 2;
}


.profile-info {
    position: relative;
    
}


    .profile-info .video-btn2 {
        margin-top: 20px;
        text-align: center;
    }
*/

    #upload-icon-emoji {
        position: absolute;
        right: 10px;
        bottom: 10px;
        width: 20px;
        height: 20px;
        cursor: pointer;
    }


    .test-progress {
        margin-bottom: 20px;
    }

    .upload-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .upload-box {
        padding: 15px;
        border: 1px solid #ccc;
        border-radius: 8px;
        background-color: #f9f9f9;
        text-align: center;
    }


    .album-box {
        margin-bottom: 20px;
    }

    .photo-preview-circle.test-profile {
        width: 320px !important;
        height: 320px !important;
        border: 2px solid #ccc !important;
    }

        .photo-preview-circle.test-profile img {
            height: 100%;
            width: 100%;
            position: absolute; /* Umożliwia przesuwanie */
            top: 0;
            left: 0;
            object-fit: cover;
            display: block;
        }



    #photoPreviewBackroundContainer img {
        width: 100%;
        height: 100%;
    }


    #photoPreviewBackroundContainer.profile-bg-rect {
        width: 100%;
        height: 400px;
        background-color: #111111;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px; /* opcjonalnie lekko zaokrąglony prostokąt */
        overflow: hidden;
        position: relative;
        border: 2px solid #ccc !important;
    }

    #photoAvatarPreviewWrapper {
        width: 100%;
        height: 440px;
        /*border-radius: 50%;*/
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 0 0 4px #222; /* opcjonalna obwódka pasująca do tła */
        background-color: #222;
        background-image: url('/images/upload.webp');
        background-size: 10%;
        background-position: center;
        background-repeat: no-repeat;
        border: 2px solid #ccc !important;
    }

    #photoPreviewImageBackround {
        width: 100%;
        height: 100%;
        /*    object-fit: cover;*/
        /*    border-radius: 50%;*/
    }

    /*
.remove-photo-btn {
    display: none;
}
*/

    /* Styl dla przycisku usuwania */
    .remove-photo-btn-Profile {
        position: absolute;
        /* top: 5px; */
        right: 290px;
        background: none;
        border: none;
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10;
        margin-top: -10px;
    }

        /* Styl podstawowy dla ikony w przycisku */
        .remove-photo-btn-Profile img {
            width: 40px;
            height: 40px;
            object-fit: contain; /* Zapewnia poprawne dopasowanie obrazu */
            max-width: unset !important; /* Wyłącza ograniczenia szerokości */
        }


    .progress-bar-text {
        position: absolute;
        top: 0;
        left: 50%; /* Centrowanie tekstu */
        transform: translateX(-50%); /* Precyzyjne centrowanie */
        color: #000; /* Kolor tekstu */
        line-height: 20px; /* Wysokość linii, aby tekst był wyśrodkowany pionowo */
    }

    @media (max-width: 990px) {
        /*.card-footer {
        position: fixed;
        bottom: 60px;*/ /* dopasuj do wysokości dolnego menu */
        /*left: 0;
        right: 0;
        background-color: #000;
        color: white;
        padding: 10px 20px;
        text-align: center;
        border-top: 1px solid #333;
        z-index: 999;*/ /* upewnij się, że ponad zawartością, ale poniżej menu jeśli ma 1000+ */
        /*}*/

        .card-footer button {
            background-color: red;
            color: white;
            padding: 8px 20px;
            border: none;
            border-radius: 10px;
            font-weight: bold;
            margin: 0 10px;
            cursor: pointer;
        }

            .card-footer button:hover {
                background-color: #cc0000;
            }

        .photo-preview-circle.test-profile {
            width: 220px !important;
            height: 220px !important;
            border: 2px solid #ccc !important;
        }


        .test-progress .progress-bar-container.mobile-progress .progress-bar-fill {
            height: 35px !important; /* Zwiększenie wysokości tylko dla elementów wewnątrz .test-progress */
        }
    }


    @media (max-width: 700px) {
        .upload-grid {
            grid-template-columns: 1fr; /* Jedna kolumna na ekranach mniejszych niż 700px */
        }
    }

    /*#file-modal #upload-icon-emoji {
    position: static !important;
    right: auto;
    bottom: auto;
    width: 20px;
    height: 20px;
    cursor: pointer;
}*/


    .content-card .no-padding-hastag {
        padding: 0 !important;
    }


    .field-incomplete {
        border: 2px solid #fe0000 !important;
    }


    .profile-main-section {
        display: block;
    }

    @media (min-width: 992px) {
        .profile-main-section {
            display: flex;
            gap: 10px;
            align-items: flex-start;
        }

            .profile-main-section .friends-box {
                margin-top: 230px;
            }
    }


    @media (max-width: 991px) {
        .friends-box {
            margin-left: 30px;
            margin-top: 20px;
        }
    }

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


        .event-meta-row .view-count-box {
            margin-top: -10px;
        }

    .text-white {
        color: white !important;
    }


    .spacer {
        height: 20px;
    }


    #toggleText {
        display: none !important;
    }

    .avatar-circle {
        width: 43px;
        height: 43px;
        border-radius: 50%;
        /* object-fit: cover;*/
        /*    margin-left: -10px;*/
        display: inline-block;
        vertical-align: middle;
    }

    .profile-label {
        margin-left: 12px;
        vertical-align: middle;
        display: inline-block;
    }

    .avatar-circle2 {
        width: 43px;
        height: 43px;
        border-radius: 50%;
        /*  object-fit: cover;*/
        display: inline-block;
    }

    @media screen and (max-width: 576px) {

        .avatar-circle2 {
            width: 26px;
            height: 26px;
            /*  object-fit: cover;*/
        }
    }

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

        header .navbar .head-search {
            flex-grow: 1;
            margin: 0 auto;
            max-width: 600px;
        }


    header {
        border-bottom: 1px solid #333333;
    }

    #menu-notice .text-center .load-more-btn {
        width: 100%;
        padding: 12px 0;
        color: white;
        cursor: pointer;
        font-size: 10px;
        transition: background-color 0.3s ease, border 0.3s ease;
        position: relative;
        bottom: -10px;
        border: none;
        text-align: center;
        display: block;
        line-height: 12px;
    }


    .notice-panel {
        display: flex;
        flex-direction: column;
        height: calc(100vh - 250px); /* fallback */
        height: calc(100dvh - 250px); /* nowoczesne przeglądarki */

        overflow: hidden;
    }

    .tab-buttons2,
    .live-heading2,
    .text-center {
        flex-shrink: 0;
    }

    .scroll-wrapper {
        flex: 1; /* zajmuje całą pozostałą przestrzeń */
        overflow-y: auto;
    }

    .live-list2 {
        margin: 0;
        padding: 0;
        list-style: none;
        height: calc(100vh - 250px); /* fallback */
        height: calc(100dvh - 250px); /* nowoczesne przeglądarki */
    }


        .live-list2 a {
            color: #fe0000 !important;
            pointer-events: auto; /* upewnij się, że klikalne */
        }

            .live-list2 a.active::before,
            .live-list2 a:hover::before {
                content: none !important;
                display: none !important;
                opacity: 0 !important;
                visibility: hidden !important;
            }


            .live-list2 a,
            .live-list2 a:hover,
            .live-list2 a.active {
                color: #fe0000 !important;
                background: transparent !important;
            }

                .live-list2 a::before,
                .live-list2 a:hover::before,
                .live-list2 a.active::before {
                    content: none !important;
                    display: none !important;
                    opacity: 0 !important;
                    visibility: hidden !important;
                }

        .live-list2 .live-item {
            border-bottom: 1px solid #333333 !important;
        }


    .scroll-wrapper {
        flex-grow: 1;
        overflow-y: auto;
    }

    .modal-content-notice {
        display: flex;
        flex-direction: column;
        max-height: 100vh;
        height: 100%;
        overflow: hidden;
    }

    /* Stałe nagłówki i przyciski */
    .tab-buttons2,
    .live-heading2 {
        flex-shrink: 0;
    }

    /* Lista przewijalna */
    .scroll-wrapper {
        flex-grow: 1;
        overflow-y: auto;
    }

    /* Przycisk na dole – zawsze widoczny */
    .text-center {
        flex-shrink: 0;
        /*position: sticky;*/
        bottom: 0;
        z-index: 2;
    }

    #menu-notice {
        position: relative;
    }

        #menu-notice .text-center .load-more-btn {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            width: 100%;
            padding: 12px 0;
            text-align: center;
            z-index: 2;
            border-radius: 0 !important;
            -webkit-border-radius: 0 !important;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
        }


    .search-preferences .register-check {
        padding-top: 0 !important;
    }


    #description-input-profile::placeholder {
        color: black;
    }

    #description-input-profile::-webkit-input-placeholder {
        color: black;
    }

    #description-input-profile::-moz-placeholder {
        color: black;
    }

    #description-input-profile:-ms-input-placeholder {
        color: black;
    }

    #description-input-profile:-moz-placeholder {
        color: black;
    }


    #menu-notice a:hover {
        color: inherit;
        background: #222222;
    }

        #menu-notice a:hover .icon img {
            filter: none;
        }

        #menu-notice a:hover::before {
            opacity: 0 !important;
            visibility: hidden !important;
            left: 0;
            right: 0;
        }


    /*galeria - profil siatka*/

    /*#photos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}*/

    /* Optional: when Masonry kicks in, it will override display */
    /*.photo-box {
    width: 100%;
    max-width: 300px;
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
    background: #111;
}

    .photo-box img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }*/


    /*#photos-row .col-xl-4,
#photos-row .col-6 {
    flex: unset !important;
    width: unset !important;
    max-width: unset !important;
}

*/
    /**/
    #photos-row {
        column-count: 4;
        column-gap: 16px;
        width: 100%;
    }

    .photo-box-test {
        break-inside: avoid;
        /*  margin-bottom: 4px;*/
        border-radius: 12px;
        overflow: hidden;
    }

        .photo-box-test img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }

    @media (max-width: 1024px) {
        #photos-row {
            column-count: 3;
        }
    }

    @media (max-width: 768px) {
        #photos-row {
            column-count: 2;
        }
    }

    @media (max-width: 480px) {
        #photos-row {
            column-count: 1;
        }
    }


    #photos-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    @media (min-width: 768px) {
        #photos-row {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    #photos-row .grid {
        display: grid;
        gap: 16px;
    }

    .photo-box-test img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        display: block;
    }


    #photos-row {
        column-count: 4;
        column-gap: 16px;
        width: 100%;
    }


    @media (max-width: 1024px) {
        #photos-row2 {
            column-count: 3;
        }
    }

    @media (max-width: 768px) {
        #photos-row2 {
            column-count: 2;
        }
    }

    @media (max-width: 480px) {
        #photos-row2 {
            column-count: 1;
        }
    }


    #photos-row2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    @media (min-width: 768px) {
        #photos-row2 {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    #photos-row2 .grid {
        display: grid;
        gap: 16px;
    }

    .rounded-lg {
        border-radius: 8px !important;
    }


    @media (max-width: 991px) {
        #file-modal .btn {
            font-size: 7px !important;
            color: white;
            text-decoration: none;
            display: inline-flex;
            padding: 4px 4px !important;
            font-weight: 600;
            border: none;
            border-radius: 10px;
            transition: all ease 0.4s;
            font-family: "Montserrat", sans-serif;
            position: relative;
            align-items: center;
            justify-content: center; /*  margin-bottom: 20px; */
            width: 85px;
            margin-left: 40px; /*    margin-top: -20px;*/
        }


        #file-modal .card-footer {
            background-color: #222222;
            bottom: 40px;
            gap: 10px;
        }

        #file-modal .content-card .btn-secondary {
            margin-left: 5px !important;
        }

        #file-modal .register-check label {
            font-size: 9px;
        }


        .image-preview-container {
            width: 95%;
            /*height: 30vh;*/ /* dostosowuje się do wysokości ekranu */
            height: clamp(130px, 20vh, 250px);
            margin-left: 5px;
        }

        .card-header h2 {
            font-size: 11px;
            /* margin-top: 0px !important;*/
            font-weight: 300;
        }

        #file-modal .register-check {
            padding-top: -10px;
        }
    }

    .photo-card {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        background-color: #000;
        display: block;
    }

        .photo-card img {
            width: 100%;
            display: block;
            /* max-height: 350px;*/
            /* object-fit: cover;*/
        }

    .photo-gradient {
        position: absolute;
        bottom: 0;
        left: 0;
        height: 50%;
        width: 100%;
        background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 60%);
        z-index: 1;
    }

    .photo-info {
        position: absolute;
        bottom: 0;
        left: 0;
        padding: 8px;
        width: 100%;
        z-index: 2;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: white;
        font-size: 14px;
    }


    /*@media (max-width: 991px) {
    .album-list {
        display: flex;
        overflow-x: auto;
        padding-bottom: 1rem;
        gap: 1rem;
        scroll-snap-type: x mandatory;
    }

    .album-container {
        flex: 0 0 auto;
        min-width: 240px;
        max-width: 75%;
        scroll-snap-align: start;
    }

    .album-list::-webkit-scrollbar {
        height: 6px;
    }

    .album-list::-webkit-scrollbar-thumb {
        background-color: rgba(255, 255, 255, 0.2);
        border-radius: 4px;
    }
}
*/



    /* General styles for the photo grid and elements */
    .photo-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        /*grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));*/
        gap: 4px;
    }

    .photo-column {
        display: grid;
        gap: 16px;
    }

    .photo-card {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 16px;
        background-color: #000;
        height: 100%;
    }

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

    /*.photo-blur {
    filter: blur(8px);
}*/

    .photo-gradient {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 50%;
        background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 60%);
        z-index: 1;
    }

    /* User interaction panel styling */
    .user-interaction-panel {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        color: white;
        padding: 8px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 14px;
        z-index: 2;
        line-height: 1.3; /* default line height */
    }

        .user-interaction-panel .user-info {
            display: flex;
            align-items: center;
        }

    .verified-icon {
        width: 12px !important;
        margin-left: 4px;
    }

    .interaction-icons {
        display: flex;
        gap: 8px;
    }

    /*.icon {
    width: 16px;
}*/

    .likes, .comments {
        display: flex;
        align-items: center;
        gap: 4px;
    }

    /* Responsive design adjustments */
    @media (max-width: 1599px) {
        .user-interaction-panel {
            flex-direction: column;
            align-items: flex-end;
            /* gap: 8px;*/
        }
    }

    @media (max-width: 1199px) {
        .user-interaction-panel {
            padding: 6px;
            font-size: 8px;
        }

            .user-interaction-panel span {
                font-size: 8px; /* smaller font size for nicknames */
            }

            .user-interaction-panel .icon,
            .verified-icon {
                width: 8px !important; /* even smaller icon size including verified icon */
            }

        .interaction-icons {
            display: flex;
            gap: 4px;
        }


        .likes, .comments {
            display: flex;
            align-items: center;
            gap: 4px;
        }
    }



    @media (max-width: 479px) {
        .user-interaction-panel {
            flex-direction: column;
            justify-content: flex-end;
            align-items: flex-end;
            font-size: 8px;
        }

            .user-interaction-panel .icon {
                width: 8px; /* even smaller icon size */
            }
    }

    @media (max-width: 1199px) {
        .user-interaction-panel span {
            line-height: 1.3; /* adjusted line height for smaller screens */
        }
    }





    .photo-card {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 16px;
        background-color: #000;
    }

    .photo-image {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover; /* Assuming you want images to cover the area properly */
    }

    /*.photo-gradient {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 60%);
    z-index: 1;
}*/

    .photo-info {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        color: white;
        padding: 8px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 14px;
        z-index: 2;
    }

    /*.user-detail, .interaction-detail {
    display: flex;
    align-items: center;
    gap: 4px;
}

*/

    #movies-row {
        column-gap: 16px !important;
    }

    #photos-row {
        column-gap: 16px !important;
    }

    /*#movies-row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
}*/

    @media (min-width: 480px) {
        #movies-row {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    /*@media (min-width: 768px) {
    #movies-row {
        grid-template-columns: repeat(3, 1fr);
    }
}*/

    @media (min-width: 1024px) {
        #movies-row {
            grid-template-columns: repeat(4, 1fr);
        }
    }


    #photos-row2 .grid {
        display: grid;
        gap: 16px !important;
    }

    #photos-row .grid {
        display: grid;
        gap: 16px !important;
    }


    /*.statistics-item {
    display: flex;
    align-items: center;
    gap: 10px;
}*/

    .statistics-item .icon {
        width: 44px;
        min-width: 32px;
        height: 32px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
    }

    .statistics-item .txt {
        display: inline-block;
    }

    .info-para {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 10px;
        font-size: 16px;
    }

        .info-para .icon {
            width: 24px;
            min-width: 24px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

            .info-para .icon img {
                max-width: 100%;
                height: auto;
            }


    .view-count-box2 {
        display: flex;
        align-items: center; /* Wyśrodkowanie pionowe */
        gap: 6px;
        transform: translateX(3px);
    }

        .view-count-box2 img {
            width: 20px; /* Dostosowanie rozmiaru ikony */
            height: 14px;
        }


    .friend-search-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-bottom: 10px;
        gap: 10px;
    }

    .friend-count {
        font-size: 20px;
        color: white;
        margin-left: 6px;
        font-weight: 700;
        color: #ffffff;
        font-family: "Montserrat", sans-serif;
    }

    .search-block {
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .autocomplete-container-profile {
        position: relative;
        display: flex;
        align-items: center;
        background-color: #333;
        /* border-radius: 99px; */
        padding: 0;
        overflow: hidden;
        max-width: 400px;
        width: 100%;
        flex-grow: 1;
        border: 1px solid #6a6a6a;
        border-radius: 8px;
    }

        .autocomplete-container-profile input::placeholder {
            font-size: 11px;
            color: #ccc;
            font-family: "Montserrat", sans-serif;
        }


        .autocomplete-container-profile input {
            background-color: transparent;
            border: none;
            padding: 10px 15px;
            flex: 1;
            color: white;
            outline: none;
            font-size: 13px;
        }

    .search-btn {
        background-color: red;
        border: none;
        padding: 8px 16px;
        color: white;
        font-weight: bold;
        border-radius: 12px;
        cursor: pointer;
        transition: background-color 0.2s ease-in-out;
    }

        .search-btn:hover {
            background-color: #cc0000;
        }

    .search-underline {
        border-bottom: 1px solid #333;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    @media (max-width: 991px) {
        .friend-search-wrapper {
            flex-direction: column;
            align-items: flex-start;
            width: 100%;
        }

        .autocomplete-container-profile input::placeholder {
            font-size: 10px;
        }


        .search-block {
            width: 100%;
            /*    flex-direction: column;*/
            align-items: stretch;
        }

        .autocomplete-container-profile {
            max-width: 100%;
            width: 100%;
        }

            .autocomplete-container-profile input {
                padding: 14px 20px;
                font-size: 14px;
                height: 38px;
            }

        .search-btn {
            width: 40%;
            margin-top: 6px;
        }

        .friend-count {
            font-size: 16px;
        }

        #galleryModal .kebab-button {
            display: inline-block;
            cursor: pointer;
            float: right;
            top: -10px;
            margin-top: -60px;
            margin-right: 10px;
        }
    }


    #accordionFriends .autocomplete-container-profile {
        position: relative;
        width: 100%; /* pełna szerokość */
        max-width: 400px; /* dopasowana max szerokość inputa */
    }

    .autocomplete-container-profile input {
        background-color: transparent;
        border: none;
        padding: 10px 15px;
        width: 100%;
        color: white;
        font-size: 13px;
        outline: none;
    }


    #accordionFriends .suggestions {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%; /* dokładnie tyle co input */
        background: #1e1e1e;
        color: white;
        border-radius: 6px;
        margin-top: 4px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.3);
        z-index: 1000;
        max-height: 200px;
        overflow-y: auto;
        display: none; /* ukryte domyślnie */
    }


    #accordionFriends .suggestion-item {
        padding: 8px 12px;
        cursor: pointer;
        border-radius: 4px;
    }


        #accordionFriends .suggestion-item:hover {
            background-color: #333;
        }

    #accordionFriends .autocomplete-wrapper {
        position: relative;
        width: 100%;
        max-width: 400px;
        display: flex;
        flex-direction: column;
    }


    #accordionObservation .autocomplete-wrapper {
        position: relative;
        width: 100%;
        max-width: 400px;
        display: flex;
        flex-direction: column;
    }

    #accordionObservation .autocomplete-container-profile {
        position: relative;
        width: 100%;
        max-width: 400px;
    }

        #accordionObservation .autocomplete-container-profile input {
            background-color: transparent;
            border: none;
            padding: 10px 15px;
            width: 100%;
            color: white;
            font-size: 13px;
            outline: none;
        }

    #accordionObservation .suggestions {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #1e1e1e;
        color: white;
        border-radius: 6px;
        margin-top: 4px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        max-height: 200px;
        overflow-y: auto;
        display: none;
    }

    #accordionObservation .suggestion-item {
        padding: 8px 12px;
        cursor: pointer;
        border-radius: 4px;
    }

        #accordionObservation .suggestion-item:hover {
            background-color: #333;
        }


    .suggestion-item.highlighted {
        background-color: #444;
    }



    /*.friends-scroll-container {
    max-height: 600px;
    overflow-y: auto;
}*/

    /* Mobile: 60% wysokości */
    @media (max-width: 991px) {
        .friends-scroll-container {
            max-height: 40vh;
            overflow-y: auto;
        }
    }

    /* Cienki scroll – Chrome, Edge, Safari */
    .friends-scroll-container::-webkit-scrollbar {
        width: 3px;
    }

    .friends-scroll-container::-webkit-scrollbar-thumb {
        background-color: #333;
        border-radius: 3px;
    }

    .friends-scroll-container::-webkit-scrollbar-track {
        background-color: #111111;
    }


    .friend-entry {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

    /*.friend-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}*/

    .friend-avatar {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        /*   object-fit: cover;*/
        margin-right: 20px;
    }

    .friend-name {
        font-size: 18px;
        margin-left: 10px;
    }

    .friend-empty {
        font-size: 16px;
        color: #aaa;
        margin-top: 10px;
    }

    /* 📱 Mobile: <576px */
    @media (max-width: 575.98px) {
        .friend-avatar {
            width: 48px;
            height: 48px;
            margin-right: 12px;
        }

        .friend-name {
            font-size: 15px;
        }
    }


    .one-line-text {
        display: flex !important;
        flex-direction: row !important;
        align-items: center;
        gap: 6px;
        flex-wrap: nowrap;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

        .one-line-text .user-nick-link,
        .one-line-text .activity-description {
            display: inline !important;
            white-space: nowrap !important;
        }


    .live-list2 .friend-suffix {
        margin-left: -64px;
        display: inline-block;
    }

    @media (max-width: 991px) {
        .live-list2 .friend-suffix {
            margin-left: -58px;
        }
    }


    .reply-input-container {
        position: relative;
    }

    .reply-form-cancel-btn {
        position: absolute;
        top: 12px;
        right: 18%;
        cursor: pointer;
        font-size: 10px;
        font-family: 'Montserrat', sans-serif;
        color: #ffffff;
        z-index: 10;
    }


    #postcard .custom-close-btn {
        position: absolute;
        top: 6px;
        left: 1px;
        width: 40px; /* Dopasuj rozmiar */
        height: 40px;
        opacity: 1; /* Zawsze pełna widoczność */
        /* left: 5px; */
    }

    @media (max-width: 991px) {
        .reply-form .replyContent {
            font-size: 10px !important;
        }

        .reply-form-cancel-btn {
            font-size: 9px;
        }

        #postcard .custom-close-btn {
            position: absolute;
            top: 6px;
            left: -2px;
            width: 35px; /* Dopasuj rozmiar */
            height: 35px;
            opacity: 1; /* Zawsze pełna widoczność */
            /* left: 5px; */
        }

        #postcard .activity-profile {
            padding: 0px 0px 30px;
        }

            #postcard .activity-profile .avatar {
                width: 50px;
                height: 50px;
                min-width: 50px;
                border-radius: 70px;
                overflow: hidden
            }

        /*    #postcard 
    .kebabButton svg {
        transform: scale(0.8);
    }*/

    }


    #postcard .upload-option-box .addFile label img {
        width: 25px;
        height: 25px;
        cursor: pointer;
        transition: transform 0.2s ease-in-out;
    }


    .heart-icon2 svg {
        width: 18px !important;
        height: 18px !important;
    }



    [id^="msg-post-comment-"],
    [id^="msg-input-post-"] {
        display: none;
    }

    [id^="msg-input-post-"] {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 10px;
        background-color: #111;
        z-index: 10;
    }


    .comment-bar {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }

    .circle-btn {
        width: 30px;
        height: 30px;
        min-width: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .red-btn {
        background-color: red;
    }

    .circle-btn img {
        width: 18px;
        height: 18px;
    }

    .input-wrap {
        display: flex;
        align-items: center;
        background-color: #222;
        border-radius: 999px;
        padding: 6px 12px;
        flex: 1;
    }

    .comment-input {
        flex-grow: 1;
        border: none;
        background: transparent !important;
        color: #fff;
        outline: none;
        padding: 4px 10px !important;
        font-size: 14px !important;
    }

    .right-icons {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .icon-btn {
        width: 20px;
        height: 20px;
        cursor: pointer;
    }


    .custom-close-btn3 {
        position: absolute;
        top: 1px;
        right: 5px;
        width: 50px; /* Dopasuj rozmiar */
        height: 50px;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="white" d="M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z"/></svg>') no-repeat center center;
        background-size: contain;
        border: none;
        background-color: transparent;
        opacity: 1; /* Zawsze pełna widoczność */
    }



    .post-wrapper {
        /*max-height: 70vh;*/ /* lub inna wartość zależnie od kontekstu */
        overflow-y: auto;
        scrollbar-width: thin; /* Firefox */
        scrollbar-color: #333333 transparent;
        margin-top: -30px;
    }

        /* Chrome, Edge, Safari */
        .post-wrapper::-webkit-scrollbar {
            width: 3px;
        }

        .post-wrapper::-webkit-scrollbar-track {
            background: transparent;
        }

        .post-wrapper::-webkit-scrollbar-thumb {
            background-color: #333333;
            border-radius: 10px;
        }

        @media (max-width: 991px){
            .post-wrapper {
                position: relative;
                top: -30px;
            
            }
        }


    [id^="user-chat-lsting-block-"] {
        display: flex;
        flex-direction: column;
        gap: 10px;
        overflow-y: auto;
        overflow-x: hidden !important;
        padding-right: 4px;
        height: auto !important;
        max-height: none !important;
    }



    /*.post-like-comment {
        display: flex;
        justify-content: space-around;
        border-top: 1px solid #333333;
        border-bottom: 1px solid #333333;
        padding: 8px 0;
        margin-top: 10px;
        margin-bottom: 20px;
    }

        .post-like-comment .item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            flex-direction: row;*/
            /*  color: #65676b;*/
            /*cursor: pointer;
            font-size: 15px;
            flex: 1;
            padding: 6px 0;
            transition: background 0.2s ease;
        }*/


.post-like-comment {
    /* display: flex; */
    /* justify-content: space-around; */
    /* border-top: 1px solid #333333; */
    /* border-bottom: 1px solid #333333; */
    /* padding: 8px 0; */
    /* margin-top: 10px; */
    /* margin-bottom: 20px; */
}

    .post-like-comment .item {
        /* display: flex; */
        /* align-items: center; */
        /* justify-content: center; */
        /* gap: 6px; */
        /* flex-direction: row; */
        /*  color: #65676b;*/
        cursor: pointer;
        font-size: 15px;
        /* flex: 1; */
        padding: 6px 0;
        transition: background 0.2s ease;
    }



    .post-reactions-bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
        font-size: 14px;
        /*   color: #65676b;*/
    }

    .post-reactions-left {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .reaction-icon {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        object-fit: contain;
    }


    #postcard .user-chat-lsting-block {
        padding-bottom: 0 !important;
    }


    @media only screen and (max-width: 991px) {
        #galleryModal .profile-name {
            line-height: 18px !important;
        }
    }



    /* Domyślnie desktop */
    .responsive-gap {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        cursor: pointer;
        font-size: 15px;
        flex: 1;
        padding: 6px 0;
        gap: 150px;
        transition: background 0.2s ease;
    }



    @media (max-width: 768px) {
        .responsive-gap {
            gap: 120px;
        }
    }


    @media (max-width: 576px) {
        .responsive-gap {
            gap: 100px;
        }
    }


    @media (max-width: 420px) {
        .responsive-gap {
            gap: 80px;
        }
    }


    .edit-post-form.hidden {
        display: none;
    }

    .edit-post-form {
        display: block;
        padding: 16px;
        border-radius: 8px;
        margin-top: 16px;
    }


    .hidden_post {
        display: none !important;
    }


    .photo-edit {
        position: relative;
        display: inline-block;
        margin: 5px;
        width: 100px;
        height: 140px;
        overflow: hidden;
    }

        .photo-edit img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .remove-photo-btn {
        position: absolute;
        top: 5px;
        right: 5px;
        /*    background: #333333;*/
        border: none;
        border-radius: 50%;
        padding: 4px;
        cursor: pointer;
    }

    .media-preview-edit {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        padding: 10px;
        white-space: nowrap;
    }

    .photo-edit {
        flex: 0 0 auto;
    }



    .media-preview-edit::-webkit-scrollbar {
        height: 3px;
    }

    .media-preview-edit::-webkit-scrollbar-thumb {
        background: #999;
        border-radius: 3px;
    }


    /*butony do akcpetacji -> nie ma tego w scss !!!*/

    #friends-slider-view .ranking-card {
        background-color: #181717;
        border-radius: 12px;
        padding: 16px 12px;
        text-align: center;
        color: white;
        min-height: 260px; /* kontrolowana wysokość */
        width: 250px;
    }

    #friends-slider-view .swiper-slide {
        /* height: auto !important;
    min-height: 260px;  ograniczenie wysokości slajdu */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    #friends-slider-view .ranking-img-wrapper {
        display: flex;
        justify-content: center;
        margin-bottom: 8px;
    }

    #friends-slider-view .profile-image {
        width: 120px;
        height: 120px;
        object-fit: cover;
        border-radius: 50%;
        border: 4px solid #222;
    }

    #friends-slider-view .rank-name {
        font-weight: bold;
        font-size: 16px;
        margin-bottom: 0;
        color: white;
    }

    #friends-slider-view .rank-location {
        font-size: 12px;
        color: #ccc;
        margin-bottom: 12px;
    }

    #friends-slider-view .status-dot {
        width: 12px;
        height: 12px;
        background-color: #4caf50;
        border-radius: 50%;
        display: inline-block;
    }

    #friends-slider-view .invite-action-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #friends-slider-view .accept-invite-btn,
    #friends-slider-view .remove-observer-btn,
    #friends-slider-view .reject-invite-btn {
        font-size: 11px;
        font-weight: 500;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        transition: background-color 0.3s ease;
        padding: 6px 12px;
    }

    #friends-slider-view .accept-invite-btn {
        background-color: #2fa534;
        color: #fff;
        min-width: 85px;
        max-width: 40%;
    }

        #friends-slider-view .accept-invite-btn:hover {
            background-color: #3c9841;
        }

    #friends-slider-view .reject-invite-btn {
        background-color: #fe0000;
        color: #fff;
        width: 100%;
        max-width: 30%;
        max-width: 50px;
    }


    #friends-slider-view .remove-observer-btn {
        background-color: #fe0000;
        color: #fff;
        width: 100%;
        max-width: 60%;
        max-width: 140px;
    }

        #friends-slider-view .reject-invite-btn:hover,
        #friends-slider-view .remove-observer-btn:hover {
            background-color: #cc0000;
        }

    #friends-slider-view .invite-status-box {
        background-color: rgba(0, 0, 0, 0.4);
        padding: 6px 8px;
        border-radius: 6px;
        display: inline-block;
    }

    @media screen and (min-width: 991px) {
        #friends-slider-view .ranking-slider .swiper-slide {
            width: 20%;
        }
    }


    .avatar-wrapper {
        position: relative;
        display: inline-block;
    }

    .status-indicator {
        position: absolute;
        bottom: 4px;
        right: 25px;
        width: 12px;
        height: 12px;
        background-color: #4CAF50;
        border: 1px solid white;
        border-radius: 50%;
        z-index: 10;
    }

    @media (max-width: 1399px) {
        .status-indicator {
            right: 30px;
        }
    }



    .has-online-dot {
        position: relative;
        display: inline-block;
    }

        .has-online-dot .status-indicator {
            position: absolute;
            bottom: 1px;
            right: 12%;
            width: 10px;
            height: 10px;
            background-color: #4CAF50;
            border: 1px solid white;
            border-radius: 50%;
            z-index: 10;
        }

    @media (max-width: 991px) {
        .has-online-dot .status-indicator {
            right: 4%;
        }
    }

    @media screen and (max-width: 480px) {
        .has-online-dot .status-indicator {
            bottom: -1px;
        }
    }

    .profile-container-text .has-online-dot .status-indicator {
        position: absolute;
        bottom: 23px;
        right: 8%;
        width: 10px;
        height: 10px;
        background-color: #4CAF50;
        border: 1px solid white;
        border-radius: 50%;
        z-index: 10;
    }

    @media screen and (max-width: 584) {
        .profile-container-text .has-online-dot .status-indicator {
            bottom: 20px;
        }
    }

    .profile-img {
        position: relative; /* kluczowe */
        display: inline-block;
        transition: transform 0.3s ease;
    }

        .profile-img:hover {
            transform: scale(1.1);
        }



    .invite-action-buttons {
        display: flex;
        align-items: center;
        margin-top: 4px;
        gap: 6px;
    }

    .accept-invite-btn,
    .reject-invite-btn {
        padding: 4px 10px;
        font-size: 12px;
        border-radius: 4px;
        border: none;
        cursor: pointer;
        font-weight: 500;
        transition: background-color 0.3s ease;
    }

    .accept-invite-btn {
        background-color: #333333;
        color: white;
    }

        .accept-invite-btn:hover {
            background-color: #222222;
        }

    .reject-invite-btn {
        background-color: #fe0000;
        color: white;
    }

        .reject-invite-btn:hover {
            background-color: #b30000;
        }

    .invite-status-box {
        background-color: rgba(0, 0, 0, 0.4);
        padding: 6px 8px;
        border-radius: 6px;
        /*    margin-top: 6px;*/
        display: inline-block;
    }

    .invite-action-buttons.test {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }


    .profile-name .name-container {
        display: flex;
        align-items: center;
        gap: 8px; /* odstęp między nickiem a kropką */
        position: relative;
    }


    .profile-photo.has-online-dot {
        position: relative;
        display: inline-block;
    }

    .profile-photo .status-indicator.online-dot {
        position: absolute;
        bottom: 4px;
        right: 4px;
        width: 14px;
        height: 14px;
        background-color: #4CAF50;
        border: 2px solid white;
        border-radius: 50%;
        z-index: 2;
    }

    .status-indicator.online-dot {
        position: absolute;
        bottom: 45px;
        right: 25%;
        width: 16px;
        height: 16px;
        background-color: #4CAF50;
        border-radius: 50%;
        border: 2px solid white;
        z-index: 10;
    }



    .partial-container {
        position: relative;
        min-height: 150px;
    }

    .loading-spinner-comments {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .loading-spinner {
        position: fixed; /* 🔁 Zmienione z absolute */
        top: 50%;
        left: 50%;
        /*transform: translate(-50%, -50%);*/ /* ⬅️ teraz potrzebne */
        z-index: 1050; /* wyżej niż overlay, modal, itd. */
        display: flex;
        align-items: center;
        justify-content: center;
    }




    .friends-invite-list.test {
        max-height: 260px;
        overflow-y: auto;
        padding-right: 5px;
        scrollbar-width: thin;
        scrollbar-color: #333 transparent; /* Firefox */
    }

        .friends-invite-list.test::-webkit-scrollbar {
            width: 3px;
        }

        .friends-invite-list.test::-webkit-scrollbar-thumb {
            background-color: #333; /* kolor scrolla */
            border-radius: 3px;
        }

        .friends-invite-list.test::-webkit-scrollbar-track {
            background: transparent;
        }




    @media (max-width: 991px) {
        .album-list {
            display: flex;
            flex-direction: row;
            overflow-x: auto;
            gap: 12px;
            padding-bottom: 8px;
            scrollbar-width: thin;
        }

        .album-container {
            min-width: 220px; /* dostosuj wg potrzeb */
            flex-shrink: 0;
        }

        .album-list::-webkit-scrollbar {
            height: 6px;
        }

        .album-list::-webkit-scrollbar-thumb {
            background: #ccc;
            border-radius: 3px;
        }
    }


    /* Zablokowanie przewijania */
    body.no-scroll {
        overflow: hidden;
    }

    .activity-type-39 {
        white-space: normal;
        word-break: break-word;
    }

        .activity-type-39 .user-nick-link {
            display: inline;
            margin: 0;
            padding: 0;
        }

        .activity-type-39 .event-link-wrap {
            display: block;
            margin-top: 2px;
        }




    /*opcja zglos*/

    .modal-report-wrapper {
        display: none;
        position: fixed;
        z-index: 10850;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.95);
        font-family: sans-serif;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .modal-report-box {
        background-color: #111419;
        margin: 5% auto;
        padding: 24px;
        border-radius: 16px;
        width: 90%;
        max-width: 420px;
        color: #fff;
        box-shadow: 0 0 14px rgba(0, 0, 0, 0.7);
        position: relative;
        max-height: 800px;
    }

    @media (max-width: 991px) {
        .modal-report-box {
            height: 100vh;
            max-height: 100vh;
        }
    }


    @media (max-width: 991px) {
        .modal-report-options-scrollable {
            max-height: 500px !important;
        }
    }

    #reportModal .btn-close.custom-close-btn2 {
        width: 40px;
        height: 40px;
        right: 10px;
    }

    .modal-report-header {
        text-align: center;
        margin-bottom: 24px;
    }

        .modal-report-header img {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 10px;
        }

    .modal-report-title {
        font-size: 18px;
        font-weight: 600;
    }

    .modal-report-option {
        display: flex;
        align-items: center;
        padding: 12px 16px;
        background-color: #1C2024;
        border-radius: 12px;
        margin-bottom: 12px;
        transition: background 0.2s ease;
        cursor: pointer;
    }

        .modal-report-option:hover {
            background-color: #1C2024;
        }

        .modal-report-option img {
            width: 28px;
            height: 28px;
            margin-right: 12px;
        }

    .modal-report-option-text {
        display: flex;
        flex-direction: column;
    }

        .modal-report-option-text span {
            font-weight: 600;
            font-size: 15px;
        }

        .modal-report-option-text small {
            color: #aaa;
            font-size: 13px;
        }

    .hidden-report-inputs {
        display: none;
    }

    #reportForm {
        display: none;
    }

    /* Custom scrollbar */
    .modal-report-wrapper::-webkit-scrollbar {
        width: 3px;
    }

    .modal-report-wrapper::-webkit-scrollbar-thumb {
        background-color: rgba(255, 255, 255, 0.3);
        border-radius: 3px;
    }

    .modal-report-wrapper::-webkit-scrollbar-track {
        background: transparent;
    }

    @media(max-width: 991px) {
        #reportModal .custom-close-btn2 {
            top: 0px !important;
            width: 40px;
            height: 40px;
        }
    }

    @media (max-width: 480px) {
        .modal-report-box {
            margin: 30px 5%;
            padding: 20px;
        }

        .modal-report-header img {
            width: 64px;
            height: 64px;
        }

        .modal-report-title {
            font-size: 16px;
        }

        .modal-report-option {
            padding: 10px 14px;
        }

            .modal-report-option img {
                width: 26px;
                height: 26px;
            }

        .modal-report-option-text span {
            font-size: 14px;
        }

        .modal-report-option-text small {
            font-size: 12px;
        }
    }


    .options {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 12px;
    }

    .option {
        position: relative;
    }

        .option input[type="radio"] {
            display: none;
        }

        .option label {
            display: block;
            padding: 10px 12px;
            border: 1px solid #ccc;
            border-radius: 8px;
            cursor: pointer;
            user-select: none;
        }

        .option input[type="radio"]:checked + label {
            border-color: #57B960;
            background-color: rgba(87,185,96,0.1);
        }

    #reportForm textarea {
        width: 100%;
        height: 240px;
        resize: none;
        background-color: #1C2024;
        border-radius: 8px;
        padding: 8px;
        font-size: 13px;
        margin-bottom: 12px;
        border: 1px solid #1C2024;
    }

    .file-input {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 8px;
    }

        .file-input input[type="file"] {
            display: none;
        }

        .file-input label {
            padding: 8px 12px;
            border: 1px solid #ccc;
            border-radius: 8px;
            cursor: pointer;
            font-size: 14px;
            user-select: none;
        }

    .note {
        font-size: 12px;
        color: #888;
        margin-bottom: 16px;
    }

    .submit-btn {
        width: 100%;
        padding: 12px;
        background-color: #1C2024;
        color: #fff;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        cursor: pointer;
    }


    .modal-report-subtitle {
        font-size: 12px; /* nieco mniejsza czcionka */
        color: #888888; /* jasnoszary */
        margin-top: 4px; /* drobny odstęp pod tytułem */
        line-height: 1.4; /* lepsza czytelność */
    }


    .btn-back {
        position: absolute;
        top: 12px;
        left: 12px;
        background: none;
        color: white;
        border: none;
        font-size: 20px;
        cursor: pointer;
        display: none; /* domyślnie ukryta */
    }


    .modal-report-options-scrollable {
        max-height: 600px;
        overflow-y: auto;
        margin-bottom: 20px;
    }

        /* Opcjonalny: styl scrolla w środku */
        .modal-report-options-scrollable::-webkit-scrollbar {
            width: 4px;
        }

        .modal-report-options-scrollable::-webkit-scrollbar-thumb {
            background-color: rgba(255, 255, 255, 0.3);
            border-radius: 4px;
        }

        .modal-report-options-scrollable::-webkit-scrollbar-track {
            background: transparent;
        }


    #map {
        z-index: 4;
    }



    @media (max-width : 991px) {
        .event-btns-wrapper .btn {
            /*font-size: 16px;
            font-weight: 500;*/
            margin-left: 30px;
        }
    }


    .ranking-card.min-height-240 {
        min-height: 220px !important;
    }



    .mobile-action-modal {
        position: fixed;
        left: 0;
        width: 100%;
        background: #222;
        color: white;
        z-index: 10000;
        border-top-left-radius: 16px;
        border-top-right-radius: 16px;
        box-shadow: 0 -4px 16px rgba(0,0,0,0.3);
        overflow: hidden;
        display: none;
        opacity: 0;
        pointer-events: none;
        transition: bottom 0.3s ease, opacity 0.2s ease;
    }

    /* ✅ Mobile: od dołu */
    @media (max-width: 991px) {
        .mobile-action-modal {
            bottom: -100%;
            top: auto;
        }

            .mobile-action-modal.show {
                display: block;
                bottom: 0;
                opacity: 1;
                pointer-events: auto;
            }
    }

    /* ✅ Desktop popup */
    @media (min-width: 992px) {
        .mobile-action-modal.popup-desktop {
            position: absolute;
            top: 100%;
            bottom: auto;
            min-width: 160px;
            display: block;
            opacity: 1;
            pointer-events: auto;
            border-radius: 12px;
        }
    }


    .mobile-action-modal.show {
        display: block; /* <-- pokazuj dopiero po aktywacji */
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-action-modal.popup-desktop {
        position: absolute;
        top: 100%;
        bottom: auto;
        min-width: 160px;
        display: block;
    }

    .modal-content-action {
        padding: 0;
    }

    #mobileActionList {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        #mobileActionList li button {
            width: 100%;
            background: none;
            border: none;
            color: white;
            padding: 12px 16px;
            font-size: 13px;
            text-align: left;
            cursor: pointer;
            transition: background 0.2s ease;
        }

            #mobileActionList li button:hover {
                background: #333;
            }

    .cancel-btn {
        width: 100%;
        background: #2a2a2a;
        border: none;
        color: white;
        padding: 12px 0;
        font-size: 13px;
        border-top: 1px solid #444;
        cursor: pointer;
    }


    .badge-pill {
        background-color: red;
        color: white;
        font-size: 13px;
        font-weight: 600;
        width: 22px;
        height: 22px;
        line-height: 22px;
        text-align: center;
        border-radius: 50%;
        z-index: 10;
        box-shadow: 0 0 0 2px #111; /* subtelna ramka dla kontrastu */
    }



    [id^="tagList"] {
        max-height: 150px;
        overflow-y: auto;
        padding-right: 5px;
    }

        /* Styl paska przewijania */
        [id^="tagList"]::-webkit-scrollbar {
            width: 6px;
        }

        [id^="tagList"]::-webkit-scrollbar-track {
            background: transparent;
        }

        [id^="tagList"]::-webkit-scrollbar-thumb {
            background-color: rgba(0, 0, 0, 0.2);
            border-radius: 10px;
        }

    /* Firefox */
    [id^="tagList"] {
        scrollbar-width: thin;
        scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
    }



    @media (max-width: 1199px) {
        .activity-section.edit-profile-page .col-lg-8 {
            width: 100%;
            flex: 0 0 auto;
        }

        .activity-section.edit-profile-page .progress-bar {
            height: 30px !important;
        }
    }


    /*.activity-section.edit-profile-page.form-check-input {
    margin-right: 0.5rem;
}*/

    /*.activity-section.edit-profile-page .form-check-label {
    padding-left: 0.25rem;
}*/


    div[id="hastagContainer"],
    div[id^="hastagContainer-"] {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        gap: 10px;
        padding-bottom: 5px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #333333 transparent;
    }

    .hastag-item {
        flex: 0 0 auto;
    }


    div[id="hastagContainer"]::-webkit-scrollbar,
    div[id^="hastagContainer-"]::-webkit-scrollbar {
        height: 3px;
    }

    div[id="hastagContainer"]::-webkit-scrollbar-thumb,
    div[id^="hastagContainer-"]::-webkit-scrollbar-thumb {
        background-color: #333333;
        border-radius: 2px;
    }

    div[id="hastagContainer"]::-webkit-scrollbar-track,
    div[id^="hastagContainer-"]::-webkit-scrollbar-track {
        background: transparent;
    }


    /* Domyślnie: kolumnowo */
    #selectedLanguagesContainer.selected-languages-scroll {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-left: 160px; /* lub jak potrzebujesz */
    }

    /* Mobile (do 768px): poziomy scroll */
    @media (max-width: 768px) {
        #selectedLanguagesContainer.selected-languages-scroll {
            flex-wrap: nowrap;
            overflow-x: auto;
            overflow-y: hidden;
            white-space: nowrap;
            -webkit-overflow-scrolling: touch;
            padding-bottom: 4px;
            margin-left: 0 !important;
            scrollbar-width: thin;
            scrollbar-color: #333333 transparent;
        }

        #selectedLanguagesContainer::-webkit-scrollbar {
            height: 3px;
        }

        #selectedLanguagesContainer::-webkit-scrollbar-thumb {
            background-color: #333333;
            border-radius: 2px;
        }
    }



    .profile-success-message {
        padding: 0 20px;
        font-size: 12px;
        line-height: 1.5;
    }



    /*#saveDataProfile.btn-primary:hover {
    background-color: #222222 !important;
    border-color: #222222 !important;
    color: #fff !important;
}
*/

    .activity-section.edit-profile-page .btn-secondary,
    .activity-section.edit-profile-page .secondary-btn {
        background-color: #fe0000 !important;
        border-color: #fe0000 !important;
        color: #fff !important;
    }

        .activity-section.edit-profile-page .btn-secondary:disabled,
        .activity-section.edit-profile-page .secondary-btn:disabled,
        .activity-section.edit-profile-page .btn-secondary[disabled],
        .activity-section.edit-profile-page .secondary-btn[disabled],
        .activity-section.edit-profile-page .btn-secondary:disabled:hover,
        .activity-section.edit-profile-page .secondary-btn:disabled:hover,
        .activity-section.edit-profile-page .btn-secondary[disabled]:hover,
        .activity-section.edit-profile-page .secondary-btn[disabled]:hover {
            background-color: #333333 !important;
            border-color: #333333 !important;
            color: #fff !important;
            opacity: 1 !important;
            cursor: not-allowed;
        }

        .activity-section.edit-profile-page .btn-secondary:hover,
        .activity-section.edit-profile-page .secondary-btn:hover {
            background-color: #333333 !important;
            border-color: #333333 !important;
            color: #fff !important;
        }




    .activity-section.edit-profile-page .btn-secondary,
    .activity-section.edit-profile-page .secondary-btn {
        background-color: #fe0000 !important;
        border-color: #fe0000 !important;
        color: #fff !important;
    }

        .activity-section.edit-profile-page .btn-secondary:disabled,
        .activity-section.edit-profile-page .secondary-btn:disabled,
        .activity-section.edit-profile-page .btn-secondary[disabled],
        .activity-section.edit-profile-page .secondary-btn[disabled],
        .activity-section.edit-profile-page .btn-secondary:disabled:hover,
        .activity-section.edit-profile-page .secondary-btn:disabled:hover,
        .activity-section.edit-profile-page .btn-secondary[disabled]:hover,
        .activity-section.edit-profile-page .secondary-btn[disabled]:hover {
            background-color: #bdbdbd !important;
            border-color: #bdbdbd !important;
            color: #fff !important;
            opacity: 1 !important;
            cursor: not-allowed;
        }

    /*zmiana widoku*/

    .activity-section.edit-profile-page .content-card {
        background: #121211;
        border-radius: 18px;
        box-shadow: 0 4px 24px 0 rgba(0,0,0,0.25);
        padding: 32px 24px;
        margin-bottom: 24px;
        border: none;
        color: #fff;
        transition: box-shadow 0.2s;
    }

        .activity-section.edit-profile-page .content-card:hover {
            box-shadow: 0 8px 32px 0 rgba(0,0,0,0.35);
        }

        /*   .activity-section.edit-profile-page .content-card * {
        color: #fff;
    }*/

        .activity-section.edit-profile-page .content-card h2,
        .activity-section.edit-profile-page .content-card h3,
        .activity-section.edit-profile-page .content-card h4 {
            color: #fff;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .activity-section.edit-profile-page .content-card .btn,
        .activity-section.edit-profile-page .content-card .secondary-btn {
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            padding: 8px 24px;
        }



    /**/

    .activity-section.edit-profile-page .content-card {
        position: relative;
    }

    .activity-section.edit-profile-page #saveDataProfile {
        position: absolute;
        top: 12px;
        right 60px;
        margin: 0 !important;
        left: auto !important;
    }


    .activity-section.edit-profile-page #deleteButtonProfileProfile {
        position: absolute;
        top: 10px;
        right: 18px;
        z-index: 12;
        margin: 0 !important;
    }


        .activity-section.edit-profile-page #deleteButtonProfileProfile img {
            margin-top: 0 !important;
        }


    @media (max-width: 575.98px) {
        .activity-section.edit-profile-page #saveDataProfile {
            top: 6px;
            right: 46px;
            font-size: 14px;
            min-width: 36px;
            min-height: 36px;
            padding: 0 10px;
        }

        .activity-section.edit-profile-page #deleteButtonProfileProfile {
            top: 2px;
            right: 2px;
            min-width: 36px;
            min-height: 36px;
        }

            .activity-section.edit-profile-page #deleteButtonProfileProfile img {
                width: 36px;
                height: 36px;
            }
    }



    .activity-section.edit-profile-page #saveDataProfileBackround {
        position: absolute;
        top: 18px;
        right: 70px;
        z-index: 11;
        margin: 0 !important;
        left: auto !important;
    }

    .activity-section.edit-profile-page #deleteButtonProfileBackround {
        position: absolute;
        top: 18px;
        right: 18px;
        z-index: 12;
        margin: 0 !important;
    }

        .activity-section.edit-profile-page #deleteButtonProfileBackround img {
            margin-top: 0 !important;
        }

    @media (max-width: 575.98px) {
        .activity-section.edit-profile-page #saveDataProfileBackround {
            top: 10px;
            right: 50px;
            font-size: 14px;
            min-width: 36px;
            min-height: 36px;
            padding: 0 10px;
        }

        .activity-section.edit-profile-page #deleteButtonProfileBackround {
            top: 8px;
            right: 8px;
            min-width: 36px;
            min-height: 36px;
        }

            .activity-section.edit-profile-page #deleteButtonProfileBackround img {
                width: 36px;
                height: 36px;
            }
    }




    @media (min-width: 992px) {
        .activity-section.edit-profile-page .content-card .hastag {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
    }

    .photo-preview-outer {
        position: relative;
        display: inline-block;
    }

        .photo-preview-outer .status-indicator {
            position: absolute;
            right: 72px; /* kropka lekko na zewnątrz */
            bottom: 18px; /* dopasuj do wysokości okręgu */
            width: 28px;
            height: 28px;
            background: #4CAF50;
            border: 3px solid #fff;
            border-radius: 50%;
            z-index: 299900;
            box-shadow: 0 0 0 2px #222;
        }


    @media (max-width: 991.98px) {
        .activity-profile h2,
        .activity-profile p {
            font-size: 13px;
        }


        .activity-section.edit-profile-page .content-card .btn,
        .activity-section.edit-profile-page .content-card .secondary-btn {
            border-radius: 8px;
            font-weight: 600;
            font-size: 14px;
            min-width: 36px;
            min-height: 36px;
            padding: 0 10px;
        }
        /*
    #komunikat-profile-message,
    #komunikat-profile-message3 {
        font-size: 17px !important;
        font-weight: 700 !important;
    }*/

        #profile-edit-title {
            font-size: 17px !important;
            font-weight: 700 !important;
        }

        .edit-profile-page .photo-preview-circle .status-indicator {
            right: 66px;
        }

        .photo-preview-outer .status-indicator {
            right: 45px; /* kropka lekko na zewnątrz */
        }
    }


    #link1 {
        display: block !important;
    }

    #link2 {
        display: none !important;
    }

    @media (max-width: 991.98px) {
        .content-card.profile-card[data-section-id="photoPreview"] {
            margin-top: -5px !important;
        }

        #link2 {
            display: block !important;
        }

        #link1 {
            display: none !important;
        }
    }





    @media (max-width: 600px) {
        [id^="activity-container"] .activity-item {
            flex-direction: row;
            align-items: flex-start;
            gap: 10px;
            padding: 10px 0;
        }

            [id^="activity-container"] .activity-item .icon {
                /*  width: 36px;
            height: 36px;
            min-width: 36px;*/
                max-width: 36px;
            }

            [id^="activity-container"] .activity-item .live-item {
                font-size: 0.98em;
                line-height: 1.25;
                gap: 4px;
            }

        [id^="activity-container"] .activity-list {
            padding: 0;
        }

        [id^="activity-container"] .activity-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px 0;
            flex-wrap: wrap;
        }

            [id^="activity-container"] .activity-item .icon {
                flex: 0 0 44px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

                [id^="activity-container"] .activity-item .icon img {
                    object-fit: contain;
                }

            [id^="activity-container"] .activity-item .live-item {
                margin: 0;
                min-width: 0;
                word-break: break-word;
                font-size: 12px;
                line-height: 1.3;
                display: flex;
                align-items: center;
                gap: 6px;
                flex-wrap: wrap;
            }

            [id^="activity-container"] .activity-item .target-user {
                margin-left: 0;
                font-weight: 500;
                display: inline-block;
                word-break: break-word;
            }

                [id^="activity-container"] .activity-item .target-user a {
                    text-decoration: none;
                    font-weight: 600;
                    word-break: break-word;
                }

        [id^="activity-container"] .activity-item {
            margin-left: 0px;
            margin-right: 0px;
            font-size: 12px;
        }

        [id^="activity-container"] .target-user {
            margin-left: 0px !important;
        }

        [id^="activity-container"] .activity-item .target-user {
            display: block;
            width: 100%;
            margin-top: 2px;
            margin-left: 0 !important;
        }

        [id^="activity-container"] .icon.user-add {
            width: 34px;
            height: 34px;
            object-fit: contain;
        }

        [id^="activity-container"] .icon:not(.user-add) {
            max-width: 20px !important;
            max-height: 20px !important;
            object-fit: cover;
        }

        [id^="activity-container"] .live-item[invite-type-status="3"] {
            flex-wrap: wrap !important;
            gap: 4px !important;
        }

            [id^="activity-container"] .live-item[invite-type-status="3"] .icon {
                margin-right: 0.3em !important;
            }

        .load-more-text {
            font-size: 13px;
        }

        [id^="activity-container"] .activity-item,
        [id^="activity-container"] .activity-item .live-item,
        [id^="activity-container"] .invite-status-box .invite-status-text {
            font-size: 10px;
        }

        .no-activities-message {
            font-size: 11px;
        }
    }


    @media (max-width: 381px) {
        [id^="activity-container"] .activity-item,
        [id^="activity-container"] .activity-item .live-item,
        [id^="activity-container"] .invite-status-box .invite-status-text {
            font-size: 10px !important;
        }
    }




    .album-swiper {
        padding: 30px 0 40px 0;
        position: relative;
    }

    .album-swiper {
        margin-left: auto;
        margin-right: auto;
    }


        .album-swiper .swiper-slide {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            height: auto;
            margin-right: 0;
            margin-left: 0;
        }

    .album-container {
        margin: 0 !important;
        min-width: 220px;
        max-width: 400px;
        width: 100%;
        box-sizing: border-box;
    }

    .swiper-button-next, .swiper-button-prev {
        color: #e0e0e0 !important;
        background: rgba(40,40,40,0.7);
        border-radius: 50%;
        width: 38px;
        height: 38px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    }

        .swiper-button-next:after, .swiper-button-prev:after {
            font-size: 22px !important;
            font-weight: bold;
        }

    .swiper-button-next {
        right: 10px;
    }

    .swiper-button-prev {
        left: 10px;
    }

    @media (max-width: 1599px) {
        .album-container {
            margin: 0 !important;
            min-width: 220px;
            width: 240px !important;
            height: 250px;
        }
    }

    @media (max-width: 1299px) {
        .album-container {
            margin: 0 !important;
            min-width: 180px;
            width: 200px !important;
            height: 220px;
        }
    }


    @media (max-width: 991px) {
        .album-container {
            min-width: 200px;
            max-width: 200px;
        }

        .swiper-button-next, .swiper-button-prev {
            width: 28px;
            height: 28px;
        }
    }




    @media (max-width: 575px) {
        .album-swiper .swiper-slide {
            width: 100% !important;
            max-width: 100% !important;
            display: flex;
            justify-content: center;
        }

        .album-container {
            min-width: 260px;
            max-width: 280px;
        }

        .album-swiper .swiper-slide {
            margin: 0 !important;
            padding: 0 !important;
        }

        .album-container {
            /* min-width: 100% !important;
        max-width: 100% !important;*/
            height: 240px;
        }

        .swiper-button-next, .swiper-button-prev {
            width: 22px;
            height: 22px;
        }
    }

    @media (max-width: 375px) {
        .album-container {
            min-width: 100px !important;
            max-width: 100% !important;
            width: 100% !important;
        }
    }

    .album-modal-content .btn-secondary {
        background-color: #1A191A !important;
    }



    .album-modal-input {
        width: 100%;
        background: #1A191A !important;
        color: #e0e0e0;
        border: 1px solid #1A191A; /* Obramowanie w kolorze #222222 */
        border-radius: 24px;
        padding: 10px 22px;
        font-size: 1.08rem;
        font-family: inherit;
        outline: none;
        transition: border-color 0.2s;
        box-shadow: none;
        width: 300px !important;
    }

        .album-modal-input:focus {
            border-color: #444; /* Opcjonalnie: jaśniejsze obramowanie po kliknięciu */
            background: #232323;
        }

        .album-modal-input::placeholder {
            color: #bdbdbd;
            opacity: 1;
            font-weight: 400;
            letter-spacing: 0.01em;
        }

    .album-validate-error {
        font-size: 16px;
    }

    @media (max-width: 575.98px) {
        .album-modal-input {
            /* width: 55% !important;*/
            min-width: 0;
            font-size: 13px !important;
            padding: 10px 10px;
            margin-bottom: 20px;
            /* height: 35px;*/
        }

        .album-modal-privacy {
            flex-direction: column;
            align-items: stretch;
            gap: 10px;
        }

        .album-modal-label {
            font-size: 0.98rem;
        }

        .album-validate-error {
            font-size: 10px;
        }
    }





    .add-photo-card {
        background: #222;
        height: 320px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        cursor: pointer;
        border-radius: 12px;
        margin-bottom: 16px;
        transition: box-shadow 0.2s;
        border: 2px solid black;
    }

        .add-photo-card:hover {
            box-shadow: 0 2px 12px 0 rgba(0,0,0,0.18);
        }

    .add-photo-plus {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

        .add-photo-plus img {
            width: 48px;
            height: 48px;
            display: block;
            margin-bottom: 10px;
            opacity: 0.7;
        }

        .add-photo-plus span {
            font-size: 16px;
            color: #888;
        }



    .profile-actions-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        gap: 12px;
    }

    .btn-left, .btn-right {
        /* opcjonalnie: */
        min-width: 120px;
    }

    @media (max-width: 991px) {

        .add-photo-plus img {
            width: 30px;
            height: 30px;
        }

        .play-icon-overlay {
            width: 35px;
        }

        .add-photo-plus span {
            font-size: 13px;
        }

        .profile-actions-row {
            flex-direction: column;
            align-items: stretch;
            gap: 10px;
        }

            .profile-actions-row .btn {
                width: 130px;
                min-width: 0;
            }

        #openEventModal {
            width: 200px !important;
        }

        .profile-actions-row .btn-right,
        .profile-actions-row .btn {
            padding: 4px 8px;
            font-size: 11px;
        }

        .add-event-text {
            font-size: 12px;
        }

        .plus-icon {
            width: 12px;
            height: 12px;
        }
    }

    #pills-tab-photo {
        display: none;
    }


    /*.photo-empty-row {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;*/ /* lub inna wysokość */
    /*gap: 32px;*/ /* odstęp między przyciskiem a napisem */
    /*}*/

    .no-photos-text {
        font-size: 1.1em;
        color: #888;
    }

    .error-messages {
        z-index: 55;
    }

    .text-danger {
        z-index: 55;
    }



    @media (max-width: 991px) {
        #loginModal .custom-close-btn2 {
            top: 30% !important;
        }
    }



    @media (max-width: 768px) {
        .login-modal-content {
            position: relative; /* <--- kluczowe */
            padding-top: 40px; /* miejsce na X */
        }

        .custom-close-btn2 {
            position: absolute;
            top: 10px;
            right: 10px;
            z-index: 10;
        }

        #loginModal {
            overflow-y: auto;
        }

            #loginModal .login-modal-image {
                /* display: none;*/
            }

            #loginModal .login-modal-submit-button {
                font-size: 1rem;
            }
    }


    @media (max-width: 475px) {
        .gender-options {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px 20px;
        }

            .gender-options .form-check-inline {
                display: flex;
                align-items: center;
                margin: 0;
            }

        .col-12.test {
            margin-top: 100px !important;
        }

        .col-12.test2 {
            margin-top: 0px !important;
        }


        .test3 h2 {
            font-size: 15px !important;
            font-weight: 600;
        }
    }



    /* MODALE - RESPONSYWNOŚĆ */



    @media (max-width: 991px) {
        /*#file-modals-container, .modals-grid {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto !important;
        gap: 10px !important;
        scroll-snap-type: x mandatory;
        padding: 0 8px;
    }*/

        .file-modal2 {
            /* min-width: 90vw;
        max-width: 98vw;*/
            flex: 0 0 95vw;
            margin: 0 4px;
            scroll-snap-align: center;
        }

        .file-modal2 {
            /*  width: 100%;
        max-width: 400px;
        margin: 0 auto 20px auto;
        background: #181818;
        border-radius: 12px;
        box-shadow: 0 2px 16px rgba(0,0,0,0.4);*/
            padding: 0;
        }

        .file-modal-content2 {
            padding: 16px;
        }

        .file-modal2 .image-preview-container {
            width: 90% !important;
            margin-left: 10px;
        }
    }

    @media (max-width: 476px) {

        .file-modal-content2 {
            min-width: 90vw;
            max-width: 98vw;
        }
    }


    #moveToAlbumButtont,
    #moveToAlbumButtont *,
    #privacyOptionst label,
    #privacyOptionst .register-check {
        cursor: default !important;
    }


    #file-modal .content-card .btn-secondary,
    #file-modal2 .content-card .btn-secondary {
        background: #1A1A19 !important;
    }




    /*zmiana checkbox*/

    /* Kontener opcji prywatności */
    .file-modal2 .register-check,
    .file-modal .register-check {
        background: #232322;
        border-radius: 16px;
        padding: 6px 18px 6px 12px;
        display: flex;
        align-items: center;
        gap: 10px;
        min-width: 120px;
        transition: background 0.2s;
        position: relative;
    }

        /* Zaznaczony (aktywny) przycisk */
        .file-modal2 .register-check input:checked + .check,
        .file-modal .register-check input:checked + .check {
            border: 1px solid #fff;
            background: #ff0000;
        }

        .file-modal2 .register-check input:checked ~ label,
        .file-modal .register-check input:checked ~ label {
            color: #fff;
            font-weight: bold;
        }

            .file-modal2 .register-check input:checked ~ label img,
            .file-modal .register-check input:checked ~ label img {
                filter: brightness(0) invert(1);
            }

        /* Stylizacja samego inputa (ukrycie) */
        .file-modal2 .register-check input,
        .file-modal .register-check input {
            opacity: 0;
            width: 0;
            height: 0;
            position: absolute;
        }

    .file-modal2 .custom-checkbox2 .check,
    .file-modal .custom-checkbox2 .check {
        margin: 0px;
    }

    /* Stylizacja "kółka" (radio/checkbox) */
    .file-modal2 .register-check .check,
    .file-modal .register-check .check {
        display: inline-block;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        border: 2px solid #fff;
        background: transparent;
        margin-right: 8px;
        vertical-align: middle;
        transition: border 0.2s, background 0.2s;
        position: relative;
    }

    /* Zaznaczenie (ptaszek/kółko) */
    .file-modal2 .register-check input:checked + .check::after,
    .file-modal .register-check input:checked + .check::after {
        content: '';
        display: block;
        width: 10px;
        height: 10px;
        /*    background: #ff0000;*/
        border-radius: 50%;
        position: absolute;
        top: 2px;
        left: 2px;
    }

    /* Label i ikona */
    .file-modal2 .register-check label,
    .file-modal .register-check label {
        color: #fff;
        font-size: 13px;
        display: flex;
        align-items: center;
        gap: 6px;
        cursor: pointer;
        background: none;
        border: none;
    }

        .file-modal2 .register-check label img,
        .file-modal .register-check label img {
            width: 18px;
            height: 18px;
            filter: brightness(0) invert(1); /* biała ikona */
        }

    /* Aktywny (zielony) przycisk */
    .file-modal2 .register-check input:checked ~ label,
    .file-modal .register-check input:checked ~ label {
        background: #ff0000;
        color: #fff;
        border-radius: 16px;
        padding: 4px 12px;
    }

        .file-modal2 .register-check input:checked ~ label img,
        .file-modal .register-check input:checked ~ label img {
            filter: none; /* zielona ikona jeśli chcesz, lub zostaw białą */
        }

    .file-modal2 .register-check input[type="radio"]:checked ~ label,
    .file-modal .register-check input[type="radio"]:checked ~ label {
        background: #ff0000;
        color: #fff;
        border-radius: 16px;
        padding: 4px 12px;
    }


    /* Zielone tło i biała ikona dla wybranego przycisku */
    .file-modal2 .register-check:has(input[type="radio"]:checked),
    .file-modal .register-check:has(input[type="radio"]:checked) {
        background: #ff0000 !important;
    }

        .file-modal2 .register-check:has(input[type='radio']:checked) label,
        .file-modal .register-check:has(input[type='radio']:checked) label {
            color: #fff;
            font-weight: bold;
        }

            .file-modal2 .register-check:has(input[type='radio']:checked) label img,
            .file-modal .register-check:has(input[type='radio']:checked) label img {
                filter: brightness(0) invert(1);
            }

    /*.file-modal .register-check input[type="checkbox"]:checked + .check::after,
.file-modal2 .register-check input[type="checkbox"]:checked + .check::after {
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='10' viewBox='0 0 12 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5L4.5 8.5L11 1' stroke='white' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    width: 12px;
    height: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
*/

    .file-modal2 .custom-checkbox2 input[type="radio"]:checked + .check:after,
    .file-modal .custom-checkbox2 input[type="radio"]:checked + .check:after {
        opacity: 1;
        /*  background: #ff0000;*/
        width: 10px;
        height: 10px;
        left: 5px;
        top: 5px;
        border-radius: 50%;
        position: absolute;
        content: "";
        background-repeat: no-repeat;
        background-position: center;
        transform: translate(-20%, -20%);
        background-image: url("data:image/svg+xml,%3Csvg width='12' height='10' viewBox='0 0 12 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5L4.5 8.5L11 1' stroke='white' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    }


    .file-modal .register-check input[type="radio"]:checked + .check {
        background: #bb0808 !important;
    }

    .file-modal .register-check input[type="radio"]:checked ~ label {
        background: #ff0000 !important;
        color: #fff !important;
    }



    .file-modal .button-container,
    .file-modal2 .button-container {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }




    /*.photo-card img.photo-image {
    max-height: 400px;
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}*/

    /* Opcjonalnie: dla mobilnych ograniczenie */
    /*@media (max-width: 768px) {
    .photo-card img.photo-image {
        max-height: 50vh;
        object-fit: contain;
    }
}*/


    /*#photos-row {
    display: grid;*/
    /*    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));*/
    /*grid-auto-rows: 350px;*/ /* Wymusza równą wysokość wierszy */
    /*gap: 16px;
}*/

    /*.photo-card {*/

    /*    max-height: 350px;
    overflow: hidden;
    border-radius: 12px;
    background-color: #000;
    position: relative;
    display: flex;
    flex-direction: column;*/
    /*}*/

    /*.photo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}*/


    @media (max-width: 768px) {
        #photo-album-title > img {
            height: 14px !important;
        }


        .add-photo-card {
            height: 220px !important;
        }
    }


    @media (max-width: 575.98px) {
        .album-delete-btn > img {
            height: 30px !important;
            width: 30px !important;
        }
    }



    .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .gallerySwiperMain .slide-box {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #gallerySwiperMain .swiper-slide {
        /*    height: 80vh;*/
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .gallerySwiperMain {
        height: 80vh;
        display: flex;
        align-items: center;
    }

    @media (max-width: 991px) {
        .gallerySwiperMain {
            height: auto !important;
            align-items: flex-start !important;
        }


        .play-icon-overlay-main {
            width: 50px;
        }
    }


    .profile-bg {
        position: relative;
    }

    .edit-icon-on-bg {
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 2;
    }



@media (max-width: 991px) {
    #buttonWrapper {
        overflow-x: auto;
        white-space: nowrap;
        max-width: 100%;
        scrollbar-width: thin; /* Firefox */
        scrollbar-color: #444 transparent; /* Firefox */
    }

        #buttonWrapper::-webkit-scrollbar {
            height: 3px;
        }

        #buttonWrapper::-webkit-scrollbar-track {
            background: transparent;
        }

        #buttonWrapper::-webkit-scrollbar-thumb {
            background-color: #888; /* Kolor paska */
            border-radius: 10px;
        }

        #buttonWrapper .btn {
            display: inline-block;
            white-space: nowrap;
            margin-right: 10px;
        }


    .profile-tab-btn-wrapper{
        gap: 5px !important;
    }
}



@media (max-width: 991px) {
    .scroll-tabs {
        overflow-x: auto;
        white-space: nowrap;
        max-width: 100%;
        padding-bottom: 4px;
        scrollbar-width: thin; /* Firefox */
        scrollbar-color: #444 transparent; /* Firefox */
        -webkit-overflow-scrolling: touch; /* iOS płynność */
    }

        /* Scrollbar dla WebKit (Chrome, Edge, Safari) */
        .scroll-tabs::-webkit-scrollbar {
            height: 3px;
        }

        .scroll-tabs::-webkit-scrollbar-track {
            background: transparent;
        }

        .scroll-tabs::-webkit-scrollbar-thumb {
            background-color: #444;
            border-radius: 6px;
        }

        .scroll-tabs .nav-item {
            display: inline-block;
            white-space: nowrap;
            margin-right: 8px;
        }
}


.profile-img {
    position: relative !important;
    overflow: visible !important;
}


.profile-img .status-indicator {
    position: absolute;
    right: 52px;
    bottom: 1px;
    width: 28px;
    height: 28px;
    background: #4CAF50;
    border: 3px solid #fff;
    border-radius: 50%;
    z-index: 299900;
    box-shadow: 0 0 0 2px #222;
}



@media (max-width: 991px) {


    .profile-img .status-indicator {
        right: 32px;
        bottom: -11px;
        width: 24px;
        height: 24px;

    }

}

@media (max-width: 576px) {


    .profile-img .status-indicator {
        right: 18px;
        bottom: -16px;
        width: 18px;
        height: 18px;
    }

}


.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 16px;
    color: #fff; 
    text-align: center;
}