/******************************
	Basic
**********************************/
/******************************
	Basic & 2026 Variables
**********************************/
:root {
	--layout-sidebar-width: 240px;
	--ig-gradient-animated: linear-gradient(45deg, #5900ff, #ff00fc, #ff1b1b, #5900ff);
	--text-main: #1a1a1a;
	--text-muted: #8e8e8e;
	--bg-page: #f8f9fb;
	--bg-card: #ffffff;
	--border-light: rgba(0, 0, 0, 0.06);
	--glass-bg: rgba(255, 255, 255, 0.85);
	--glass-blur: blur(12px);
}

/************************************
    Animations (Liées aux variables)
************************************/
@keyframes gradientGlow {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

@keyframes pulseHeartbeat {
	0% { transform: scale(1); }
	50% { transform: scale(1.1); }
	100% { transform: scale(1); }
}

body {
	font-size: 14px;
	background-color: var(--bg-page);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: var(--text-main);
	height: 100%;
}

.ossn-required { 
	color: #ed4956; 
}

::-webkit-scrollbar { 
	width: 12px; 
}

::-webkit-scrollbar-track { 
	background-color: var(--bg-page); 
	border-left: 1px solid var(--border-light); 
}

::-webkit-scrollbar-thumb { 
	background-color: #ccc; 
	border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover { 
	background-color: #aaa; 
}

.ossn-form input[type='number'], 
.ossn-form input[type='email'], 
.ossn-form input[type='password'],
.ossn-form text, 
.ossn-form select, 
.ossn-form textarea, 
.ossn-form input[type='text'] {
	width: 100%; 
	padding: 12px 15px; 
	margin-bottom: 8px; 
	outline: none; 
	display: block; 
	resize: vertical;
	border-radius: 12px; 
	box-shadow: inset 0 2px 4px rgba(0,0,0,0.02); 
	background: var(--bg-card);
	border: 2px solid transparent; 
	height: auto; 
	transition: all 0.3s ease; 
	color: var(--text-main);
}

.ossn-form input[type='number']:focus, 
.ossn-form input[type='email']:focus, 
.ossn-form input[type='password']:focus,
.ossn-form text:focus, 
.ossn-form select:focus, 
.ossn-form textarea:focus, 
.ossn-form input[type='text']:focus {
	outline: none; 
	border: 2px solid #ff00fc; 
	box-shadow: 0 0 0 4px rgba(255, 0, 252, 0.15); 
	background: #fff;
}

.ossn-form select[readonly], 
.ossn-form textarea[readonly], 
.ossn-form input[readonly] { 
	background: #eee; 
}

.ossn-form input[type="file"] { 
	display: block; 
}

.btn:focus, 
.btn:active { 
	outline: none !important; 
}

.btn-link { 
	font-weight: 600; 
	color: #0095f6; 
}

.form-control { 
	height: initial; 
}

.ossn-form-group-half { 
	display: inline-block; 
	width: calc(50% - 2px); 
	float: left; 
	box-sizing: border-box; 
}

.radio-block-container { 
	margin-bottom: 20px; 
}

.ossn-form input[type='submit'] { 
	margin-top: 5px; 
	margin-bottom: 5px; 
}

.ossn-red-borders { 
	border: 1px solid #ed4956 !important; 
}

.fa, 
.fas, 
.far, 
.fal, 
.fad, 
.fab { 
	margin-right: 5px; 
}

.hidden, 
.ossn-hidden { 
	display: none !important; 
}

p { 
	font-size: 15px; 
}

.col-center { 
	float: none; 
	margin: 0 auto; 
}

.container-table { 
	display: table; 
	width: 100%; 
}

.center-row { 
	display: table-cell; 
	text-align: center; 
}

.checkbox-block, 
.radio-block { 
	margin-top: 10px; 
	margin-bottom: 10px; 
}

.checkbox-block span, 
.radio-block span { 
	display: inline-block; 
	margin-right: 10px; 
	font-size: 14px; 
	font-weight: 600; 
	margin-left: 10px; 
	cursor: pointer; 
}

.ossn-checkbox-input {
	width: 20px; 
	height: 20px; 
	border: 2px solid var(--border-light); 
	background-color: transparent;
	-webkit-appearance: none; 
	border-radius: 6px; 
	outline: 0; 
	flex-grow: 0; 
	transition: all 0.3s;
	cursor: pointer; 
	float: left; 
	margin-top: 2px;
}

.checkbox-block [type=checkbox]::before { 
	content: ""; 
	color: transparent; 
	display: block; 
	width: inherit; 
	height: inherit; 
	border-radius: inherit; 
	border: 0; 
	background-color: transparent; 
	background-size: contain; 
}

.checkbox-block [type=checkbox]:checked { 
	background: var(--ig-gradient-animated); 
	background-size: 300% 300%; 
	animation: gradientGlow 3s ease infinite; 
	border-color: transparent;
}

.checkbox-block [type=checkbox]:checked::before { 
	box-shadow: none; 
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E %3Cpath d='M15.88 8.29L10 14.17l-1.88-1.88a.996.996 0 1 0-1.41 1.41l2.59 2.59c.39.39 1.02.39 1.41 0L17.3 9.7a.996.996 0 0 0 0-1.41c-.39-.39-1.03-.39-1.42 0z' fill='%23fff'/%3E %3C/svg%3E"); 
}

.checkbox-block [type=checkbox]:disabled { 
	background-color: #CCD3D8; 
	opacity: 0.84; 
	cursor: not-allowed; 
}

a { 
	color: var(--text-main); 
	text-decoration: none; 
}

/************************************
	Layouts
************************************/

.ossn-layout-module, 
.ossn-layout-contents, 
.ossn-layout-media, 
.ossn-layout-newsfeed { 
	margin-top: 10px; 
	min-height: 400px; 
}

.ossn-layout-newsfeed .ossn-layout-newsfeed { 
	justify-content: center; 
}

.ossn-home-container { 
	z-index: 1; 
	position: relative; 
	margin-top: 20px; 
	min-height: 560px; 
}

.ossn-layout-startup { 
	min-height: 560px; 
}

.ossn-home-container .ossn-page-contents { 
	background: rgba(255, 255, 255, 0); 
	border: 1px solid rgba(238, 238, 238, 0); 
}

.ossn-layout-startup-background { 
	min-height: 560px; 
	background: url("https://streetinstant.fr/themes/si_theme/images/background.jpg") no-repeat; 
	background-size: cover; 
}

.ossn-layout-startup .col-lg-11 { 
	width: 100%; 
}

.ossn-layout-startup footer .ossn-footer-menu a { 
	color: #fff; 
}

.ossn-layout-newsfeed .newsfeed-right {}

.ossn-page-container { 
	overflow-x: hidden; 
	min-height: 400px; 
}

.ossn-layout-module {
	margin-top: 10px; 
	margin-bottom: 10px; 
	background-color: var(--bg-card);
	border: 1px solid var(--border-light); 
	border-radius: 16px; 
	box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.ossn-layout-module .module-title { 
	background: #fff; 
	border-bottom: 1px solid var(--border-light); 
	padding: 15px; 
	border-top-right-radius: 16px; 
	border-top-left-radius: 16px; 
}

.ossn-layout-module .module-contents { 
	padding: 15px; 
}

.ossn-layout-module .module-title .title { 
	font-weight: 800; 
	display: inline-block; 
	color: var(--text-main);
}

.ossn-layout-module .controls { 
	float: right; 
	display: inline-table; 
}

.ossn-layout-media { 
	margin-top: 10px; 
}

.ossn-layout-media .like-share, 
.ossn-layout-media .comments-list { 
	margin-left: -15px; 
	margin-right: -15px; 
}

.ossn-layout-media .content, 
.ossn-page-contents { 
	background: #fff; 
	padding: 15px; 
	border: 1px solid var(--border-light); 
	border-radius: 16px; 
}

.opensource-socalnetwork { 
	min-height: 500px; 
}

.ossn-home-container .row { 
	margin-right: 10px; 
	margin-left: 10px; 
}

#ossn-signup-errors { 
	display: none; 
	margin-top: 10px; 
}

.ossn-error-page { 
	text-align: center; 
	padding: 100px; 
}

.ossn-error-page .error-heading { 
	font-size: 50px; 
	font-weight: 800; 
}

.ossn-error-page .error-text { 
	font-size: 16px; 
}

.ossn-error-page .fa-exclamation-triangle { 
	font-size: 100px; 
	color: #ed4956;
}

.ossn-group-members { 
	margin-right: 5px; 
}

.ossn-page-loading-annimation { 
	background: #fff; 
	position: fixed; 
	left: 0px; 
	top: 0px; 
	width: 100%; 
	height: 100%; 
	z-index: 9999; 
}

.ossn-page-loading-annimation .ossn-page-loading-annimation-inner { 
	width: 24px; 
	margin: 0 auto; 
	margin-top: 20%; 
}

.newsfeed-middle-top { 
	display: none; 
	background-color: var(--bg-card); 
	border: 1px solid var(--border-light); 
	border-radius: 16px; 
	margin-top: 2px; 
	margin-bottom: 20px; 
	padding: 15px; 
}

/*******************************
	Topbar	
********************************/

.topbar {
	background: var(--glass-bg); 
	backdrop-filter: var(--glass-blur); 
	-webkit-backdrop-filter: var(--glass-blur);
	color: var(--text-main); 
	z-index: 1001; 
	position: sticky; 
	top: 0; 
	height: 60px; 
	border-bottom: 1px solid var(--border-light);
	box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.topbar .fa {
	font-size: 22px; 
	margin-top: 6px; 
	color: var(--text-main); 
	transition: transform 0.2s; 
}

.topbar .fa:hover { 
	transform: scale(1.1); 
}

.topbar .site-name a {
	text-transform: none; 
	font-size: 24px; 
	padding: 15px 10px; 
	display: block; 
	font-weight: 900; 
	letter-spacing: -1px;
	background: var(--ig-gradient-animated); 
	background-size: 300% 300%; 
	animation: gradientGlow 6s ease infinite;
	-webkit-background-clip: text; 
	-webkit-text-fill-color: transparent;
}

.topbar .site-name a:hover {
	text-decoration: none;
}

.topbar-menu-left {
	position: relative;
	z-index: 1;
}

.topbar-menu-right ul {
	margin-bottom: 0px;
}

.topbar-menu-right li,
.topbar-menu-left li {
	display: inline-block;
}

.topbar-menu-right li a:not(.topbar-menu-right li .dropdown-item),
.topbar-menu-left li a {
	padding: 15px 10px; 
	display: block; 
	color: var(--text-main);
}

.topbar-menu-right li:hover,
.topbar-menu-left li:hover {
	cursor: pointer;
	background-color: rgba(0,0,0,0.03);
}

.topbar .right-side-nospace .topbar-menu-right {
	margin-right: 0px;
	transition: all 0.5s ease;
}

.topbar .right-side-space .topbar-menu-right {
	margin-right: 10px;
	transition: all 0.5s ease;
}

.topbar .ossn-icons-topbar-friends i, 
.topbar .ossn-icons-topbar-messages i, 
.topbar .ossn-icons-topbar-notification i { 
	color: var(--text-main) !important; 
}

.topbar .ossn-icons-topbar-friends-new i, 
.topbar .ossn-icons-topbar-messages-new i, 
.topbar .ossn-icons-topbar-notifications-new i {
	background: var(--ig-gradient-animated); 
	background-size: 300% 300%; 
	animation: gradientGlow 3s ease infinite;
	-webkit-background-clip: text; 
	-webkit-text-fill-color: transparent; 
	transform: scale(1.1);
}

.topbar .left-side {
	left: 0;
}

.topbar .right-side {
	right: 0;
}

.topbar .site-name {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	position: absolute;
}

.topbar .site-name,
.topbar .right-side {
	position: absolute;
}

/************************************************
   Topbar Dropdown and Post+Comment menu icons
*************************************************/
/**********************************************
[B] Icons for comment edit and delete on photo view not showing #2416
***********************************************/
.ossn-comment-menu .dropdown-menu li a:before,
.ossn-wall-item .dropdown-menu li a:before,
.ossn-topbar-dropdown-menu ul li a:before {
	content: "\f068";
	display: inline-block;
	float: left;
	margin-right: 10px;
	font-family: var(--fa-style-family, "Font Awesome 6 Free");
	font-weight: var(--fa-style, 900);
	color: var(--text-main);
}

.ossn-wall-item>.dropdown-menu {
	min-width: 200px;
}

.menu-topbar-dropdown-administration:before {
	content: "\f085" !important;
	color: var(--text-main);
}

.menu-topbar-dropdown-account_settings:before {
	content: "\f4fe" !important;
	color: var(--text-main);
}

.menu-topbar-dropdown-logout:before {
	content: "\f011" !important;
	color: var(--text-main);
}

.ossn-edit-comment:before,
.ossn-wall-item .post-control-edit:before {
	content: "\f303" !important;
}

.ossn-delete-comment:before,
.ossn-wall-item .post-control-delete:before {
	content: "\f2ed" !important;
}

.ossn-topbar-dropdown-menu {
	float: right;
}

.comment-metadata .dropdown-item {
	padding: 0.4rem 1rem;
}

.ossn-topbar-dropdown-menu ul li a,
.ossn-topbar-dropdown-menu ul li {
	display: block;
	width: 100%;
	color: var(--text-main);
	font-weight: 600;
}

.ossn-topbar-dropdown-menu .dropdown-menu {
	margin: 10px -120px 0;
	min-width: 220px;
	border: 1px solid var(--border-light);
	border-radius: 16px;
	background: var(--glass-bg);
	backdrop-filter: var(--glass-blur);
	padding: 5px;
	box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.ossn-topbar-dropdown-menu ul li a:hover {
	background: var(--bg-page);
	border-radius: 8px;
}

/***********************************
	Ossn Wall - 2026 GLOW & VIBRANT
*************************************/

.ossn-wall {}

.ossn-wall-items {}

/* Rendu des posts type "cartes" ultra modernes */
.ossn-wall-item {
	padding: 0px; 
	margin-top: 30px; 
	background-color: var(--bg-card);
	border: 1px solid rgba(255, 0, 252, 0.1); /* Bordure subtilement rosée */
	border-radius: 24px; /* Angles plus doux et joyeux */
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04); 
	overflow: hidden; 
	transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease; /* Effet rebond au survol */
}

/* Ombre colorée très pop au survol */
.ossn-wall-item:hover { 
	transform: translateY(-5px); 
	box-shadow: 0 20px 40px rgba(255, 0, 252, 0.15), 0 0 20px rgba(89, 0, 255, 0.1); 
}

.ossn-wall-item:first-child {
	margin-top: 0px;
}

.ossn-wall-item .friends a {
	text-decoration: none;
}

.ossn-wall-item .friends a:first-child:before {
	content: "-";
	margin-left: 5px;
	margin-right: 5px;
}

.ossn-wall-item .meta { 
	padding: 20px 25px; 
	border-bottom: 1px solid rgba(0,0,0,0.02);
}

/* L'avatar de l'utilisateur qui pète avec le dégradé */
.ossn-wall-item .user-img {
	border-radius: 50%; 
	display: inline-block; 
	float: left; 
	margin-right: 15px; 
	width: 52px; 
	height: 52px; 
	object-fit: cover;
	padding: 3px; 
	background: var(--ig-gradient-animated); 
	background-size: 300% 300%; 
	animation: gradientGlow 3s ease infinite;
	border: 2px solid #fff; 
	box-shadow: 0 6px 20px rgba(255, 27, 27, 0.25); /* Ombre rouge/rose */
}

.ossn-wall-item .meta .user {
	margin-top: 8px;
}

.ossn-wall-item .meta .user a {
	font-weight: 900; 
	color: var(--text-main) !important; 
	font-size: 16px;
	transition: color 0.2s ease;
}

.ossn-wall-item .meta .user a:hover {
	color: #ff00fc !important; /* Devient rose au survol */
}

.ossn-wall-item .meta .user span {
	color: var(--text-muted); 
	font-size: 13px;
}

.ossn-wall-item .post-contents {
	margin-top: 0px;
}

.ossn-wall-item .post-contents p {
	word-break: break-word; 
	text-align: left; 
	padding: 0 25px 25px 25px; 
	font-size: 16px; 
	color: var(--text-main); 
	line-height: 1.6;
}

.ossn-wall-item .post-contents img {
	width: 100%; 
	max-width: 100%; 
	border: none; 
	display: block; 
	margin-bottom: 0px;
}

.ossn-wall-item .meta .post-menu {
	float: right; 
	margin-top: 5px;
}

.ossn-wall-item .meta .post-menu .btn-link {
	font-size: 22px; 
	color: var(--text-muted);
	transition: transform 0.2s, color 0.2s;
}

.ossn-wall-item .meta .post-menu .btn-link:hover {
	color: #ff1b1b;
	transform: scale(1.1);
}

/* La boite de création de post */
.ossn-wall-container {
	margin-bottom: 30px; 
	border-radius: 24px; 
	border: 1px solid rgba(89, 0, 255, 0.1); 
	background: var(--bg-card);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04); 
	transition: all 0.4s ease;
}

/* Focus coloré et brillant quand on tape un statut */
.ossn-wall-container:focus-within { 
	box-shadow: 0 0 0 3px rgba(255, 0, 252, 0.2), 0 15px 40px rgba(255, 0, 252, 0.1); 
	transform: translateY(-2px);
}

.ossn-wall-container textarea {
	width: 100%; 
	padding: 25px; 
	border: 0; 
	outline: none; 
	background: transparent; 
	border-radius: 0; 
	font-size: 18px; /* Plus grand pour plus de pepse */
	font-weight: 500;
	color: var(--text-main);
	resize: none;
	overflow-y: auto;
	box-sizing: border-box;
	line-height: 1.5;
	min-height: 90px;
	max-height: 250px;
	transition: none;
	margin-left: 0;
}

.ossn-wall-container textarea::placeholder {
	color: rgba(142, 142, 142, 0.6);
}

.ossn-wall-container textarea:focus {
	border: none;
}

.ossn-wall-container .controls {
	background-color: transparent; 
	margin-top: 0px; 
	border-top: 1px solid var(--border-light); 
	padding: 15px 25px; 
	border-bottom-left-radius: 24px; 
	border-bottom-right-radius: 24px; 
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.ossn-wall-container .wall-tabs {
	background-color: transparent; 
	border-bottom: 1px solid var(--border-light); 
	border-top-right-radius: 24px; 
	border-top-left-radius: 24px; 
}

.ossn-wall-container .wall-tabs .item {
	padding: 18px 25px; 
	display: inline-flex; 
	cursor: pointer; 
}

.ossn-wall-container .wall-tabs .item:hover {
	background: rgba(255, 0, 252, 0.03); /* Hover subtil rose */
}

.ossn-wall-container .wall-tabs .item:first-child {
	border-top-left-radius: 24px;
}

.ossn-wall-container .wall-tabs .item div {
	display: inline-block;
}

.ossn-wall-container .wall-tabs .item .text {
	font-weight: 800; 
	margin-top: 1px; 
	margin-left: 8px; 
	position: absolute;
	font-size: 15px; 
	color: var(--text-main);
}

.ossn-wall-container .tabs-input {}

.ossn-wall-container .controls ul {
	margin: 0;
	padding: 0;
	display: flex;
	gap: 10px;
}

.ossn-wall-container .controls li {
	padding: 10px; 
	background: rgba(89, 0, 255, 0.05); /* Fond légèrement violet par défaut */
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%; 
	cursor: pointer; 
	width: 45px; 
	height: 45px; 
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Icônes de contrôle (Photo, Position, etc.) avec le dégradé */
.ossn-wall-container .controls li .fa,
.ossn-wall-container .controls .ossn-wall-friend,
.ossn-wall-container .controls .ossn-wall-location,
.ossn-wall-container .controls .ossn-wall-photo,
.ossn-wall-container-control-menu-emojii-selector {
	font-size: 18px;
	background: var(--ig-gradient-animated);
	background-size: 300% 300%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.ossn-wall-container .controls li:hover {
	background: rgba(255, 0, 252, 0.15); 
	transform: scale(1.15) rotate(5deg); /* Petit effet de rotation fun */
}

.ossn-wall-post-button-container {
	display: flex;
	align-items: center;
	gap: 10px;
}

.ossn-wall-privacy-dummy,
.ossn-wall-privacy {
	padding: 8px 15px; 
	background: rgba(0,0,0,0.03); 
	border-radius: 12px; 
	cursor: pointer; 
	display: flex;
	align-items: center;
	color: var(--text-main);
	font-weight: 600;
	transition: background 0.2s;
}

.ossn-wall-privacy-dummy {
	cursor: initial; 
	opacity: 0.5; 
}

.ossn-wall-privacy:hover {
	background: rgba(89, 0, 255, 0.08); /* Hover teinté */
	color: #5900ff;
}

.ossn-wall-privacy-dummy span>span,
.ossn-wall-privacy span>span {
	margin-left: 8px;
}

/* LE BOUTON PUBLIER QUI PÈTE ! */
.ossn-wall-container input[type='submit'] {
	padding: 10px 28px; 
	margin: 0; 
	border-radius: 50px; 
	background: var(--ig-gradient-animated);
	background-size: 300% 300%;
	animation: gradientGlow 3s ease infinite;
	color: #fff;
	border: none;
	font-weight: 900;
	font-size: 15px;
	cursor: pointer;
	box-shadow: 0 8px 20px rgba(255, 0, 252, 0.3);
	transition: all 0.3s ease;
}

.ossn-wall-container input[type='submit']:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 25px rgba(255, 27, 27, 0.4);
}

.ossn-wall-container i {
	font-size: 15px;
	margin-right: 0;
}

.ossn-wall-container-data {
	background: #fff; 
	padding: 15px; 
	border-bottom-left-radius: 24px; 
	border-bottom-right-radius: 24px; 
	border: 1px solid var(--border-light);
	border-top: none;
}

#ossn-wall-photo {
	margin-top: 15px;
}

.ossn-wall-container input[type="file"],
.ossn-wall-container input[type="text"] {
	width: 100%; 
	border-top: 1px dashed rgba(255, 0, 252, 0.3); /* Ligne de séparation rosée */
	padding: 10px; 
	margin-bottom: 5px; 
	margin-top: -5px; 
	outline: none; 
}

.ossn-wall-container input[type="file"] {
	border: 1px solid rgba(89, 0, 255, 0.2); 
	border-radius: 16px; 
	background: rgba(89, 0, 255, 0.02); 
	color: var(--text-main);
	font-weight: 600;
}

#token-input-ossn-wall-friend-input {
	width: 100% !important; 
	padding: 10px; 
	margin-bottom: 5px; 
	margin-top: -5px; 
	background: #fff; 
	border: 0; 
}

#ossn-wall-location-input {
	background: #fff; 
	border: 1px solid var(--border-light); 
	border-radius: 12px; 
	padding: 10px;
}

#ossn-wall-location .ap-input-icon svg {
	top: 15px
}

#ossn-wall-form .ossn-loading {
	margin: 7px;
}

.ossn-wall-item-type {
	display: inline-block;
}

.ossn-wall-item .friends {
	display: inline-block;
}

/*******************************
	Comments Likes - 2026 GLOW & VIBRANT
********************************/

.ossn-comment-menu {
	float: right;
	margin-left: 10px;
}

.comments-item:hover .ossn-comment-menu {
	display: block;
	margin-left: 10px;
}

.comments-likes {
	width: 100%;
	padding: 15px 25px; /* On aère la zone */
	border-top: 1px solid rgba(0,0,0,0.02);
}

.menu-likes-comments-share {
	margin-bottom: 10px;
	display: flex; /* Layout moderne */
	gap: 20px; /* Espace propre entre les boutons */
	align-items: center;
}

.menu-likes-comments-share li {
	display: inline-flex;
	align-items: center;
	transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	font-weight: 700;
	color: var(--text-muted);
	cursor: pointer;
}

/* Hover pop ultra coloré sur J'aime / Commenter */
.menu-likes-comments-share li:hover {
	color: #ff00fc; 
	transform: scale(1.05);
}

/* On supprime les vieux tirets moches */
.menu-likes-comments-share li::after {
	content: none !important;
}

.comments-list {
	background-color: rgba(248, 249, 251, 0.6); /* Fond très doux pour faire ressortir les bulles */
	margin-left: -25px; /* Pour s'aligner avec le padding du mur */
	margin-right: -25px;
	padding-left: 25px;
	padding-right: 25px;
	border-bottom-left-radius: 24px;
	border-bottom-right-radius: 24px;
	border-top: 1px solid rgba(0,0,0,0.02);
}

.comments-list .comments-item {
	padding-top: 15px;
	padding-bottom: 15px;
	transition: background 0.3s ease;
	border-radius: 16px;
}

/* Léger highlight au survol d'un commentaire entier */
.comments-list .comments-item:hover {
	background: rgba(89, 0, 255, 0.02); 
}

.comments-list .comments-item:first-child {
	margin-top: 5px;
	padding-top: 15px;
}

.comments-list .comments-item:last-child {
	border-bottom: none;
}

.comments-list .comments-item .comment-user-img {
	display: inline-block;
	border-radius: 50%;
	width: 38px;
	height: 38px;
	object-fit: cover;
	box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/** UI improvements comments #1524 -> Version 2026 **/
.comments-list .comments-item .comment-contents {
	display: inline-block;
	margin-top: -3px;
	background-color: #ffffff;
	border: 1px solid rgba(89, 0, 255, 0.08); /* Bordure violette ultra subtile */
	box-shadow: 0 4px 15px rgba(0,0,0,0.02); /* Ombre douce de la bulle */
	border-radius: 20px;
	width: auto;
	line-height: 1.5;
	padding: 10px 16px;
	color: var(--text-main);
}

.comment-container {
	position: relative;
	z-index: 0;
}

.comments-item .col-lg-11 {
	padding-left: 0px;
}

.comment-metadata .time-created,
.comment-metadata a {
	display: inline-block;
	font-size: 12px;
	color: var(--text-muted);
	font-weight: 600;
	transition: color 0.2s ease;
}

/* Métadonnées qui s'allument en rose */
.comment-metadata a:hover {
	color: #ff00fc;
}

.comment-contents p {
	margin: 0px;
	word-break: break-word;
	text-align: left;
	font-size: 14px;
}

.comment-contents p img {
	display: block;
	margin-top: 10px;
	margin-bottom: 10px;
	max-width: 100%;
	border-radius: 12px;
}

.comment-contents .owner-link {
	font-weight: 900;
	margin-right: 5px;
	font-size: 14px;
	color: var(--text-main) !important;
}

.comment-contents {
	width: 100%;
}

.comment-container span[readonly='readonly'],
.comment-container input[readonly='readonly'] {
	background: #eee;
}

.comments-item .comment-metadata {
	margin-top: 6px;
	padding-left: 5px;
}

/* La boite pour écrire le commentaire, super rebondie et lumineuse */
.comment-box {
	width: 100%;
	padding: 12px 65px 12px 20px;
	margin-bottom: 5px;
	outline: none;
	display: block;
	resize: vertical;
	min-height: 48px;
	background-color: var(--bg-card);
	border: 1px solid rgba(89, 0, 255, 0.15); /* Teinte violette */
	border-radius: 24px;
	word-break: break-word;
	text-align: left;
	color: var(--text-main);
	font-size: 15px;
	box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.comment-box:focus {
	border-color: #ff00fc; /* Devient magenta au focus */
	background: #fff;
	box-shadow: 0 0 0 4px rgba(255, 0, 252, 0.15), 0 10px 20px rgba(89, 0, 255, 0.08); /* Glow complet */
	transform: translateY(-1px);
}

[contentEditable=true]:empty:not(:focus)::before {
	content: attr(placeholder);
	pointer-events: none;
	display: block;
	color: rgba(142, 142, 142, 0.6);
}

/*********************************
	Like
************************************/

.like-share {
	border-top: 1px solid rgba(255, 0, 252, 0.1); /* Ligne subtilement rosée */
	border-bottom: 1px solid rgba(255, 0, 252, 0.1);
	padding: 12px 20px;
	margin-top: 15px;
	background-color: transparent;
	margin-left: -25px;
	margin-right: -25px;
	display: flex;
	align-items: center;
}

.ossn-like-comment,
.ossn-total-likes {
	margin-left: 10px;
	font-weight: 800;
	color: var(--text-main);
}

/********************************
	Global
***********************************/

.time-created {
	font-size: 13px;
	font-weight: 600;
	color: var(--text-muted);
}

/********************************
	Sidebar Nav - 2026 VIBRANT
*********************************/

.sidebar {
	background-color: var(--bg-card); /* On passe sur un fond clair et moderne */
	height: 100vh;
	z-index: 1000;
	width: var(--layout-sidebar-width);
	position: fixed; /* Fixed est plus moderne que absolute pour les sidebars */
	top: 60px; /* Sous la topbar */
	left: 0;
	margin-left: calc(-1 * var(--layout-sidebar-width));
	overflow-y: auto;
	overflow-x: hidden;
	color: var(--text-main);
	border-right: 1px solid var(--border-light);
	box-shadow: 4px 0 25px rgba(0,0,0,0.02);
}

.sidebar a {
	color: var(--text-main);
	font-size: 15px;
	font-weight: 700;
}

.sidebar a li:before {
	font-size: initial;
}

.sub-menu.collapse {
	transition: none !important;
}

.sidebar-close, .sidebar-open, .sidebar-open-page-container, .sidebar-close-page-container {
	transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1); /* Transition plus fluide et rebondie */
}

.sidebar-open, .sidebar-open-no-annimation {
	margin-left: 0px;
}

.sidebar-open-page-container, .sidebar-open-page-container-no-annimation {
	margin-left: var(--layout-sidebar-width);
}

/* LA CARTE PROFIL DANS LE MENU LATÉRAL */
.newseed-uinfo {
	display: flex;
	align-items: center;
	padding: 20px;
	background: transparent;
	border: none;
	border-bottom: 1px solid var(--border-light);
	border-radius: 0;
	margin: 0;
	gap: 15px;
	transition: background 0.3s ease;
}

.newseed-uinfo:hover {
	background: rgba(255, 0, 252, 0.02);
}

/* L'avatar de la sidebar avec le Glow Instagram */
.user-icon-small {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	object-fit: cover;
	padding: 3px;
	background: var(--ig-gradient-animated);
	background-size: 300% 300%;
	animation: gradientGlow 4s ease infinite;
	border: 2px solid #fff;
	box-shadow: 0 4px 15px rgba(255, 0, 252, 0.2);
}

.newseed-uinfo .name {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.newsfeed-user-info-top {
	font-size: 16px;
	font-weight: 900;
	color: var(--text-main) !important;
	text-decoration: none !important;
	line-height: 1.2;
	transition: color 0.2s ease;
}

.newsfeed-user-info-top:hover {
	color: #ff00fc !important; /* Rose vibrant */
}

.edit-profile {
	font-size: 11px;
	color: var(--text-muted) !important;
	text-decoration: none !important;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-top: 4px;
	font-weight: 800;
	transition: color 0.2s ease;
}

.edit-profile:hover {
	color: #5900ff !important; /* Violet vibrant */
}

/* LES MENUS LATÉRAUX */
.sidebar-menu-nav {
	overflow-y: auto;
	font-size: 14px;
	width: 100%;
	height: calc(100% - 100px); /* Laisse de la place pour le profil en haut */
	padding-top: 10px;
}

.sidebar-menu-nav ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
}

/* Effet pilule et glissement vif au survol */
.sidebar-menu-nav li:not(.sub-menu li) {
	padding: 12px 20px;
	margin: 4px 12px;
	cursor: pointer;
	border-radius: 14px;
	border-bottom: none;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sidebar-menu-nav li:not(.sub-menu li):hover {
	background: rgba(255, 0, 252, 0.05); /* Fond légèrement rosé */
	transform: translateX(8px); /* Ça glisse vers la droite, très moderne ! */
}

.sidebar-menu-nav li a {
	text-decoration: none;
	color: var(--text-main);
	display: flex;
	align-items: center;
}

/* Les icônes du menu avec le dégradé Peps */
.sidebar-menu-nav li a i {
	font-size: 22px;
	width: 40px;
	background: var(--ig-gradient-animated);
	background-size: 300% 300%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: transform 0.3s ease;
}

.sidebar-menu-nav li:hover a i {
	transform: scale(1.15) rotate(5deg);
}

/* Sous-menus (Sub-menus) */
.sub-menu.collapsing,
.sub-menu.show {
	background: var(--bg-page);
	border: 1px solid rgba(89, 0, 255, 0.1); /* Bordure violette fine */
	margin: 10px;
	border-radius: 16px;
	box-shadow: inset 0 2px 10px rgba(0,0,0,0.02);
}

.sidebar .sub-menu a {
	padding: 10px 15px;
	display: block;
	color: var(--text-muted);
}

.sidebar .sidebar-parent-item-main[aria-expanded="true"] {
	background: rgba(89, 0, 255, 0.05);
	padding: 12px 20px;
	border-radius: 14px;
}

.sidebar .sidebar-parent-item-main[aria-expanded="true"] a {
	color: #5900ff; /* Violet quand c'est ouvert */
}

.sidebar-menu-nav ul:not(collapsed) .arrow:before,
.sidebar-menu-nav li:not(collapsed) .arrow:before {
	font-family: 'Font Awesome 5 Free';
	content: "\f078";
	display: inline-block;
	padding-left: 10px;
	font-weight: 900;
	float: right;
	color: var(--text-muted);
}

.sidebar .sidebar-parent-item-main[aria-expanded="true"] a .arrow:before {
	content: "\f077" !important;
	color: #5900ff;
}

.sidebar-menu-nav ul .sub-menu li:before,
.sidebar-menu-nav li .sub-menu li:before {
	font-family: 'Font Awesome 5 Free';
	content: "\f105";
	display: inline-block;
	padding-left: 10px;
	padding-right: 10px;
	font-weight: 900;
	font-size: 13px;
	color: var(--text-muted);
}

.sidebar .sub-menu a:hover {
	background-color: rgba(255, 0, 252, 0.05);
	color: #ff00fc; /* Texte rose au survol */
	transition: all 0.3s ease;
	border-radius: 10px;
	transform: translateX(5px);
}

@media (max-width: 767px) {
	.sidebar-menu-nav {
		position: relative;
		width: 100%;
		margin-bottom: 10px;
	}

	.ossn-group-members {
		text-align: center;
	}

	.ossn-group-members .request-controls {
		float: none;
		padding-bottom: 10px;
	}

	.ossn-group-members .uinfo .userlink {
		float: none !important;
	}
}


/******************************
	Ossn global css clsses
*******************************/

.right {
	float: right;
}

.left {
	float: left;
}

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

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

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

.margin-top-10 {
	margin-top: 10px;
}

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

/************************
	Dropdown - 2026 GLOW
***************************/

.dropdown-submenu {
	position: relative;
}

.dropdown-submenu>.dropdown-menu {
	top: 0;
	left: 100%;
	margin-top: -6px;
	margin-left: -1px;
	border-radius: 0 16px 16px 16px; /* Angles beaucoup plus ronds et modernes */
	box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Ombre douce */
}

.dropdown-submenu:hover>.dropdown-menu {
	display: block;
}

/* La petite flèche du sous-menu */
.dropdown-submenu>a:after {
	display: block;
	content: " ";
	float: right;
	width: 0;
	height: 0;
	border-color: transparent;
	border-style: solid;
	border-width: 5px 0 5px 5px;
	border-left-color: var(--text-muted); /* Discret par défaut */
	margin-top: 5px;
	margin-right: -10px;
	transition: all 0.2s ease;
}

/* La flèche s'illumine au survol */
.dropdown-submenu:hover>a:after {
	border-left-color: #ff00fc; /* Rose vibrant */
	transform: translateX(3px); /* Petit effet de mouvement */
}

.dropdown-submenu.pull-left {
	float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
	left: -100%;
	margin-left: 10px;
	border-radius: 16px 0 16px 16px;
}

.dropmenu-topbar-icons {
	left: inherit;
	right: 0;
}

/******************************************
	Ossn Ads - 2026 VIBRANT
*******************************************/

/* Conteneur des pubs façon "carte Premium" */
.ad-image-container {
	background: var(--bg-page);
	padding: 10px;
	border: 1px solid rgba(89, 0, 255, 0.1); /* Bordure subtilement violette */
	border-radius: 16px; /* Coins ultra ronds */
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Rebond */
}

/* Effet 3D très peps au survol de la pub */
.ad-image-container:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 25px rgba(255, 0, 252, 0.12), 0 5px 10px rgba(89, 0, 255, 0.08);
	background: #ffffff;
}

.ossn-ad-item {}

.ossn-ad-item .ad-image {
	max-width: 200px;
	margin: 0 auto;
	display: block;
	border-radius: 12px; /* Adoucit l'image */
	box-shadow: 0 4px 12px rgba(0,0,0,0.05); /* Ombre interne à la pub */
	transition: transform 0.3s ease;
}

.ossn-ad-item:hover .ad-image {
	transform: scale(1.02); /* L'image grandit très légèrement */
}

.ossn-ad-item a {
	text-decoration: none;
	color: var(--text-main);
	cursor: pointer;
	transition: color 0.2s ease;
}

.ossn-ad-item .ad-title {
	font-weight: 900;
	font-size: 16px;
	margin-bottom: 5px;
	margin-top: 10px;
	transition: color 0.2s ease;
}

/* Le titre s'allume au survol */
.ad-image-container:hover .ad-title {
	color: #5900ff; /* Violet vibrant */
}

.ossn-ad-item .ad-link {
	margin-bottom: 5px;
	color: var(--text-muted);
	font-size: 13px;
	font-weight: 600;
}

.ossn-ad-item p {
	margin-top: 10px;
	text-align: left; /* Justify c'est un peu "vieux web", aligné à gauche c'est plus clean */
	color: var(--text-main);
	line-height: 1.5;
	font-size: 14px;
}

/*****************************
	Widgets - 2026 GLOW
******************************/

.ossn-widget {
	margin-bottom: 25px;
	background-color: var(--bg-card);
	border-radius: 20px;
	border: 1px solid var(--border-light);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ossn-widget:hover {
	transform: translateY(-2px);
	box-shadow: 0 15px 40px rgba(89, 0, 255, 0.05); /* Légère ombre violette */
}

.ossn-messages .ossn-widget {
	border-radius: 0px;
	box-shadow: none;
	border: none;
	background: transparent;
}

.ossn-widget .widget-heading {
	background: transparent;
	border-bottom: 1px solid var(--border-light);
	padding: 18px 20px;
	font-weight: 800;
	font-size: 16px;
	color: var(--text-main);
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
}

.ossn-widget .widget-contents {
	padding: 20px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}

.ossn-privacy .radio-block {
	margin-bottom: 0;
	margin-top: 0;
	display: flex;
}

.ossn-privacy label {
	margin-bottom: 0px;
}

.ossn-privacy .radio-block span {
	font-weight: 600;
	color: var(--text-main);
	width: 85%;
	margin-top: 5px;
	margin-left: 10px;
}

.group-add-privacy .radio-block span {
	margin-top: 5px;
}

.group-add-privacy .radio-block .ossn-radio-input {
	float: left;
}


/***********************************
	Ossn Notifications - 2026 VIBRANT
***************************************/

.ossn-notifications-box .collapsing {
	transition: none;
	display: none;
}

/* Le panneau de notifications en Glassmorphism */
.ossn-notifications-box {
	width: 420px;
	color: var(--text-main);
	position: absolute;
	top: calc(100% + 10px);
	right: 10px;
	z-index: 1000;
	display: none;
	float: left;
	min-width: 160px;
	padding: 0;
	margin: 0;
	font-size: 14px;
	text-align: left;
	list-style: none;
	background: var(--glass-bg);
	backdrop-filter: var(--glass-blur);
	-webkit-backdrop-filter: var(--glass-blur);
	border: 1px solid var(--border-light);
	border-radius: 20px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
	overflow: hidden; /* Pour que les coins ronds rognent le contenu */
}

.ossn-notifications-box .notificaton-item {
	border-bottom: 1px solid var(--border-light);
	padding: 12px 15px;
	transition: background 0.3s ease;
}

.ossn-notifications-box .notificaton-item:hover,
.ossn-notifications-box .notificaton-item .active {
	background-color: rgba(255, 0, 252, 0.03); /* Hover légèrement rosé */
}

.ossn-notifications-box .type-name {
	font-size: 15px;
	font-weight: 800;
	padding: 15px 20px;
	color: var(--text-main);
	height: auto;
	border-bottom: 1px solid var(--border-light);
	background: rgba(255,255,255,0.5);
}

.ossn-notification-box-loading {
	margin: 20px auto;
}

.ossn-no-notification {
	text-align: center;
	padding: 30px 10px;
	color: var(--text-muted);
	font-weight: 600;
}

.ossn-notifications-box .type-name .title {
	display: inline-block;
}

.ossn-notifications-box .type-name .links {
	display: inline-block;
	float: right;
}

/* Le lien "Tout marquer comme lu" */
.ossn-notifications-box .type-name .links a {
	color: #ff00fc; /* Rose peps */
	display: inline;
	font-weight: 700;
	transition: color 0.2s;
}

.ossn-notifications-box .type-name .links a:hover {
	color: #5900ff;
}

.ossn-notifications-box .notification-image,
.ossn-notifications-box .notification-image img {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
}

.ossn-notifications-all a {
	padding: 10px;
}

/* Le texte dynamique dans la notification (ex: a commenté) */
.ossn-notifications-box .notfi-meta strong {
	color: #5900ff; /* Violet vibrant */
	font-weight: 800;
}

.ossn-notifications-box .notfi-meta {
	width: calc(100% - 65px);
	margin-left: 10px;
	display: inline-block;
	float: right;
	color: var(--text-main);
	line-height: 1.4;
}

/* Bouton VOIR TOUT en bas de la popup */
.ossn-notifications-box .bottom-all {
	background: transparent;
	text-align: center;
	padding: 15px;
	display: block;
	height: auto;
	border-top: 1px solid var(--border-light);
	transition: background 0.3s ease;
}

.ossn-notifications-box .bottom-all:hover {
	background: rgba(89, 0, 255, 0.03);
}

.ossn-notifications-box .bottom-all a {
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 1px;
	background: var(--ig-gradient-animated);
	background-size: 300% 300%;
	animation: gradientGlow 4s ease infinite;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
	transition: transform 0.2s ease;
}

.ossn-notifications-box .bottom-all a:hover {
	transform: scale(1.05);
}

.ossn-notifications-box .metadata {
	margin-bottom: 0px;
	margin-top: 4px;
	font-size: 12px;
	color: var(--text-muted);
}

.ossn-notifications-box .messages-inner {
	max-height: 400px;
	overflow: hidden;
	overflow-y: auto;
}

.latest-users img {
	margin-bottom: 5px;
}

.ossn-notification-mark-read {
	float: right;
	color: var(--text-muted);
}

.ossn-notification-mark-read:hover {
	color: #ff00fc;
}

.ossn-notif-delete-item i {
	margin-right: 0;
	font-size: 12px !important;
	color: #ff1b1b;
}

/* Bouton de suppression de notif (La petite croix au survol) */
.ossn-notif-delete-item {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%) scale(0.8);
	background: #fff;
	width: 28px;
	height: 28px;
	text-align: center;
	border: 1px solid rgba(255, 27, 27, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 10px rgba(255, 27, 27, 0.15);
	opacity: 0;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	pointer-events: none;
}

.ossn-notifications-all li {
	position: relative;
	display: block;
}

.ossn-notifications-all li a:hover .ossn-notif-delete-item {
	opacity: 1;
	transform: translateY(-50%) scale(1);
	pointer-events: auto;
}

.ossn-notif-delete-item:hover {
	background: #ff1b1b;
	border-color: #ff1b1b;
}

.ossn-notif-delete-item:hover i {
	color: #fff;
}

.ossn-notifications-all a:hover {
	cursor: pointer;
	background-color: transparent;
	text-decoration: none;
}

.ossn-notifications-box li:hover,
.ossn-notifications-box a:hover,
.ossn-notifications-all a:hover,
.ossn-notifications-all li:hover {
	background: rgba(89, 0, 255, 0.02);
}

/* LE BADGE ROUGE/DÉGRADÉ DES NOUVELLES NOTIFS (qui pulse) */
.ossn-notification-container {
	background: var(--ig-gradient-animated);
	background-size: 300% 300%;
	animation: gradientGlow 2s ease infinite, pulseHeartbeat 2s infinite;
	color: #fff;
	min-height: 16px;
	padding: 2px 6px;
	border-radius: 50px;
	border: 2px solid #fff;
	box-shadow: 0 4px 10px rgba(255, 0, 252, 0.3);
	display: inline-block;
	font-size: 11px;
	font-weight: 900;
	position: absolute;
	margin-left: -10px;
	margin-top: 5px;
	z-index: 10;
}

.notification-friends .image {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: inline-table;
	float: left;
}

/* Noms dans la liste d'amis */
.ossn-notifications-friends-inner a {
	color: #5900ff !important; /* Violet peps */
	display: inline-block !important;
	font-weight: 800;
}

.ossn-notifications-friends-inner {
	padding: 0px 5px;
}

.ossn-notifications-friends-inner form {
	display: inline-table;
}

.ossn-notification-page li img {
	display: none;
}

.notification-friends li {
	width: 100%;
	border-bottom: 1px solid var(--border-light);
	padding: 10px 15px;
}

.notification-friends .notfi-meta a {
	color: #ff00fc; /* Rose */
	font-weight: bold;
	display: inline-block;
	width: 200px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ossn-notifications-friends-inner .controls {
	float: right;
	margin-top: 8px;
	display: inline-block;
}

.friends-added-text {
	font-size: 13px;
	color: var(--text-muted);
	font-weight: 600;
}

/* Boutons Ajouter / Refuser dans les notifs */
.ossn-notifications-friends-inner .btn {
	padding: 6px 14px;
	border-radius: 50px; /* On arrondit fort ! */
	font-weight: 700;
	font-size: 12px;
	transition: all 0.2s ease;
}

.notification-friends {
	max-height: 400px;
}

/*******************************
	Profile - 2026 VIBRANT GLOW
********************************/

.ossn-profile .top-container { 
	background: #fff; 
	border: 1px solid rgba(0,0,0,0.03); 
	border-radius: 24px; 
	box-shadow: 0 15px 40px rgba(0,0,0,0.05); 
	overflow: hidden;
}

.ossn-profile-usermetadata { 
	position: relative; 
	min-height: 100px; 
	padding-bottom: 15px; 
	padding-top: 15px; 
	border-bottom: 1px solid rgba(0,0,0,0.03); 
}

.profile-hr-menu { 
	border-bottom: none; 
	border-radius: 0; 
	margin-top: 0; 
	background: #fff; 
	border-top: 1px solid rgba(0,0,0,0.03);
}

/* La couverture du profil (Cover) */
.ossn-profile .top-container .profile-cover { 
	height: 350px; /* Plus grand pour plus d'impact visuel */
	overflow: hidden; 
	position: relative; 
	background-color: var(--bg-page); 
	border-top-left-radius: 24px; 
	border-top-right-radius: 24px;
}

.ossn-profile .top-container .profile-cover img { 
	width: 100%; 
	height: 100%;
	object-fit: cover; /* Empêche l'image de s'écraser */
}

.ossn-profile-row { 
	margin-bottom: 20px; 
}

/* Le menu sous la photo de profil */
.profile-hr-menu ul { 
	margin: 0px; 
	padding: 0px; 
	text-align: center; /* Centrage moderne 2026 */
}

.profile-hr-menu ul li { 
	display: inline-block; 
	border-top: 2px solid transparent; 
	margin-top: -1px;
}

.profile-hr-menu ul li a:not(.dropdown a) { 
	display: block; 
	padding: 15px 20px; 
	font-weight: 800; 
	font-size: 14px; 
	text-transform: uppercase; 
	letter-spacing: 1px; 
	color: var(--text-muted) !important; 
	transition: all 0.3s ease;
}

.profile-hr-menu a:hover { 
	color: initial; 
}

/* Hover du menu profil : texte s'illumine en rose/violet */
.profile-hr-menu>li>a:not(.profile-hr-menu .dropdown-toggle):hover, 
.profile-hr-menu>ul>li:hover>a:not(.profile-hr-menu .dropdown-toggle) { 
	background: transparent; 
	text-decoration: none; 
	color: #ff00fc !important;
	transform: translateY(-2px);
}

.profile-hr-menu .dropdown-menu { 
	margin-left: 0px; 
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.profile-hr-menu .dropdown-menu li { 
	display: block; 
	border-bottom: 0; 
	padding: initial; 
	margin: auto; 
	border-top: none; 
	text-align: left;
}

.profile-hr-menu .dropdown a i { 
	margin-left: 5px; 
	color: var(--text-muted);
}

.profile-hr-menu .dropdown-menu li a { 
	border-right: 0px; 
	margin-right: 0px; 
	color: var(--text-main) !important; 
	text-transform: none; 
	letter-spacing: 0; 
	font-size: 14px; 
	font-weight: 600; 
	padding: 10px 15px;
}

.profile-hr-menu ul li:last-child { 
	border-right: none; 
}

/* LA PHOTO DE PROFIL QUI EN JETTE (Avatar principal) */
.ossn-profile .profile-photo {
	position: absolute; 
	margin-left: 30px; 
	margin-top: -100px; 
	background: var(--ig-gradient-animated); 
	background-size: 300% 300%; 
	animation: gradientGlow 4s ease infinite;
	border-radius: 50%; 
	padding: 5px; 
	width: 180px; 
	height: 180px; 
	box-shadow: 0 10px 30px rgba(255,0,252,0.3); /* Gros glow rose */
	z-index: 2;
}

.ossn-profile .profile-photo img { 
	border-radius: 50%; 
	width: 100%; 
	height: 100%; 
	border: 4px solid #fff; 
	object-fit: cover;
}

.profile-menu-hr-container { 
	background: #fff; 
	border: 1px solid rgba(0,0,0,0.03); 
	margin: 10px 0; 
	border-radius: 16px; 
	box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.ossn-profile .user-fullname { 
	color: var(--text-main); 
	font-weight: 900; 
	font-size: 32px; /* Nom plus gros et assumé */
	max-width: 600px; 
	white-space: nowrap; 
	overflow: hidden; 
	text-overflow: ellipsis; 
	margin-left: 20px;
}

.ossn-profile-role { 
	font-size: 16px !important; 
	color: #ff00fc; /* Petite touche de couleur pour le rôle */
	font-weight: 700;
}

.ossn-profile .user-username { 
	font-size: 16px; 
	font-weight: 600; 
	color: var(--text-muted);
}

/* Fini le vieux bouton gris, place à la pilule moderne */
.btn-standalone-grey {
	color: var(--text-main); 
	font-weight: 700; 
	width: auto; 
	margin: 0; 
	font-size: 13px; 
	line-height: 16px; 
	padding: 8px 20px;
	cursor: pointer; 
	text-align: center; 
	white-space: nowrap; 
	border: 1px solid var(--border-light); 
	background: var(--bg-page);
	text-decoration: none; 
	border-radius: 50px; 
	transition: all 0.3s ease;
}

.btn-standalone-grey:active { 
	transform: scale(0.95);
}

.btn-standalone-grey:hover { 
	color: #fff; 
	background: var(--ig-gradient-animated);
	background-size: 300% 300%;
	animation: gradientGlow 3s ease infinite;
	border-color: transparent;
	box-shadow: 0 5px 15px rgba(89, 0, 255, 0.3);
}

.profile-cover-controls { 
	position: absolute; 
	width: 100%; 
	top: 0; 
	margin-top: 20px; 
	z-index: 1; 
}

.ossn-group-cover-button a:before, 
.profile-cover-controls a:before { 
	font-family: 'Font Awesome 5 Free'; 
	display: inline-block; 
	padding-right: 5px; 
	vertical-align: middle; 
	font-weight: 900; 
}

/* Les boutons sur la couverture (Changer la photo etc) */
.profile-cover-controls a { 
	float: right; 
	position: relative; 
	margin-right: 15px; 
	background: rgba(0,0,0,0.4); 
	backdrop-filter: blur(8px); /* Effet verre sur la photo */
	-webkit-backdrop-filter: blur(8px);
	padding: 8px 18px; 
	border-radius: 50px; 
	color: #fff !important;
	font-weight: 600;
	transition: background 0.3s;
}

.profile-cover-controls a:hover {
	background: rgba(255, 0, 252, 0.6); /* Devient rosé au survol */
}

#reposition-group-cover:before, 
.change-cover:before { 
	content: "\f303"; 
}

#add-cover-group:before, 
.reposition-cover:before { 
	content: "\f0b2"; 
	font-family: 'Font Awesome 5 Free'; 
}

.profile-menu { 
	position: relative; 
	margin-right: 20px; 
}

#cover-menu { 
	display: none; 
}

/* Le petit bouton appareil photo pour changer l'avatar */
.upload-photo {
	background: #fff; 
	position: absolute; 
	font-size: 15px; 
	bottom: 5px; 
	right: 5px;
	width: 44px; 
	height: 44px; 
	border-radius: 50%; 
	border: 1px solid var(--border-light); 
	cursor: pointer; 
	box-shadow: 0 4px 15px rgba(0,0,0,0.15);
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.upload-photo:hover {
	transform: scale(1.15) rotate(5deg);
	color: #ff00fc;
}

.upload-photo span { 
	text-align: center; 
	display: block; 
	margin-top: 10px; 
	font-size: 20px; 
	color: var(--text-main); 
	transition: color 0.2s;
}

.upload-photo:hover span {
	color: #ff00fc;
}

.user-cover-uploading { 
	opacity: 0.4; 
}

.user-photo-uploading { 
	height: 100%; 
	opacity: 0.8; 
	background: #fff; 
	width: 100%; 
	position: absolute; 
	border-radius: 50%; 
	margin-bottom: 0; 
	margin-left: -5px; 
	margin-top: -5px; 
}

.user-photo-uploading span { 
	display: none; 
}

.ossn-profile-bottom { 
	margin-top: 15px; 
}

.page-sidebar, 
.ossn-profile-sidebar {}

.ossn-layout-media .content { 
	margin-right: 10px; 
	margin-left: 10px; 
}

.ossn-profile-extra-menu { 
	display: inline-block; 
	margin-top: 15px;
}

/*****************************
    Groups
*****************************/

.ossn-group-cover img { 
	width: 100%;
	object-fit: cover;
}

/*****************************
	Side Menu icons - 2026 PEPS
*******************************/

/* On donne une couleur vibrante spécifique à chaque icône ! */
.menu-section-item-newsfeed:before {
	content: "\f0a1" !important;
	color: #ff00fc; /* Rose */
}

.menu-section-item-friends:before {
	content: "\f0c0" !important;
	color: #5900ff; /* Violet */
}

.menu-section-item-allgroups:before {
	content: "\f0c0" !important;
	color: #ff1b1b; /* Rouge */
}

.menu-section-item-photos:before {
	content: "\f03e" !important;
	color: #ff00fc;
}

.menu-section-item-messages:before {
	content: "\f0e0" !important;
	color: #5900ff;
}

.menu-section-item-invite-friends:before {
	content: "\f234" !important;
	color: #ff1b1b;
}

.menu-section-item-addgroup:before {
	content: "\f067" !important;
	color: #ff00fc;
}

li[class^="menu-section-item-"] {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	width: 100%;
	padding-right: 10px;
	color: var(--text-main);
}


/******************************
	Search - 2026 GLOW
******************************/

.ossn-menu-search li {
	display: block;
	transition: all 0.3s ease;
	border-radius: 12px;
}

/* Léger fond coloré et mouvement au survol dans les résultats de recherche */
.ossn-menu-search li:hover {
	background: rgba(255, 0, 252, 0.05);
	transform: translateX(5px);
}

.ossn-menu-search li a {
	display: block;
	width: 100%;
	padding: 10px;
}

.ossn-menu-search li a:hover {
	text-decoration: none;
}

.ossn-menu-search li a .text {
	display: inline-block;
	color: var(--text-main);
	font-weight: 600;
	transition: color 0.2s ease;
}

.ossn-menu-search li:hover a .text {
	color: #ff00fc; /* Le texte s'allume en rose */
}

.ossn-search-page .ossn-users-list-item {
	margin-left: 0px;
	margin-right: 0px;
}

.ossn-search-page .ossn-users-list-item .uinfo {
	margin-left: 25px;
}

.ossn-menu-search-users .text:before {
	font-family: 'Font Awesome 5 Free';
	content: "\f007";
	font-weight: 900;
	padding-right: 10px;
	vertical-align: middle;
	float: left;
	color: #ff00fc;
}

.ossn-menu-search-groups .text:before {
	font-family: 'Font Awesome 5 Free';
	content: "\f0c0";
	font-weight: 900;
	padding-right: 10px;
	vertical-align: middle;
	float: left;
	color: #5900ff;
}

/* Container and Form Reset */
.ossn-search {
	margin: 10px;
	padding: 0;
}

.ossn-search fieldset {
	border: none;
	padding: 0;
	margin: 0;
	position: relative;
}

/* La Barre de Recherche 2026 - Format Pilule */
.ossn-search input[type="text"] {
	width: 100%;
	background: var(--bg-page) !important;
	border: 1px solid var(--border-light) !important;
	border-radius: 24px !important; /* Format pilule ultra moderne */
	padding: 10px 15px 10px 45px !important;
	color: var(--text-main) !important;
	font-size: 15px !important;
	height: 48px !important; /* Plus haute, plus confortable */
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Rebond */
	outline: none;
	box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

/* Add a Search Icon via CSS */
.ossn-search fieldset::before {
	content: "\f002";
	font-family: "FontAwesome";
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--text-muted);
	font-size: 16px;
	pointer-events: none;
	transition: color 0.3s ease;
}

/* Focus State: L'explosion de peps ! */
.ossn-search input[type="text"]:focus {
	background: #fff !important;
	border-color: #ff00fc !important;
	box-shadow: 0 0 0 4px rgba(255, 0, 252, 0.15), 0 10px 25px rgba(89, 0, 255, 0.1) !important;
	transform: translateY(-2px); /* La barre se soulève légèrement */
}

/* L'icône de recherche s'allume aussi au focus */
.ossn-search input[type="text"]:focus + fieldset::before,
.ossn-search:focus-within fieldset::before {
	color: #ff00fc;
}

/* Placeholder Color */
.ossn-search input[type="text"]::placeholder {
	color: rgba(142, 142, 142, 0.6);
	opacity: 1;
	font-weight: 500;
}

/******************************
	Token Input - 2026 GLOW
*******************************/

ul.token-input-list {
	overflow: hidden;
	height: auto !important;
	width: 100%;
	cursor: text;
	font-size: 14px;
	min-height: 1px;
	margin: 0;
	z-index: 999;
	background-color: var(--bg-card);
	list-style-type: none;
	clear: left;
	color: var(--text-main);
	border: 1px solid var(--border-light);
	padding: 5px 5px 0;
	border-radius: 16px;
	box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
	transition: all 0.3s ease;
}

ul.token-input-list:focus-within {
	border-color: #ff00fc;
	box-shadow: 0 0 0 3px rgba(255, 0, 252, 0.15);
}

li.token-input-token {
	overflow: hidden;
	height: auto !important;
	min-height: 24px;
	margin: 3px;
	padding: 4px 10px;
	background-color: rgba(89, 0, 255, 0.05); /* Pilule légèrement violette */
	color: #5900ff;
	cursor: default;
	font-weight: 800;
	border: 1px solid rgba(89, 0, 255, 0.1);
	font-size: 13px;
	border-radius: 50px; /* Style Tag / Pilule arrondi */
	float: left;
	white-space: nowrap;
	display: flex;
	align-items: center;
	transition: all 0.2s ease;
}

li.token-input-token:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 10px rgba(89, 0, 255, 0.1);
}

li.token-input-token p {
	display: inline;
	padding: 0;
	margin: 0;
	font-size: 13px;
}

/* La petite croix pour fermer le tag */
li.token-input-token span {
	color: #ff1b1b;
	margin-left: 8px;
	font-weight: 900;
	cursor: pointer;
	transition: transform 0.2s;
}

li.token-input-token span:hover {
	transform: scale(1.2);
}

li.token-input-selected-token {
	background: var(--ig-gradient-animated);
	background-size: 300% 300%;
	animation: gradientGlow 3s ease infinite;
	border-color: transparent;
	color: #fff;
}

li.token-input-selected-token p,
li.token-input-selected-token span {
	color: #fff;
}

li.token-input-input-token {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

div.token-input-dropdown {
	position: absolute;
	width: 400px;
	background-color: var(--bg-card);
	overflow: hidden;
	border: 1px solid var(--border-light);
	border-radius: 16px;
	cursor: default;
	font-size: 13px;
	z-index: 1001;
	box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

div.token-input-dropdown p {
	margin: 0;
	padding: 10px 15px;
	color: var(--text-muted);
	font-weight: 600;
}

div.token-input-dropdown ul {
	margin: 0;
	padding: 0;
}

div.token-input-dropdown ul li {
	background-color: transparent;
	padding: 8px 15px;
	margin: 0;
	list-style-type: none;
	color: var(--text-main);
	border-bottom: 1px solid var(--border-light);
	transition: background 0.2s;
}

div.token-input-dropdown ul li.token-input-dropdown-item,
div.token-input-dropdown ul li.token-input-dropdown-item2 {
	background-color: transparent;
}

div.token-input-dropdown ul li em {
	font-weight: 900;
	font-style: normal;
	color: #ff00fc; /* Highlight de la recherche en rose */
}

div.token-input-dropdown ul li.token-input-selected-dropdown-item {
	background-color: rgba(255, 0, 252, 0.05);
	color: #ff00fc;
	font-weight: 800;
}


/******************************************
		System Messages
*******************************************/

.ossn-message-done {
	border: 1px solid rgba(0, 200, 100, 0.3);
	background-color: rgba(0, 200, 100, 0.05);
	padding: 15px 20px;
	text-align: left;
	color: #00b359;
	border-radius: 16px;
	font-weight: 800;
	box-shadow: 0 4px 15px rgba(0, 200, 100, 0.1);
	margin-bottom: 20px;
}


/*************************************
	0ssn modal box - 2026 VIBRANT
***************************************/

/* Arrière-plan flouté (Glassmorphism) */
.ossn-halt {
	position: fixed; /* Mieux que absolute pour scroller */
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10000;
	background-color: rgba(0, 0, 0, 0.4);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	cursor: auto;
	height: 100vh;
	display: none;
}

.ossn-light {}

.ossn-viewer {
	width: 940px;
	margin: 0 auto;
	position: relative;
}

.ossn-viewer .ossn-container {
	height: auto;
	position: fixed;
	width: 900px;
	z-index: 10000;
	margin-top: 5vh;
	min-height: 50vh;
	background: var(--bg-card);
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.ossn-viewer-loding {
	font-size: 16px;
	font-weight: 600;
	color: var(--text-muted);
	padding: 40px;
	text-align: center;
}

.ossn-viewer .ossn-container .close-viewer {
	float: right;
	cursor: pointer;
	margin-right: 15px;
	margin-top: 15px;
	font-weight: 900;
	font-size: 20px;
	color: var(--text-main);
	transition: transform 0.2s, color 0.2s;
}

.ossn-viewer .ossn-container .close-viewer:hover {
	transform: scale(1.2);
	color: #ff1b1b;
}

.ossn-container tbody {
	background: var(--bg-card);
}

.ossn-viewer .info-block {
	background: var(--bg-card);
	height: 100%;
	width: 325px;
	float: right;
	margin-left: -3px;
	border-left: 1px solid var(--border-light);
}

.image-block img {
	max-width: 100%;
	object-fit: contain;
}

/* La Popup Modale (Ex: Paramètres, Confirmations) */
.ossn-message-box {
	width: 470px;
	min-width: 470px;
	min-height: 96px;
	background: var(--bg-card);
	border: 1px solid rgba(255,255,255,0.1);
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin: 0;
	z-index: 60000;
	border-radius: 24px;
	display: none;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
	overflow: hidden; /* Important pour que le header ne déborde pas */
}

/* Le titre prend le dégradé ! */
.ossn-message-box .title {
	background: var(--ig-gradient-animated);
	background-size: 300% 300%;
	animation: gradientGlow 4s ease infinite;
	padding: 18px 20px;
	color: #fff;
	font-size: 16px;
	font-weight: 900;
	text-align: center;
	border: none;
}

.ossn-message-box .close-box {
	float: right;
	color: rgba(255,255,255,0.8);
	cursor: pointer;
	font-size: 22px;
	margin-top: -3px;
	transition: all 0.2s;
}

.ossn-message-box .close-box:hover {
	color: #fff;
	transform: scale(1.15);
}

.ossn-message-box .contents {
	padding: 25px;
	min-height: 120px;
	max-height: 420px;
	overflow-y: auto;
	color: var(--text-main);
}

.ossn-message-box .control {
	margin: 0;
	height: auto;
	padding: 15px 25px;
	border-top: 1px solid var(--border-light);
	background: var(--bg-page);
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.ossn-message-box .control .controls {
	float: none;
}

.ossn-message-box .control .controls .btn {
	padding: 10px 24px;
	border-radius: 50px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.ossn-message-box .contents input[type='text'] {
	border: 1px solid var(--border-light);
	width: 100%;
	padding: 12px 15px;
	border-radius: 12px;
	background: var(--bg-page);
	color: var(--text-main);
	transition: all 0.3s ease;
	outline: none;
}

.ossn-message-box .contents input[type='text']:focus {
	border-color: #ff00fc;
	box-shadow: 0 0 0 3px rgba(255, 0, 252, 0.15);
	background: #fff;
}

.ossn-message-box .contents input[type='text'],
.ossn-message-box .contents label {
	display: inline-block;
	margin-bottom: 10px;
}

.ossn-message-box .contents label {
	color: var(--text-main);
	font-weight: 800;
	margin-right: 13px;
}


/* Formulaires: Radios & Checkboxes Animés & Rebondissants */
.ossn-form input[type=checkbox],
.ossn-form input[type=radio] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: inline-block;
	position: relative;
	background-color: var(--bg-page);
	top: 5px;
	height: 22px;
	width: 22px;
	border: 2px solid var(--border-light);
	border-radius: 50px;
	cursor: pointer;
	outline: none;
	flex-grow: 0;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ossn-form input[type=checkbox] {
	border-radius: 6px;
}

.ossn-form input[type=checkbox]:checked::before {
	font: 11px/1 'Open Sans', sans-serif;
	left: 5px;
	top: 4px;
	position: absolute;
	content: '\02143'; /* Checkmark */
	color: #fff;
}

.ossn-form input[type=radio]:checked::before {
	position: absolute;
	font: 11px/1 'Open Sans', sans-serif;
	left: 5px;
	top: 3px;
	content: '\02143';
	transform: rotate(40deg);
	color: #fff;
}

.ossn-form input[type=checkbox]:hover,
.ossn-form input[type=radio]:hover {
	border-color: #ff00fc;
	transform: scale(1.1);
}

.ossn-form input[type=checkbox]:checked,
.ossn-form input[type=radio]:checked {
	background: var(--ig-gradient-animated);
	background-size: 300% 300%;
	animation: gradientGlow 3s ease infinite;
	border-color: transparent;
	transform: scale(1.1); /* Reste légèrement gonflé quand coché */
	box-shadow: 0 4px 10px rgba(255, 0, 252, 0.3);
}

.checkbox-block span {
	margin-top: 6px;
	font-weight: 600;
	color: var(--text-main);
	margin-left: 8px;
}

.checkbox-block-container {
	margin-bottom: 20px;
}

#ossn-home-signup .checkbox-block,
.ossn-profile-bottom .ossn-edit-form .checkbox-block {
	margin-top: 0;
	margin-bottom: 0;
}

/*******************************
	Ossn Blocked - 2026 VIBRANT
*********************************/

.ossn-blocked {
	text-align: center;
	padding: 100px 20px;
}

.ossn-blocked i {
	font-size: 100px;
	color: #ff1b1b; /* Rouge vibrant */
	animation: pulseHeartbeat 2s infinite; /* Un petit battement même quand c'est bloqué */
	margin-bottom: 20px;
	display: inline-block;
}

.ossn-blocked div {
	font-size: 42px;
	font-weight: 900;
	color: var(--text-main);
	margin-bottom: 15px;
	line-height: 1.2;
}

.ossn-blocked p {
	font-size: 16px;
	color: var(--text-muted);
	font-weight: 500;
}


/********************************
	Loading Icon - 2026 PEPS
    @source: https://github.com/jlong/css-spinners
*********************************/

@-moz-keyframes three-quarters-loader {
	0% { -moz-transform: rotate(0deg); transform: rotate(0deg); }
	100% { -moz-transform: rotate(360deg); transform: rotate(360deg); }
}

@-webkit-keyframes three-quarters-loader {
	0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

@keyframes three-quarters-loader {
	0% {
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

/* Le loader devient Rose éclatant ! */
.ossn-loading:not(:required) {
	-moz-animation: three-quarters-loader 1250ms infinite linear;
	-webkit-animation: three-quarters-loader 1250ms infinite linear;
	animation: three-quarters-loader 1250ms infinite linear;
	border: 4px solid #ff00fc; /* Fini le bleu #38e, place au rose pop */
	border-right-color: transparent;
	border-radius: 50%;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
	text-indent: -9999px;
	width: 28px;
	height: 28px;
}

.ossn-box-loading {
	margin-left: 216px;
	margin-top: 37px;
}


/*******************************
	Buttons - BYE BYE 2010s, HELLO 2026 !
*********************************/

/* Fini les dégradés gris dégueulasses, place au design pilule moderne */
.button-grey,
.btn-action {
	color: var(--text-main);
	font-weight: 700;
	width: auto;
	margin: 0;
	font-size: 13px;
	line-height: 16px;
	padding: 8px 20px;
	cursor: pointer;
	outline: none;
	text-align: center;
	white-space: nowrap;
	box-shadow: none; /* On tue les vieilles ombres incrustées */
	border: 1px solid var(--border-light);
	background: var(--bg-card);
	border-radius: 50px; /* Mode pilule activé */
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Rebond fluide */
}

/* Au survol, ça s'allume avec une touche de couleur */
.button-grey:hover,
.btn-action:hover {
	text-decoration: none;
	background: #fff;
	transform: translateY(-2px);
	color: #ff00fc; /* Texte rose */
	border-color: rgba(255, 0, 252, 0.3); /* Bordure rose subtile */
	box-shadow: 0 6px 15px rgba(255, 0, 252, 0.1); /* Glow rose doux */
}

/* L'effet d'appui physique */
.button-grey:active,
.btn-action:active {
	transform: scale(0.95);
	box-shadow: none;
}

/******************************
	Users List - 2026 VIBRANT CARDS
*******************************/

.ossn-users-list-item .users-list-controls {
	margin-top: 20px;
}

.ossn-users-list-item .users-list-controls a {
	margin-left: 5px;
}

/* Les utilisateurs deviennent de belles cartes flottantes */
.ossn-users-list-item {
	border: 1px solid rgba(89, 0, 255, 0.1); /* Bordure subtile violette */
	background: var(--bg-card);
	border-radius: 20px;
	margin-bottom: 15px;
	margin-right: -10px;
	margin-left: -10px;
	padding: 15px 10px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.03);
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Rebond et ombre colorée au survol */
.ossn-users-list-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(255, 0, 252, 0.08);
}

.ossn-users-list-item .uinfo a {
	font-size: 16px;
	font-weight: 800;
	margin-top: 20px;
	float: left;
	text-overflow: ellipsis;
	max-width: 300px;
	white-space: nowrap;
	overflow: hidden;
	color: var(--text-main);
	transition: color 0.2s ease;
}

.ossn-users-list-item:hover .uinfo a {
	color: #ff00fc; /* Le nom s'allume en rose au survol de la carte */
}

.ossn-users-list-item .col-lg-2 {
	text-align: center;
}

/* Arrondi des avatars dans la liste */
.ossn-users-list-item img {
	border-radius: 50%;
	object-fit: cover;
	box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}


/*********************************
	Footer - 2026 CLEAN & MINIMAL
**********************************/

footer {
	margin-top: 40px; /* Plus d'espace pour respirer */
	padding-top: 20px;
	position: relative;
	border-top: 1px solid var(--border-light);
}

footer .container {}

footer .ossn-footer-menu {
	padding-bottom: 10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px; /* On utilise grid/flex gap au lieu des marges compliquées */
}

footer .ossn-footer-menu a {
	color: var(--text-muted);
	font-size: 13px;
	font-weight: 600;
	transition: color 0.2s ease;
}

footer .ossn-footer-menu a:hover {
	color: #5900ff; /* Touche de peps au survol */
}

/* On supprime les vieux pipes "|" moches des années 2000 */
footer .ossn-footer-menu a::after {
	content: none !important; 
}

.menu-footer-powered {
	float: right;
	font-weight: 600;
	color: var(--text-muted);
}

.menu-footer-powered:after {
	display: none;
}

.menu-footer-a_copyrights {
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 700;
}


/****************************
	Home - LANDING PAGE
****************************/

.home-left-contents {}

.home-left-contents .logo {
	text-align: center;
}

/* Le texte de présentation sur la page de connexion */
.home-left-contents .description {
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 900;
	letter-spacing: 0.5px;
	margin-top: 25px;
	text-align: left; /* Justify est has-been, aligné à gauche c'est plus propre */
	color: #fff;
	text-shadow: 0 4px 15px rgba(0,0,0,0.3); /* Ombre pour la lisibilité sur fond image */
}

.home-left-contents .buttons {
	text-align: center;
	margin-top: 15px;
}

#ossn-home-signup p {
	margin-top: 10px;
}

#ossn-home-signup .radio-block {
	margin-top: 0;
	margin-bottom: 0;
}

#ossn-home-signup .ossn-form-group-half:last-child {
	float: right;
}

#ossn-home-signup .form-group {
	margin-bottom: 0px;
}


/**************************
	System
***************************/

.ossn-list-users {
	height: auto;
	min-height: 60px;
	border-bottom: 1px solid var(--border-light);
	display: flex;
	align-items: center;
	margin-left: 5px;
	margin-bottom: 10px;
	padding: 10px 0;
	transition: background 0.3s ease;
	border-radius: 12px;
}

.ossn-list-users:hover {
	background: rgba(255, 0, 252, 0.02);
}

.ossn-list-users img,
.ossn-list-users .uinfo {
	display: inline-block;
}

/* Avatars du système ronds */
.ossn-list-users img {
	border-radius: 50%;
	object-fit: cover;
}

.ossn-list-users .uinfo .userlink {
	font-size: 15px;
	font-weight: 800;
	float: right;
	margin-left: 12px;
	text-overflow: ellipsis;
	width: 370px;
	white-space: nowrap;
	overflow: hidden;
	color: var(--text-main);
	transition: color 0.2s;
}

.ossn-list-users .uinfo .userlink:hover {
	color: #ff00fc;
}

.ossn-list-users .friendlink {
	float: right;
	margin-top: 2px;
	margin-right: 9px;
	text-overflow: ellipsis;
	width: 280px;
	white-space: nowrap;
	overflow: hidden;
	color: var(--text-muted);
}

.sidebar-menu-nav .sidebar-menu .menu-content {
	display: block;
}

.ossn-box-inner {
	width: 435px;
}

/* GROSSES ICÔNES DE LA LANDING PAGE */
.landing-page-icons {
	color: #fff;
	text-align: center;
	margin-top: 40px;
	display: flex;
	justify-content: center;
	gap: 20px;
}

/* L'effet Glassmorphism et Hover explosif pour l'accueil ! */
.landing-page-icons-span {
	border: 2px solid rgba(255, 255, 255, 0.3);
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-radius: 50%; /* Cercle parfait */
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 90px;
	height: 90px;
	text-align: center;
	margin: 10px;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.landing-page-icons-span .fa {
	margin-right: 0px;
	font-size: 32px; /* Icône bien visible */
	transition: transform 0.4s ease;
}

/* Quand on survole, le fond s'allume avec le dégradé ! */
.landing-page-icons-span:hover {
	border-color: transparent;
	background: var(--ig-gradient-animated);
	background-size: 300% 300%;
	animation: gradientGlow 3s ease infinite;
	transform: translateY(-10px);
	box-shadow: 0 15px 35px rgba(255, 0, 252, 0.4);
}

.landing-page-icons-span:hover .fa {
	transform: scale(1.2);
}


/**************************
	Similies - 2026 PEPS
**************************/

.ossn-smiley-item {
	display: inline-block !important;
	margin-left: 2px;
	margin-right: 2px;
	width: initial !important;
	margin-bottom: 0px !important;
	margin-top: 0px !important;
	border: 0px !important;
	transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.2s ease !important; /* Rebond ultra fluide */
}

/* Les smileys sautent de joie et s'illuminent au survol ! */
.ossn-smiley-item:hover {
	transform: scale(1.3) translateY(-2px) !important;
	filter: drop-shadow(0 4px 6px rgba(255, 0, 252, 0.3)) !important; /* Petit glow rose/violet */
}


/**************************
	Embed (Vidéos) - 2026 CARDS
 **************************/

.ossn_embed_video {
	margin-top: 15px;
	margin-bottom: 15px;
	padding-top: 0px;
	border-radius: 16px; /* Bords ronds modernes */
	overflow: hidden; /* Empêche la vidéo de dépasser des bords ronds */
	box-shadow: 0 8px 25px rgba(0,0,0,0.06); /* Ombre douce de base */
	border: 1px solid var(--border-light);
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* La vidéo ressort avec un léger halo violet quand on passe dessus */
.ossn_embed_video:hover {
	box-shadow: 0 15px 35px rgba(89, 0, 255, 0.15); 
	transform: translateY(-2px);
}


/**************************
	Photos - 2026 GLOW
***************************/

.ossn-photo-viewer .image-block img,
.ossn-photo-viewer {
	max-width: 100% !important;
	border-radius: 16px; /* On arrondit aussi les photos dans le viewer */
}

.ossn-photo-viewer .image-block img {
	box-shadow: 0 15px 40px rgba(0,0,0,0.15); /* Belle ombre de présentation pour mettre l'image en valeur */
}

/* Les éléments qu'on peut déplacer (Drag & Drop) */
.ui-draggable {
	opacity: 0.85; /* Légèrement plus visible qu'avant */
	cursor: grab; /* Curseur moderne "petite main" */
	transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
}

/* L'effet magique quand on clique et qu'on déplace l'élément ! */
.ui-draggable:active {
	opacity: 1;
	cursor: grabbing; /* La main se ferme */
	transform: scale(1.03); /* L'élément semble se soulever de la page */
	box-shadow: 0 20px 40px rgba(255, 0, 252, 0.2); /* Glow rose très moderne */
}


/**************************
	Mobile Layout Settings (2026 GLOW & CENTERED)
***************************/

@media (max-width: 480px) {
	.profile-hr-menu ul li {
		padding: 10px 0;
		display: inline-block;
		border: none;
	}

	.ossn-wall-privacy-dummy,
	.ossn-wall-privacy {
		float: none;
		margin-right: 0;
	}

	.ossn-wall-container .controls {
		height: auto;
	}

	.ossn-wall-container textarea {
		margin-left: 0px;
		width: 100%;
	}

	/***********************
    	Comments
     ***********************/
	.comments-list .comments-item .comment-user-img {
		display: none;
	}

	.comments-item .col-lg-11 {
		padding-left: 15px;
	}

	/************************
    	Wall
     ************************/
	.ossn-wall-item-type {
		display: block;
	}

	/* Les cartes du mur sur mobile gardent leur effet pilule/arrondi */
	.ossn-wall-item {
		border-radius: 16px;
		margin-top: 15px;
		margin-left: -10px;
		margin-right: -10px;
	}

	.ossn-wall-container {
		border-radius: 16px;
	}

	.ossn-wall-item .meta .post-menu .btn-link {
		font-size: 18px; /* Un peu plus grand pour les doigts */
	}

	.ossn-list-users .uinfo .userlink {
		text-overflow: ellipsis;
		width: 195px;
		white-space: nowrap;
		overflow: hidden;
	}

	.ossn-list-users a.right.btn.btn-primary,
	.ossn-list-users a.right.btn.btn-danger {
		display: none;
	}

	.ossn-message-box .contents {
		height: 280px;
		overflow-x: auto;
		overflow: overlay;
	}

	/***************************
    	Topbar notification box
   *****************************/
	.ossn-notifications-box {
		width: 300px;
	}

	.ossn-notifications-box .notfi-meta {
		width: 210px;
	}

	.notification-friends .notfi-meta a {
		width: 100px;
	}

	.ossn-notification-messages .user-item .data {
		width: 215px !important;
	}

	.ossn-notification-messages .user-item .data .name {
		width: 110px !important;
	}

	.ossn-notification-messages .reply-text-from {
		width: 200px !important;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	/******************************
    	Profile - CENTRAGE MODERNE
    ********************************/
	.ossn-profile .profile-photo img {}

	.ossn-profile .user-fullname {
		width: auto;
		white-space: normal;
		text-align: center; /* On centre le nom sur mobile ! */
		font-size: 24px;
	}

	.ossn-profile .top-container .profile-cover {
		height: 188px;
		border-radius: 20px 20px 0 0; /* Conserve les bords ronds */
	}

	/* Avatar parfaitement centré façon Instagram/Twitter */
	.ossn-profile .profile-photo {
		position: relative;
		margin: -60px auto 0;
		width: 120px;
		height: 120px;
		left: 0;
		display: block;
		box-shadow: 0 4px 15px rgba(0,0,0,0.1);
	}

	.ossn-profile-usermetadata {
		min-height: 230px;
	}

	.profile-menu {
		float: initial;
		text-align: center;
		margin: 10px auto;
	}

	.ossn-profile .top-container .profile-cover img {
		width: auto;
	}

	.upload-photo {
		margin-bottom: 0px;
		transform: scale(0.8);
	}

	/* Menu du profil flexible et centré */
	.profile-hr-menu ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		border-bottom: 1px solid var(--border-light);
	}

	.profile-hr-menu ul li {
		display: block;
		margin-right: 0px;
		margin-left: 10px;
	}

	.profile-hr-menu ul li a:not(.dropdown a) {
		margin-right: 0px;
		padding: 10px;
		text-transform: none; /* Évite la surcharge visuelle */
		letter-spacing: 0;
	}

	.ossn-profile-role {
		font-size: 15px !important;
		position: relative;
		left: 0;
		top: 0;
	}


	/*****************************
     	System
     *****************************/
	.ossn-users-list-item img {
		display: none;
	}

	.ossn-users-list-item .users-list-controls {
		margin-top: 10px;
		margin-bottom: 10px;
	}

	.ossn-users-list-item .uinfo a {
		margin-top: 10px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		max-width: 90px;
	}

	.ossn-search-page .ossn-users-list-item .uinfo a {
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		max-width: 100px;
	}

	.ossn-users-list-item {
		padding-bottom: 10px;
	}

	.ossn-widget .widget-contents {
		padding: 5px;
	}

	.ossn-message-box {
		min-width: 300px;
		width: 300px;
	}

	.ossn-box-loading {
		margin-left: 0;
		margin-top: 0;
		margin: 40px auto;
	}

	.ossn-message-box .contents input[type="text"] {
		width: 195px;
	}

	.ossn-box-inner {
		width: 280px;
	}

	/* Fini les vieilles barres verticales moches */
	footer .ossn-footer-menu a:nth-last-child(2)::after {
		content: none !important;
	}

	/**********************
    	Groups
    ************************/
	.ossn-group-cover {
		height: 180px !important;
	}

	.ossn-group-cover-header,
	.ossn-group-profile .profile-header,
	.ossn-group-profile .profile-header .header-bottom {
		height: auto !important;
	}

	.ossn-group-profile .profile-header {
		max-height: inherit !important;
	}

	.ossn-group-profile .profile-header .group-name {
		float: none !important;
	}

	.group-name {
		width: 100%;
	}

	.group-header-sep {
		height: auto !important;
		text-align: center;
	}

	.ossn-group-members {
		margin-left: 15px;
		margin-right: 15px;
	}

	.ossn-group-members .request-controls,
	.ossn-group-members .uinfo {
		display: block;
	}

	.ossn-group-members .uinfo .userlink {
		margin-left: 10px;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}

	.sidebar-menu-nav .sidebar-menu .menu-content {
		display: block;
	}

	.sidebar-hide-contents-xs {
		display: none !important;
	}

	.home-left-contents .landing-page-icons {
		display: none;
	}

	/**************************
     	Layouts
     ****************************/
	.newsfeed-right {
		display: none;
	}

	.newsfeed-middle-top {
		display: block;
		padding: 10px; /* Ajoute un peu d'air */
	}

	.ossn-messages .message-inner .row {
		margin-left: 0px !important;
	}

	/*************************
     	Home Page
     **************************/
	.logo img {
		width: 260px;
	}

	.home-left-contents .description {
		font-size: 16px;
	}

	.home-left-contents {
		margin-bottom: 20px;
	}

	/*****************************
    	Wall Menu
    ******************************/
	.dropdown-menu {
		margin-left: -110px;
	}

	.menu-footer-powered {
		float: none;
	}
}


/***************************************
	Tablets & Bottom Bar Setup
****************************************/

@media only screen and (max-width: 992px) {
	.dropdown-menu {
		margin-left: -110px;
	}

	.profile-menu {
		margin: 10px 0;
	}

	.ossn-profile .user-fullname {
		max-width: initial;
	}

	/***********************
    	Comments
     ***********************/
	.comments-list .comments-item .comment-user-img {
		display: none;
	}

	.comments-item .col-lg-11 {
		padding-left: 15px;
	}

	/**************************
     	Layouts
     ****************************/
	.newsfeed-right {
		display: none;
	}

	.newsfeed-middle-top {
		display: block;
	}

	/*******************
     	Messages
     *******************/

	.ossn-messages .message-inner .row {
		margin-left: 0px !important;
	}

	.sidebar-menu-nav .sidebar-menu .menu-content {
		display: block;
	}
}

@media only screen and (max-width: 1199px) {

	.comments-list .comments-item .col-lg-1,
	.comments-list .comments-item .comment-user-img {
		display: none;
	}

	.comments-list .comments-item .col-lg-11 {
		width: 100%;
	}

	.comments-item .col-lg-11 {
		padding-left: 15px;
	}

	.group-search-details {
		margin-left: 10px;
	}

	.ossn-search-page .ossn-users-list-item .uinfo {
		margin-left: 35px;
	}

	.ossn-search-page .ossn-users-list-item .uinfo a {
		text-overflow: ellipsis;
		max-width: 200px;
		white-space: nowrap;
		overflow: hidden;
	}

	.ossn-users-list-item .users-list-controls {
		margin-bottom: 10px;
	}

	.ossn-profile .user-fullname {
		max-width: initial;
	}
}

@media only screen and (max-width: 767px) {
	.ossn-profile .user-fullname {
		max-width: initial;
	}

	.ossn-search-page .ossn-users-list-item .uinfo {
		margin-left: 0;
	}
	
	/* =========================================
	   BOTTOM BAR MAGIQUE 2026 (APP STYLE)
	========================================= */
	.ossn-page-container { 
		margin-left: 0; 
		margin-bottom: 75px; /* Laisse de la place pour la bottom bar */
	} 
	
	.topbar { 
		position: fixed; 
		top: 0; 
		width: 100%; 
		z-index: 1001; 
	}
	
	.ossn-layout-newsfeed { 
		margin-top: 70px; 
	} 

	/* La Sidebar devient la Bottom Bar floutée */
	.sidebar {
		position: fixed !important; 
		top: auto !important; 
		bottom: 0 !important; 
		left: 0 !important;
		width: 100% !important; 
		height: 65px !important; 
		background: var(--glass-bg);
		backdrop-filter: var(--glass-blur); 
		-webkit-backdrop-filter: var(--glass-blur);
		border-top: 1px solid var(--border-light); 
		border-right: none; 
		z-index: 9999 !important;
		display: flex !important; 
		flex-direction: row !important; 
		padding: 0 !important; 
		margin: 0 !important;
		overflow: visible !important; 
		box-shadow: 0 -5px 20px rgba(0,0,0,0.05);
	}

	.sidebar-menu-nav { 
		display: flex !important; 
		flex-direction: row !important; 
		justify-content: space-around !important; 
		align-items: center !important; 
		width: 100% !important; 
		height: 100% !important; 
		margin: 0 !important; 
		padding: 0 !important; 
	}
	
	.sidebar-menu-nav ul { 
		display: flex !important; 
		width: 100%; 
		justify-content: space-around; 
	}
	
	.sidebar-menu-nav li { 
		border: none !important; 
		margin: 0 !important; 
		padding: 0 !important; 
		flex: 1; 
		text-align: center;
	}
	
	.sidebar-menu-nav li a { 
		padding: 0 !important; 
		margin: 0 !important; 
		height: 65px; 
		display: flex !important; 
		justify-content: center; 
		align-items: center; 
		background: transparent !important; 
	}
	
	/* On cache le texte, on ne garde que l'icône sur mobile */
	.sidebar-menu-nav li a .text { 
		display: none !important; 
	}
	
	.sidebar-menu-nav li a i { 
		font-size: 26px !important; 
		margin: 0 !important; 
		padding: 0 !important; 
		width: auto !important; 
		color: var(--text-main) !important; 
		transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.2s ease; 
	}
	
	/* Effet "squish" quand on appuie sur l'icône */
	.sidebar-menu-nav li a:active i { 
		transform: scale(0.8); 
		color: #ff00fc !important; 
	}
	
	/* On cache la carte de profil en haut du menu sur mobile */
	.newseed-uinfo { 
		display: none !important; 
	}
}


/*****************************************************
		Adding icons for some 3rd party components
******************************************************/

.sidebar-menu-nav ul .sub-menu li:before {
	font-family: 'Font Awesome 5 Free';
	display: inline-block;
	padding-left: 10px;
	padding-right: 10px;
	vertical-align: middle;
	width: 35px;
	float: left;
	color: var(--text-muted); /* Harmonisation de la couleur */
}

/* On donne de la vie à l'icône Groupes */
.menu-section-item-groups:before {
	content: "\f07b" !important;
	color: #ff00fc; /* Glow Pop Rose */
}

@media screen and (min-width:1500px) {
	.ossn-wall-container .wall-tabs i {
		margin-top: 3px;
	}
}

.btn-close {
	background-size: .7em;
}

.img-responsive {
	display: block;
	max-width: 100%;
	height: auto;
	border-radius: 12px; /* Pour que les images s'intègrent mieux au design global */
}

/*************************
	3.x buttons styles - 2026 PEPS
***************************/
.btn-close:focus {
	box-shadow: none;
}

.btn-warning {
	color: #fff;
	background: linear-gradient(45deg, #ff9a9e 0%, #fecfef 99%, #fecfef 100%);
	border: none;
	border-radius: 50px;
}

/* LE BOUTON PRINCIPAL QUI EXPLOSE DE COULEUR */
.btn-primary {
	background: var(--ig-gradient-animated); 
	background-size: 300% 300%; 
	animation: gradientGlow 4s ease infinite;
	border: none; 
	color: #fff !important; 
	font-weight: 800; 
	padding: 12px 28px; 
	border-radius: 50px; /* Pilule moderne */
	font-size: 14px;
	cursor: pointer; 
	transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); 
	box-shadow: 0 8px 25px rgba(255, 0, 252, 0.35);
}

.btn-primary:hover {
	transform: translateY(-3px) scale(1.02); 
	box-shadow: 0 15px 35px rgba(89, 0, 255, 0.45); 
	color: #fff !important;
}

.btn-primary:focus,
.btn-primary.focus {
	color: #fff;
	box-shadow: 0 0 0 4px rgba(255, 0, 252, 0.3);
}

.btn-check:checked+.btn-primary:focus,
.btn-check:active+.btn-primary:focus,
.btn-primary:active:focus,
.btn-primary.active:focus,
.show>.btn-primary.dropdown-toggle:focus {
	box-shadow: none;
}

.btn:focus {
	box-shadow: none;
}

.btn-warning:active {
	color: #fff;
}

.btn-warning:focus,
.btn-warning.focus {
	box-shadow: 0 0 0 4px rgba(255, 154, 158, 0.4);
}

/* Boutons secondaires ultra clean */
.btn-default {
	color: var(--text-main) !important; 
	font-weight: 700; 
	font-size: 14px; 
	padding: 12px 28px; 
	border: 1px solid var(--border-light); 
	background: var(--bg-card); 
	border-radius: 50px; 
	transition: all 0.3s ease;
}

.btn-default:focus,
.btn-default.focus {
	background-color: var(--bg-page);
	border-color: #ff00fc;
}

.btn-default:hover {
	background: var(--bg-page); 
	box-shadow: 0 8px 20px rgba(0,0,0,0.05); 
	color: #ff00fc !important; 
	border-color: rgba(255, 0, 252, 0.3);
	transform: translateY(-2px);
}

.btn-default:active,
.btn-default.active,
.open>.dropdown-toggle.btn-default {
	transform: scale(0.95);
}

/* Pagination vibrante */
.pagination {
	margin: 20px 0;
	gap: 5px;
	justify-content: center;
}

.dropdown-item.active,
.dropdown-item:active {
	color: #fff; 
	background: var(--ig-gradient-animated); 
	background-size: 300% 300%; 
	animation: gradientGlow 4s ease infinite; 
	border-radius: 8px;
}

.page-item.active .page-link {
	background: var(--ig-gradient-animated); 
	background-size: 300% 300%; 
	animation: gradientGlow 4s ease infinite; 
	border-color: transparent; 
	color: #fff;
	box-shadow: 0 4px 10px rgba(255, 0, 252, 0.3);
}

.page-link {
	color: #ff00fc; /* Rose peps */
	border: 1px solid var(--border-light); 
	border-radius: 12px; 
	margin: 0 2px;
	font-weight: 700;
	transition: all 0.3s ease;
}

.page-link:hover {
	color: #fff;
	background-color: #ff00fc;
	border-color: transparent;
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(255, 0, 252, 0.2);
}

label {
	display: inline-block;
	max-width: 100%;
	margin-bottom: 8px;
	font-weight: 800;
	color: var(--text-main);
	font-size: 14px;
}

.dropdown-menu {
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1); 
	border: 1px solid rgba(0,0,0,0.03); 
	border-radius: 16px; 
	padding: 8px;
}

/*****************************
	Startup Layout Ossn 9.0 (LANDING PAGE)
******************************/
.ossn-startup-wrapper {
	position: relative;
	background: #f8fafc;
	min-height: 100vh;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.ossn-startup-wrapper .blob-container {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
}

/* On change les couleurs des Blobs pour du rose/violet pop */
.ossn-startup-wrapper .blob {
	position: absolute;
	width: 600px;
	height: 600px;
	background: linear-gradient(135deg, rgba(255, 0, 252, 0.2) 0%, rgba(89, 0, 255, 0.2) 100%);
	filter: blur(80px);
	border-radius: 43% 57% 70% 30% / 30% 45% 55% 70%;
	animation: pulseHeartbeat 8s infinite alternate;
}

.ossn-startup-wrapper .blob-1 {
	top: -10%;
	left: -10%;
	background: rgba(255, 0, 252, 0.15);
}

.ossn-startup-wrapper .blob-2 {
	bottom: -10%;
	right: -5%;
	background: rgba(255, 27, 27, 0.1);
}

.ossn-startup-wrapper .blob-3 {
	top: 20%;
	right: 20%;
	width: 300px;
	height: 300px;
	background: rgba(89, 0, 255, 0.15);
}

.ossn-startup-wrapper .blob-4 {
	bottom: 10%;
	left: 20%;
	width: 400px;
	height: 400px;
	background: rgba(255, 0, 252, 0.1);
}

/* Glass Branding Box */
.ossn-startup-wrapper .brand-glass-box {
	display: inline-block;
	padding: 20px 30px;
	background: var(--glass-bg);
	backdrop-filter: var(--glass-blur);
	border-radius: 20px;
	border: 1px solid rgba(255, 255, 255, 0.6);
	box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.ossn-startup-wrapper .main-logo {
	max-width: 180px;
}

.ossn-startup-wrapper .signup-title span {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 2px;
	display: block;
	margin-bottom: 15px;
	font-weight: 800;
	color: var(--text-main);
}

/* Pill styles ultra pop */
.ossn-startup-wrapper .feature-pills-modern {
	display: flex;
	gap: 12px;
	margin-top: 25px;
	flex-wrap: wrap;
}

.ossn-startup-wrapper .feature-tag,
.ossn-startup-wrapper .pill {
	display: inline-flex;
	align-items: center;
	padding: 10px 20px;
	background: #ffffff;
	border: 1px solid rgba(89, 0, 255, 0.1);
	border-radius: 50px;
	font-size: 14px;
	font-weight: 800;
	color: var(--text-main);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Hover effect */
.ossn-startup-wrapper .feature-tag:hover,
.ossn-startup-wrapper .pill:hover {
	transform: translateY(-4px) scale(1.02);
	border-color: transparent;
	background: var(--ig-gradient-animated);
	background-size: 300% 300%;
	animation: gradientGlow 3s ease infinite;
	color: #fff;
	box-shadow: 0 10px 25px rgba(255, 0, 252, 0.3);
}

/* Icon inside the pill */
.ossn-startup-wrapper .feature-tag i,
.ossn-startup-wrapper .pill i {
	margin-right: 8px;
	font-size: 16px;
	background: var(--ig-gradient-animated); 
	background-size: 300% 300%; 
	-webkit-background-clip: text; 
	-webkit-text-fill-color: transparent;
	transition: all 0.3s ease;
}

.ossn-startup-wrapper .pill:hover i {
	-webkit-text-fill-color: #fff; /* L'icône devient blanche au survol */
}

/* Background & Hero */
.ossn-startup-wrapper .ossn-modern-landing {
	background: transparent;
	min-height: 100vh;
	position: relative;
	overflow: hidden;
	padding: 50px 0;
}

.ossn-startup-wrapper .hero-logo {
	max-width: 220px;
	margin-bottom: 25px;
}

.ossn-startup-wrapper .hero-tagline {
	font-size: 3rem;
	font-weight: 900;
	color: var(--text-main);
	margin-bottom: 30px;
	line-height: 1.1;
}

/* La carte d'inscription Glassmorphism Level Max */
.ossn-startup-wrapper .glass-signup-card {
	background: rgba(255, 255, 255, 0.85);
	color: var(--text-main);
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
	padding: 50px;
	border-radius: 32px;
	border: 1px solid rgba(255, 255, 255, 0.8);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
	z-index: 2;
	position: relative;
	overflow: hidden;
}

.ossn-startup-wrapper .signup-title h2 {
	font-weight: 900;
	margin-bottom: 0px;
	text-shadow: none;
	color: var(--text-main);
}

/* Inline Form Logic */
.ossn-startup-wrapper .custom-row {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.ossn-startup-wrapper .custom-col {
	flex: 1;
	min-width: 0;
}

/* Input styles dans la carte */
.ossn-startup-wrapper .modern-field {
	border-radius: 16px !important;
	border: 1px solid rgba(0,0,0,0.1) !important;
	background: rgba(255,255,255,0.9) !important;
	padding: 15px !important;
	font-size: 15px !important;
}

.ossn-startup-wrapper .modern-field:focus {
	background: #fff !important;
	border-color: #ff00fc !important;
	box-shadow: 0 0 0 4px rgba(255, 0, 252, 0.15) !important;
	transform: translateY(-2px);
}

.ossn-startup-wrapper .terms-text {
	font-size: 13px;
	color: var(--text-muted);
	margin-top: 15px;
	font-weight: 600;
	text-align: center;
}

/* LE BOUTON SUBMIT DE L'ESPACE */
#ossn-submit-button {
	width: 100%; 
	padding: 18px; 
	border-radius: 50px; 
	background: #ffffff;
	font-weight: 900; 
	letter-spacing: 1px; 
	margin-top: 25px; 
	cursor: pointer; 
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05); 
	border: 2px solid transparent;
}

#ossn-submit-button span { 
	background: var(--ig-gradient-animated); 
	background-size: 300% 300%; 
	animation: gradientGlow 4s ease infinite; 
	-webkit-background-clip: text; 
	-webkit-text-fill-color: transparent; 
	font-size: 16px;
}

#ossn-submit-button:hover { 
	background: var(--ig-gradient-animated);
	background-size: 300% 300%;
	animation: gradientGlow 4s ease infinite;
	box-shadow: 0 15px 35px rgba(255, 0, 252, 0.3); 
	transform: translateY(-3px); 
}

#ossn-submit-button:hover span {
	-webkit-text-fill-color: #fff; /* Le texte devient blanc au survol ! */
}

#ossn-submit-button:active { 
	transform: translateY(0) scale(0.98); 
}

.ossn-login input[type="submit"] {
	width: 100%; 
	margin-bottom: 10px; 
	display: block; 
	padding: 18px; 
	border-radius: 50px; 
	font-weight: 900; 
	letter-spacing: 1px; 
	margin-top: 25px; 
	cursor: pointer; 
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
	background: var(--ig-gradient-animated);
	background-size: 300% 300%;
	animation: gradientGlow 4s ease infinite;
	color: #fff;
	border: none;
	box-shadow: 0 10px 25px rgba(255, 0, 252, 0.3);
}

.ossn-login input[type="submit"]:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(255, 27, 27, 0.4);
}

.ossn-login {
	color: var(--text-main);
}

/* L'ICÔNE FLOTTANTE DE LOGIN */
.ossn-login .login-icon-badge {
	background: var(--ig-gradient-animated); 
	background-size: 300% 300%; 
	animation: gradientGlow 4s ease infinite;
	border-radius: 50%; 
	display: flex; 
	align-items: center; 
	justify-content: center; 
	width: 85px; 
	height: 85px;
	color: #fff; 
	font-size: 34px; 
	box-shadow: 0 15px 35px rgba(255, 0, 252, 0.35); 
	border: 5px solid #fff; 
	margin: 0 auto 20px;
}

.ossn-login .ossn-startup-wrapper .glass-signup-card .login-card-custom,
.ossn-login .login-card-custom {
	color: var(--text-main) !important;
}

/* Animation douce de l'icône */
.ossn-login .login-icon-badge i {
	animation: pulseHeartbeat 2s infinite;
}

/* Ligne de séparation colorée */
.ossn-login .header-line {
	width: 60px; 
	height: 6px; 
	background: var(--ig-gradient-animated); 
	background-size: 300% 300%; 
	animation: gradientGlow 4s ease infinite; 
	margin: 20px auto; 
	border-radius: 10px;
}

/* Links Styling */
.ossn-login .forgot-link {
	color: #ff00fc; /* Rose vibrant */
	text-decoration: none;
	font-weight: 700;
	transition: color 0.2s;
}

.ossn-login .forgot-link:hover {
	color: #5900ff; /* Devient violet */
}

.ossn-login .signup-link-text {
	color: #5900ff;
	font-weight: 900;
	text-decoration: none;
	margin-left: 5px;
	transition: color 0.2s;
}

.ossn-login .signup-link-text:hover {
	color: #ff00fc;
}

/* BOUTON LOGIN DANS LA TOPBAR */
.ossn-topbar-login-btn {
	float: right; 
	margin-top: 8px; 
	background: var(--ig-gradient-animated) !important; 
	background-size: 300% 300% !important; 
	animation: gradientGlow 4s ease infinite !important; 
	color: #ffffff !important; 
	padding: 10px 24px !important; 
	border-radius: 50px !important; 
	font-weight: 800 !important; 
	font-size: 14px; 
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important; 
	margin: 10px; 
	border: none !important;
	box-shadow: 0 4px 15px rgba(255, 0, 252, 0.3);
}

.ossn-topbar-login-btn:hover {
	transform: translateY(-2px) scale(1.05); 
	box-shadow: 0 10px 25px rgba(89, 0, 255, 0.4); 
	color: #fff !important; 
}

.ossn-topbar-login-btn:active {
	transform: translateY(0) scale(0.95);
}

/* Tier 1: Tablets and Phones */
@media (max-width: 768px) {
	.custom-row {
		display: block !important;
	}
	.custom-col {
		width: 100% !important;
		display: block;
		margin-bottom: 2px;
	}
}

/* Tier 2: Extra Small Devices (XS - 480px and below) */
@media (max-width: 480px) {
	.glass-signup-card {
		padding: 30px 20px !important;
		border-radius: 24px !important;
	}
	.ossn-startup-wrapper .hero-tagline {
		font-size: 2.2rem;
	}
}


/******************************
	Output/users - 2026 VIBRANT CARDS
*****************************/

/* Scoped Container for User Cards */
.ossn-output-users-list .user-item-card {
	background: var(--bg-card);
	border: 1px solid rgba(89, 0, 255, 0.1); /* Bordure violette très subtile */
	border-radius: 24px; /* Coins ultra doux */
	margin-bottom: 20px;
	padding: 20px;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* Effet de lévitation colorée au survol de la carte */
.ossn-output-users-list .user-item-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 15px 40px rgba(255, 0, 252, 0.1), 0 5px 15px rgba(89, 0, 255, 0.05);
}

.ossn-output-users-list .user-item-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

/* Avatar Styling - Le fameux Glow Ring */
.ossn-output-users-list .user-avatar-container img {
	width: 68px;
	height: 68px;
	border-radius: 50%; /* Cercle parfait */
	object-fit: cover;
	padding: 3px;
	background: var(--ig-gradient-animated);
	background-size: 300% 300%;
	animation: gradientGlow 4s ease infinite;
	border: 2px solid #fff;
	box-shadow: 0 5px 15px rgba(255, 0, 252, 0.25); /* Glow rose */
}

/* Grouping Name and Avatar */
.ossn-output-users-list .user-info-box {
	display: flex;
	align-items: center;
	gap: 18px;
}

.ossn-output-users-list .user-name-text {
	font-weight: 900; /* Plus impactant */
	font-size: 17px;
	color: var(--text-main);
	transition: color 0.2s ease;
}

/* Le nom s'allume quand on passe sur la carte */
.ossn-output-users-list .user-item-card:hover .user-name-text {
	color: #ff00fc;
}

.ossn-output-users-list .user-username-sub {
	font-size: 13px;
	margin-top: 4px;
	color: var(--text-muted);
	font-weight: 600;
}

/* Control Buttons - Mode Pilule */
.ossn-output-users-list .ossn-action-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 22px;
	border-radius: 50px;
	font-size: 13px;
	font-weight: 800;
	text-decoration: none !important;
	white-space: nowrap;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Primary Button (Add Friend) - On remplace le bleu par le Glow */
.ossn-output-users-list .btn-primary-outline {
	background: rgba(255, 0, 252, 0.05);
	color: #ff00fc !important;
	border: 1px solid rgba(255, 0, 252, 0.3);
}

.ossn-output-users-list .btn-primary-outline:hover {
	background: var(--ig-gradient-animated);
	background-size: 300% 300%;
	animation: gradientGlow 3s ease infinite;
	color: #fff !important;
	border-color: transparent;
	transform: scale(1.05);
	box-shadow: 0 8px 20px rgba(255, 0, 252, 0.35);
}

/* Danger Button (Remove/Cancel) */
.ossn-output-users-list .btn-danger-outline {
	background: rgba(255, 27, 27, 0.05);
	color: #ff1b1b !important;
	border: 1px solid rgba(255, 27, 27, 0.2);
}

.ossn-output-users-list .btn-danger-outline:hover {
	background: #ff1b1b;
	color: #fff !important;
	border-color: transparent;
	transform: scale(1.05);
	box-shadow: 0 8px 20px rgba(255, 27, 27, 0.3);
}

/* Effet au clic pour tous les boutons d'action */
.ossn-output-users-list .ossn-action-btn:active {
	transform: scale(0.95);
}

/* Small Device Adjustments */
@media (max-width: 480px) {
	.ossn-output-users-list .user-item-card {
		padding: 25px 15px; /* Un peu plus haut sur mobile pour respirer */
	}

	.ossn-output-users-list .user-item-inner {
		justify-content: center;
		text-align: center;
	}

	.ossn-output-users-list .user-info-box {
		flex-direction: column;
		width: 100%;
		gap: 10px;
	}

	.ossn-output-users-list .user-controls-box {
		width: 100%;
		margin-top: 10px;
	}

	.ossn-output-users-list .ossn-action-btn {
		width: 100%;
		justify-content: center;
		padding: 12px 20px; /* Plus facile à cliquer sur téléphone */
	}
} .ossn-profile-module-friends img {
    padding: 1.5px;
}
.ossn-profile-module-friends .user-image {
    width: 100px;
    height: 100px;
    margin-bottom: 5px;    
    display: inline-block;
}
.ossn-profile-module-friends .user-name {
    position: absolute;
    margin-top: -27px;
    margin-left: 8px;
    font-size: 12px;
    color: #fff;
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ossn-profile-module-friends h3 {
    padding: 4px;
    text-align: center;
    font-size:16px;
    color: #ccc;
}
.ossn-profile-extra-menu {
	display:inline-block;
}
.ossn-profile-extra-menu .btn-action i {
 	 margin: 0 auto;
}
.ossn-profile .profile-cover img {
	position: relative;
}
.ossn-covers-uploading-annimation {
    float: right;
    background: rgba(255, 255, 255, 0.62);
    padding: 20px;
    border-radius: 20px;
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.ossn-profile-bottom .ossn-edit-form .radio-block {
    margin-top: 0;
    margin-bottom: 0;
}
/** profile edit layout **/
.ossn-profile-edit-layout {
	background: #fff;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;    
}

.profile-edit-tabs {}

.profile-edit-tabs a {
	padding: 12px 4px 12px 16px;
	display: block;
	border-left: 2px solid #fff;
	cursor: pointer;
	text-decoration: none;
}

.profile-edit-tab-item-active {
	border-left: 3px solid #5088a3 !important;
	font-weight: bold;
}

.profile-edit-tabs a {}

.profile-edit-layout-right {
	padding: 10px;
	border-left: 1px solid #eee;
}

.profile-edit-layout-title {
	background: #F9F7F7;
	border: 1px solid #eee;
	padding: 12px 20px;
	font-weight: bold;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;    
}
.profile-hr-menu .dropdown-toggle::after {
	display:none;
}.ossn-form textarea#post-edit {
	height: 125px;
}

.ossn-wall-post-delete {
	color: #EC2020 !important;
}

.ossn-wall-loading {
	text-align: center;
	padding: 10px;
	width: 100%;
}

.ossn-wall-loading .ossn-loading {
	display: inline-block;
}

#ossn-wall-form .ui-autocomplete-loading {
	background: white url("https://streetinstant.fr/themes/si_theme/images/loading.gif") right center no-repeat;
}

#ossn-wall-form .ui-helper-hidden-accessible {
	display: none;
}

.ossn-wall-post-time {
	cursor: pointer;
}

.ossn-wall-post-time:hover {
	text-decoration: underline;
}

.wall-tabs .item span {
	padding-left: 5px;
	font-weight: bold;
	font-family: 'PT Sans', sans-serif;
	font-weight: bold;
	font-size: 13px;
	bottom: 0;
}
.group-wall .ossn-wall-post-button-container {
	height: 50px;
	display: inline-block;
}

.group-wall .ossn-wall-post {
	float: right;
}
#ossn-wall-location .mapboxgl-ctrl-geocoder--input {
	padding-left: 30px;
    background: initial;
    border-radius: 10px;
    border: 1px dashed #eee;
    margin-top: 5px;
}
.ossn-wall-image-container {
    background: #f8f8f8;
}
.ossn-wall-image-container > img {
		max-height:80vh;
        margin:0 auto;
}.ossn-comment-attach-photo {
    width: 100%;	
}

.ossn-comment-attach-photo .fa-camera {
    float: right;
    position: relative;
    margin-right: 5px;
    margin-top: 3px;
    width: 25px;
    height: 25px;
    padding: 5px;
    font-size: 17px;
    cursor: pointer;
    color: #999;
}
.ossn-comment-attachment {
    width: 115px;
    margin-left: 40px;
    padding-bottom: 10px;
    margin-top: -5px;
	display:none;
}
.ossn-comment-attachment  .image-data  {
    padding: 6px;
    background: #fff;
    border: 1px solid #eee;
    
    /* Please, check scaling algorithm of comment picture previews #682 */
    /** 
    comments attachment image not responsive #938
    display: flex; **/
    
    max-height: 180px;       
    text-align: center;
}
.ossn-comment-attachment  .image-data img {
	max-width:100%;
	height: 100px;
	border: 1px solid #ccc;
}
.ossn-viewer-comments .ossn-comment-attachment {
	width:115px;
}
.ossn-viewer .comments-item .row {
	margin-left:10px;
    margin-right:10px;
}
.ossn-viewer .comments-item .col-lg-1 {
	display:none;
}
.ossn-viewer-comments .comments-likes .ossn-comment-attach-photo .fa-camera {
	float:none;
    margin-right:0px;
    margin-left:10px;
}

.ossn-viewer-comments .ossn-comment-attachment {
    margin-left: 10px;
    padding-bottom: 10px;
    margin-top: 5px;
}
.ossn-viewer-comments .like-share {
	margin-left:0px;
    margin-right:0px;
}
.ossn-form textarea#comment-edit{
    height: 125px;
}
.ossn-delete-comment {
    color: #EC2020 !important;
}
.comment-post-btn {
    float: right;
    border-radius: 10px;
    padding: 2px 20px;
}
.ossn-likes-view a.right.btn.btn-danger {
	font-size: 12px;
	margin-top: 8px;
	margin-right: 5px;
	padding: 3px 5px 3px 5px;
	border-radius: 1px;
	display: none;
}

.ossn-likes-view a.right.btn.btn-primary {
	font-size: 12px;
	margin-top: 8px;
	margin-right: 5px;
	padding: 3px 5px 3px 5px;
	border-radius: 1px;
	display: none;
}

.emoji {
	width: 120px;
	height: 120px;
	background: #FFDA6A;
	display: inline-block;
	border-radius: 50%;
	position: relative;
	transform: scale(0.325);
	margin-left: -37px;
	margin-top: -37px;
}

.emoji:after {}

.emoji__face,
.emoji__eyebrows,
.emoji__eyes,
.emoji__mouth,
.emoji__tongue,
.emoji__heart,
.emoji__hand,
.emoji__thumb {
	position: absolute;
}

.emoji__face:before,
.emoji__face:after,
.emoji__eyebrows:before,
.emoji__eyebrows:after,
.emoji__eyes:before,
.emoji__eyes:after,
.emoji__mouth:before,
.emoji__mouth:after,
.emoji__tongue:before,
.emoji__tongue:after,
.emoji__heart:before,
.emoji__heart:after,
.emoji__hand:before,
.emoji__hand:after,
.emoji__thumb:before,
.emoji__thumb:after {
	position: absolute;
	content: '';
}

.emoji__face {
	width: inherit;
	height: inherit;
}

.emoji--dislike {
	background: #999;
	transform: scale(0.325, -0.325);
}

.emoji--like {
	background: #548DFF;
}

.emoji--dislike .emoji__hand,
.emoji--like .emoji__hand {
	left: 25px;
	bottom: 30px;
	width: 20px;
	height: 40px;
	background: #FFFFFF;
	border-radius: 5px;
	z-index: 0;
	-webkit-animation: hands-up 2s linear infinite;
	animation: hands-up 2s linear infinite;
}

.emoji--dislike .emoji__hand:before,
.emoji--like .emoji__hand:before {
	left: 25px;
	bottom: 5px;
	width: 40px;
	background: inherit;
	height: 10px;
	border-radius: 2px 10px 10px 2px;
	box-shadow: 1px -9px 0 1px #FFFFFF, 2px -19px 0 2px #FFFFFF, 3px -29px 0 3px #FFFFFF;
}

.emoji--dislike .emoji__thumb,
.emoji--like .emoji__thumb {
	border-bottom: 20px solid #FFFFFF;
	border-left: 20px solid transparent;
	top: -25px;
	right: -25px;
	z-index: 2;
	-webkit-transform: rotate(5deg);
	transform: rotate(5deg);
	-webkit-transform-origin: 0% 100%;
	transform-origin: 0% 100%;
	-webkit-animation: thumbs-up 2s linear infinite;
	animation: thumbs-up 2s linear infinite;
}

.emoji--dislike .emoji__thumb:before,
.emoji--like .emoji__thumb:before {
	border-radius: 50% 50% 0 0;
	background: #FFFFFF;
	width: 10px;
	height: 12px;
	left: -10px;
	top: -8px;
	-webkit-transform: rotate(-15deg);
	transform: rotate(-15deg);
	-webkit-transform-origin: 100% 100%;
	transform-origin: 100% 100%;
	box-shadow: -1px 4px 0 -1px #FFFFFF;
}

.emoji--love {
	background: #F55064;
}

.emoji--love .emoji__heart {
	left: calc(50% - 40px);
	top: calc(50% - 40px);
	width: 80px;
	height: 80px;
	-webkit-animation: heart-beat 1s linear infinite alternate;
	animation: heart-beat 1s linear infinite alternate;
}

.emoji--love .emoji__heart:before,
.emoji--love .emoji__heart:after {
	left: calc(50% - 20px);
	top: calc(50% - 32px);
	width: 40px;
	height: 64px;
	background: #FFFFFF;
	border-radius: 20px 20px 0 0;
}

.emoji--love .emoji__heart:before {
	-webkit-transform: translate(20px) rotate(-45deg);
	transform: translate(20px) rotate(-45deg);
	-webkit-transform-origin: 0 100%;
	transform-origin: 0 100%;
}

.emoji--love .emoji__heart:after {
	-webkit-transform: translate(-20px) rotate(45deg);
	transform: translate(-20px) rotate(45deg);
	-webkit-transform-origin: 100% 100%;
	transform-origin: 100% 100%;
}

.emoji--haha .emoji__face {
	-webkit-animation: haha-face 2s linear infinite;
	animation: haha-face 2s linear infinite;
}

.emoji--haha .emoji__eyes {
	width: 26px;
	height: 6px;
	border-radius: 2px;
	left: calc(50% - 13px);
	top: 35px;
	-webkit-transform: rotate(20deg);
	transform: rotate(20deg);
	background: transparent;
	box-shadow: -25px 5px 0 0 #000000, 25px -5px 0 0 #000000;
}

.emoji--haha .emoji__eyes:after {
	left: 0;
	top: 0;
	width: 26px;
	height: 6px;
	border-radius: 2px;
	-webkit-transform: rotate(-40deg);
	transform: rotate(-40deg);
	background: transparent;
	box-shadow: -25px -5px 0 0 #000000, 25px 5px 0 0 #000000;
}

.emoji--haha .emoji__mouth {
	width: 80px;
	height: 40px;
	left: calc(50% - 40px);
	top: 50%;
	background: #000000;
	border-radius: 0 0 40px 40px;
	overflow: hidden;
	z-index: 1;
	-webkit-animation: haha-mouth 2s linear infinite;
	animation: haha-mouth 2s linear infinite;
}

.emoji--haha .emoji__tongue {
	width: 70px;
	height: 30px;
	background: #F55064;
	left: calc(50% - 35px);
	bottom: -10px;
	border-radius: 50%;
}

.emoji--yay:after {
	-webkit-animation: yay-reverse 1s linear infinite;
	animation: yay-reverse 1s linear infinite;
}

.emoji--yay .emoji__face {
	-webkit-animation: yay 1s linear infinite alternate;
	animation: yay 1s linear infinite alternate;
}

.emoji--yay .emoji__eyebrows {
	left: calc(50% - 3px);
	top: 30px;
	height: 6px;
	width: 6px;
	border-radius: 50%;
	background: transparent;
	box-shadow: -6px 0 0 0 #000000, -36px 0 0 0px #000000, 6px 0 0 0 #000000, 36px 0 0 0px #000000;
}

.emoji--yay .emoji__eyebrows:before,
.emoji--yay .emoji__eyebrows:after {
	width: 36px;
	height: 18px;
	border-radius: 60px 60px 0 0;
	background: transparent;
	border: 6px solid black;
	box-sizing: border-box;
	border-bottom: 0;
	bottom: 3px;
	left: calc(50% - 18px);
}

.emoji--yay .emoji__eyebrows:before {
	margin-left: -21px;
}

.emoji--yay .emoji__eyebrows:after {
	margin-left: 21px;
}

.emoji--yay .emoji__mouth {
	top: 60px;
	background: transparent;
	left: 50%;
}

.emoji--yay .emoji__mouth:after {
	width: 80px;
	height: 80px;
	left: calc(50% - 40px);
	top: -75px;
	border-radius: 50%;
	background: transparent;
	border: 6px solid #000000;
	box-sizing: border-box;
	border-top-color: transparent;
	border-left-color: transparent;
	border-right-color: transparent;
	z-index: 1;
}

.emoji--yay .emoji__mouth:before {
	width: 6px;
	height: 6px;
	background: transparent;
	border-radius: 50%;
	bottom: 5px;
	left: calc(50% - 3px);
	box-shadow: -25px 0 0 0 #000000, 25px 0 0 0 #000000, -35px -2px 30px 10px #D5234C, 35px -2px 30px 10px #D5234C;
}

.emoji--wow .emoji__face {
	-webkit-animation: wow-face 3s linear infinite;
	animation: wow-face 3s linear infinite;
}

.emoji--wow .emoji__eyebrows {
	left: calc(50% - 3px);
	height: 6px;
	width: 6px;
	border-radius: 50%;
	background: transparent;
	box-shadow: -18px 0 0 0 #000000, -33px 0 0 0 #000000, 18px 0 0 0 #000000, 33px 0 0 0 #000000;
	-webkit-animation: wow-brow 3s linear infinite;
	animation: wow-brow 3s linear infinite;
}

.emoji--wow .emoji__eyebrows:before,
.emoji--wow .emoji__eyebrows:after {
	width: 24px;
	height: 20px;
	border: 6px solid #000000;
	box-sizing: border-box;
	border-radius: 50%;
	border-bottom-color: transparent;
	border-left-color: transparent;
	border-right-color: transparent;
	top: -3px;
	left: calc(50% - 12px);
}

.emoji--wow .emoji__eyebrows:before {
	margin-left: -25px;
}

.emoji--wow .emoji__eyebrows:after {
	margin-left: 25px;
}

.emoji--wow .emoji__eyes {
	width: 16px;
	height: 24px;
	left: calc(50% - 8px);
	top: 35px;
	border-radius: 50%;
	background: transparent;
	box-shadow: 25px 0 0 0 #000000, -25px 0 0 0 #000000;
}

.emoji--wow .emoji__mouth {
	width: 30px;
	height: 45px;
	left: calc(50% - 15px);
	top: 50%;
	border-radius: 50%;
	background: #000000;
	-webkit-animation: wow-mouth 3s linear infinite;
	animation: wow-mouth 3s linear infinite;
}

.emoji--sad .emoji__face {
	-webkit-animation: sad-face 2s ease-in infinite;
	animation: sad-face 2s ease-in infinite;
}

.emoji--sad .emoji__eyebrows {
	left: calc(50% - 3px);
	top: 35px;
	height: 6px;
	width: 6px;
	border-radius: 50%;
	background: transparent;
	box-shadow: -40px 9px 0 0 #000000, -25px 0 0 0 #000000, 25px 0 0 0 #000000, 40px 9px 0 0 #000000;
}

.emoji--sad .emoji__eyebrows:before,
.emoji--sad .emoji__eyebrows:after {
	width: 30px;
	height: 20px;
	border: 6px solid #000000;
	box-sizing: border-box;
	border-radius: 50%;
	border-bottom-color: transparent;
	border-left-color: transparent;
	border-right-color: transparent;
	top: 2px;
	left: calc(50% - 15px);
}

.emoji--sad .emoji__eyebrows:before {
	margin-left: -30px;
	-webkit-transform: rotate(-30deg);
	transform: rotate(-30deg);
}

.emoji--sad .emoji__eyebrows:after {
	margin-left: 30px;
	-webkit-transform: rotate(30deg);
	transform: rotate(30deg);
}

.emoji--sad .emoji__eyes {
	width: 14px;
	height: 16px;
	left: calc(50% - 7px);
	top: 50px;
	border-radius: 50%;
	background: transparent;
	box-shadow: 25px 0 0 0 #000000, -25px 0 0 0 #000000;
}

.emoji--sad .emoji__eyes:after {
	background: #548DFF;
	width: 12px;
	height: 12px;
	margin-left: 6px;
	border-radius: 0 100% 40% 50% / 0 50% 40% 100%;
	-webkit-transform-origin: 0% 0%;
	transform-origin: 0% 0%;
	-webkit-animation: tear-drop 2s ease-in infinite;
	animation: tear-drop 2s ease-in infinite;
}

.emoji--sad .emoji__mouth {
	width: 60px;
	height: 80px;
	left: calc(50% - 30px);
	top: 80px;
	box-sizing: border-box;
	border: 6px solid #000000;
	border-radius: 50%;
	border-bottom-color: transparent;
	border-left-color: transparent;
	border-right-color: transparent;
	background: transparent;
	-webkit-animation: sad-mouth 2s ease-in infinite;
	animation: sad-mouth 2s ease-in infinite;
}

.emoji--sad .emoji__mouth:after {
	width: 6px;
	height: 6px;
	background: transparent;
	border-radius: 50%;
	top: 4px;
	left: calc(50% - 3px);
	box-shadow: -18px 0 0 0 #000000, 18px 0 0 0 #000000;
}

.emoji--angry {
	background: linear-gradient(#D5234C -10%, #FFDA6A);
	background-size: 100%;
	-webkit-animation: angry-color 2s ease-in infinite;
	animation: angry-color 2s ease-in infinite;
}

.emoji--angry .emoji__face {
	-webkit-animation: angry-face 2s ease-in infinite;
	animation: angry-face 2s ease-in infinite;
}

.emoji--angry .emoji__eyebrows {
	left: calc(50% - 3px);
	top: 55px;
	height: 6px;
	width: 6px;
	border-radius: 50%;
	background: transparent;
	box-shadow: -44px 5px 0 0 #000000, -7px 16px 0 0 #000000, 7px 16px 0 0 #000000, 44px 5px 0 0 #000000;
}

.emoji--angry .emoji__eyebrows:before,
.emoji--angry .emoji__eyebrows:after {
	width: 50px;
	height: 20px;
	border: 6px solid #000000;
	box-sizing: border-box;
	border-radius: 50%;
	border-top-color: transparent;
	border-left-color: transparent;
	border-right-color: transparent;
	top: 0;
	left: calc(50% - 25px);
}

.emoji--angry .emoji__eyebrows:before {
	margin-left: -25px;
	-webkit-transform: rotate(15deg);
	transform: rotate(15deg);
}

.emoji--angry .emoji__eyebrows:after {
	margin-left: 25px;
	-webkit-transform: rotate(-15deg);
	transform: rotate(-15deg);
}

.emoji--angry .emoji__eyes {
	width: 12px;
	height: 12px;
	left: calc(50% - 6px);
	top: 70px;
	border-radius: 50%;
	background: transparent;
	box-shadow: 25px 0 0 0 #000000, -25px 0 0 0 #000000;
}

.emoji--angry .emoji__mouth {
	width: 36px;
	height: 18px;
	left: calc(50% - 18px);
	bottom: 15px;
	background: #000000;
	border-radius: 50%;
	-webkit-animation: angry-mouth 2s ease-in infinite;
	animation: angry-mouth 2s ease-in infinite;
}

@-webkit-keyframes heart-beat {
	25% {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
	75% {
		-webkit-transform: scale(0.6);
		transform: scale(0.6);
	}
}

@keyframes heart-beat {
	25% {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}
	75% {
		-webkit-transform: scale(0.6);
		transform: scale(0.6);
	}
}

@-webkit-keyframes haha-face {
	10%,
	30%,
	50% {
		-webkit-transform: translateY(25px);
		transform: translateY(25px);
	}
	20%,
	40% {
		-webkit-transform: translateY(15px);
		transform: translateY(15px);
	}
	60%,
	80% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	70%,
	90% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}

@keyframes haha-face {
	10%,
	30%,
	50% {
		-webkit-transform: translateY(25px);
		transform: translateY(25px);
	}
	20%,
	40% {
		-webkit-transform: translateY(15px);
		transform: translateY(15px);
	}
	60%,
	80% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	70%,
	90% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}
}

@-webkit-keyframes haha-mouth {
	10%,
	30%,
	50% {
		-webkit-transform: scale(0.6);
		transform: scale(0.6);
		top: 45%;
	}
	20%,
	40% {
		-webkit-transform: scale(0.8);
		transform: scale(0.8);
		top: 45%;
	}
	60%,
	80% {
		-webkit-transform: scale(1);
		transform: scale(1);
		top: 50%;
	}
	70% {
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
		top: 50%;
	}
	90% {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
		top: 50%;
	}
}

@keyframes haha-mouth {
	10%,
	30%,
	50% {
		-webkit-transform: scale(0.6);
		transform: scale(0.6);
		top: 45%;
	}
	20%,
	40% {
		-webkit-transform: scale(0.8);
		transform: scale(0.8);
		top: 45%;
	}
	60%,
	80% {
		-webkit-transform: scale(1);
		transform: scale(1);
		top: 50%;
	}
	70% {
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
		top: 50%;
	}
	90% {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
		top: 50%;
	}
}

@-webkit-keyframes yay {
	25% {
		-webkit-transform: rotate(-15deg);
		transform: rotate(-15deg);
	}
	75% {
		-webkit-transform: rotate(15deg);
		transform: rotate(15deg);
	}
}

@keyframes yay {
	25% {
		-webkit-transform: rotate(-15deg);
		transform: rotate(-15deg);
	}
	75% {
		-webkit-transform: rotate(15deg);
		transform: rotate(15deg);
	}
}

@-webkit-keyframes wow-face {
	15%,
	25% {
		-webkit-transform: rotate(20deg) translateX(-25px);
		transform: rotate(20deg) translateX(-25px);
	}
	45%,
	65% {
		-webkit-transform: rotate(-20deg) translateX(25px);
		transform: rotate(-20deg) translateX(25px);
	}
	75%,
	100% {
		-webkit-transform: rotate(0deg) translateX(0);
		transform: rotate(0deg) translateX(0);
	}
}

@keyframes wow-face {
	15%,
	25% {
		-webkit-transform: rotate(20deg) translateX(-25px);
		transform: rotate(20deg) translateX(-25px);
	}
	45%,
	65% {
		-webkit-transform: rotate(-20deg) translateX(25px);
		transform: rotate(-20deg) translateX(25px);
	}
	75%,
	100% {
		-webkit-transform: rotate(0deg) translateX(0);
		transform: rotate(0deg) translateX(0);
	}
}

@-webkit-keyframes wow-brow {
	15%,
	65% {
		top: 25px;
	}
	75%,
	100%,
	0% {
		top: 15px;
	}
}

@keyframes wow-brow {
	15%,
	65% {
		top: 25px;
	}
	75%,
	100%,
	0% {
		top: 15px;
	}
}

@-webkit-keyframes wow-mouth {
	10%,
	30% {
		width: 20px;
		height: 20px;
		left: calc(50% - 10px);
	}
	50%,
	70% {
		width: 30px;
		height: 40px;
		left: calc(50% - 15px);
	}
	75%,
	100% {
		height: 50px;
	}
}

@keyframes wow-mouth {
	10%,
	30% {
		width: 20px;
		height: 20px;
		left: calc(50% - 10px);
	}
	50%,
	70% {
		width: 30px;
		height: 40px;
		left: calc(50% - 15px);
	}
	75%,
	100% {
		height: 50px;
	}
}

@-webkit-keyframes sad-face {
	25%,
	35% {
		top: -15px;
	}
	55%,
	95% {
		top: 10px;
	}
	100%,
	0% {
		top: 0;
	}
}

@keyframes sad-face {
	25%,
	35% {
		top: -15px;
	}
	55%,
	95% {
		top: 10px;
	}
	100%,
	0% {
		top: 0;
	}
}

@-webkit-keyframes sad-mouth {
	25%,
	35% {
		-webkit-transform: scale(0.85);
		transform: scale(0.85);
		top: 70px;
	}
	55%,
	100%,
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		top: 80px;
	}
}

@keyframes sad-mouth {
	25%,
	35% {
		-webkit-transform: scale(0.85);
		transform: scale(0.85);
		top: 70px;
	}
	55%,
	100%,
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		top: 80px;
	}
}

@-webkit-keyframes tear-drop {
	0%,
	100% {
		display: block;
		left: 35px;
		top: 15px;
		-webkit-transform: rotate(45deg) scale(0);
		transform: rotate(45deg) scale(0);
	}
	25% {
		display: block;
		left: 35px;
		-webkit-transform: rotate(45deg) scale(2);
		transform: rotate(45deg) scale(2);
	}
	49.9% {
		display: block;
		left: 35px;
		top: 65px;
		-webkit-transform: rotate(45deg) scale(0);
		transform: rotate(45deg) scale(0);
	}
	50% {
		display: block;
		left: -35px;
		top: 15px;
		-webkit-transform: rotate(45deg) scale(0);
		transform: rotate(45deg) scale(0);
	}
	75% {
		display: block;
		left: -35px;
		-webkit-transform: rotate(45deg) scale(2);
		transform: rotate(45deg) scale(2);
	}
	99.9% {
		display: block;
		left: -35px;
		top: 65px;
		-webkit-transform: rotate(45deg) scale(0);
		transform: rotate(45deg) scale(0);
	}
}

@keyframes tear-drop {
	0%,
	100% {
		display: block;
		left: 35px;
		top: 15px;
		-webkit-transform: rotate(45deg) scale(0);
		transform: rotate(45deg) scale(0);
	}
	25% {
		display: block;
		left: 35px;
		-webkit-transform: rotate(45deg) scale(2);
		transform: rotate(45deg) scale(2);
	}
	49.9% {
		display: block;
		left: 35px;
		top: 65px;
		-webkit-transform: rotate(45deg) scale(0);
		transform: rotate(45deg) scale(0);
	}
	50% {
		display: block;
		left: -35px;
		top: 15px;
		-webkit-transform: rotate(45deg) scale(0);
		transform: rotate(45deg) scale(0);
	}
	75% {
		display: block;
		left: -35px;
		-webkit-transform: rotate(45deg) scale(2);
		transform: rotate(45deg) scale(2);
	}
	99.9% {
		display: block;
		left: -35px;
		top: 65px;
		-webkit-transform: rotate(45deg) scale(0);
		transform: rotate(45deg) scale(0);
	}
}

@-webkit-keyframes hands-up {
	25% {
		-webkit-transform: rotate(15deg);
		transform: rotate(15deg);
	}
	50% {
		-webkit-transform: rotate(-15deg) translateY(-10px);
		transform: rotate(-15deg) translateY(-10px);
	}
	75%,
	100% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
}

@keyframes hands-up {
	25% {
		-webkit-transform: rotate(15deg);
		transform: rotate(15deg);
	}
	50% {
		-webkit-transform: rotate(-15deg) translateY(-10px);
		transform: rotate(-15deg) translateY(-10px);
	}
	75%,
	100% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
}

@-webkit-keyframes thumbs-up {
	25% {
		-webkit-transform: rotate(20deg);
		transform: rotate(20deg);
	}
	50%,
	100% {
		-webkit-transform: rotate(5deg);
		transform: rotate(5deg);
	}
}

@keyframes thumbs-up {
	25% {
		-webkit-transform: rotate(20deg);
		transform: rotate(20deg);
	}
	50%,
	100% {
		-webkit-transform: rotate(5deg);
		transform: rotate(5deg);
	}
}

@-webkit-keyframes angry-color {
	45%,
	60% {
		background-size: 250%;
	}
	85%,
	100%,
	0% {
		background-size: 100%;
	}
}

@keyframes angry-color {
	45%,
	60% {
		background-size: 250%;
	}
	85%,
	100%,
	0% {
		background-size: 100%;
	}
}

@-webkit-keyframes angry-face {
	35%,
	60% {
		-webkit-transform: translateX(0) translateY(10px) scale(0.9);
		transform: translateX(0) translateY(10px) scale(0.9);
	}
	40%,
	50% {
		-webkit-transform: translateX(-5px) translateY(10px) scale(0.9);
		transform: translateX(-5px) translateY(10px) scale(0.9);
	}
	45%,
	55% {
		-webkit-transform: translateX(5px) translateY(10px) scale(0.9);
		transform: translateX(5px) translateY(10px) scale(0.9);
	}
}

@keyframes angry-face {
	35%,
	60% {
		-webkit-transform: translateX(0) translateY(10px) scale(0.9);
		transform: translateX(0) translateY(10px) scale(0.9);
	}
	40%,
	50% {
		-webkit-transform: translateX(-5px) translateY(10px) scale(0.9);
		transform: translateX(-5px) translateY(10px) scale(0.9);
	}
	45%,
	55% {
		-webkit-transform: translateX(5px) translateY(10px) scale(0.9);
		transform: translateX(5px) translateY(10px) scale(0.9);
	}
}

@-webkit-keyframes angry-mouth {
	25%,
	50% {
		height: 6px;
		bottom: 25px;
	}
}

@keyframes angry-mouth {
	25%,
	50% {
		height: 6px;
		bottom: 25px;
	}
}

.ossn-like-reactions-panel {
	background: #ffffff;
	width: 355px;
	padding: 2px;
	position: absolute;
	height: 50px;
	top: auto;
	margin-top: -75px;
	box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
	border-radius: 2em;
	cursor: default;
}

.ossn-like-reactions-panel li:after {
	margin-left: 0px;
	margin-right: 0px;
	content: '';
}

.ossn-like-reactions-panel li {
	display: inline-block;
	width: 40px;
	height: 40px;
	cursor: pointer;
}

.ossn-reaction-list .emoji {
	transform: scale(0.133);
	margin-left: -55px;
	margin-top: -50px;
}

.ossn-reaction-list .emoji--dislike {
	transform: scale(0.133, -0.133);
}

.ossn-reaction-list {
	float: left;
	height: 20px;
}

.ossn-reaction-list li {
	display: inline-block;
	width: 10px;
	height: 20px;
}

.ossn-reaction-title-wholiked {
	margin-left: 10px;
}

.ossn-reaction-list .emoji__eyes:after,
.ossn-reaction-list .emoji__tongue,
.ossn-reaction-list .emoji__eyebrows,
.ossn-reaction-list .emoji__eyes,
.ossn-reaction-list .emoji__face,
.ossn-reaction-list .emoji__mouth,
.ossn-reaction-list .emoji__face,
.ossn-reaction-list .emoji__heart,
.ossn-reaction-list .emoji__hand {
	animation: none;
}

.ossn-reactions-list-whoreacted .emoji {}

.ossn-reactions-list-wholiked-item img {
	border: 1px solid #eee;
	border-radius: 100%;
}

.ossn-reactions-list-wholiked-item {
	border-bottom: 1px solid #eee;
	padding-bottom: 5px;
	padding-top: 5px;
	padding-left: 10px;
	padding-right: 10px;
}

.ossn-reactions-list-whoreacted-uinfo a {
	font-weight: bold;
}

.ossn-reactions-list-whoreacted {
	float: none;
	margin-left: 5px;
}

@media (max-width: 480px) {
	.ossn-like-reactions-panel {
		margin-left: -40px;
		transform: scale(0.8);
	}
	.comment-contents .ossn-like-reactions-panel {
		margin-left: -30px;
	}
}

.ossn-likes-annotation-total {
	float: right;
}

.comment-metadata .ossn-reaction-list {
	float: right;
	margin-left: 10px;
}

.comment-metadata .ossn-reaction-list .emoji {
	transform: scale(0.12);
	margin-top: -51px;
}

.comment-metadata .ossn-reaction-list .emoji--dislike {
	transform: scale(0.12, -0.12);
}
/*** <style> ******/
.ossn-profile-module-albums img {
	padding: 1.5px;
	width: 100px;
	height: 100px;
}

.ossn-profile-module-albums h3 {
	padding: 4px;
	font-size: 16px;
	text-align: center;
	color: #ccc;
}

.ossn-photos {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	padding: 0;
	list-style: none;
	justify-content: flex-start;
}

.ossn-photos li {
	width: 200px;
	height: 200px;
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	background: #f0f0f0;
	/* Light grey placeholder while loading */
	transition: transform 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.ossn-photos li:hover {
	transform: scale(1.03);
	z-index: 2;
}

.ossn-photos .pthumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* This removes the black spaces/gaps */
	display: block;
	border: 0;
}

.ossn-photos .ossn-album-name {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 30px 10px 10px;
	background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	text-align: center;
	pointer-events: none;
}

.ossn-photos-mod-title {
	text-align: center;
	font-size: 21px;
	text-transform: uppercase;
}

.ossn-photo-view a {
	float: right;
	margin-bottom: 10px;
}

.ossn-photo-viewer {
	text-align: center;
	background: #F6F6F6;
	/** pictures in single view are drifting rightwards out of place #629 **/
	width: 100%;
}

.ossn-viewer-comments {
	margin-top: 25px;
}

.ossn-viewer-comments .comments-likes .comment-text p img {
	max-width: 250px;
}

.ossn-viewer-comments .comments-likes .ossn-comment-attach-photo {
	margin-left: 222px;
}

.ossn-photos .pthumb {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.ossn-photo-menu li {
	display: block;
}

.ossn-photo-menu li a {
	font-size: 12px;
}

.ossn-profile-module-albums {}

.ossn-profile-module-albums a {
	margin-left: 3px;
	border: 1px solid #eee;
}

.ossn-photo-view h2 {
	font-size: 18px;
	font-weight: bold;
	margin-top: 0px;
	display: inline;
}

.ossn-photo-menu {
	margin-top: 10px;
}

.ossn-photo-viewer .image-block {
	text-align: center;
	min-height: 200px;
}

.ossn-photos-add-button {
	text-align: center;
	padding: 20px;
	margin-top: 30px;
}

.ossn-photos-add-button .images {
	display: none;
}

.ossn-photos-wall {
	background: #f9f9f9;
	margin-bottom: 10px;
	padding-top: 10px;
	border-radius: 2px;
	border: 1px solid #eee;
	text-align: center;
}

.ossn-photos-wall-plain {
	border: none;
	text-align: center;
	background: initial;
}

.ossn-photos-wall-title a {
	font-weight: normal !important;
}

.ossn-photo-wall-item-small {
	width: 100px;
}

.ossn-photo-wall-item-medium {
	width: 200px;
}

.ossn-photos-wall-item {
	display: inline-block !important;
	cursor: pointer;
	margin-right: 2px;
}

.ossn-photo-view {
	margin-bottom: 10px;
}

#ossn-photos-show-gallery i {
	margin-right: 0;
}

.ossn-photos-album-comments-likes .like-share,
.ossn-photos-album-comments-likes .comments-list {
	margin-left: -10px;
	margin-right: -10px;
}.ossn-notification-icon-comment {
	display: inline-block;
}	
.ossn-notification-icon-comment:before {
	content: "\f075";
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
    font-weight: 900;
    font-size: 18px;
}
.ossn-notification-icon-tag {
    display: inline-block;
}
.ossn-notification-icon-tag:before {
	content: "\f507";
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
    font-weight: 900;
    font-size: 18px;
}
.ossn-notification-icon-like {
    display: inline-block;
}
.ossn-notification-icon-like:before {
	content: "\f164";
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
}
.ossn-notification-icon-like-post:before {
    display: inline-block;
}	
.ossn-notification-icon-like-post:before {
	content: "\f087";
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
    font-weight: 900;
    font-size: 18px;	
}
.ossn-notifications-all .data {
    display: inline;
    margin-left: 5px;
}
.ossn-notification-friend-submit {
	background:#FFF9D7;
}
.menu-section-item-notifications:before{
    content: "\f0f3" !important
}
.ossn-notifications-all .time-created {
    font-weight: bold;
    font-size: 13px;
    margin-left: 10px;
}.ossn-search {
    margin-top: 20px;
}
.ossn-search input[type='text']{
    width: 95%;
    margin: 0 auto;
    color: #000;
    border-radius: 3px;
}
.ossn-search-active-item {
    background: #eee;
}
.ossn-messages {
	background: #fff;
	padding: 10px;
}

.ossn-messages .messages-recent .widget-contents {
	padding: 0px;
}

.ossn-messages .messages-recent .messages-from {
	max-height: 555px;
	overflow-x: hidden;
	overflow-y: auto;
}

.ossn-messages .messages-recent .messages-from .user-item {
	padding: 10px;
	margin: 0px;
	cursor: pointer;
	border-bottom: 1px solid #eee;
}

.ossn-messages .messages-recent .messages-from .user-item .image {
	margin-top: 3px;
	border-radius: 16px;
}

.ossn-messages .messages-recent .messages-from .user-item .name {
	font-weight: bold;
	display: inline-block;
	font-size: 13px;
}

.ossn-messages .messages-recent .messages-from .message-new {
	background: #F7F7F7;
}

.ossn-messages .messages-recent .messages-from .user-item .col-lg-10,
.ossn-messages .messages-recent .messages-from .user-item .col-lg-2 {
	padding: 0px;
}

.ossn-messages .messages-recent .messages-from .user-item .reply {
	margin-top: -4px;
	font-size: 13px;
}

.ossn-notification-messages .fa-reply,
.ossn-messages .messages-recent .messages-from .user-item .reply .fa-reply {
	font-size: 10px;
	display: inline-block;
	margin-top: 0px;
}

.ossn-messages .messages-recent .messages-from .user-item .reply .reply-text {
	display: inline-block;
}

.ossn-messages .messages-recent .messages-from .user-item .time {
	display: inline-block;
	float: right;
}

.ossn-messages .message-with  .user-icon {
	margin-top: 9px;
	border-radius: 25px;
}

.ossn-messages. message-form-form .textarea {
}

.ossn-messages .message-inner {
	max-height: 400px;
	padding-right: 20px;
	overflow-y: auto;
	overflow-x: hidden;
}

.ossn-messages .message-inner .row {
    /*margin-left: -10px;*/;
}

.message-form-form {
	margin-top: 10px;
	border-top: 1px solid #eee;
	padding: 10px 10px 0;
}

.ossn-messages .message-with .time-created {
	float: right;
	margin-left: 5px;
}
/*************************
	Notifications
**************************/

.ossn-notification-messages  .user-item {
	padding: 4px;
	border-bottom: 1px solid #eee;
}

.ossn-notification-messages .user-item:hover {
	background: #F6F7F8;
	cursor: pointer;
}

.ossn-notification-messages .message-new {
	background: #eee;
}

.ossn-notification-messages  .user-item .image {
	display: inline-table;
	width: 50px;
	height: 50px;
}

.ossn-notification-messages .user-item .data {
	float: right;
	width: 335px;
}

.ossn-notification-messages .user-item .data .name {
	font-size: 13px;
	font-weight: bold;
	padding: 3px;
	margin-top: -3px;
	text-overflow: ellipsis;
	width: 210px;
	white-space: nowrap;
	overflow: hidden;
}

.ossn-notification-messages .user-item-inner .time {
	color: #999;
	float: right;
	font-size: 14px;
	font-style: italic;
	margin-top: -24px;
}

.ossn-notification-messages .reply-text,
.ossn-notification-messages .reply-text-from {
	margin-top: -0px;
	margin-left: 4px;
	text-overflow: ellipsis;
	width: 320px;
	white-space: nowrap;
	overflow: hidden;
	display: inline;
}

.ossn-notification-messages .messages-from .time {
	color: #999;
	float: right;
}

.ossn-notification-messages .user-item-inner {
	padding: 5px;
}
/************************
	v4.0 chat message
*************************/
.message-box-recieved {
	background-color: #F2F2F2;
	display: inline-block;
	padding: 5px 18px;
	position: relative;
	vertical-align: top;
	float: left;
	margin: 10px 0px 10px 10px;
	word-break: break-word;
	text-align: justify;
	border-radius: 15px;
	box-shadow: 0 1px 0 #c9d4bc;
}

.message-box-sent {
	word-break: break-word;
	text-align: justify;
	float: right;
	background-color: #dfeecf;
	display: inline-block;
	padding: 5px 18px;
	position: relative;
	vertical-align: top;
	margin: 10px 0px;
	border-color: #cdecb0;
	border-radius: 15px;
	box-shadow: 0 1px 0 #c9d4bc;
}

.messages-with .widget-contents {
	padding: 10px 0px;
}
/*** Pagination ***/
.ossn-messages .messages-recent .messages-from .inner .pagination {
	margin: 10px;
}

.ossn-messages .ossn-widget .message-with .message-inner .container-table-pagination .pagination {
	margin: 0;
}

.ossn-messages .ossn-widget .message-with .message-inner .container-table-pagination,
.ossn-notification-messages .container-table-pagination,
.ossn-messages .messages-recent .messages-from .inner .container-table-pagination {
	visibility: hidden;
}

.ossn-messages .messages-recent .messages-from .inner .ossn-pagination .ossn-loading {
	margin: 0 auto;
}

.ossn-messages-notification-pagination-loading .ossn-loading,
.ossn-messages-pagination-loading .ossn-loading,
.ossn-messages-with-pagination-loading .ossn-loading {
	margin: 0 auto;
}

.ossn-messages-pagination-loading {
	display: block;
	margin-top: -40px;
}

.ossn-messages-with-pagination-loading {
	display: block;
	margin-top: 10px;
}

.ossn-messages-notification-pagination-loading {
	display: block;
	margin-top: -55px;
}

.ossn-message-delete {
	margin-left: 10px;
	color: #c77878 !important;
	visibility: hidden;
	cursor: pointer;
}

.message-box-recieved:hover .ossn-message-delete,
.message-box-sent:hover .ossn-message-delete {
	visibility: visible;
}

.ossn-message-deleted span {
	font-style: italic;
	color: #d27a7a;
}

#ossn-message-delete-form .ossn-loading {
	margin: 40px auto;
}

.message-with .ossn-message-show-image-attachment {
	max-width: 200px;
}

.ossn-message-attach-photo:hover,
.ossn-message-icon-attachment:hover {
	background: #eee;
}

.ossn-message-attach-photo,
.ossn-message-icon-attachment {
	float: right;
	width: 30px;
	height: 30px;
	cursor: pointer;
	border-radius: 50%;
	text-align: center;
}

.ossn-message-icon-attachment:before {
	content: "\f0c6";
	font-family: 'Font Awesome 5 Free';
	font-style: normal;
	font-weight: bold;
	font-size: 20px;
	color: #0b769c;
}

.ossn-message-attach-photo .fa-smile {
	font-style: normal;
	font-weight: bold;
	font-size: 20px;
	color: #0b769c;
	margin-top: 0px !important;
}

.ossn-messages .widget-heading {
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
}

#message-with-user-widget {
	border-left: 1px solid #eee;
}

#message-with-user-widget .widget-heading .user-icon-smaller {
	border-radius: 50%;
	float: left;
	margin-top: -5px;
	margin-right: 5px;
}

.ossn-omessage-attachment-remove {
	color: red;
	float: right;
	cursor: pointer;
}

.ossn-omessage-attachment-name {
	max-width: 250px;
	white-space: nowrap;
	display: inline-block;
	overflow: hidden;
	text-overflow: ellipsis;
}
.ossn-inmessage-status-circle {
    position: absolute;
    margin-left: -18px;
    margin-top: 11px;
    border-radius: 100%;
    border: 2px solid white;
    height: 12px;
    width: 12px;
}

.ossn-inmessage-status-offline .ossn-inmessage-status-circle {
	background:#D23636;
}
.ossn-inmessage-status-online .ossn-inmessage-status-circle {
    background: #4cae4c;
}

.ossn-message-delete-conversation {
    float: right;
    color: #ec2828;
}
#ossn-message-delete-conv-form .ossn-loading {
    margin: 45px auto;
}
.ossn-msgrecent-check-read.fa.fa-check {
    font-size: 10px;
    color: #53bdeb;
    margin-left: 5px;
}
.ossn-recent-message-status-offline .ossn-inmessage-status-circle {
		background: #D23636;
}
.ossn-recent-message-status-online .ossn-inmessage-status-circle {
		background: #4cae4c;
}
.ossn-recent-message-item .ossn-inmessage-status-circle {
    position: absolute;
    margin-left: -13px;
    margin-top: 20px;
    border-radius: 100%;
    border: 2px solid white;
    height: 12px;
    width: 12px;
}
.msg-flex-c1 {
	position:relative;
}
.msg-flex-c2 {
	width:100%;
    margin-left:10px;
}
.ossn-recent-messages-toggle i {
	margin-right:0px;
    margin-top: 6px;
}
.ossn-recent-messages-toggle {
	text-align: center;
    float: right;
    background: transparent;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor:pointer;
}
.ossn-recent-messages-toggle:hover {
	background:#fff;
}
.ossn-messages-select-conv {
	font-size: 5rem;
    color: #999;
}.ossn-ad-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
    word-break: break-word;
}
.group-header-menu {}

.group-header-menu .first-item {
	border-left: 1px solid #EEE;
}

#group-header-menu {
	border: 0px;
	padding: 0 10px;
	font-size: 14px;
	font-weight: bold;
	width: 100%;
}

#group-header-menu .dropdown a:hover {
	background: none;
}

#group-header-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	border-top: 1px solid #ddd;
}

#group-header-menu .dropdown-toggle::after {
	display: none;
}

#group-header-menu li:first-child {}

.group-header-sep {
	height: 60px;
}

#group-header-menu li {
	padding: 0px;
	display: inline-block;
}

#group-header-menu>ul>li>a:not(.group-header-more) {
	background: #fff;
	display: block;
	line-height: 42px;
	margin: 5px 0;
	padding: 0px 10px;
	text-decoration: none;
	font-weight: bold;
}

.group-header-more {
	background: #F6F7F8;
	border-radius: 10px;
	padding: 10px 20px;
	margin-left: 10px;
}

#group-header-menu>ul>li>a {
	color: #333;
	font-weight: bold;
	height: 44px;
}

#group-header-menu>li>a:not(.group-header-menu .dropdown-toggle):hover,
#group-header-menu>ul>li:hover>a:not(.group-header-menu .dropdown-toggle) {
	background: #F6F7F8;
	text-decoration: none;
	border-radius: 10px;
}

#group-header-menu p {
	clear: left;
}

.groups-sidebar {
	color: #999;
	font-weight: bold;
	margin-top: 5px;
}

.ossn-group-approve-all {
	float: right;
	margin-bottom: 5px;
	margin-right: 2px;
}

.ossn-layout-group {}

.ossn-layout-group .coloum-left {
	width: 160px;
	float: left;
	display: inline-table;
}

.ossn-layout-group .coloum-middle {
	width: 800px;
	display: inline-table;
	margin-left: 6px;
	margin-right: 6px;
}

.ossn-layout-group .ossn-inner {
	width: 995px;
}


.ossn-group-no-requests {
	text-align: center;
}

.ossn-group-profile {}

.ossn-group-profile .profile-header {
	border: 1px solid #ccc;
	border-width: 1px 1px 2px 0px;
	position: relative;
	width: 100%;
	opacity: .99;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

.ossn-group-profile .profile-header .header-bottom {
	background: #fff;
	height: 115px;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}

.ossn-group-profile .profile-header .group-name {
	font-size: 20px;
	font-weight: bold;
	padding: 0 20px;
	padding-top: 5px;
	float: left;
}

.ossn-group-profile .profile-header .group-name a {
	color: #333;

}

.groups-buttons {
	float: right;
	padding: 9px;
}

.group-about .heading {
	color: #999;
	font-size: 11px;
	font-weight: bold;
}

.group-about .text {
	font-size: 12px;
	margin-top: 4px;
}

.members-count {
	margin-top: 4px;
	font-size: 12px;
	font-weight: bold;
}

.group-closed-container {}

.group-closed-container p {
	padding: 3px 6px;
}

.ossn-group-cover {
	overflow: hidden;
	height: 300px;
}

.ossn-group-cover img {
	position: relative;
}

.ossn-group-cover:hover>.ossn-group-cover-button {
	display: block;
}

.ossn-group-cover-button {
    margin-right: 10px;
    top: 0;
    margin-top: 20px;
    z-index: 9;
    position: absolute;
    right: 0px;
}

.ossn-group-cover-button a {
	display: inline-block;
}

.group-c-position {
	display: none !important;
}

.groups-buttons a {
	display: inline-block;
}

.ossn-notification-icon-groups,
.ossn-notification-icon-groups:before {
	display: inline-block;
}
.ossn-notification-icon-groups:before {
	content: "\f0c0";
	font-family: 'Font Awesome 5 Free';
	font-style: normal;
	font-weight: 900;
	font-size: 18px;
}

.ossn-group-notification-item .data {
	display: inline;
	margin-left: 5px;
}

.delete-group {
	float: right;
}

.group-widget-members img {
	margin-right: 5px;
	/* group-widget-members img need bottom margin #699 */
	margin-bottom: 5px;
}

.ossn-notification-unviewed {
	background: #F9F9F9;
}

.ossn-group-profile .widget-description .widget-contents {
	text-align: justify;
}

.ossn-group-profile .group-requests-widget .widget-contents {
	text-align: center;
}

.ossn-group-profile .group-requests-widget a {
	font-weight: bold;
	text-transform: uppercase;
}

.group-search-details {
	padding: 20px;
}

.group-search-details .group-name {
	font-weight: bold;
	font-size: 15px;

}

.group-search-items .row {
	border: 1px solid #eee;
	margin-left: 0;
	margin-right: 0;
	margin-bottom: 10px;
}

.group-search-details .ossn-group-search-by {
	margin-top: 5px;
}

.group-search-details .ossn-group-search-by a {
	margin-left: 5px;
}

@media only screen and (max-width: 767px) {
	.btn-responsive {
		padding: 4px 9px;
		font-size: 90%;
		line-height: 1.2;
	}
}

.group-header-menu .dropdown-menu a:first-child:hover {}

.group-header-menu .dropdown-menu li {
	width: 100%;
}

.group-header-more i {
	margin-right: 0px;
}

.group-total-members {
	font-size: 14px;
	color: #999;
	margin-bottom: 0;
}

/**v6.2**/
@media (max-width: 480px) {
	.group-header-menu .dropdown-toggle {
		padding: 8px 10px !important;
		margin: 0 !important;
	}
}.ossn-site-pages-title {
    background: #F9F7F7;
    border: 1px solid #eee;
    padding: 10px;
    font-weight: bold;
}
.ossn-site-pages-body {
    padding: 10px;
}.ossn-block-lists {
	background: #eee;
	border-top: 1px solid #ccc;
	padding: 10px;
}

.ossn-block-lists li {
	list-style-type: square;
    margin-left: 10px;
}

.ossn-block-lists li a {
	font-weight: bold;
}

.ossn-block-lists li span {}:root{
	--ossn-chat-panel-width: 330px;
    --ossn-chat-panel-height: 400px;
    --ossn-inchat-icon-color: #0b769c;
}
.ossn-chat-base {
    border-bottom: 0;
    bottom: 0px;
    left: 15px;
    display: block;
    font-family: "Lucida Grande",Verdana,Arial,"Bitstream Vera Sans",sans-serif;
    font-size: 11px;
    height: 33px;
    position: fixed;
    text-align: left;
    z-index: 1028;
    margin-top: 8px;
    left: 15%;
    color: #000;
    width: 850px;
}

.ossn-chat-base .ossn-chat-bar {
    display: block;
    bottom: 0px;
    cursor: pointer;
    width: 200px;
    float: right;
}

.ossn-chat-base .ossn-chat-bar .inner {
    padding: 10px;
    margin-left: 5px;
    background: #F7F7F7;
    -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.5);
    border: 1px solid #BAC0CD;
    height: 35px;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    position:relative;
}

.ossn-chat-base .ossn-chat-bar .inner:hover {
    background: #fff;
}
.ossn-chat-windows-long .friends-list-item img {
    border: 3px solid #ec2828;
}
.ossn-chat-base .ossn-chat-bar .friends-list {
    background: #fff;
    width: 195px;
	min-height: 271px;
    margin-top: -271px;
    margin-left: 5px;
    position: fixed;
    height: 268px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    display: none;
	box-shadow: 0 12px 28px 0 rgb(0 0 0 / 20%), 0 2px 4px 0 rgb(0 0 0 / 10%);    
}
img.ustatus {
	border-radius: 32px;
}
img.ustatus.ossn-chat-icon-online {
    border: 3px solid #4cae4c;
}
.ossn-chat-inner-text {
    width: 145px;
    margin-left: 20px;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ossn-chat-tab-titles {
    background: #fff;
    color: #000;
    height: 48px;
    padding: 10px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    box-shadow: 0 1px 2px rgb(0 0 0 / 10%), 0 -1px rgb(0 0 0 / 10%) inset, 0 2px 1px -1px rgb(255 255 255 / 50%)    
}

.ossn-chat-inline-table {
    display: inline-table;
}

.ossn-chat-tab-titles .options {
	float: right;
    color: #FFF;
    font-size: 15px;
    cursor: pointer;
}

.ossn-chat-tab-titles .options .item:hover {
    background: #5E72A2;
    width: 17px;
    margin-right: -4px;
    text-align: center;
}

.ossn-chat-tab-titles .text {
    color: #353535;
    font-weight: bold;
    margin-left: 9px;
    padding-top: 4px;
    max-width: 190px;
    white-space: nowrap;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
}

.ossn-chat-bar .friends-list .data {
    width: 195px;
    overflow: hidden;
    overflow-y: scroll;
    height: 236px;
}

.ossn-chat-base .ossn-chat-bar .friends-list-item:hover {
    background: #eee;
}

.ossn-chat-base .ossn-chat-bar .friends-list-item .friends-item-inner {
    margin: 5px 5px 5px 5px;
    padding: 5px 2px;
    height: 33px;
}

.ossn-chat-base .ossn-chat-bar .friends-list-item .icon {
    display: inline-table;
    width: 25px;
    height: 25px;
}

.ossn-chat-base .ossn-chat-bar .friends-list-item .name {
    margin-top: -22px;
    margin-left: 30px;
    max-width: 110px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ossn-chat-base .ossn-chat-bar .friends-list-item .user-icon-small {
	width:25px;
    height:25px;
}
.ossn-chat-base .ossn-chat-bar .friends-list-item .ossn-chat-icon-online {
    border: 3px solid #4cae4c;
	border-radius: 32px;
}

.ossn-chat-none {
    padding: 5px;
    margin-top:10px;
    text-align:center;
}

.friend-tab-item {
    display: block;
    bottom: 0px;
    cursor: pointer;
    width: 200px;
    float: right;
}

.friend-tab-item:first-child {
	margin-right: 75px;
}

.friend-tab-item .friend-tab {
    padding: 12px;
    margin-left: 5px;
    background: #F7F7F7;
    -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.5);
    border: 1px solid #ccc;
    height: 35px;
    
    border-top-right-radius: 2px;
    border-top-left-radius: 2px;
}

.ossn-chat-tab-active {
    background: #5D7D91 !important;
    border: 1px solid #2F4959 !important;
    color: #fff;
}

.friend-tab-item .tab-container {
    margin-top: -366px;
    position: absolute;
    height: var(--ossn-chat-panel-height);
    width: var(--ossn-chat-panel-width);
    margin-left: 5px;
    display: none;
    background:#fff;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;    
    box-shadow: 0 12px 28px 0 rgb(0 0 0 / 20%), 0 2px 4px 0 rgb(0 0 0 / 10%);
}

.friend-tab-item .tab-container .data {
    background: #fff;
    height: 305px;
    width: var(--ossn-chat-panel-width);
    overflow: hidden;
    overflow-y: auto;
}

.friend-tab-item .data .message-reciever .text,
.friend-tab-item .data .message-sender .text {
    position: relative;
    margin-top: 5px;
    margin-bottom: 5px;
    max-width: 80%;
    clear: both;
    font-size:13px;
}

.friend-tab-item .data .message-reciever .text {
	margin-right: auto;
    -webkit-border-radius: 15px;
    -webkit-box-shadow: 0 1px 0 #dce0e6;
    display: inline-table;
    background: #f1f0f0;
}

.friend-tab-item .data .message-reciever .text .inner {
    padding: 9px;
    line-height: 15px;
    max-width: 165px;
    word-wrap: break-word;
}

.friend-tab-item .data .message-sender {
    width: 210px;
    float: right;
}

.friend-tab-item .data .message-reciever {
    width: 222px;
    float: left;
}

.friend-tab-item .data .message-reciever .user-icon {
    display: inline-table;
    padding: 3px;
}
.friend-tab-item .data .message-reciever .user-icon img {
	width:32px;
    height:32px;
}

.friend-tab-item .data .message-sender .text {
    margin-left: 35px;
    -webkit-border-radius: 15px;
    -webkit-box-shadow: 0 1px 0 #c9d4bc;
    display: inline-table;
    background: #dfeecf;
}

.friend-tab-item .data .message-sender .text .inner {
    padding: 9px;
    line-height: 15px;
    max-width: 158px;
    word-wrap: break-word;
}

.ossn-chat-triangle {
    border-top: 5px solid rgba(0, 0, 0, 0);
    border-bottom: 5px solid rgba(0, 0, 0, 0);
}
.ossn-chat-text-data {
    margin-left:5px;
}

.ossn-chat-text-data-right {
    float: right;
    margin-right:5px;
}

.friend-tab-item .friend-tab form {
    display: none;
}

.friend-tab-item .friend-tab input[type='text'] {
	width: 255px;
    height: 33px;
    padding: 3px 10px 3px;
    margin-top: -20px;
    margin-left: -13px;
    position: absolute;
    font-size: 13px;
    border: 0px;
    outline: none;
    background: #F0F2F5;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.ossn-chat-tab-close {
    width: 17px;
    margin-right: -4px;
    text-align: center;
     color: #bbb;
}

.ossn-chat-new-message {
    background-color: #dc0d17;
    background-image: -webkit-gradient(linear, center top, center bottom, from(#fa3c45), to(#dc0d17));
    background-image: -webkit-linear-gradient(#fa3c45, #dc0d17);
    color: #fff;
    min-height: 13px;
    padding: 1px 3px;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, .4);
    font-size: 10px;
    float: left;
    display: none;
	margin-top: -2px;
    position: absolute;     
}

.ossn-chat-icon-smilies {
    background: #FFF;
    width: 235px;
    min-height: 40px;
    padding: 5px;
    position: fixed;
    border: 1px solid #CCC;
    z-index: 1;
}

.ossn-chat-item-smiles {
    padding: 3px;
}

.ossn-chat-icon-smile-set {
    margin-top: -23px;
    width: 75px;
    padding: 4px;
    height: 27px;
    position: absolute;
    margin-left: 240px;
}

.ossn-chat-icon-smilies {
    display: none;
}
/** Icons **/
.ossn-chat-icon {}
.ossn-chat-icon-online:before {
	content: "\f111 ";
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
    font-weight: 900;
    color: #57B540;
    font-size: 12px;
    float: left;
}

.ossn-chat-icon-offline:before {
	content: "\f111 ";
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
    font-weight: 900;
    color: #D23636;
    font-size: 12px;
    float: left;
}
.ossn-chat-option-title-icon {
	width: 30px;
    height: 30px;
    text-align: center;
    padding-top: 4px;
    border-radius: 50%;
}
.ossn-chat-option-title-icon:hover {
    background: #f1f1f1;

}
.ossn-chat-icon-minimize:before {
    content: "\f068";
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
    font-weight: 900;
    color: var(--ossn-inchat-icon-color);
}
.ossn-chat-icon-expend {
    transform: rotate(310deg);
}
.ossn-chat-icon-call:before {
    content: "\f03d";
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
    font-weight: 900;
    color:var(--ossn-inchat-icon-color);
}
.ossn-chat-icon-expend:before {
    content: "\f061";
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
    font-weight: 900;
    color: var(--ossn-inchat-icon-color);
}
.ossn-chat-tab-close:before {
    content: "\f00d";
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
    font-weight: 900;
    color: var(--ossn-inchat-icon-color);
}

.ossn-chat-icon-expend:hover {
    opacity: 0.9;
}
.ossn-chat-icon-attachment,
.ossn-chat-icon-smile {
		display:inline-block;
        width:30px;
        height:30px;
        background: #fff;
         border-radius: 50%;
             text-align: center;
}
.ossn-chat-icon-smile:before {
    content: "\f599";
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    color: var(--ossn-inchat-icon-color);
}
.ossn-chat-icon-attachment:hover,
.ossn-chat-icon-smile:hover {
	background: #eee;
    text-align: center;
}
.ossn-chat-icon-attachment:before {
    content: "\f0c6";
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    color: var(--ossn-inchat-icon-color);
}
.ossn-chat-icon {
    width: 16px !important;
    height: 16px !important;
}

.ossn-chat-windows-long {
    display: none;
}

@media only screen
and (min-width : 1280px) {
    .ossn-chat-base {
        width: 910px !important;
    }
}

@media only screen and (min-width : 1500px) {
    .ossn-chat-base {
        width: 1100px !important;
    }
}

@media only screen
and (min-width : 1360px) {
    .ossn-chat-bar {
        display: none !important;
    }

    .ossn-chat-windows-long {
        float: right;
        position: fixed;
        min-height: 500px;
        width: 80px;
        border-left: 1px solid #ccc;
        bottom: 0px;
        right: 0;
        top: 0;
        background: #E9EAED;
        display: block;
    }

    .ossn-chat-windows-long .inner {
        margin-top: 55px;
        border-top: 1px solid #ccc;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .ossn-chat-windows-long .friends-list-item .friends-item-inner {
    	margin: 5px 5px 5px 5px;
    	height: 55px;
    }

    .ossn-chat-windows-long .friends-list-item {
        border-top: 1px solid #E9EAED;
        border-bottom: 1px solid #E9EAED;
        padding-left: 2px;
            text-align: center;
    }

    .ossn-chat-windows-long .friends-list-item:hover {
        background: #E1E2E5;
        border-top: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
        cursor: pointer;
    }

    .ossn-chat-windows-long .friends-list-item .icon {
        display: inline-block;
        width: 50px;
        height: 50px;
    }
	

    .ossn-chat-windows-long .friends-list-item .name {
        margin-top: -25px;
        margin-left: 40px;
        max-width: 110px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

   .ossn-chat-windows-long .friends-list-item .ossn-chat-icon-online:before {
    	float: right;
 	margin-right:4px;
    	margin-top: -17px;
 	content: "\f111 ";
    	font-family: 'Font Awesome 5 Free';
    	font-style: normal;
    	font-weight: 900;
    	color: #57B540;
    	font-size: 12px;
    }
}
/** Document **/
#ossn-chat-sound {
    display: none;
}

.ossn-chat-message-sending {
	position: absolute;
    width: 255px;
    height: 34px;
    margin-top: -21px;
    margin-left: -12px;
    padding: 15px;
    display:none;
    background: #fff;
}
.friend-tab .ossn-chat-inner-text {
	margin-top: -2px;
}
.ossn-chat-sending-icon {
    background: url("https://streetinstant.fr/components/OssnChat/images/loading-small.gif") no-repeat;
    width: 16px;
    height: 11px;
}
.ossnchat-scroll-top {
	margin-top:0px !important;
}

@media (max-width: 480px){
    .ossn-chat-base {
    	display:none !important;
    }
}

@media only screen and (max-width: 480px) {
    .ossn-chat-base {
    	display:none !important;
    }
}
@media only screen and (max-width: 768px) {
    .ossn-chat-base {
    	display:none !important;
    }
}
footer { 
	margin-bottom:50px;	
}
@-ms-viewport {
   width: auto;
}
.friend-tab-item .container-table-pagination {
   	visibility:hidden;
}
.friend-tab-item .pagination {
	margin:0;
}
.ossn-chat-tab-user-icon {
		    border-radius: 50%;
            float: left;
}
/**
 Scroll
 **/
.ossn-chat-bar .friends-list .data,
.friend-tab-item .tab-container .data {
    scrollbar-width: thin;
    scrollbar-color: #adadad transparent
}
.ossn-chat-bar .friends-list .data::-webkit-scrollbar,
.friend-tab-item .tab-container .data::-webkit-scrollbar {
    height: 20px;
    width: 8px
}
.ossn-chat-bar .friends-list .data::-webkit-scrollbar-track,
.friend-tab-item .tab-container .data::-webkit-scrollbar-track {
    border-radius: 5px;
    background-color: transparent;
}
.ossn-chat-bar .friends-list .data::-webkit-scrollbar-track:hover,
.friend-tab-item .tab-container .data::-webkit-scrollbar-track:hover {
    background-color: transparent
}
.ossn-chat-bar .friends-list .data::-webkit-scrollbar-track,
.friend-tab-item .tab-container .data::-webkit-scrollbar-track {
    background-color: none;
    border-left:0px;
}
.ossn-chat-bar .friends-list .data::-webkit-scrollbar-track:active,
.friend-tab-item .tab-container .data::-webkit-scrollbar-track:active {
    background-color: transparent
}
.ossn-chat-bar .friends-list .data::-webkit-scrollbar-thumb,
.friend-tab-item .tab-container .data::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: #adadad
}
.ossn-chat-bar .friends-list .data::-webkit-scrollbar-thum:hover,
.friend-tab-item .tab-container .data::-webkit-scrollbar-thumb:hover {
    background-color: #adadad
}
.ossn-chat-bar .friends-list .data::-webkit-scrollbar-thumb:active,
.friend-tab-item .tab-container .data::-webkit-scrollbar-thumb:active {
    background-color: #adadad
}
.ossn-message-attachment {
    font-size: 10px;
    font-weight: bold;
    display: block;
    margin-top: 2px;
    font-style: italic;
}
.ossn-chat-message-attachment-details {
    position: absolute;
    width: 320px;
    height: 35px;
    margin-top: -59px;
    margin-left: -12px;
    border-top: 1px solid #eee;
    padding: 10px;
    background: #fff;
    display:none;
}
.ossn-message-attachment-remove {
    color: red;
    float: right;
    cursor:pointer;
}
.ossn-message-attachment-name {
    max-width: 250px;
    white-space: nowrap;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ossn-inchat-status-circle {
    position: absolute;
    margin-left: -13px;
    margin-top: 17px;
    border-radius: 100%;
    border: 2px solid white;
    height: 12px;
    width: 12px;
}
.ossn-inchat-status-offline {
	background:#D23636;
}
.ossn-inchat-status-online {
    background: #4cae4c;
}
.friends-list .ossn-chat-tab-titles {
    height: 35px;
    padding: 5px;
    border-bottom: 1px solid #eee;
    box-shadow: none;
}
.ossn-minichat-list-open {
    border-top-right-radius: 0px !important;
    border-top-left-radius: 0px !important;    
}
.friends-list .ossn-chat-tab-titles .text {
    font-size: 12px;
}.ossn-notification-icon-poke,
.ossn-notification-icon-poke:before {
    display: inline-block;	
}
.ossn-notification-icon-poke:before {
	content: "\f0a4";
    font-family: 'Font Awesome 5 Free';
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
}.ossn_embed_video {
	display: block;
}
.emojii-container {
	background: #fff;
	width: 320px;
	border: 1px solid #ececec;
	position: fixed;
	z-index: 10000;
	box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
	top: 30%;
	left: 50%;
	transform: translate(-50%, -30%);
	padding: 0 5px 5px;
	border-radius: 5px;
}

.emojii-container .nav {
	padding: 3px 0;
}

.emojii-container .emojii-list {
	display: none;
	height: 179px;
	overflow: hidden;
	overflow-y: scroll;
}

.emojii-container .emojii-list li {
	display: inline-block;
	font-size: 19px;
	padding: 3px;
}

.emojii-container .emojii-list li:hover {
	background: #eee;
	cursor: pointer;
}

.emojii-container .emojii-list-emoticons {
	display: block;
}

.emojii-container .nav a {
	font-size: 20px;
}

.emojii-container .nav>li>a {
	padding: 10px 4px;
}

.ossn-wall-container-control-menu-emojii-selector i {
	font-weight: initial;
}

.emojii-container-main {
	display: none;
}

.ossn-emojii-output {
	font-style: initial;
	font-size: 20px;
}

.ossn-comment-attach-photo .fa-smile,
.ossn-message-attach-photo .fa-smile {
	float: right;
	position: relative;
	margin-right: 5px;
	margin-top: 5px;
	width: 25px;
	height: 25px;
	padding: 5px;
	cursor: pointer;
	font-weight: 400;
}

.ossn-comment-attach-photo .fa-smile {
	margin-top: 3px;
	font-size: 18px;
	color: #999;
}

.comment-container .emojii-container-main {
	float: right;
	margin-right: 285px;
}

.message-emojii {
	float: right;
	position: relative;
	top: 105px;
}

.comment-container {
	z-index: initial;
}


/***************************************
	Add system fonts for consistent
	emoji appearance on all platforms
.ossn-wall-container {
	font-family: "PT sans", "Apple Color Emoji","Segoe UI Emoji","NotoColorEmoji","Segoe UI Symbol","Android Emoji","EmojiSymbols";
}

.ossn-wall-item {
	font-family: "PT sans", "Apple Color Emoji","Segoe UI Emoji","NotoColorEmoji","Segoe UI Symbol","Android Emoji","EmojiSymbols";
}
.message-inner {
	font-family: "PT sans", "Apple Color Emoji","Segoe UI Emoji","NotoColorEmoji","Segoe UI Symbol","Android Emoji","EmojiSymbols";
}
.ossn-form textarea {
	font-family: "PT sans", "Apple Color Emoji","Segoe UI Emoji","NotoColorEmoji","Segoe UI Symbol","Android Emoji","EmojiSymbols";
}

.ossn-message-box {
	font-family: "PT sans", "Apple Color Emoji","Segoe UI Emoji","NotoColorEmoji","Segoe UI Symbol","Android Emoji","EmojiSymbols";
}
.ossn-chat-containers {
	font-family: "Lucida Grande",Verdana,Arial,"Bitstream Vera Sans",sans-serif, "Apple Color Emoji","Segoe UI Emoji","NotoColorEmoji","Segoe UI Symbol","Android Emoji","EmojiSymbols";
}
.friend-tab-item .friend-tab input[type='text'] {
	font-family: 'lucida grande',tahoma,verdana,arial,sans-serif, "Apple Color Emoji","Segoe UI Emoji","NotoColorEmoji","Segoe UI Symbol","Android Emoji","EmojiSymbols";
}

****************************************/

.ossn-chat-base {
	font-family: "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "NotoColorEmoji", "Segoe UI Symbol", "Android Emoji", "EmojiSymbols";
}

body {
	font-family: "PT Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "NotoColorEmoji", "Segoe UI Symbol", "Android Emoji", "EmojiSymbols";
}

.smiles-close {
	float: right;
	margin-top: 8px;
	background: #eee;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	text-align: center;
}

.smiles-close i {
	margin: 0 auto;
}.ossn-chat-windows-long .ossn-chat-pling {
	line-height:2;
	padding-left: 4px;
}
.ossn-chat-pling {
	display: inline;
}
.ossn-message-pling {
	display: inline;
	padding-left: 10px;
}.messagetyping {
}
.mtyping-circle {
  display: inline-block;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background-color: #7d7d7d;
}
.mtyping-circle.mtyping-bouncing {
  animation: mtypingbouncing 1000ms ease-in-out infinite;
  animation-delay: 3600ms;
}
.mtyping-circle:nth-child(1) {
  animation-delay: 0ms;
}

.mtyping-circle:nth-child(2) {
  animation-delay: 333ms;
}

.mtyping-circle:nth-child(3) {
  animation-delay: 666ms;
}

@keyframes mtypingbouncing {
  0% {
    transform: translateY(0);
  }
  33% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(0);
  }
}.ctyping-hide {
	display:none;	
}
.comments-realtime-status {
	min-height:5px;	
}
.ctyping-c-item {
	margin-top: -30px !important;	
}
.ctyping-c-item-container {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;	
	padding: 10px;
    margin-top: 10px;
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 20px;
    padding-right: 20px;	
}
.ctyping {
	display:inline-block;	
}
.ctyping-text {
	display:inline-block;
    margin-left: 10px;
}
.ctyping-circle {
  display: inline-block;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background-color: #7d7d7d;
}
.ctyping-circle.ctyping-bouncing {
  animation: ctypingbouncing 1000ms ease-in-out infinite;
  animation-delay: 3600ms;
}
.ctyping-circle:nth-child(1) {
  animation-delay: 0ms;
}

.ctyping-circle:nth-child(2) {
  animation-delay: 333ms;
}

.ctyping-circle:nth-child(3) {
  animation-delay: 666ms;
}

@keyframes ctypingbouncing {
  0% {
    transform: translateY(0);
  }
  33% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(0);
  }
}#ossn-wall-postbg {
    border: 1px solid #E5E6E9;
    background: #fff;
    padding: 10px;
    height: 45px;
    margin-top: 10px;
    border-radius:10px;
}
.postbg-container {
    min-height: 320px;
    color: #333;
    font-size: 30px !important;
    font-weight: 700;
    line-height: 1.1em;
    padding: 100px 30px !important;
    text-align: center !important;
}
.postbg-text {
	display: flex;
    justify-content: center;
    align-items: center;
}
#ossn-wall-postbg span {
	width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 5px;
    border-radius: 5px;
 	cursor:pointer;
}/** <style> **/
.giphy-container {
	display: none;
	background: #fff;
	padding: 10px 10px 20px;
	width: 250px;
	z-index: 1;
	border-radius: 5px;
	right: 0;
	margin-right: 20px;
	box-shadow: 0 12px 28px 0 rgb(0 0 0 / 13%), 0 2px 4px 0 rgb(0 0 0 / 13%), inset 0 0 0 1px rgb(0 0 0 / 13%);
}

.giphy-container-inner {
	height: 300px;
}

.giphy-container-inner .giphy-list {
	overflow-y: scroll;
	overflow-x: hidden;
	height: 250px;
}

.giphy-icon {
	background: url('https://streetinstant.fr/components/OssnGiphy/images/gif.png');
	float: right;
	position: relative;
	margin-right: 5px;
	margin-top: 4px;
	width: 25px;
	height: 25px;
	padding: 5px;
	cursor: pointer;
}

.search-giphy {
	height: 32px;
	background-color: #f2f3f5;
	border: 1px solid #ccd0d5;
	border-radius: 15px;
	display: block;
	margin-right: 20px;
	margin-bottom: 10px;
	padding: 5px 10px;
	outline: none;
}

.giphy-list .ossn-pagination li {
	visibility: hidden;
}

.giphy-list .pagination {
	margin: 0;
}

.giphy-container-inner .ossn-loading {
	margin: -20px auto;
}

.giphy-container-inner .ossn-loading-initial {
	margin: 0 auto;
}

.close-giphy-container {
	float: right;
	top: 0;
	position: absolute;
	right: 0;
	padding: 5px;
	margin: 10px 1px;
	border-radius: 10px;
	cursor: pointer;
}

.giphy-list img {
	cursor: pointer
}

.giphy-powerd-text {
    font-size: 12px;
    margin-bottom: 5px;
    margin-left: 5px;
    display: block;
    bottom: 0;
    position: absolute;
}