.social_gellary .post_img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.social_gellary svg,
.personal_info svg {
	fill: rgb(var(--color-button-text));
}
.overlay__wrapper .content-details svg.icon {
    width: 18px;
    height: 18px;
}
.content-details svg path{
    fill: rgb(var(--color-button-text));
}
.content-details.bg-transparent {
    background: transparent;
}
.social_gellary .button .icon-instagram{
	margin-right: 5px;
}
.social_icon_wrap {
	width: 60px;
	height: 60px;
	background-color: rgba(var(--color-button));
	display: flex;
	justify-content: center;
	align-items: center;
}
.personal_info {
	display: flex;
	gap: 10px;
	align-items: center;
	margin-bottom: 0;
}
.post_content__wrapper.rtl .user_details_wrapper{
  order: 2;
}
.post_content__wrapper .user_details_wrapper {
	width: 100%;
	word-break: break-word;
}
.post_content__wrapper .user_details_wrapper .user_tags{
	font-weight: var(--font-body-weight-medium);
}
.post_content__wrapper .post_gellary {
	width: 100%;
}
.overlay__wrapper {
	position: relative;
	border: none;
}
.overlay__wrapper .content-overlay {
	background: rgba(var(--color-background), 0.5);
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	opacity: 0;
	-webkit-transition: all 0.4s ease-in-out 0s;
	-moz-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s;
} 
.content-details {
	position: absolute;
	text-align: center;
	top: 50%;
	left: 50%;
	opacity: 0;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	padding: 10px;
	display: flex;
	background-color: rgba(var(--color-button));
	border-radius: var(--buttons-radius);
}
.content-details svg{
	fill: rgb(var(--color-button-text));
}
.overlay__wrapper:hover .content-details {
	top: 50%;
	left: 50%;
	opacity: 1;
}
.fadeIn-bottom {
	top: 80%;
}
.overlay__wrapper:hover .content-overlay {
	opacity: 1;
}
.social_gellary .user_details_wrapper .button{
	margin-top: 1.5rem;
}
.social_gellary .social_user_name{
	margin: 0;
}
.social_gellary .top_content__wrapper{
	gap: 25px;
	display: flex;
    flex-direction: column;
}
.social_gellary .user_details_wrapper ul, .social_gellary .user_details_wrapper ol{
	display: inline-block;
	padding-left: 20px;
}
@media (max-width: 1199px){
	.post_content__wrapper .user_details_wrapper{
		max-width: 30%;
	}
	.post_content__wrapper{
		gap: 25px;
	}
}
@media (max-width: 991px){
	.post_content__wrapper{
		flex-wrap: wrap;
	}
	.post_content__wrapper .user_details_wrapper, .post_content__wrapper .post_gellary{
		max-width: 100%;
	}
}