html {
    scroll-behavior: smooth;
}

html.light-mode {
    filter: invert(1) hue-rotate(180deg) !important;
}

html.light-mode img, html.light-mode video, html.light-mode audio {
    filter: invert(1) hue-rotate(180deg) !important;
}

html.light-mode img[alt="pnet logo"] {
    filter: invert(0) hue-rotate(180deg) !important;
}

html.light-mode #postRefresher,
html.light-mode #postRefresher * {
    color: black!important;
    filter: none !important;
}

/* Exclude background images from being affected by the filter */
html.light-mode * {
}

/* Optional: If you want to target specific background-image elements and reset their filters */
html.light-mode [style*="background-image"] {
    filter: invert(1) hue-rotate(180deg) !important;
}

/* Reset the filter for elements with background images, like .christmas-banner */
html.light-mode .christmas-banner {
    filter: invert(1) hue-rotate(180deg) !important;
}

body {
}

body.modal-open {
  overflow: hidden;
}

img {
    draggable: none;
    -webkit-user-drag: none;
}

option {
    font-weight: normal;
    display: block;
    min-height: 1.2em;
    padding: 0px 2px 1px;
    white-space: nowrap;
    background-color: black!important;
}

.wrapper-right {
    top: 0;
    max-width: 400px;
    margin-right: 8px;
    overflow-x: hidden;
}

.imgDarkZoom img {
  object-fit: cover;
  transition: transform 0.3s, filter 0.3s;
}

.imgDarkZoom img:hover {
  transform: scale(1.1); /* Zoom in by 10% */
  filter: brightness(0.8); /* Darken the image by 20% */
}

.nsfw-tag {
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    border-radius: 2px;
    margin-left: 5px;
    margin-right: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    /*vertical-align: text-bottom;*/
    white-space: pre;
    word-break: normal;
    box-sizing: border-box;
    line-height: 14px;
    padding: 0 4px;
    position: absolute;
    margin-top: 3px;
}

.fluid_controls_left {
    left: 0px!important;
}

.fluid_controls_right {
    left: 36px!important;
    right: 12px!important;
}

body {
  overflow-x: hidden;
}

#snowfallCanvas, #fireworksCanvas, #confettiCanvas {
  position: absolute; /* Change to fixed for better scroll follow */
  top: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none; /* Make the canvas non-clickable */
  z-index: 999999999999999; /* Set a high z-index to overlay other elements */
}

/*.shorten-texts {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}*/

.shorten-texts {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
}

.no-select {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
  
/* Define the gradient background */
.gradient-text-button1 {
    background: linear-gradient(320deg, #E91E63, #FFC107, #3981f7);
    font-weight: 700;
    background-size: 200% 200%;
    animation: rotateGradient1 5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.profileIdentifier-modal-dialog {
    max-width: 370px!important;
}

.profileIdentifier-modal-content {
    border-radius: 1em;
    padding: 0;
    border: 2px solid #15172d78!important;
    box-shadow: #20233d78 0px 0px 6px 0px,#20233d0f 0px 0px 20px 20px;
}

@keyframes rotateGradient1 {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.follow-btn {
    cursor: pointer;
    width: 60px!important;
    height: 35px!important;
}

.follow-btn i {
    pointer-events: none; /* Ensures the icon doesn't interfere with the button click */
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.follow-btn.follow:hover {
    color: white;
}

.export-bg:hover {
    background-color: rgba(0, 123, 255, 0.1);
    transition: 0.2s ease-in-out;
    animation-duration: 0.8s;
}

.slider-container {
        margin: 50px 20px;
        text-align: center;
        position: relative;
    }
    .slider {
        width: 100%;
    }
    .levels {
        display: flex;
        justify-content: space-between;
        margin-top: 10px;
    }
    .level {
        position: relative;
    }
    .level:before {
        content: attr(data-label);
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 11px;
    }
    .label-left {
        position: absolute;
        top: -25px;
        left: 0;
        font-size: 14px;
        font-weight: bold;
    }
    .label-right {
        position: absolute;
        top: -25px;
        right: 0;
        font-size: 14px;
        font-weight: bold;
    }
.display-on-mobile{
    display:none;
}
.display-on-mobile-search{
    display:none;
}

.editor-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#image-preview {
    max-width: 100%;
    max-height: 600px;
    margin-bottom: 10px;
}
.controls {
    display: flex;
    justify-content: space-around;
    margin-bottom: 10px;
}

.controls select {
    padding: 5px;
}
.controls button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}
.select-options {
    background: #151728;
    color: white;
}
.image-container {
    justify-content: center;
    display: flex;
}

.global-chip {
    position: relative;
    z-index: 10; 
    background: rgb(128 128 128 / 14%);
    transition: 0.5s ease;
    text-decoration: none!important;
    display: inline-block;
    border-radius: 1em;
    padding: 2px 10px;
}
.global-chip:hover {
    background: rgb(255 255 255 / 28%);
}

.filter-class {
    display: flex;
    align-items: flex-start;
    justify-items: center;
    justify-content: flex-start;
}

.filter-class-names {
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    margin: 5px 0;
    padding: 8px 0;
    text-transform: uppercase;
    font-family: "Roboto","Arial",sans-serif;
    font-weight: 500;
    font-size: x-small;
}

#filter-form {
    display: grid;
    position: absolute; /* Positioning to top */
    top: 0; /* Ensure it starts from the top */
}

.filter-class-options {
    color: #aaa;
    font-size: 16px;
    padding: 15px 0 0;
}

.filter-class-options:hover {
    color: #dbdbdb;
}
.selected-filter {
    color: white;
    font-weight: bold;
}

/* Link Chips */

.links-chip {
    position: relative;
    z-index: 10; 
    background: rgb(128 128 128 / 14%);
    transition: 0.5s ease;
    text-decoration: none!important;
    display: inline-block;
    border-radius: 1em;
    margin: 2px 0;
}
.links-chip:hover {
    background: rgb(255 255 255 / 28%);
}
.links-color-text {
    color: rgb(231, 233, 234)!important;
    font-weight: bold;
}
.yt-color {
    color: red!important;
}
.fb-color {
    color: #316FF6!important;
}
.ig-color {
    color: #962fbf !important;
    font-weight: 900;
}
.x-twitter-color {
    color: #fff !important;
}
.discord-color {
    color: #7289da !important;
}
.reddit-color {
    color: #FF5700 !important;
}
.twitch-color {
    color: #a970ff !important;
}
.spotify-color {
    color: #1db954 !important;
}
.websites-color {
    color: #74C0FC !important;
}
.spotify-song-preview-frame {
    height: 152px;
}
.bio-users {
    position: relative;
    border-radius: 3px;
    font-weight: 500;
    unicode-bidi: plaintext;
    display: inline-block;
}

.hash-box{
	position: absolute;
	z-index: 50;
    background: white;
    background-color: white;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    box-shadow: 0px 0px 10px 0px #cacaca;
    background-color: white;
	display: block;
	overflow: auto;
	max-height: 250px;
	margin-left: 60px;
}

.hash-box ul li .hashtag:hover {
    
}

.hash-box ul li{
    /*padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 15px;*/
    font-weight: bold;
    cursor: pointer;
}

.hash-box ul li:hover{
	background: #16181c!important;
}

.hash-box ul li:hover > a{
	color: white;
}

.hash-box ul li a{
	display: block;
	text-decoration:none;
	color: #716868;

}

.red-text {
    color: red;
}
.green-text {
    color: green;
}

#mine .unbookmark-btn {
    color: #1DA1F2
}

#mine .grid-reactions-group, #mine .grid-reactions2 {
    margin: -6px 0;
}

#mine .hover-reaction {
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    padding: 6px;
    transition: 0.25s ease;
}

#mine .mt-counter {
    margin-left: 4px!important;
}

#mine .img-post-tweet {
    /*height: 100%/*!important*/;
    height: auto;
}

.download-media-style {
    height: 46.5px;
    width: unset;
    aspect-ratio: 1;
    transition: 0.5s ease-in-out;
}

.download-media-style:hover img {
    opacity: 0.8!important;
    filter: blur(1px)!important;
    scale: 1.1;
}

.download-media-style:hover {
    opacity: 0.8!important;
}

.download-media-style:hover i {
    opacity: 1!important;
    filter: opacity(0.7)!important;
}

.overflow-y-allow {
    overflow-y: auto!important;
}

.lozad-fade {
  opacity: 0;
  transition: opacity 0.5s; /* Adjust the duration as needed */
}

.lozad-fade.fade-in {
  opacity: 1;
}

/*
.gradient-bg-organization {
    position: relative;
    overflow: hidden;
    background: repeating-radial-gradient(circle, #ff6f61 0%, #ff9966 10%, #ffcc66 20%, #ccff66 30%, #66ff66 40%, #66ffcc 50%, #66ccff 60%, #6699ff 70%, #6666ff 80%, #9966ff 90%, #cc66ff 100%, #ff66cc 110%, #ff6699 120%, #ff6666 130%, #66ccff 140%, #6699cc 150%, #3366cc 160%, #0066cc 170%, #0033cc 180%, #0000ff 190%);
    background-size: 400% 400%;
    animation: gradient-rotate-organization 20s cubic-bezier(0.46, 0.03, 0.52, 0.96) infinite;
}
*/

.gradient-bg-organization {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #ff6f61, #ff9966, #ffcc66, #ccff66, #66ff66, #66ffcc, #66ccff, #6699ff, #6666ff, #9966ff, #cc66ff, #ff66cc, #ff6699, #ff6666);
    background-size: 400% 400%;
    animation: /*gradient-rotate-organization 10s linear infinite*/gradient-rotate-organization 10s cubic-bezier(0.46, 0.03, 0.52, 0.96) infinite;
}

.medium-zoom-overlay {
    z-index: 2500;
}

.spoiler-text {
    cursor: pointer;
    filter: blur(12px);
    backdrop-filter: 12px;
    transition: 0.5s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

.spoiler-text:hover {
    filter: blur(0px);
    backdrop-filter: 0px;
}

.tweet-credits-text {
    font-size: 11px;
    color: gray!important;
    line-height: 1.5;
}

.profileIdentifierProfImg {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 4px;
}

.paragonnetx-button, .paragonnetx-button1, .paragonnetx-button2, .paragonnetx-button3, .paragonnetx-button4, .paragonnetx-button5 {
    transition: 0.5s ease;
}

.paragonnetx-button:hover {
    transition-property: background-color, box-shadow;
    background-color: rgb(215, 219, 220)!important;
}

.paragonnetx-button1:hover {
    transition-property: background-color, box-shadow;
    background-color: rgba(0, 0, 0, 0)!important;
}

.paragonnetx-button2:hover {
    transition-property: background-color, box-shadow;
    background-color: rgba(239, 243, 244, 0.1)!important;
}

.paragonnetx-button3:hover {
    transition-property: background-color, box-shadow;
    background-color: rgba(26, 140, 216)!important;
}

.paragonnetx-button4:hover {
    transition-property: background-color, box-shadow;
    background-color: rgba(220, 30, 41)!important;
}

.paragonnetx-button5:hover {
    transition-property: background-color, box-shadow;
    background-color: rgba(243, 33, 46, 0.1)!important;
}

.user-birthday {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    align-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.user-birthday img {
    width: 40px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 9999px;
    margin-right: 16px;
    transition: 0.25s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

.user-birthday img:hover {
    filter: brightness(0.75)
}

.user-birthday-group-2 {
    
}

.user-birthday-group-2 p {
    
}

.following-birthdays-div {
    margin-left: 3em;
    padding-left: 15em;
}

.odo800wd {
    display: none!important;
}

.tweet-center-text {
    text-align: center !important;
    width: -webkit-fill-available;
    display: inline-block;
}

.tweet-bold-text {
    font-weight: bold!important;
}

.tweet-italic-text {
    font-style: italic!important;
}

.tweet-hr-text {
    display: block;
    width: 100%;
    background: rgb(47, 51, 54);
    height: 1px;
    margin-bottom: -22px;
}

.tweet-tab-text {
    margin-right: 22px;
}

.search-input {
    background: rgb(32, 35, 39)!important;
    border: none!important;
}

.save-profile-edit-button {
    display: flex;
    color: rgb(15, 20, 25);
    text-align: center;
    vertical-align: middle;
    padding: 0.375rem 0.75rem;
    line-height: 1.5;
    border-radius: 28px 28px 28px 28px;
    -moz-border-radius: 28px 28px 28px 28px;
    -webkit-border-radius: 28px 28px 28px 28px;
    border: none!important;
    cursor: pointer;
    background: rgb(239, 243, 244);
    font-weight: 700;
    transition: 0.3s;
    min-width: 67px;
    max-height: 32px;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: row;
}

.save-profile-edit-button:hover {
    background: rgb(215, 219, 220);
}

.confirmButton:disabled {
    opacity: 0.5!important;
}

.fs-11 {
    font-size: 11px!important;
}

.fs-12 {
    font-size: 12px!important;
}

.fs-13 {
    font-size: 13px!important;
}

.fs-14 {
    font-size: 14px!important;
}

.fs-15 {
    font-size: 15px!important;
}

.fs-15-name {
    font-size: 15px!important;
    color: rgb(231, 233, 234)!important;
    font-weight: 700;
}

.fs-15-username {
    font-size: 15px!important;
    color: rgb(113, 118, 123)!important;
    font-weight: 400;
}

.fs-15-mt-m2-username {
    font-size: 15px!important;
    color: rgb(113, 118, 123)!important;
    font-weight: 400;
    margin-top: -3px;
}

.fs-15-m2-username {
    font-size: 15px!important;
    color: rgb(113, 118, 123)!important;
    font-weight: 400;
}

.fs-16 {
    font-size: 16px!important;
}

.fs-17 {
    font-size: 17px!important;
}

.ff-x {
    font-family: TwitterChirp, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif!important;
}

.dndopc {
    display: none;   
}

.mpfnv2 {
    padding: 0 80px;
}

.fs-15-fs-11-fm {
    font-size: 15px;
}

.fs-15-fs-14-fm {
    font-size: 15px;
}

.fs-20-fs-17-fm {
    font-size: 20px;
}

.fs-21-fs-18-fm {
    font-size: 21px;
}

.wandh-21-wandh-18-fm {
    width: 21px;
    height: 21px;
}

.dndopcW500 {
    display: none;
}
.dndopcW500flex {
    display: none;
}

.post-reaction-button {
    font-size: inherit;
}

.center-post-reaction-button {
    display: flex;
    align-items: center;
}

.mb8pxfm {
    margin-bottom: 8px;
}

.psom {
    position: relative;
    padding: 0px 16px;
    /*margin-right: 1em;*/
    /*border-top: 1px solid #1f1f1f;
    border-bottom: 1px solid #1f1f1f;*/
    text-decoration: none;
    /*margin-bottom: 1em;*/
}

.psomStack {
    position: relative;
    /*border-top: 1px solid #1f1f1f;
    border-bottom: 1px solid #1f1f1f;*/
    text-decoration: none; 
    border-radius: 20px;
    padding: 0px 16px;
    margin-bottom: 1em;
    transition: 0.2s ease;
}

/*
.psomStack:not([page="profile"]) {
    background: transparent!important;
    background-color: transparent!important;
    border-radius: 0;
    border-top: 1px solid rgb(47, 51, 54);
    border-bottom: none;
    margin-bottom: 0;
    margin-top: 0!important;
}
*/

.psomStack {
    background: transparent;
    background-color: transparent;
    border-radius: 0;
    border-top: 1px solid rgb(47, 51, 54);
    /*border-bottom: 1px solid rgb(47, 51, 54);
    margin-left: -3%!important;
    margin-right: -3%!important;*/
    border-bottom: none;
    margin-bottom: 0;
    margin-top: 0!important;
}

.psomStackEditHistory {
    background: transparent;
    background-color: transparent;
    border-radius: 0;
    border-top: none;
    border-top: 1px solid rgb(47, 51, 54);
    border-bottom: 1px solid rgb(47, 51, 54);
    margin-left: -3%!important;
    margin-right: -3%!important;
    border-top: none;
    margin-bottom: 0;
    margin-top: 0!important;
}

.uNaA {
    display: inline-flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 0 4px;
}

.compose-tweet-div::placeholder {
    font-size: 20px!important;
    font-weight: 400!important;
}

.network-banner {
    display: none;
    background-color: black;
    color: white;
    text-align: center;
    padding: 5px 15px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    align-items: center;
    justify-content: space-between;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: row;
}

.lh0mb10 {
    line-height: 0;
    margin-bottom: 10px;
}

.post-reaction-button[disabled] {
    color: light-dark(rgb(255 255 255 / 30%), rgba(255, 255, 255, 0.3));
    font-weight: 300;
}

.LC1 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
}

.overlays {
    width: -webkit-fill-available;
    height: -webkit-fill-available;
    position: absolute;
    z-index: 0;
}

.popup-toast-positioning {
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    position: fixed;
    bottom: 10%; 
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 1000000000000;
    pointer-events: none; /* Make the element non-clickable */
}

.popup-toast-positioning.showToast {
    opacity: 1;
}

.postRefresher-button {
    cursor: pointer!important;
    top: 1%;
    left: 50%;
    /*border-bottom: 1px solid #F5F8FA;*/
    color:white;
    z-index: 1500;
    border-radius: 10em;
    width: 182px;
    height: 37.5px;
    padding: 0.25em;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    background-color: rgb(29, 155, 240);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55), background-color 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55), box-shadow 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.postRefresher-button:hover {
    background-color: rgb(26, 140, 216);
    box-shadow: rgba(255, 255, 255, 0.2) 0px 0px 15px, rgba(255, 255, 255, 0.15) 0px 0px 3px 1px;
}

.popup-toast-text {
    padding: 4px 8px;
    background-color: #556576e0;
    color: #fff;
    font-size: 12px;
    white-space: nowrap;
    border-radius: 4px;
    font-weight: 600;
}

.hhopfpandbfm {
    height: 80px;
}

.removeContainer {
    margin-left: -15px;
    margin-right: -15px;
}

.followcircle-a {
    position: relative; 
    z-index:999999; 
    color:black; 
    width: 0;
    display: contents;
    transition: 0.5s;
}
.FollowCircle-1:hover, .FollowCircle-2:hover, .FollowCircle-3:hover {
    opacity: 0.8;
}
.FollowCircle-1 {
    position: relative; 
    z-index: 3;
    /*border: 1px solid black!important;*/
}
.FollowCircle-2 {
    position: relative; 
    z-index: 2;
    margin-left: -15px;
    /*border: 1px solid black!important;*/
}
.FollowCircle-3 {
    position: relative; 
    z-index: 1;
    margin-left: -15px;
    /*border: 1px solid black!important;*/
}
.FollowUsername-1, .FollowUsername-2, .FollowUsername-3 {
    position: absolute;
    transform: translateX(10px);
}

.tweet-container, .inner-tweet-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    /*width: calc(16px * 66); /* Width to fit approximately 66 characters */
}

.tweet-info {
    display: flex;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tweet-user-details {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tweet-name-username {
    display: flex;
    align-items: center;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tweet-content {
    color: white;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tweet-options {
    margin-left: 10px;
    min-width: 20px;
}

.home-circle-button {
    display: inline-block;
    color: #1DA1F2;
    height: 36px;
    text-align: center;
    vertical-align: middle;
    padding: 0.375rem 0.75rem;
    font-size: 15px;
    line-height: 1.5;
    border-radius: 28px 28px 28px 28px;
    -moz-border-radius: 28px 28px 28px 28px;
    -webkit-border-radius: 28px 28px 28px 28px;
    border: 1px solid #1DA1F2;
    cursor: pointer;
    background: transparent;
    font-weight: 700;
    transition: 0.3s;
}

#country-code-for-logo {
    display: flex;
    position: absolute;
    margin-left: 30px;
}

#home-tabs.nav-tabs .nav-link {
    text-decoration: none;
    position: relative;
    display: inline-flex; /* Ensures the link is sized to fit the text only */
    transition: 0.2s;
}

#home-tabs.nav-tabs .nav-link::after {
    content: '';
    position: absolute;
    /*left: 0;
    right: 0;*/
    bottom: 0px; /* Adjust as needed */
    height: 4px; /* Thickness of the underline */
    background-color: rgb(29, 155, 240); /* Color of the underline */
    border-radius: 2px; /* Roundness of the edges */
    transform-origin: center;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}

#home-tabs.nav-tabs .nav-link[data-tab="following"]::after {
    width: 70px; /* Matches the text width */
}

#home-tabs.nav-tabs .nav-link[data-tab="foryou"]::after {
    width: 55px; /* Matches the text width */
}

#home-tabs.nav-tabs .nav-link.active::after {
    transform: scaleX(1);
}

#home-tabs.nav-tabs .nav-link.active {
    background: transparent;
    color: rgb(231, 233, 234) !important;
    font-weight: 700 !important;
}

#home-tabs.nav-tabs .nav-link {
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
}

#home-tabs.nav-tabs .nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    height: 100%;
}

.contain-container-div {
    padding-left: 15em;
    margin-left: 3em;
}

.data-title-left, .data-title-right {
    position: relative;
    cursor: pointer;
}

.data-title-left::before {
    content: attr(data-title);
    position: absolute;
    right: 105%;
    padding: 3px;
    background-color: #556576e0;
    color: #fff;
    font-size: 10px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    border-radius: 4px;
    font-weight: 600;
    z-index: 1000;
    pointer-events: none;
}

.data-title-right::before {
    content: attr(data-title);
    position: absolute;
    left: 105%;
    padding: 3px;
    background-color: #556576e0;
    color: #fff;
    font-size: 10px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    border-radius: 4px;
    font-weight: 600;
    z-index: 1000;
    pointer-events: none;
}

.data-title-bottom-left::before {
    content: attr(data-title);
    position: absolute;
    top: 120%;
    padding: 3px;
    background-color: #556576e0;
    color: #fff;
    font-size: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    border-radius: 4px;
    font-weight: 600;
    z-index: 1000;
    pointer-events: none;
}

.fbr-data-title::before {
    content: attr(data-title);
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 3px;
    background-color: #556576e0;
    color: #fff;
    font-size: 10px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    border-radius: 4px;
    font-weight: 600;
    z-index: 1000;
    pointer-events: none;
}

.data-title-left:hover::before, .data-title-right:hover::before, .data-title-bottom-left:hover::before, .fbr-data-title:hover::before {
    opacity: 1;
    visibility: visible;
}



/* Wallet Page */

.wallet-container {
    width: -webkit-fill-available;
    margin: 20px auto;
    background-color: #14141B;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.wallet-header {
    background-color: #3f51b5;
    color: white;
    padding: 20px;
    gap: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.user-info {
    display: flex;
    align-items: center;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
}

.user-details h2 {
    margin: 0;
    font-size: 18px;
}

.user-details p {
    margin: 0;
    font-size: 14px;
}

.wallet-balance h3 {
    margin: 0;
    font-size: 24px;
    text-align: right;
}

.wallet-balance p {
    margin: 0;
    font-size: 14px;
    text-align: right;
}

.wallet-options {
    display: flex;
    justify-content: space-around;
    padding: 10px;
}

.wallet-option {
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    /* flex: 1; */
    width: 60px;
    border-radius: 4px;
    aspect-ratio: 1;
    transition: 0.5s cubic-bezier(0.46, 0.03, 0.52, 0.96);
}

.wallet-option:hover {
    background: #23232e;
}

.wallet-option img {
    width: 40px;
    height: 40px;
}

.wallet-option p {
    margin-top: 10px;
    font-size: 14px;
}

.recent-transactions {
    padding: 20px;
    border-top: 1px solid #f4f4f4;
}

.recent-transactions h4 {
    margin: 0 0 10px;
    font-size: 16px;
}

.transaction-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f4f4f4;
}

.transaction-item p {
    margin: 0;
    font-size: 14px;
}

/* Reaction Animations */

/* Heart Icon Animation */
@keyframes heart-pulse {
  0% {
    transform: scale(0);
    color: rgb(113, 118, 123);
  }
  50% {
    transform: scale(1.5);
    color: rgb(249, 24, 128);
  }
  80% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}

.liked {
  animation: heart-pulse 0.6s ease forwards;
}

/* Radial Burst Animation */
.burst-circle {
  position: absolute;
  top: 40%;
  left: 35%;
  pointer-events: none;
}

.burst-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: red;
}

.burst-dot.layer1 {
  animation: radial-burst-layer1 0.4s ease-out forwards;
}

.burst-dot.layer2 {
  animation: radial-burst-layer2 0.6s ease-out forwards;
}

.burst-dot.layer3 {
  animation: radial-burst-layer3 0.8s ease-out forwards;
}

/* Bookmark Radial Burst Animation */
.bookmark-burst-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bookmark-burst-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: blue; /* Blue color for bookmark circles */
}

.bookmark-burst-dot.layer1 {
  animation: radial-burst-layer1 0.4s ease-out forwards;
}

.bookmark-burst-dot.layer2 {
  animation: radial-burst-layer2 0.6s ease-out forwards;
}

.bookmark-burst-dot.layer3 {
  animation: radial-burst-layer3 0.8s ease-out forwards;
}

@keyframes radial-burst-layer1 {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(calc(var(--x) * 10px), calc(var(--y) * 10px)) scale(0.5);
  }
}

@keyframes radial-burst-layer2 {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(calc(var(--x) * 15px), calc(var(--y) * 15px)) scale(0.5);
  }
}

@keyframes radial-burst-layer3 {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(calc(var(--x) * 20px), calc(var(--y) * 20px)) scale(0.5);
  }
}


.compose-post-sending-bar, .compose-reply-sending-bar {
  position: relative;
  width: 100%;
  height: 2px;
  background-color: transparent; /* Light gray background */
  overflow: hidden;
}

.compose-post-sending-bar::before, .compose-reply-sending-bar::before {
  content: "";
  position: absolute;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #1DA1F2; /* Twitter blue */
  animation: loading-bar 1.5s ease-in-out infinite;
}

@keyframes loading-bar {
  0% {
    left: -100%;
    width: 30%;
  }
  50% {
    left: 25%;
    width: 50%;
  }
  100% {
    left: 100%;
    width: 30%;
  }
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#loadingContainer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    width: -webkit-fill-available;
    padding: 12px 0;
}

.loader {
  width: 30px;
  height: 30px;
  border: 2px solid rgba(29, 155, 240, 0.2); /* Light blue background */
  border-top: 2px solid rgba(29, 155, 240, 1); /* Darker blue for the spinner */
  border-radius: 50%;
  animation: spin 1s linear infinite;
  box-sizing: border-box;
  display: inline-block;
}

.opacity-0 {
    opacity: 0;
}

.popupUsers {
    height: 0;
}

.nav-right-down-wrap {
    border-radius: 8px;
}

.dndo1300 {
    display: none;
}

.postTweetButton {
    min-height: 32px;
    background: rgb(239, 243, 244)!important;
    color: rgb(15, 20, 25)!important;
    transition: 0.2s!important;
}

.postTweetButton:hover {
    background: rgb(215, 219, 220)!important;
    opacity: 1!important;
}

.postTweetButton:disabled {
    opacity: 0.5!important;
}

.noborderradius {
    border-radius: 0;
}

.resize-nav-tabs {
    justify-content: space-around!important;
    /*padding-bottom: 5px;*/
    overflow-x: scroll;
    overflow-y: hidden;
}

.resize-nav-tabs.nav-tabs .nav-item {
    margin-bottom: 0;
    transition: 0.2s ease;
    width: -webkit-fill-available;
}

.resize-nav-tabs.nav-tabs .nav-item:hover {
    background: rgba(231, 233, 234, 0.1);
}

.nav-item .nav-link {
    height: 53px;
    display: flex;
    justify-content: center;
    padding: 8px 16px;
    align-items: center;
}

.nav-tabs .nav-link.active {
    text-underline-offset: 13px;
}

/*
.resize-nav-tabs {
  display: flex;
  justify-content: center;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  flex-wrap: unset;
}

.resize-nav-tabs .nav-item {
  flex: 0 0 auto;
}
*/

.grid-share-2 {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    align-items: center !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    position: relative !important;
}

.grid-share-2-group-1 {
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
}

.grid-share-2-group-1 div {
    overflow: hidden !important;
    text-overflow: clip !important;
    white-space: nowrap !important;
}

.grid-share-2 .follow-btn {
    margin-left: auto !important;
    z-index: 10 !important;
    position: relative !important;
}

.carousel {
  position: relative;
  width: 100%;
  max-width: 600px;
  overflow: hidden;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease; /* Smooth transition for carousel movement */
    z-index: 100;
}

.carousel-item {
    display: flex!important;
    flex: 0 0 100%;
    transition: transform 0.5s ease;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
}

.carousel img {
  width: 100%;
  display: block;
}

.carousel-control {
    position: absolute;
    width: 35px;
    height: 35px;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(0 0 0 / 50%);
    color: #fff;
    font-size: 14px;
    border-radius: 9999px;
    aspect-ratio: 1/1;
    border: none;
    cursor: pointer;
    z-index: 501;
}

.carousel-control.prev {
  left: 10px;
}

.carousel-control.next {
  right: 10px;
}

/* Hide buttons on devices bigger than mobile */
/*
@media (min-width: 800px) {
  .carousel-counter {
    display: none!important;
  }

  .carousel-counter.always-show {
    display: block;
  }
}
*/

.slide {
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth collapse/expand */
}
.slide.active {
    max-height: 1000px; /* Set this higher than any expected slide content height */
    overflow: visible;
}

.long-pill-button {
    text-decoration: none;
    font-size: 15px;
    color: rgb(231, 233, 234);
    display: block;
    padding: 12px 16px;
    /* border-radius: 5px; */
    cursor: pointer;
    background: none;
    border: none;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
    transition: 0.2s;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 12px;
    transition: 0.2s ease;
}

.long-pill-button:hover {
    background: #161616;
}

.floating-input {
    position: relative;
    width: 100%;
}

.floating-input input {
    background-color: #0f1a1d;        /* dark background */
    border: 1px solid #2c3e40;
    border-radius: 8px;
    padding: 22px 12px 6px 12px;      /* extra top padding for label space */
    font-size: 15px;
    color: #e7e9ea;
    width: 100%;
    outline: none;
}

.floating-input label {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #9aa0a6;                   /* placeholder color */
    font-size: 15px;
    pointer-events: none;             /* label won't block input clicks */
    transition: all 0.2s ease;
}

/* When focused OR input has text, float label up */
.floating-input input:focus + label,
.floating-input input:not(:placeholder-shown) + label {
    top: 12px;
    font-size: 12px;
    color: #3ba3ff;                   /* highlight color when active */
}

/* Remove Bootstrap shadow if using .form-control */
.floating-input input:focus {
    border-color: #3ba3ff;
    box-shadow: none;
}

.paragonnetx-buttonDisabled {
    transition: 0.5s ease;
}

.paragonnetx-buttonDisabled:disabled {
    opacity: 0.4;
}

.buttonToggle{
    width: 50px;
    height: 25px;
    background-color: #dc3545;
    border-radius: 200px;
    cursor: pointer;
    position: relative;
    transition: 0.2s;
}

.buttonToggle::before{
    position: absolute;
    content: "";
    width: 15px;
    height: 15px;
    background-color: #fff;
    border-radius: 200px;
    margin: 5px;
    transition: 0.2s;
}

input:checked + .buttonToggle{
    background-color: #007bff;
}

input:checked + .buttonToggle::before{
    transform: translateX(25px);
    animation-name: toggle;
    animation-duration: 0.8s;
    transition-delay: 0.2s;
}

/* Hide buttons on mobile devices */
@media (max-width: 800px) {
  .carousel-control {
    display: none!important;
  }

  /* Allow override to always show buttons */
  .carousel-control.always-show {
    display: block;
  }
}

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  gap: 5px;
  z-index: 501;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgb(255, 255, 255);
  cursor: pointer;
  transition: background 0.3s ease;
  opacity: 0.4!important;
}

.carousel-dot.active {
  opacity: 1!important;
}

.carousel-counter {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 4px 10px;
    border-radius: 9999px;
    font-size: 11px;
    z-index: 501;
}

.carousel-container {
    position: relative;
}

.carousel-container.fade-elements .carousel-control,
.carousel-container.fade-elements .carousel-dots,
.carousel-container.fade-elements .carousel-counter {
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none; /* Prevent interaction while faded out */
}

.carousel-control,
.carousel-dots,
.carousel-counter {
    opacity: 1;
    transition: opacity 0.5s ease;
}

.gallery {
    display: flex;
    gap: 10px;
    padding: 20px;
}
.gallery img {
    width: 150px;
    cursor: pointer;
    border-radius: 5px;
}
.viewer { 
    display: none; 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%;
    height: 100%; 
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 10000;
}
.viewer img {
    max-width: 90%;
    max-height: 90%;
    transition: transform 0.2s ease;
}
.viewer-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 3px;
}
.viewer-controls button {
    border-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(4px);
    background-color: rgba(0, 0, 0, 0.75);
    border-radius: 9999px;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1;
}
.viewer-close {
    display: flex;
    align-items: center;
    justify-content: center;
    border-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(4px);
    background-color: rgba(0, 0, 0, 0.75);
    border: none;
    padding: 10px;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    color: white;
    cursor: pointer;
    border-color: rgba(0, 0, 0, 0);
    border-radius: 9999px;
    z-index: 1;
    aspect-ratio: 1;
}
.viewer-controls .prev {
    position: absolute;
    left: 5px;
}
.viewer-controls .next {
    position: absolute;
    right: 5px;
}

.flex-sidebar {
    display: flex;
}

.emote-item {
    width: 30%;
    text-align: center;
    padding: 8px;
    background: #1c1c1c;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    aspect-ratio: 2/1;
}

.emote-media {
    width: 100%;
    height: auto;
    border-radius: 4px;
    aspect-ratio: 1;
    object-fit: contain;
}




/* Profile Cards */























































/* Global Important */

#mine .box-user {
    position: relative;
    right: 0;
    bottom: 10px;
    left: 0;
    /* height: 50px; */
    width: auto;
}

#mine .lower-left-boxes {
    position: absolute;
    bottom: 10px;
    width: 100%;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-content: flex-start;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 40px;
}

/* Video Player */

.fp_title {
    font-size: 15px;
    font-weight: 700!important;
    margin: 6px;
    user-select: text;
}

.logo_holder img {
    width: 40px !important;
    height: 40px!important;
    aspect-ratio: 1;
    border-radius: 100%;
    /* Define initial transparent border */
    border: 2px dashed;
    padding: 2px;
    /* Animation for gradient color shift */
    animation: gradient-border-color-shift 10s linear infinite;
    transition: 0.5s;
}

.logo_holder img:hover {
    padding: 2px;
    animation: none;
}

.fluid_controls_ad_markers_holder {
    
}

.fluid_controls_currentprogress.ad-playing-seekbar {
    background: yellow!important;
}

.fluid_ad_playing {
    left: 0!important;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    transform: translateX(-105%);
}

.fluid_ad_playing.show-ad-banner-text {
    transform: translateX(0);
}

.fluid_ad_playing.hide-ad-banner-text {
    transform: translateX(-105%)!important;
}
/*
// Custom Play Button Icon 
.fluid_controls_left .fluid_button_play {
    background-image: url('https://assets.paragonnet.xyz/icons/play-button.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
}

// Custom Pause Button Icon
.fluid_controls_left .fluid_button_pause {
    background-image: url('https://assets.paragonnet.xyz/icons/pause-button.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
}

// Custom Fullscreen Button Icon
.fluid_controls_right .fluid_button_fullscreen {
    background-image: url('https://assets.paragonnet.xyz/icons/fullscreen-button.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
}
*/

.fluid_video_wrapper.fluid_player_layout_default .fluid_controls_container .fluid_button.fluid_button_play:before, .fluid_video_wrapper.fluid_player_layout_default .fluid_controls_container .fluid_button.fluid_button_pause:before, .fluid_video_wrapper.fluid_player_layout_default .fluid_controls_container .fluid_button.fluid_button_skip_back:before, .fluid_video_wrapper.fluid_player_layout_default .fluid_controls_container .fluid_button.fluid_button_skip_forward:before, .fluid_video_wrapper.fluid_player_layout_default .fluid_controls_container .fluid_button.fluid_button_volume:before, .fluid_video_wrapper.fluid_player_layout_default .fluid_controls_container .fluid_button.fluid_button_mute:before, .fluid_video_wrapper.fluid_player_layout_default .fluid_controls_container .fluid_button.fluid_button_video_source:before, .fluid_video_wrapper.fluid_player_layout_default .fluid_controls_container .fluid_button.fluid_button_fullscreen:before, .fluid_video_wrapper.fluid_player_layout_default .fluid_controls_container .fluid_button.fluid_button_fullscreen_exit:before, .fluid_video_wrapper.fluid_player_layout_default .fluid_controls_container .fluid_button.fluid_button_playback_rate:before, .fluid_video_wrapper.fluid_player_layout_default .fluid_controls_container .fluid_button.fluid_button_download:before, .fluid_video_wrapper.fluid_player_layout_default .fluid_controls_container .fluid_button.fluid_button_theatre:before, .fluid_video_wrapper.fluid_player_layout_default .fluid_controls_container .fluid_button.fluid_button_subtitles:before, .fluid_video_wrapper.fluid_player_layout_default .fluid_controls_container .fluid_button.fluid_button_cardboard:before, .fluid_video_wrapper.fluid_player_layout_default .fluid_controls_container .fluid_button.fluid_button_mini_player:before {
    background-image: url('https://assets.paragonnet.xyz/icons/fluidplayer_icons.svg') !important;
    background-repeat: no-repeat!important;
}

#fluid_video_wrapper_video-preview {
    max-height: 500px;
}








/* Others */

.border-dashed-gradient {
    animation: gradient-border-color-shift 10s linear infinite;
    transition: 0.5s;
}

.border-dashed-gradient:hover {
    animation: none;
}

.zoom-in-dark-effect:hover {
    transform: scale(1.1); /* Zoom in by 10% */
    filter: brightness(0.8); /* Darken the image by 20% */
}

.photo-grid-square {
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
}

.photo-grid-rec {
    aspect-ratio: /*16/9*/ 100/49;
    display: flex;
    justify-content: center;
}

.hashtag-li:hover {
    background: #2b3056;
}

@keyframes gradient-border-color-shift {
    0% {
        border-color: #ff6f61;
    }
    7% {
        border-color: #ff9966;
    }
    14% {
        border-color: #ffcc66;
    }
    21% {
        border-color: #ccff66;
    }
    28% {
        border-color: #66ff66;
    }
    35% {
        border-color: #66ffcc;
    }
    42% {
        border-color: #66ccff;
    }
    49% {
        border-color: #6699ff;
    }
    56% {
        border-color: #6666ff;
    }
    63% {
        border-color: #9966ff;
    }
    70% {
        border-color: #cc66ff;
    }
    77% {
        border-color: #ff66cc;
    }
    84% {
        border-color: #ff6699;
    }
    91% {
        border-color: #ff6666;
    }
    100% {
        border-color: #ff6f61;
    }
}

.fluid_controls_currentprogress, .fluid_controls_currentpos, .fluid_initial_play {
    background: linear-gradient(45deg, #ff6f61, #ff9966, #ffcc66, #ccff66, #66ff66, #66ffcc, #66ccff, #6699ff, #6666ff, #9966ff, #cc66ff, #ff66cc, #ff6699, #ff6666);
    background-size: 400% 400%;
    animation: gradient-rotate-organization 10s linear infinite;
}
.fluid_button_playback_rate {
    padding-right: 0!important;
}

.base-svg {
    width: 25px;
    height: 25px;
    fill: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
}

/*@keyframes gradient-rotate-organization {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}*/

@keyframes gradient-rotate-organization {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 50% 100%;
    }
    50% {
        background-position: 95% 45%;
    }
    75% {
        background-position: 50% 0%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.gradient-bg-organization img {
    display: block;
    position: relative;
}

#twitter-widget-1 {
    width: -webkit-fill-available;
}

.twitter-tweet {
    margin: 0!important;
}

@media screen and (min-width: 1600px) {
    #mine .wrapper-left .sidebar-left {
        margin-left: 0px!important;
    }
    #mine .grid-sidebar {
        margin-left: 40px;
    }
    .mmho650o1600 {
        max-height: 650px!important;
    }
}

@media only screen and (max-width: 1600px) and (min-width: 801px) {
    .dndb801and1600 {
        display: block!important;
    }
    .mh80vh801and1600 {
        max-height: 80vh;
    }
    .mh80vho801and1600Imp {
        max-height: 80vh!important;
    }
    .mh95vho801and1600 {
        max-height: 95vh;
    }
}

@media only screen and (max-width: 1600px) {
    .following-birthdays-div {
        padding-left: 0;
    }
    .contain-container-div {
        padding-left: 0;
    }
    #country-code-for-logo {
        margin-left: 14px;
        margin-top: 21px;
    }
}

@media only screen and (max-width: 1210px) {
    .resize-nav-tabs {
        /*justify-content: flex-start!important;*/
        /*padding-bottom: 5px;*/
        overflow-x: scroll;
        overflow-y: hidden;
    }
}

@media only screen and (max-width: 1300px) {
    .dndo1300 {
        display: block;
    }
}

@media screen and (min-width: 800px) {
    .mmho650 {
        max-height: 650px!important;
    }
    .overflow-y-allow-on-800px-more {
        overflow-y: auto!important;
    }
    .overflow-y-allow-on-800px-less {
        overflow-y: hidden!important;
    }
}

@media only screen and (max-width: 800px) {
    ::-webkit-scrollbar {
        width: 0;
        height: 0;
    }
    .overflow-y-allow-on-800px-more {
        overflow-y: hidden!important;
    }
    .overflow-y-allow-on-800px-less {
        overflow-y: auto!important;
    }
    .display-on-mobile{
     display:block;
    }
    .display-on-mobile-search{
        display:flex;
    }
    .logo_holder img {
    width: 30px !important;
    height: 30px!important;
    }
    .fp_title {
    font-size: 13px!important;
    margin: 4px;
    }
    .odo800wd {
        display: block!important;
    }
    .mfufmv2 {
        margin: 0!important;
        padding: 0!important;
    }
    .mdufmv2 {
        width: -webkit-fill-available!important;
        max-width: -webkit-fill-available!important;
        /*height: -webkit-fill-available!important;*/
        margin: 0!important;
        padding: 0!important;
        border-radius: 0!important;
    }
    .mdufmv2s {
        width: -webkit-fill-available!important;
        max-width: -webkit-fill-available!important;
        height: -webkit-fill-available!important;
        margin: 0!important;
        padding: 0!important;
        border-radius: 0!important;
    }
    .mcufmv2 {
        width: -webkit-fill-available!important;
        max-width: -webkit-fill-available!important;
        height: -webkit-fill-available!important;
        margin: 0!important;
        padding: 0!important;
        border-radius: 0!important;
        border: none!important;
        display: flex;
        justify-content: center;
        align-content: center;
        flex-wrap: wrap;
    }
    .mbufmv2 {
        flex: none;
    }
    .dndopc {
        display: block;
    }
    .mmho650 {
        max-height: -webkit-fill-available!important;
    }
}

@media screen and (min-width: 500px) {
    .border-sides-opc {
        border-left: 1px solid rgb(47, 51, 54);
        border-right: 1px solid rgb(47, 51, 54);
    }
    .npopc {
        padding: 0!important;
    }
    .odoMaxW500 {
        display: none!important;
    }
    .no-mt-2-om {
        margin-top: 0.5rem;
    }
    .mh80vhopc {
        max-height: 80vh;
    }
    .mh80vhopcImp {
        max-height: 80vh!important;
    }
    .mh95vhopc {
        max-height: 95vh;
    }
    #home-tabs.nav-tabs .nav-link:hover {
        background: rgba(231, 233, 234, 0.1);
    }
    .overflow-y-allow-on-500px-more {
        overflow-y: auto!important;
    }
    .overflow-y-allow-on-500px-less {
        overflow-y: hidden!important;
    }
}

@media screen and (max-width: 500px) {
    html {
        overflow-x: hidden;
    }
    
    body {
        overflow-x: hidden;
    }
    .display-on-mobile{
     display:block;
    }
    .display-on-mobile-search{
    display:flex;
    }
    .fluid_button_volume, .fluid_control_volume_container, .fluid_button_mute, .fluid_control_mute {
        /*display: none!important;*/
    }
    .fluid_control_duration, .fluid_fluid_control_duration {
        left: 90px!important;
    }
    .fluid_control_mini_player, .fluid_button_mini_player {
        display: none!important;
    }
    .logo_holder img {
    width: 20px !important;
    height: 20px!important;
    }
    .fp_title {
    font-size: 11px!important;
    margin: 2px;
    }
    .dndom {
        display: none!important;
    }
    .following-birthdays-div {
        margin-left: 0;
    }
    .mfufmv3 {
        margin: 0!important;
        padding: 0!important;
    }
    .mdufmv3 {
        width: -webkit-fill-available!important;
        max-width: -webkit-fill-available!important;
        /*height: -webkit-fill-available!important;*/
        margin: 0!important;
        padding: 0!important;
        border-radius: 0!important;
    }
    .mdufmv3s {
        width: -webkit-fill-available!important;
        max-width: -webkit-fill-available!important;
        height: -webkit-fill-available!important;
        margin: 0!important;
        padding: 0!important;
        border-radius: 0!important;
    }
    .mdufmv3st0mh100 {
        width: -webkit-fill-available!important;
        max-width: -webkit-fill-available!important;
        height: -webkit-fill-available!important;
        margin: 0!important;
        padding: 0!important;
        border-radius: 0!important;
        /*top: 0!important;*/
        max-height: -webkit-fill-available!important;
    }
    .mdufmv3t0mh100 {
        width: -webkit-fill-available!important;
        max-width: -webkit-fill-available!important;
        margin: 0!important;
        padding: 0!important;
        border-radius: 0!important;
        top: 0!important;
    }
    .mcufmv3 {
        width: -webkit-fill-available!important;
        max-width: -webkit-fill-available!important;
        height: -webkit-fill-available!important;
        margin: 0!important;
        padding: 0!important;
        border-radius: 0!important;
        border: none!important;
        display: flex;
        justify-content: center;
        align-content: center;
        flex-wrap: wrap;
    }
    .mcufmv3t0mh100 {
        width: -webkit-fill-available!important;
        max-width: -webkit-fill-available!important;
        height: -webkit-fill-available!important;
        margin: 0!important;
        padding: 0!important;
        border-radius: 0!important;
        border: none!important;
        display: flex;
        justify-content: flex-start;
        align-content: center;
        flex-wrap: wrap;
        top: 0!important;
        max-height: -webkit-fill-available!important;
    }
    .mbufmv3 {
        flex: none;
    }
    .mpfnv2 {
        padding: 0 32px;
    }
    .fs-15-fs-11-fm {
        font-size: 11px;
    }
    .fs-15-fs-14-fm {
        font-size: 14px;
    }
    .fs-20-fs-17-fm {
        font-size: 17px;
    }
    .fs-21-fs-18-fm {
        font-size: 18px;
    }
    .wandh-21-wandh-18-fm {
        width: 18px;
        height: 18px;
    }
    .dndopcW500 {
        display: block;
    }
    .dndopcW500flex {
        display: flex;
    }
    .psom {
        background: black;
        background-color: black;
        padding: 0px 16px;
        border-top: none;
        border-bottom: none;
        margin: 0!important;
        border-radius: 0!important;
    }
    .psom:hover {
        background: black;
        background-color: black;
    }
    .psomStack {
        background: transparent;
        background-color: transparent;
        border-radius: 0;
        border-top: 1px solid rgb(47, 51, 54);
        border-bottom: 1px solid rgb(47, 51, 54);
        /*margin-left: -3%!important;
        margin-right: -3%!important;*/
        border-bottom: none;
        margin-bottom: 0;
        margin-top: 0!important;
    }
    .rbbmfm {
        margin: 0 -15px;
    }
    .storyAuthorUsernamePreview {
        padding: 8px 4px!important;
        font-size: .8125rem!important;
        font-weight: 600!important;
    }
    .stories-full-view {
      position: fixed;
      inset: 0;
      z-index: 1000;
      background: rgba(0, 0, 0, 0.8);
      display: grid!important; /* Change display to grid so it can animate */
      place-items: center;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      transform: translateX(-100%); /* Start from the left */
    }
    
    .stories-full-view.active {
      transform: translateX(0); /* Move to the center */
    }
    
    .stories-full-view.exiting {
      transform: translateX(100%); /* Move to the right */
    }
    
    .popup-toast-text {
        font-size: 15px;
    }
    
    .fullwom {
        width: 100%;
    }
    
    .nopadom {
        padding: 0;
    }
    
    .noborderradiusom {
        border-radius: 0;
    }
    
    .ar3by1om {
        aspect-ratio: 3/1;
    }
    
    .pfpoppom {
        width: 80px!important;
        height: 80px;
        aspect-ratio: 1;
    }
    .hhopfpandbfm {
        height: 40px;
    }
    .removeContainerFM {
        margin-left: -15px;
        margin-right: -15px;
    }
    .border-sides-nom {
        border-left: none;
        border-right: none;
    }
    .border-tb-v-nom {
        border-top: none;
        border-bottom: none;
    }
    .border-nom {
        border: none;
    }
    .contain-container-div {
        margin-left: 0!important;
    }
    .dropdown-content {
        display: inline-block;
        width: -webkit-fill-available;
        /* height: 100px; */
        color: white;
        background-color: /*#151728*/black;
        border-radius: 12px;
        position: fixed;
        z-index: 10001;
        left: 0%;
        top: unset!important;
        bottom: 0;
        transform: translate(0px, 100%);
        border: none;
        box-shadow: none;
        transition: 0.5s transform cubic-bezier(0.4, 0, 0.2, 1);
        
        height: unset;
        min-height: unset;
        max-height: unset; /* Ensures it doesn't exceed the viewport height */
        overflow: unset;
    }
    .dropdown-content.show {
        display: inline-block!important;
        border-radius: 12px 12px 0px 0px;
        transform: translate(0px, 0%);
    }
    .burst-circle {
      top: 35%;
      left: 30%;
    }
    .spotify-song-preview-frame {
        height: 352px;
    }
    .mobile-modal-dialog {
        max-width: unset!important;
        min-height: -webkit-fill-available;
        align-items: flex-end;
        margin: 0;
    }
    .mobile-modal-content {
        border-radius: 12px 12px 0px 0px!important;
        border: none!important;
    }
    .modal.mobile-modal.fade .mobile-modal-content {
        transform: translate(0px, 100%);
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .modal.mobile-modal.fade.show .mobile-modal-content{
        transform: translate(0px, 0%);
    }
    /*.retweet-div {
        display: inline-block!important;
        width: -webkit-fill-available!important;
        color: white!important;
        background-color: black!important;
        border-radius: 12px!important;
        position: fixed!important;
        z-index: 10001!important;
        left: 0%!important;
        right: unset!important;
        top: unset!important;
        bottom: 0!important;
        border: none!important;
        box-shadow: none!important;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1)!important;
    }*/
    /*
    .retweet-popup-body-wrap {
        transform: unset;
    }
    */
    .overflow-y-hidden-on-500px-less {
        overflow-y: hidden!important;
    }
    .no-padding-on-mobile {
        padding: 0!important;
    }
    .pt-0px-om {
        padding-top: 10px!important;
    }
    .carousel-dot {
        width: 5px;
        height: 5px;
    }
    .slide {
        transition: none; /* Smooth collapse/expand */
    }
}

@media screen and (max-width: 450px) {
    .resize-nav-tabs {
        justify-content: flex-start!important;
        /*padding-bottom: 5px;*/
        overflow-x: scroll;
        overflow-y: hidden;
    }
    /* Custom scrollbar styles */
    .resize-nav-tabs::-webkit-scrollbar {
        height: 0px!important;
    }
    
    .resize-nav-tabs::-webkit-scrollbar-track {
    }
    
    .resize-nav-tabs::-webkit-scrollbar-thumb {
        background-color: #151728 !important; /* Thumb color */
    }
    
    .resize-nav-tabs::-webkit-scrollbar-thumb:hover {
    }
}