.members_list{
	width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(249px, 1fr));
	grid-gap: 10px;
  	grid-auto-rows: minmax(355px, auto);
	background: none;
}
.members_card {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background: transparent;
	margin: 8px;
	padding: 0 7px;
	border-radius: 8px;
	border-top: none;
	box-shadow: 3px 4px 10px rgba(0,0,0,0.2);
	overflow: hidden;
}

.night-mode .members_card{
    border: 1px solid rgb(255 255 255 / 28%) !important;
}

.members_card::before {
	content: "";
	position: absolute;
	height: 1px;
	width: 94%;
	top: 0;
	left: 3%;
	background: linear-gradient(90deg,#14ffe9,#ffeb39,#ff00e0);
	animation: topbdr 1.5s infinite linear alternate;
	z-index: 1;
}
@keyframes topbdr {
	100% {
		filter: hue-rotate(-360deg);
	}
}
.user_box {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
	overflow: hidden;
}
.user_data {
	display: flex;
	align-items: center;
	justify-content: center;
}
.imagebox {
    position: absolute;
    top: 0;
    left: 0;
    height: 132px;
    width: 100%;
}
.gallery {
	height: 100%;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
img.user_av {
	width: 100%;
	height: 100%;
}
.clipped-border {
	-webkit-clip-path: polygon(
	50% 0%,
	95% 25%,
	95% 75%,
	50% 100%,
	5% 75%,
	5% 25%
	);
	clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
	padding: 5px;
	background: linear-gradient(#14ffe9,#ffeb3b,#fc518a);
	height: 90px;
	width: 90px;
	transition: transform 0.5s ease-in-out;
	transition-delay: 0.1s;
	position: absolute;
	cursor: pointer;
}

.clipped-border:before {
  content: "";
  position: absolute;
  opacity: 0.5;
  width: 350px;
  height: 70px;
  background: var(--white);
  top: 0;
  left: 0;
  z-index: 1;
  transform: rotate(45deg);
  transition: transform 0.6s ease-in-out;
}

.clipped-border:after {
	position: absolute;
	content: '';
	top: 3px;
	left: 3px;
	right: 3px;
	bottom: 3px;
	height: 90%;
	width: 90%;
	padding: 2px;
	background: var(--white);
	z-index: -1;
  -webkit-clip-path: polygon(
    50% 0%,
    95% 25%,
    95% 75%,
    50% 100%,
    5% 75%,
    5% 25%
  );
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
}

.user_box:hover .clipped-border:before, .clipped-border:hover:before {
	transform: translate(-100px, 400%) rotate(45deg);
	transition: transform 0.5s ease-in-out;
}

.members_card:hover .clipped-border {
	animation: spins 9s infinite linear alternate;
	animation-delay: 0.45s;
}
@keyframes spins{
    0%{
        background-position: 0 0;
	}
    50%{
        background-position: 500px 700px;
	}
    100%{
        background-position: 0 0;
	}
}

#clipped {
  -webkit-clip-path: polygon(
    50% 0%,
    95% 25%,
    95% 75%,
    50% 100%,
    5% 75%,
    5% 25%
  );
	clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
}

.user_box:hover .clipped-border, .clipped-border:hover {
	transform: scale(1.1);
	transition: transform 0.4s ease-in-out;
	transition-delay: 0.1s;
	z-index: 10;
}

.user_info {
    position: absolute!important;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    flex-flow: column wrap;
    text-align: center;
    font-size: 11px;
}

.user_info span {
    margin: 1px 0;
}

.user_info .user_name {
	margin-top: -7px;
    margin-bottom: 6px;
    font-size: 17px;
    font-weight: bold;
}

.user_info .user_stars {
    margin-bottom: 4px;
}

.user_card {
    position: absolute;
    bottom: 72px;
    left: 0;
    height: 50px;
    width: 97%;
	margin-left: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
    background: linear-gradient(65deg, #179aff, #27e0e3);
}

.user_details {
    display: flex;
    justify-content: center;
    align-items: center;
}

.user_details span {
    margin: 0 10px;
    font-size: 13px;
	color: #000;
}

.user_threads, .user_posts{
    padding: 10px 15px;
    display: flex;
    flex-flow: column wrap;
}

.user_details span i {
    margin-bottom: 5px;
	color: #141414;
}

.user_refs a{
	display: flex;
	flex-flow: column wrap;
	padding: 10px 15px;
	color: #000;
	text-decoration: none;
	border: none;
	outline: 0;
	appearance: none;
	overflow: hidden;
	cursor: pointer;
}

.click_mark {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.toggled, .toggled2{
	position: absolute;
	bottom: 2px;
	left: 50%;
	height: 35px;
	width: 35px;
	background: #36b3ff;
	border-radius: 6px;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: translateX(-50%);
	cursor: pointer;
}

.toggled2 {
    bottom: 1.1rem;
}

.toggled i,.toggled2 i  {
	color: var(--white);
	font-size: 18px;
	transition: 0.4s ease-in-out;
}

.toggled.active i {
    transform: rotate(180deg);
}

.toggled2.active2 i {
    transform: rotate(-180deg);
}

.user_box2 {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--white);
    transform: translateY(100%);
    z-index: 100;
    transition: .6s ease-in-out;
    transition-delay: 0.29s;
}

.user_box2.current {
    transform: translateY(0);
}

.click_mark2 {
	position: relative;
	top: 0;
	left: 0;
	height: 70px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 0 0 8px 8px;
	font-size: 25px;
	font-family: baligle;
	font-weight: bold;
	background: url(../../../images/swirl.png) no-repeat, linear-gradient(85deg, #843af2, #e650d7, #5cf2e6);
	background-blend-mode: overlay;
	background-size: cover;
	color: #f5f5f5;
	text-shadow: 2px 3px 3px var(--transparent-black);
	overflow: hidden;
}

.memb_ul {
	position: relative;
	display: flex;
	flex-direction: column;
	top: 1.1em;
	padding: 10px;
}

.memb_ul li {
	list-style: none;
	padding: 14px 3px;
	font-size: 13px;
	border-bottom: 1px dashed var(--transparent-black);
}

.memb_ul li:last-child {
	border-bottom: none;
}

.memb_ul li:span:first-child {
	text-align: left;
}

.memb_ul li span:nth-child(2n) {
	float: right;
	text-align: right !important;
}

.memb_ul li span i {
    margin-right: 8px;
}

.user_box2 .toggled {
    margin-bottom: 1em;
}

/* @media (max-width: 579px) {
	.members_list {
		grid-template-columns: repeat(auto-fit, minmax(calc(568px / 2), 1fr));
	}
} */

		
		
		
		
		
		
		
		
		