@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap");

* {
	margin: 0;
	padding: 0;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
header,
main,
nav,
footer,
aside,
article,
section,
time {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	box-sizing: border-box;
}

body {
	line-height: 1;
	-webkit-user-select: none;
	/* Safari */
	-ms-user-select: none;
	/* IE 10 and IE 11 */
	user-select: none;
	/* Standard syntax */
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}

figure {
	margin: 0;
}

ins {
	text-decoration: none;
}

del {
	text-decoration: line-through;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

input[readonly] {
	background-color: #f0f0f0;
	color: #666;
	border: 1px solid #ccc;
	cursor: not-allowed;
}

input[readonly]:focus {
	outline: none;
	box-shadow: none;
}

input[type=submit],
input[type=text],
input[type=email],
input[type=tel],
input[type=search],
input[type=password],
input[type=number],
select,
textarea {
	padding: 0;
	margin: 0;
	border: none;
	border-radius: 0;
	-moz-border-radius: 0;
	box-sizing: border-box;
	-webkit-border-radius: 0;
	-webkit-box-sizing: border-box;
}

input[type=submit],
input[type=text],
input[type=email],
input[type=tel],
input[type=search],
input[type=password],
input[type=number],
textarea,
button {
	appearance: initial;
	-moz-appearance: initial;
	-webkit-appearance: none;
}

@keyframes img-flip {
	0% {
		transform: rotateY(0deg);
		opacity: 1;
	}

	5% {
		transform: rotateY(180deg);
		opacity: 0;
	}

	50% {
		transform: rotateY(180deg);
		opacity: 0;
	}

	55% {
		transform: rotateY(0deg);
		opacity: 1;
	}

	100% {
		transform: rotateY(0deg);
		opacity: 1;
	}
}

@keyframes img-flip2 {
	0% {
		transform: rotateY(180deg);
		opacity: 0;
	}

	5% {
		transform: rotateY(0deg);
		opacity: 1;
	}

	50% {
		transform: rotateY(0deg);
		opacity: 1;
	}

	55% {
		transform: rotateY(180deg);
		opacity: 0;
	}

	100% {
		transform: rotateY(180deg);
		opacity: 0;
	}
}

@font-face {
	font-family: "CustomIcons";
	src: url("../fonts/icons/icomoon.woff?ver=1.3");
	src: url("../fonts/icons/icomoon.eot#iefix") format("embedded-opentype"), url("../fonts/icons/icomoon.ttf?ver=1.3") format("truetype"), url("../fonts/icons/icomoon.woff?ver=1.3") format("woff"), url("../fonts/icons/icomoon.svg?ver=1.3") format("svg");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "FontAwesome";
	src: url("../fonts/FontAwesome/fontawesome-webfont.eot?v=4.7.0");
	src: url("../fonts/FontAwesome/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../fonts/FontAwesome/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../fonts/FontAwesome/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../fonts/FontAwesome/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../fonts/FontAwesome/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
	font-weight: 900;
	font-style: normal;
}

.row {
	margin-left: auto;
	margin-right: auto;
	max-width: 800px;
	width: 100%;
	position: relative;
	display: flex;
	flex: 0 1 auto;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: flex-start;
	align-items: stretch;
}

.row.start {
	justify-content: flex-start;
}

.row.center {
	justify-content: center;
}

.row.end {
	justify-content: flex-end;
}

.row.between {
	justify-content: space-between;
}

.row.around {
	justify-content: space-around;
}

.row.top {
	align-items: flex-start;
}

.row.middle {
	align-items: center;
}

.row.bottom {
	align-items: flex-end;
}

.row.stretch {
	align-items: stretch;
}

.row.reverse {
	flex-direction: row-reverse;
}

.row.forward {
	flex-direction: row;
}

.row.full {
	max-width: none;
}

.row .row {
	padding-left: 0;
	padding-right: 0;
	margin-left: 0px;
	width: calc(100% + 0px);
	max-width: calc(100% + 0px);
}

.col {
	float: left;
	width: 100%;
	flex-grow: 1;
	flex: 0 0 auto;
	max-width: 100%;
	flex-basis: 100%;
	padding-left: 0px;
	padding-right: 0px;
}

.col.unset {
	order: 0;
}

.col.first {
	order: -1;
}

.col.last {
	order: 1;
}

.col.self_center {
	align-self: center;
}

.col.no_gut {
	padding: 0;
}

.col.end {
	display: flex;
	justify-content: flex-end;
}

.row.default_start {
	justify-content: flex-start;
}

.row.default_center {
	justify-content: center;
}

.row.default_end {
	justify-content: flex-end;
}

.row.default_stretch {
	align-items: stretch;
}

.row.default_top {
	align-items: flex-start;
}

.row.default_middle {
	align-items: center;
}

.row.default_bottom {
	align-items: flex-end;
}

.row.default_between {
	justify-content: space-between;
}

.row.default_around {
	justify-content: space-around;
}

.row.default_reverse {
	flex-direction: row-reverse;
}

.row.default_forward {
	flex-direction: row;
}

.col.default_prefix_0 {
	margin-left: 0;
}

.col.default_suffix_0 {
	margin-right: 0;
}

.col.default_unset {
	order: 0;
}

.col.default_first {
	order: -1;
}

.col.default_last {
	order: 1;
}

.col.default_1 {
	max-width: 8.3333333333%;
	flex-basis: 8.3333333333%;
}

.col.default_prefix_1 {
	margin-left: 8.3333333333%;
}

.col.default_suffix_1 {
	margin-right: 8.3333333333%;
}

.col.default_2 {
	max-width: 16.6666666667%;
	flex-basis: 16.6666666667%;
}

.col.default_prefix_2 {
	margin-left: 16.6666666667%;
}

.col.default_suffix_2 {
	margin-right: 16.6666666667%;
}

.col.default_3 {
	max-width: 25%;
	flex-basis: 25%;
}

.col.default_prefix_3 {
	margin-left: 25%;
}

.col.default_suffix_3 {
	margin-right: 25%;
}

.col.default_4 {
	max-width: 33.3333333333%;
	flex-basis: 33.3333333333%;
}

.col.default_prefix_4 {
	margin-left: 33.3333333333%;
}

.col.default_suffix_4 {
	margin-right: 33.3333333333%;
}

.col.default_5 {
	max-width: 41.6666666667%;
	flex-basis: 41.6666666667%;
}

.col.default_prefix_5 {
	margin-left: 41.6666666667%;
}

.col.default_suffix_5 {
	margin-right: 41.6666666667%;
}

.col.default_6 {
	max-width: 50%;
	flex-basis: 50%;
}

.col.default_prefix_6 {
	margin-left: 50%;
}

.col.default_suffix_6 {
	margin-right: 50%;
}

.col.default_7 {
	max-width: 58.3333333333%;
	flex-basis: 58.3333333333%;
}

.col.default_prefix_7 {
	margin-left: 58.3333333333%;
}

.col.default_suffix_7 {
	margin-right: 58.3333333333%;
}

.col.default_8 {
	max-width: 66.6666666667%;
	flex-basis: 66.6666666667%;
}

.col.default_prefix_8 {
	margin-left: 66.6666666667%;
}

.col.default_suffix_8 {
	margin-right: 66.6666666667%;
}

.col.default_9 {
	max-width: 75%;
	flex-basis: 75%;
}

.col.default_prefix_9 {
	margin-left: 75%;
}

.col.default_suffix_9 {
	margin-right: 75%;
}

.col.default_10 {
	max-width: 83.3333333333%;
	flex-basis: 83.3333333333%;
}

.col.default_prefix_10 {
	margin-left: 83.3333333333%;
}

.col.default_suffix_10 {
	margin-right: 83.3333333333%;
}

.col.default_11 {
	max-width: 91.6666666667%;
	flex-basis: 91.6666666667%;
}

.col.default_prefix_11 {
	margin-left: 91.6666666667%;
}

.col.default_suffix_11 {
	margin-right: 91.6666666667%;
}

.col.default_12 {
	max-width: 100%;
	flex-basis: 100%;
}

.col.default_prefix_12 {
	margin-left: 100%;
}

.col.default_suffix_12 {
	margin-right: 100%;
}

@media (min-width: 360px) {
	.row.tiny_start {
		justify-content: flex-start;
	}

	.row.tiny_center {
		justify-content: center;
	}

	.row.tiny_end {
		justify-content: flex-end;
	}

	.row.tiny_stretch {
		align-items: stretch;
	}

	.row.tiny_top {
		align-items: flex-start;
	}

	.row.tiny_middle {
		align-items: center;
	}

	.row.tiny_bottom {
		align-items: flex-end;
	}

	.row.tiny_between {
		justify-content: space-between;
	}

	.row.tiny_around {
		justify-content: space-around;
	}

	.row.tiny_reverse {
		flex-direction: row-reverse;
	}

	.row.tiny_forward {
		flex-direction: row;
	}

	.col.tiny_prefix_0 {
		margin-left: 0;
	}

	.col.tiny_suffix_0 {
		margin-right: 0;
	}

	.col.tiny_unset {
		order: 0;
	}

	.col.tiny_first {
		order: -1;
	}

	.col.tiny_last {
		order: 1;
	}

	.col.tiny_1 {
		max-width: 8.3333333333%;
		flex-basis: 8.3333333333%;
	}

	.col.tiny_prefix_1 {
		margin-left: 8.3333333333%;
	}

	.col.tiny_suffix_1 {
		margin-right: 8.3333333333%;
	}

	.col.tiny_2 {
		max-width: 16.6666666667%;
		flex-basis: 16.6666666667%;
	}

	.col.tiny_prefix_2 {
		margin-left: 16.6666666667%;
	}

	.col.tiny_suffix_2 {
		margin-right: 16.6666666667%;
	}

	.col.tiny_3 {
		max-width: 25%;
		flex-basis: 25%;
	}

	.col.tiny_prefix_3 {
		margin-left: 25%;
	}

	.col.tiny_suffix_3 {
		margin-right: 25%;
	}

	.col.tiny_4 {
		max-width: 33.3333333333%;
		flex-basis: 33.3333333333%;
	}

	.col.tiny_prefix_4 {
		margin-left: 33.3333333333%;
	}

	.col.tiny_suffix_4 {
		margin-right: 33.3333333333%;
	}

	.col.tiny_5 {
		max-width: 41.6666666667%;
		flex-basis: 41.6666666667%;
	}

	.col.tiny_prefix_5 {
		margin-left: 41.6666666667%;
	}

	.col.tiny_suffix_5 {
		margin-right: 41.6666666667%;
	}

	.col.tiny_6 {
		max-width: 50%;
		flex-basis: 50%;
	}

	.col.tiny_prefix_6 {
		margin-left: 50%;
	}

	.col.tiny_suffix_6 {
		margin-right: 50%;
	}

	.col.tiny_7 {
		max-width: 58.3333333333%;
		flex-basis: 58.3333333333%;
	}

	.col.tiny_prefix_7 {
		margin-left: 58.3333333333%;
	}

	.col.tiny_suffix_7 {
		margin-right: 58.3333333333%;
	}

	.col.tiny_8 {
		max-width: 66.6666666667%;
		flex-basis: 66.6666666667%;
	}

	.col.tiny_prefix_8 {
		margin-left: 66.6666666667%;
	}

	.col.tiny_suffix_8 {
		margin-right: 66.6666666667%;
	}

	.col.tiny_9 {
		max-width: 75%;
		flex-basis: 75%;
	}

	.col.tiny_prefix_9 {
		margin-left: 75%;
	}

	.col.tiny_suffix_9 {
		margin-right: 75%;
	}

	.col.tiny_10 {
		max-width: 83.3333333333%;
		flex-basis: 83.3333333333%;
	}

	.col.tiny_prefix_10 {
		margin-left: 83.3333333333%;
	}

	.col.tiny_suffix_10 {
		margin-right: 83.3333333333%;
	}

	.col.tiny_11 {
		max-width: 91.6666666667%;
		flex-basis: 91.6666666667%;
	}

	.col.tiny_prefix_11 {
		margin-left: 91.6666666667%;
	}

	.col.tiny_suffix_11 {
		margin-right: 91.6666666667%;
	}

	.col.tiny_12 {
		max-width: 100%;
		flex-basis: 100%;
	}

	.col.tiny_prefix_12 {
		margin-left: 100%;
	}

	.col.tiny_suffix_12 {
		margin-right: 100%;
	}
}

@media (min-width: 380px) {
	.row.small_start {
		justify-content: flex-start;
	}

	.row.small_center {
		justify-content: center;
	}

	.row.small_end {
		justify-content: flex-end;
	}

	.row.small_stretch {
		align-items: stretch;
	}

	.row.small_top {
		align-items: flex-start;
	}

	.row.small_middle {
		align-items: center;
	}

	.row.small_bottom {
		align-items: flex-end;
	}

	.row.small_between {
		justify-content: space-between;
	}

	.row.small_around {
		justify-content: space-around;
	}

	.row.small_reverse {
		flex-direction: row-reverse;
	}

	.row.small_forward {
		flex-direction: row;
	}

	.col.small_prefix_0 {
		margin-left: 0;
	}

	.col.small_suffix_0 {
		margin-right: 0;
	}

	.col.small_unset {
		order: 0;
	}

	.col.small_first {
		order: -1;
	}

	.col.small_last {
		order: 1;
	}

	.col.small_1 {
		max-width: 8.3333333333%;
		flex-basis: 8.3333333333%;
	}

	.col.small_prefix_1 {
		margin-left: 8.3333333333%;
	}

	.col.small_suffix_1 {
		margin-right: 8.3333333333%;
	}

	.col.small_2 {
		max-width: 16.6666666667%;
		flex-basis: 16.6666666667%;
	}

	.col.small_prefix_2 {
		margin-left: 16.6666666667%;
	}

	.col.small_suffix_2 {
		margin-right: 16.6666666667%;
	}

	.col.small_3 {
		max-width: 25%;
		flex-basis: 25%;
	}

	.col.small_prefix_3 {
		margin-left: 25%;
	}

	.col.small_suffix_3 {
		margin-right: 25%;
	}

	.col.small_4 {
		max-width: 33.3333333333%;
		flex-basis: 33.3333333333%;
	}

	.col.small_prefix_4 {
		margin-left: 33.3333333333%;
	}

	.col.small_suffix_4 {
		margin-right: 33.3333333333%;
	}

	.col.small_5 {
		max-width: 41.6666666667%;
		flex-basis: 41.6666666667%;
	}

	.col.small_prefix_5 {
		margin-left: 41.6666666667%;
	}

	.col.small_suffix_5 {
		margin-right: 41.6666666667%;
	}

	.col.small_6 {
		max-width: 50%;
		flex-basis: 50%;
	}

	.col.small_prefix_6 {
		margin-left: 50%;
	}

	.col.small_suffix_6 {
		margin-right: 50%;
	}

	.col.small_7 {
		max-width: 58.3333333333%;
		flex-basis: 58.3333333333%;
	}

	.col.small_prefix_7 {
		margin-left: 58.3333333333%;
	}

	.col.small_suffix_7 {
		margin-right: 58.3333333333%;
	}

	.col.small_8 {
		max-width: 66.6666666667%;
		flex-basis: 66.6666666667%;
	}

	.col.small_prefix_8 {
		margin-left: 66.6666666667%;
	}

	.col.small_suffix_8 {
		margin-right: 66.6666666667%;
	}

	.col.small_9 {
		max-width: 75%;
		flex-basis: 75%;
	}

	.col.small_prefix_9 {
		margin-left: 75%;
	}

	.col.small_suffix_9 {
		margin-right: 75%;
	}

	.col.small_10 {
		max-width: 83.3333333333%;
		flex-basis: 83.3333333333%;
	}

	.col.small_prefix_10 {
		margin-left: 83.3333333333%;
	}

	.col.small_suffix_10 {
		margin-right: 83.3333333333%;
	}

	.col.small_11 {
		max-width: 91.6666666667%;
		flex-basis: 91.6666666667%;
	}

	.col.small_prefix_11 {
		margin-left: 91.6666666667%;
	}

	.col.small_suffix_11 {
		margin-right: 91.6666666667%;
	}

	.col.small_12 {
		max-width: 100%;
		flex-basis: 100%;
	}

	.col.small_prefix_12 {
		margin-left: 100%;
	}

	.col.small_suffix_12 {
		margin-right: 100%;
	}
}

@media (min-width: 400px) {
	.row.medium_start {
		justify-content: flex-start;
	}

	.row.medium_center {
		justify-content: center;
	}

	.row.medium_end {
		justify-content: flex-end;
	}

	.row.medium_stretch {
		align-items: stretch;
	}

	.row.medium_top {
		align-items: flex-start;
	}

	.row.medium_middle {
		align-items: center;
	}

	.row.medium_bottom {
		align-items: flex-end;
	}

	.row.medium_between {
		justify-content: space-between;
	}

	.row.medium_around {
		justify-content: space-around;
	}

	.row.medium_reverse {
		flex-direction: row-reverse;
	}

	.row.medium_forward {
		flex-direction: row;
	}

	.col.medium_prefix_0 {
		margin-left: 0;
	}

	.col.medium_suffix_0 {
		margin-right: 0;
	}

	.col.medium_unset {
		order: 0;
	}

	.col.medium_first {
		order: -1;
	}

	.col.medium_last {
		order: 1;
	}

	.col.medium_1 {
		max-width: 8.3333333333%;
		flex-basis: 8.3333333333%;
	}

	.col.medium_prefix_1 {
		margin-left: 8.3333333333%;
	}

	.col.medium_suffix_1 {
		margin-right: 8.3333333333%;
	}

	.col.medium_2 {
		max-width: 16.6666666667%;
		flex-basis: 16.6666666667%;
	}

	.col.medium_prefix_2 {
		margin-left: 16.6666666667%;
	}

	.col.medium_suffix_2 {
		margin-right: 16.6666666667%;
	}

	.col.medium_3 {
		max-width: 25%;
		flex-basis: 25%;
	}

	.col.medium_prefix_3 {
		margin-left: 25%;
	}

	.col.medium_suffix_3 {
		margin-right: 25%;
	}

	.col.medium_4 {
		max-width: 33.3333333333%;
		flex-basis: 33.3333333333%;
	}

	.col.medium_prefix_4 {
		margin-left: 33.3333333333%;
	}

	.col.medium_suffix_4 {
		margin-right: 33.3333333333%;
	}

	.col.medium_5 {
		max-width: 41.6666666667%;
		flex-basis: 41.6666666667%;
	}

	.col.medium_prefix_5 {
		margin-left: 41.6666666667%;
	}

	.col.medium_suffix_5 {
		margin-right: 41.6666666667%;
	}

	.col.medium_6 {
		max-width: 50%;
		flex-basis: 50%;
	}

	.col.medium_prefix_6 {
		margin-left: 50%;
	}

	.col.medium_suffix_6 {
		margin-right: 50%;
	}

	.col.medium_7 {
		max-width: 58.3333333333%;
		flex-basis: 58.3333333333%;
	}

	.col.medium_prefix_7 {
		margin-left: 58.3333333333%;
	}

	.col.medium_suffix_7 {
		margin-right: 58.3333333333%;
	}

	.col.medium_8 {
		max-width: 66.6666666667%;
		flex-basis: 66.6666666667%;
	}

	.col.medium_prefix_8 {
		margin-left: 66.6666666667%;
	}

	.col.medium_suffix_8 {
		margin-right: 66.6666666667%;
	}

	.col.medium_9 {
		max-width: 75%;
		flex-basis: 75%;
	}

	.col.medium_prefix_9 {
		margin-left: 75%;
	}

	.col.medium_suffix_9 {
		margin-right: 75%;
	}

	.col.medium_10 {
		max-width: 83.3333333333%;
		flex-basis: 83.3333333333%;
	}

	.col.medium_prefix_10 {
		margin-left: 83.3333333333%;
	}

	.col.medium_suffix_10 {
		margin-right: 83.3333333333%;
	}

	.col.medium_11 {
		max-width: 91.6666666667%;
		flex-basis: 91.6666666667%;
	}

	.col.medium_prefix_11 {
		margin-left: 91.6666666667%;
	}

	.col.medium_suffix_11 {
		margin-right: 91.6666666667%;
	}

	.col.medium_12 {
		max-width: 100%;
		flex-basis: 100%;
	}

	.col.medium_prefix_12 {
		margin-left: 100%;
	}

	.col.medium_suffix_12 {
		margin-right: 100%;
	}
}

@media (min-width: 450px) {
	.row.large_start {
		justify-content: flex-start;
	}

	.row.large_center {
		justify-content: center;
	}

	.row.large_end {
		justify-content: flex-end;
	}

	.row.large_stretch {
		align-items: stretch;
	}

	.row.large_top {
		align-items: flex-start;
	}

	.row.large_middle {
		align-items: center;
	}

	.row.large_bottom {
		align-items: flex-end;
	}

	.row.large_between {
		justify-content: space-between;
	}

	.row.large_around {
		justify-content: space-around;
	}

	.row.large_reverse {
		flex-direction: row-reverse;
	}

	.row.large_forward {
		flex-direction: row;
	}

	.col.large_prefix_0 {
		margin-left: 0;
	}

	.col.large_suffix_0 {
		margin-right: 0;
	}

	.col.large_unset {
		order: 0;
	}

	.col.large_first {
		order: -1;
	}

	.col.large_last {
		order: 1;
	}

	.col.large_1 {
		max-width: 8.3333333333%;
		flex-basis: 8.3333333333%;
	}

	.col.large_prefix_1 {
		margin-left: 8.3333333333%;
	}

	.col.large_suffix_1 {
		margin-right: 8.3333333333%;
	}

	.col.large_2 {
		max-width: 16.6666666667%;
		flex-basis: 16.6666666667%;
	}

	.col.large_prefix_2 {
		margin-left: 16.6666666667%;
	}

	.col.large_suffix_2 {
		margin-right: 16.6666666667%;
	}

	.col.large_3 {
		max-width: 25%;
		flex-basis: 25%;
	}

	.col.large_prefix_3 {
		margin-left: 25%;
	}

	.col.large_suffix_3 {
		margin-right: 25%;
	}

	.col.large_4 {
		max-width: 33.3333333333%;
		flex-basis: 33.3333333333%;
	}

	.col.large_prefix_4 {
		margin-left: 33.3333333333%;
	}

	.col.large_suffix_4 {
		margin-right: 33.3333333333%;
	}

	.col.large_5 {
		max-width: 41.6666666667%;
		flex-basis: 41.6666666667%;
	}

	.col.large_prefix_5 {
		margin-left: 41.6666666667%;
	}

	.col.large_suffix_5 {
		margin-right: 41.6666666667%;
	}

	.col.large_6 {
		max-width: 50%;
		flex-basis: 50%;
	}

	.col.large_prefix_6 {
		margin-left: 50%;
	}

	.col.large_suffix_6 {
		margin-right: 50%;
	}

	.col.large_7 {
		max-width: 58.3333333333%;
		flex-basis: 58.3333333333%;
	}

	.col.large_prefix_7 {
		margin-left: 58.3333333333%;
	}

	.col.large_suffix_7 {
		margin-right: 58.3333333333%;
	}

	.col.large_8 {
		max-width: 66.6666666667%;
		flex-basis: 66.6666666667%;
	}

	.col.large_prefix_8 {
		margin-left: 66.6666666667%;
	}

	.col.large_suffix_8 {
		margin-right: 66.6666666667%;
	}

	.col.large_9 {
		max-width: 75%;
		flex-basis: 75%;
	}

	.col.large_prefix_9 {
		margin-left: 75%;
	}

	.col.large_suffix_9 {
		margin-right: 75%;
	}

	.col.large_10 {
		max-width: 83.3333333333%;
		flex-basis: 83.3333333333%;
	}

	.col.large_prefix_10 {
		margin-left: 83.3333333333%;
	}

	.col.large_suffix_10 {
		margin-right: 83.3333333333%;
	}

	.col.large_11 {
		max-width: 91.6666666667%;
		flex-basis: 91.6666666667%;
	}

	.col.large_prefix_11 {
		margin-left: 91.6666666667%;
	}

	.col.large_suffix_11 {
		margin-right: 91.6666666667%;
	}

	.col.large_12 {
		max-width: 100%;
		flex-basis: 100%;
	}

	.col.large_prefix_12 {
		margin-left: 100%;
	}

	.col.large_suffix_12 {
		margin-right: 100%;
	}
}

@media (min-width: 600px) {
	.row.giant_start {
		justify-content: flex-start;
	}

	.row.giant_center {
		justify-content: center;
	}

	.row.giant_end {
		justify-content: flex-end;
	}

	.row.giant_stretch {
		align-items: stretch;
	}

	.row.giant_top {
		align-items: flex-start;
	}

	.row.giant_middle {
		align-items: center;
	}

	.row.giant_bottom {
		align-items: flex-end;
	}

	.row.giant_between {
		justify-content: space-between;
	}

	.row.giant_around {
		justify-content: space-around;
	}

	.row.giant_reverse {
		flex-direction: row-reverse;
	}

	.row.giant_forward {
		flex-direction: row;
	}

	.col.giant_prefix_0 {
		margin-left: 0;
	}

	.col.giant_suffix_0 {
		margin-right: 0;
	}

	.col.giant_unset {
		order: 0;
	}

	.col.giant_first {
		order: -1;
	}

	.col.giant_last {
		order: 1;
	}

	.col.giant_1 {
		max-width: 8.3333333333%;
		flex-basis: 8.3333333333%;
	}

	.col.giant_prefix_1 {
		margin-left: 8.3333333333%;
	}

	.col.giant_suffix_1 {
		margin-right: 8.3333333333%;
	}

	.col.giant_2 {
		max-width: 16.6666666667%;
		flex-basis: 16.6666666667%;
	}

	.col.giant_prefix_2 {
		margin-left: 16.6666666667%;
	}

	.col.giant_suffix_2 {
		margin-right: 16.6666666667%;
	}

	.col.giant_3 {
		max-width: 25%;
		flex-basis: 25%;
	}

	.col.giant_prefix_3 {
		margin-left: 25%;
	}

	.col.giant_suffix_3 {
		margin-right: 25%;
	}

	.col.giant_4 {
		max-width: 33.3333333333%;
		flex-basis: 33.3333333333%;
	}

	.col.giant_prefix_4 {
		margin-left: 33.3333333333%;
	}

	.col.giant_suffix_4 {
		margin-right: 33.3333333333%;
	}

	.col.giant_5 {
		max-width: 41.6666666667%;
		flex-basis: 41.6666666667%;
	}

	.col.giant_prefix_5 {
		margin-left: 41.6666666667%;
	}

	.col.giant_suffix_5 {
		margin-right: 41.6666666667%;
	}

	.col.giant_6 {
		max-width: 50%;
		flex-basis: 50%;
	}

	.col.giant_prefix_6 {
		margin-left: 50%;
	}

	.col.giant_suffix_6 {
		margin-right: 50%;
	}

	.col.giant_7 {
		max-width: 58.3333333333%;
		flex-basis: 58.3333333333%;
	}

	.col.giant_prefix_7 {
		margin-left: 58.3333333333%;
	}

	.col.giant_suffix_7 {
		margin-right: 58.3333333333%;
	}

	.col.giant_8 {
		max-width: 66.6666666667%;
		flex-basis: 66.6666666667%;
	}

	.col.giant_prefix_8 {
		margin-left: 66.6666666667%;
	}

	.col.giant_suffix_8 {
		margin-right: 66.6666666667%;
	}

	.col.giant_9 {
		max-width: 75%;
		flex-basis: 75%;
	}

	.col.giant_prefix_9 {
		margin-left: 75%;
	}

	.col.giant_suffix_9 {
		margin-right: 75%;
	}

	.col.giant_10 {
		max-width: 83.3333333333%;
		flex-basis: 83.3333333333%;
	}

	.col.giant_prefix_10 {
		margin-left: 83.3333333333%;
	}

	.col.giant_suffix_10 {
		margin-right: 83.3333333333%;
	}

	.col.giant_11 {
		max-width: 91.6666666667%;
		flex-basis: 91.6666666667%;
	}

	.col.giant_prefix_11 {
		margin-left: 91.6666666667%;
	}

	.col.giant_suffix_11 {
		margin-right: 91.6666666667%;
	}

	.col.giant_12 {
		max-width: 100%;
		flex-basis: 100%;
	}

	.col.giant_prefix_12 {
		margin-left: 100%;
	}

	.col.giant_suffix_12 {
		margin-right: 100%;
	}
}

@media (min-width: 800px) {
	.row.layout_start {
		justify-content: flex-start;
	}

	.row.layout_center {
		justify-content: center;
	}

	.row.layout_end {
		justify-content: flex-end;
	}

	.row.layout_stretch {
		align-items: stretch;
	}

	.row.layout_top {
		align-items: flex-start;
	}

	.row.layout_middle {
		align-items: center;
	}

	.row.layout_bottom {
		align-items: flex-end;
	}

	.row.layout_between {
		justify-content: space-between;
	}

	.row.layout_around {
		justify-content: space-around;
	}

	.row.layout_reverse {
		flex-direction: row-reverse;
	}

	.row.layout_forward {
		flex-direction: row;
	}

	.col.layout_prefix_0 {
		margin-left: 0;
	}

	.col.layout_suffix_0 {
		margin-right: 0;
	}

	.col.layout_unset {
		order: 0;
	}

	.col.layout_first {
		order: -1;
	}

	.col.layout_last {
		order: 1;
	}

	.col.layout_1 {
		max-width: 8.3333333333%;
		flex-basis: 8.3333333333%;
	}

	.col.layout_prefix_1 {
		margin-left: 8.3333333333%;
	}

	.col.layout_suffix_1 {
		margin-right: 8.3333333333%;
	}

	.col.layout_2 {
		max-width: 16.6666666667%;
		flex-basis: 16.6666666667%;
	}

	.col.layout_prefix_2 {
		margin-left: 16.6666666667%;
	}

	.col.layout_suffix_2 {
		margin-right: 16.6666666667%;
	}

	.col.layout_3 {
		max-width: 25%;
		flex-basis: 25%;
	}

	.col.layout_prefix_3 {
		margin-left: 25%;
	}

	.col.layout_suffix_3 {
		margin-right: 25%;
	}

	.col.layout_4 {
		max-width: 33.3333333333%;
		flex-basis: 33.3333333333%;
	}

	.col.layout_prefix_4 {
		margin-left: 33.3333333333%;
	}

	.col.layout_suffix_4 {
		margin-right: 33.3333333333%;
	}

	.col.layout_5 {
		max-width: 41.6666666667%;
		flex-basis: 41.6666666667%;
	}

	.col.layout_prefix_5 {
		margin-left: 41.6666666667%;
	}

	.col.layout_suffix_5 {
		margin-right: 41.6666666667%;
	}

	.col.layout_6 {
		max-width: 50%;
		flex-basis: 50%;
	}

	.col.layout_prefix_6 {
		margin-left: 50%;
	}

	.col.layout_suffix_6 {
		margin-right: 50%;
	}

	.col.layout_7 {
		max-width: 58.3333333333%;
		flex-basis: 58.3333333333%;
	}

	.col.layout_prefix_7 {
		margin-left: 58.3333333333%;
	}

	.col.layout_suffix_7 {
		margin-right: 58.3333333333%;
	}

	.col.layout_8 {
		max-width: 66.6666666667%;
		flex-basis: 66.6666666667%;
	}

	.col.layout_prefix_8 {
		margin-left: 66.6666666667%;
	}

	.col.layout_suffix_8 {
		margin-right: 66.6666666667%;
	}

	.col.layout_9 {
		max-width: 75%;
		flex-basis: 75%;
	}

	.col.layout_prefix_9 {
		margin-left: 75%;
	}

	.col.layout_suffix_9 {
		margin-right: 75%;
	}

	.col.layout_10 {
		max-width: 83.3333333333%;
		flex-basis: 83.3333333333%;
	}

	.col.layout_prefix_10 {
		margin-left: 83.3333333333%;
	}

	.col.layout_suffix_10 {
		margin-right: 83.3333333333%;
	}

	.col.layout_11 {
		max-width: 91.6666666667%;
		flex-basis: 91.6666666667%;
	}

	.col.layout_prefix_11 {
		margin-left: 91.6666666667%;
	}

	.col.layout_suffix_11 {
		margin-right: 91.6666666667%;
	}

	.col.layout_12 {
		max-width: 100%;
		flex-basis: 100%;
	}

	.col.layout_prefix_12 {
		margin-left: 100%;
	}

	.col.layout_suffix_12 {
		margin-right: 100%;
	}
}

/* Slider */
.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.slick-list {
	position: relative;
	overflow: hidden;
	display: block;
	margin: 0;
	padding: 0;
}

.slick-list:focus {
	outline: none;
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.slick-track {
	position: relative;
	left: 0;
	top: 0;
	display: flex;
}

.slick-track:before,
.slick-track:after {
	content: "";
	display: table;
}

.slick-track:after {
	clear: both;
}

.slick-loading .slick-track {
	visibility: hidden;
}

.slick-track a {
	min-width: 50px;
}

.slick-slide {
	float: left;
	height: 100%;
	min-height: 1px;
	display: none;
}

[dir=rtl] .slick-slide {
	float: right;
}

.slick-slide img {
	display: block;
}

.slick-slide.slick-loading img {
	display: none;
}

.slick-slide.dragging img {
	pointer-events: none;
}

.slick-initialized .slick-slide {
	display: block;
}

.slick-loading .slick-slide {
	visibility: hidden;
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
	display: none;
}

.slick-arrow.ml {
	position: absolute;
	top: 35%;
	cursor: pointer;
	z-index: 1;
}

.slick-arrow.ml::before {
	color: #6B7277;
	font-size: 20px;
	transition: color 0.3s ease-in-out;
}

.slick-arrow.ml:hover::before {
	color: #242628;
}

.slick-arrow.ml.ml-chevron-left {
	left: 0;
}

.slick-arrow.ml.ml-chevron-right {
	right: 20px;
}

.slick-dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

@media (min-width: 400px) {
	.slick-dots {
		gap: 15px;
	}
}

.slick-dots li button {
	display: block;
	width: 10px;
	height: 10px;
	padding: 0;
	border: none;
	border-radius: 100%;
	background-color: #E8EAEC;
	text-indent: -9999px;
	transition: background 0.3s ease-in-out;
}

@media (min-width: 450px) {
	.slick-dots li button {
		width: 12px;
		height: 12px;
	}
}

.slick-dots li button:hover {
	background-color: #242628;
}

.slick-dots li.slick-active button {
	background-color: #242628;
}

body.lb-disable-scrolling {
	overflow: hidden;
}

.lightbox {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
	background-color: rgb(0, 0, 0);
	display: flex;
	overflow: hidden;
}

.lb-outerContainer {
	background-color: transparent;
	position: relative;
	width: auto !important;
	height: auto !important;
	max-width: 100%;
	max-height: 100%;
}

.lb-container {
	padding: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lightbox .lb-image {
	display: block;
	max-width: 90vw;
	max-height: 90vh;
	width: auto;
	height: auto;
	object-fit: contain;
	border: none;
}

/* Adjust navigation arrows position */
.lb-nav {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}

.lb-loader {
	position: absolute;
	top: 43%;
	left: 0;
	height: 25%;
	width: 100%;
	text-align: center;
	line-height: 0;
}

.lb-cancel {
	display: block;
	width: 32px;
	height: 32px;
	margin: 0 auto;
	background: url(../images/loading.gif) no-repeat;
}

.lb-nav {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 10;
}

.lb-container>.nav {
	left: 0;
}

.lb-nav a {
	outline: none;
	background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}

.lb-prev,
.lb-next {
	height: 100%;
	cursor: pointer;
	display: block;
}

.lb-nav a.lb-prev {
	width: 34%;
	left: 0;
	float: left;
	background: url(../images/prev.png) left 48% no-repeat;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	opacity: 0;
	-webkit-transition: opacity 0.6s;
	-moz-transition: opacity 0.6s;
	-o-transition: opacity 0.6s;
	transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	opacity: 1;
}

.lb-nav a.lb-next {
	width: 64%;
	right: 0;
	float: right;
	background: url(../images/next.png) right 48% no-repeat;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	opacity: 0;
	-webkit-transition: opacity 0.6s;
	-moz-transition: opacity 0.6s;
	-o-transition: opacity 0.6s;
	transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	opacity: 1;
}

.lb-dataContainer {
	margin: 0 auto;
	padding-top: 5px;
	*zoom: 1;
	width: 100%;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
	content: "";
	display: table;
	clear: both;
}

.lb-data {
	padding: 0 4px;
	color: #ccc;
}

.lb-data .lb-details {
	width: 85%;
	float: left;
	text-align: left;
	line-height: 1.1em;
}

.lb-data .lb-caption {
	font-size: 13px;
	font-weight: bold;
	line-height: 1em;
}

.lb-data .lb-caption a {
	color: #4ae;
}

.lb-data .lb-number {
	display: block;
	clear: left;
	padding-bottom: 1em;
	font-size: 12px;
	color: #999999;
}

.lb-data .lb-close {
	display: block;
	float: right;
	width: 30px;
	height: 30px;
	background: url(../images/close.png) top right no-repeat;
	text-align: right;
	outline: none;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
	opacity: 0.7;
	-webkit-transition: opacity 0.2s;
	-moz-transition: opacity 0.2s;
	-o-transition: opacity 0.2s;
	transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
	cursor: pointer;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	opacity: 1;
}

.nice-select {
	background-color: rgba(255, 255, 255, 0.85);
	border-radius: 10px;
	border: solid 1px #CCB8D5;
	box-sizing: border-box;
	clear: both;
	cursor: pointer;
	display: block;
	float: left;
	font-family: inherit;
	font-size: 10px;
	font-weight: normal;
	line-height: 1.3em;
	outline: none;
	padding: 11px 10px;
	position: relative;
	text-align: left !important;
	transition: all 0.2s ease-in-out;
	white-space: nowrap;
	width: auto;
	height: 35px;
}

.nice-select:hover {
	border-color: #dbdbdb;
}

.nice-select::after {
	border-bottom: 2px solid #D0ADE6;
	border-right: 2px solid #D0ADE6;
	content: "";
	display: block;
	height: 7px;
	margin-top: -4px;
	pointer-events: none;
	position: absolute;
	right: 15px;
	top: 50%;
	transform-origin: 66% 66%;
	transform: rotate(45deg);
	transition: all 0.15s ease-in-out;
	width: 7px;
}

.nice-select .list {
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
	box-sizing: border-box;
	margin-top: 4px;
	opacity: 0;
	overflow: hidden;
	padding: 0;
	max-height: 300px;
	pointer-events: none;
	position: absolute;
	top: 100%;
	left: 0;
	transform-origin: 50% 0;
	transform: scale(0.75) translateY(-21px);
	transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
	z-index: 9;
}

.nice-select .list:hover .option:not(:hover) {
	background-color: transparent !important;
}

.nice-select .option {
	cursor: pointer;
	color: #792BA2;
	font-size: 10px;
	font-weight: 400;
	line-height: 40px;
	list-style: none;
	min-height: 40px;
	outline: none;
	padding-left: 18px;
	padding-right: 29px;
	text-align: left;
	transition: all 0.2s;
}

.nice-select.open::after {
	transform: rotate(-135deg);
}

.nice-select.open .list {
	opacity: 1;
	pointer-events: auto;
	max-height: 300px;
	overflow-y: auto;
	transform: scale(1) translateY(0);
}

.nice-select.disabled {
	border-color: #ededed;
	color: #999;
	pointer-events: none;
}

.nice-select.disabled::after {
	border-color: #cccccc;
}

.nice-select.wide,
.popup_wrap .popup_cont .popup_footer button.nice-select,
.popup_wrap .popup_cont .popup_footer .nice-select.btn {
	width: 100%;
}

.nice-select.wide .list,
.popup_wrap .popup_cont .popup_footer button.nice-select .list,
.popup_wrap .popup_cont .popup_footer .nice-select.btn .list {
	left: 0 !important;
	right: 0 !important;
}

.nice-select.right {
	float: right;
}

.nice-select.right .list {
	left: auto;
	right: 0;
}

.nice-select.small {
	font-size: 12px;
	height: 36px;
	line-height: 34px;
}

.nice-select.small::after {
	height: 4px;
	width: 4px;
}

.nice-select.small .option {
	line-height: 34px;
	min-height: 34px;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
	background-color: #f6f6f6;
}

.nice-select .option.selected {
	font-weight: bold;
}

.nice-select .option.disabled {
	background-color: transparent;
	color: #999;
	cursor: default;
}

.no-csspointerevents .nice-select .list {
	display: none;
}

.no-csspointerevents .nice-select.open .list {
	display: block;
}

/***** Popup *****/
.popup_wrap {
	opacity: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	visibility: hidden;
	pointer-events: none;
	background-color: rgba(0, 0, 0, 0.8);
	position: fixed;
	top: 0;
	left: 0;
	transition: opacity 0.3s, visibility 0.3s ease-in-out;
}

.popup_wrap.active_pop {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}

.popup_cont.search_wrapper.top {
	top: 0;
	height: 60%;
	padding-bottom: 58px;
	padding-top: 25px;
}

.popup_wrap .popup_cont.middle {
	bottom: 50%;
	left: 50%;
	transform: translateY(50%) translateX(-50%);
	max-height: 750px;
	max-width: 550px;
}

.popup_wrap .popup_cont.bottom {
	bottom: 0;
}

.popup_cont.search_wrapper .confirmation-message {
	width: 95%;
	margin: auto;
	text-align: center;
	font-weight: bold;
	padding-bottom: 14px;
}


.photo-upload-rules {
	font-size: 10px;
	/* margin: 20px; */
	max-height: 200px;
	overflow-y: auto;
	/* color: black; */
	line-height: 1.1;
	background-color: white;
	border-radius: 8px;
	padding: 9px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.photo-upload-rules strong {
	font-weight: 600;
	color: var(--primary-color);
}

.photo-upload-rules-number {
	font-weight: bold;
	margin-bottom: 1px;
}

.photo-upload-rules-description {
	margin-left: 20px;
	display: list-item;
	margin-bottom: 6px;
}

.popup_wrap.save_user .popup_cont {
	width: 640px;
}

.popup_wrap.contact_me .popup_cont {
	width: 260px;
	z-index: 15;
}

.popup_wrap.hold_reply {
	opacity: 1;
	visibility: visible;
}

.popup_wrap .popup_cont {
	width: 80%;
	max-width: 90%;
	max-height: 90%;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.popup_wrap .popup_cont .close_x {
	color: #242628;
	width: 26px;
	height: 26px;
	padding: 3px;
	display: block;
	font-size: 25px;
	cursor: pointer;
	text-align: center;
	transform: translateY(-50%);
	transition: background 0.3s, color 0.3s ease-in-out;
	position: absolute;
	top: 50%;
	right: 20px;
}

.popup_wrap .popup_cont .close_x:before {
	content: "\f00d";
	font-style: normal;
	font-weight: normal;
	font-family: "CustomIcons";
}

.popup_wrap .popup_cont .close_x:hover {
	background-color: #8E989F;
}

.popup_wrap .popup_cont .popup_header {
	/*	display: block;
	font-size: 30px;
	font-weight: 300;
	padding: 20px 15px;
	position: relative;
	background-color: #eeeeee;
	*/
}

.popup_wrap .popup_cont .scroll {
	overflow-y: auto;
	overflow-x: hidden;
	height: 87%;
}

.popup_wrap .popup_cont .popup_header span {
	display: block;
}

.popup_wrap .popup_cont .popup_footer {
	width: 100%;
	display: flex;
	padding: 10px 15px;
	align-items: center;
	justify-content: flex-end;
	border-top: 1px solid #6B7277;
}

.popup_wrap .popup_cont .popup_footer button,
.popup_wrap .popup_cont .popup_footer .btn {
	padding: 8px 10px;
	max-width: 100px;
	margin-bottom: 0;
	margin: 0 5px;
}

.popup_wrap .popup_cont .popup_ct {
	padding: 20px;
}

.popup_wrap .popup_cont .popup_ct label {
	font-size: 13px;
	display: block;
	margin-bottom: 5px;
}

.popup_wrap .popup_cont .popup_ct select,
.popup_wrap .popup_cont .popup_ct input {
	margin-bottom: 10px;
}

.popup_wrap .popup_cont .popup_ct .save_user_box {
	text-align: center;
}

.popup_wrap .popup_cont .popup_ct .save_user_box .acc_type {
	display: block;
	font-size: 13px;
	color: #cecece;
	font-weight: 300;
	margin-bottom: 10px;
	text-align: left;
}

.popup_wrap .popup_cont .popup_ct .save_user_box .user_circle_img {
	margin-bottom: 20px;
}

.popup_wrap .popup_cont .popup_ct .save_user_box .name {
	display: block;
	margin-bottom: 10px;
}

.popup_wrap .popup_cont .popup_ct .save_user_box .ratings {
	margin: 0;
}

.popup_cont {
	position: relative;
}

.popup_cont h4 {
	margin-bottom: 16px;
	padding-bottom: 6px;
	border-bottom: 1px solid #8E989F;
}

.popup_cont .scroll_content {
	overflow: auto;
	max-height: 100%;
	padding: 20px 10px;
	border-radius: 5px;
	background-color: #fff;
}

@media (min-width: 360px) {
	.popup_cont .scroll_content {
		padding: 20px;
	}
}

.popup_cont form {
	margin-bottom: 0;
}

.popup_cont small {
	display: block;
	font-size: 14px;
	margin-bottom: 30px;
}

.popup_cont.user_menu_popup {
	background: linear-gradient(135deg, #ee3fa2 0%, rgba(192, 56, 229, 0.831372549) 100%);
	z-index: 1;
	border-radius: 23px;
	text-align: center;
	transform: translate(-50%, -50%);
	position: absolute;
	top: 50%;
	left: 50%;
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.popup_cont.user_menu_popup ul {
	padding: 0;
}

.popup_cont.user_menu_popup li:first-child {
	border-radius: 9px 9px 0 0;
}

.popup_cont.user_menu_popup li:last-child {
	border-radius: 0 0 9px 9px;
}

.popup_cont.user_menu_popup li {
	vertical-align: middle;
}

.popup_cont.user_menu_popup li:hover {
	background: #ee3fa2;
	transition: 0.3s ease-in-out;
}

.popup_cont.user_menu_popup li a {
	padding: 10px;
	color: #fff;
	width: 100%;
	display: block;
	text-decoration: none;
	position: relative;
	font-size: 10px;
}

.popup_cont.user_menu_popup li a.flag {
	font-weight: 600;
}

.popup_cont.user_menu_popup ul li:not(:last-child) {
	border-bottom: 1px solid rgba(245, 168, 211, 0.6392156863);
}

.popup_cont.user_menu_popup.reply_pop,
.popup_cont.user_menu_popup.report_pop {
	position: absolute;
	right: 0;
	transform: translate(0px, 8px);
	max-width: 125px;
	min-width: 100px;
	padding: 0;
	top: 100%;
	left: unset;
	border-radius: 9px;
	user-select: none;
}

.popup_cont.user_menu_popup.reply_pop li a,
.popup_cont.user_menu_popup.report_pop li a {
	color: #fff;
	text-align: left;
	font-size: 10px;
}

.popup_cont.user_menu_popup.reply_pop li a::before,
.popup_cont.user_menu_popup.report_pop li a::before {
	right: 8px;
}

.popup_cont.user_menu_popup.group {
	left: 0;
	position: relative;
	transform: translate(0px, -6px);
	width: fit-content;
}

.popup_cont.user_menu_popup.footer_menu {
	position: absolute;
	display: block;
	transform: translate(6px, -30px);
	position: absolute;
	border-radius: 9px;
	right: 0;
	bottom: 100%;
	top: unset;
	left: unset;
	min-width: 100px;
}

.popup_cont.user_menu_popup.footer_menu li:first-child {
	border-radius: 9px 9px 0 0;
}

.popup_cont.user_menu_popup.footer_menu li:last-child {
	border-radius: 0 0 9px 9px;
}

.popup_cont.user_menu_popup.chat_user {
	display: block;
	transform: translate(-3px, 3px);
	position: absolute;
	border-radius: 9px;
	right: 0;
	top: 100%;
	min-width: 100px;
}

.popup_cont.comment_wrapper {
	padding: 25px 7px 2px;
	z-index: 1;
	background: #9ee8da;
	border-radius: 15px;
	border: 1px solid #786594;
	top: 0;
	transform: translate(-50%, 50%);
}

.popup_cont.comment_wrapper .close {
	top: 8px;
	right: 10px;
}

.popup_cont.search_wrapper {
	text-align: left;
	padding: 30px;
	background: linear-gradient(135deg, #F0F4FF 0%, #E6EAFF 50%, #D8E0FF 100%);
	border-radius: 15px;
	border: none;
	box-shadow: inset 5px 0 10px -5px rgba(0, 0, 0, 0.2), inset -5px 0 10px -5px rgba(0, 0, 0, 0.2), inset 0 5px 10px -5px rgba(0, 0, 0, 0.2), inset 0 -5px 10px -5px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.3);
}

.popup_cont.search_wrapper .friend_wrapper {
	overflow-y: scroll;
	max-height: 290px;
}

.popup_cont.search_wrapper .contact_item:not(:last-child) {
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.popup_cont.search_wrapper .contact_item {
	background: transparent;
}

.popup_cont.search_wrapper .friend_wrapper .contact_item.following figure::before {
	content: "\e910";
	font-size: 13px;
	color: #8b99d5;
}

.popup_cont.search_wrapper .friend_wrapper .contact_item figure.friend_added::before {
	display: none;
}

.popup_cont.search_wrapper .friend_wrapper .contact_item figure {
	position: relative;
}

.popup_cont.search_wrapper .friend_wrapper .contact_item figure::before {
	content: "\e919";
	font-size: 12px;
	color: #74ae7c;
	font-family: "CustomIcons";
	position: absolute;
	right: -2px;
	bottom: -2px;
}

.popup_cont.search_wrapper .add_to_group {
	margin: 10px 0 0;
}

.popup_cont.search_wrapper .users_in {
	display: flex;
	overflow-x: scroll;
	scrollbar-width: none;
}

.popup_cont.search_wrapper .users_in .contact_item {
	border-bottom: 0;
	display: flex;
	flex-direction: column;
	text-align: center;
	padding: 15px 5px 5px;
}

.popup_cont.search_wrapper .users_in .contact_item .name_wrap h2 {
	font-size: 8px;
	line-height: 1.2em;
}

.popup_cont.search_wrapper .users_in .contact_item figure {
	position: relative;
	margin-bottom: 2px;
}

.popup_cont.search_wrapper .users_in .contact_item figure::before {
	content: "\e91b";
	font-size: 12px;
	color: #646161;
	font-family: "CustomIcons";
	position: absolute;
	right: -2px;
	bottom: -2px;
}

.popup_cont.group_wrapper {
	overflow: visible;
	background: #D4DCFF;
	padding: 7px;
	border-radius: 14px;
}

.popup_cont.group_wrapper .nice-select {
	margin-bottom: 6px;
}

.popup_cont.group_wrapper .add_feed {
	margin-bottom: 0;
}

.profile_menu_popup {
	display: none;
	position: absolute;
	left: 0px;
	top: 0;
	z-index: 1;
	width: 100%;
}

.profile_menu_popup ul {
	padding: 5px 8px;
}

@media (min-width: 400px) {
	.profile_menu_popup ul {
		padding: 5px 10px;
	}
}

.profile_menu_popup ul li {
	vertical-align: middle;
	padding: 10px 0;
}

.profile_menu_popup ul li::before {
	font-size: 12px;
	top: 50%;
	transform: translateY(-50%);
}

@media (min-width: 380px) {
	.profile_menu_popup ul li::before {
		font-size: 15px;
	}
}

.profile_menu_popup ul li a {
	font-size: 12px;
	font-weight: 500;
	line-height: 1.33em;
	color: #540D6E;
	display: block;
	padding-left: 15px;
	width: 100%;
	text-decoration: none;
	position: relative;
}

@media (min-width: 380px) {
	.profile_menu_popup ul li a {
		font-size: 15px;
		padding-left: 25px;
	}
}

.profile_menu_popup ul li:not(:last-child) {
	border-bottom: 1px solid rgba(255, 255, 255, 0.3019607843);
}

.profile_btn {
	cursor: pointer;
}

.emoji {
	position: absolute;
	right: 0;
	bottom: 100%;
	border-radius: 9px;
	background: linear-gradient(135deg, #ee3fa2 0%, rgba(192, 56, 229, 0.831372549) 100%);
	transform: translateY(-8px);
}

.emoji ul {
	display: flex;
}

.emoji ul li:first-child {
	border-radius: 9px 0 0 9px;
}

.emoji ul li:last-child {
	border-radius: 0 9px 9px 0;
}

.emoji ul li {
	border-bottom: 0 !important;
	padding: 8px 4px;
	cursor: pointer;
}

.emoji ul li:hover {
	background: #ee3fa2;
	transition: 0.3s ease-in-out;
}

.emoji_reactions_container {
	position: absolute;
	bottom: -6px;
	/* Ð ÐµÐ³ÑƒÐ»Ð¸Ñ€Ð°Ð¹Ñ‚Ðµ ÑÐ¿Ð¾Ñ€ÐµÐ´ Ð½ÑƒÐ¶Ð´Ð¸Ñ‚Ðµ */
	transform: translate(-20%, 23%);
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	justify-content: flex-start;
	gap: 4px;
	z-index: 1;
}

.emoji_react {
	display: inline-flex;
	align-items: center;
	background: #BFFFF3;
	border-radius: 12px;
	padding: 4px;
	font-size: 8px;
	line-height: 1;
	cursor: pointer;
	transition: all 0.2s ease;
	border: 1px solid rgba(186, 153, 239, 0.5098039216);
	border-radius: 10px;
}

.emoji_count {
	margin-left: 1px;
	margin-bottom: 0px;
	font-size: 7px;
	color: rgba(0, 0, 0, 0.5);
}

@keyframes popIn {
	0% {
		transform: scale(0.8);
		opacity: 0;
	}

	100% {
		transform: scale(1);
		opacity: 1;
	}
}

.emoji_react.new {
	animation: popIn 0.3s ease-out;
}

.blur-background {
	backdrop-filter: blur(20px);
}

.w_password {
	display: flex;
	justify-content: center;
}

.w_password label {
	margin: 0;
}

#upload .myTarget {
	display: flex;
	justify-content: center;
}

#upload .myTarget img {
	max-width: 120px;
}

#upload .upload_button {
	margin-top: 15px;
}

#upload label {
	margin: 15px 0;
}

#upload .wrap {
	display: block;
	text-align: center;
}

#upload .wrap span {
	display: block;
	margin-bottom: 4px;
}

* {
	margin: 0;
	padding: 0;
	-webkit-font-feature-settings: "locl" 0;
	-moz-font-feature-settings: "locl" 0;
	-ms-font-feature-settings: "locl" 0;
	font-feature-settings: "locl" 0;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

::selection {
	color: #fff;
	background-color: #202020;
}

::-moz-selection {
	color: #fff;
	background-color: #202020;
}

html {
	color: #242628;
	hyphens: manual;
	background: #fff;
	text-size-adjust: none;
	box-sizing: border-box;
	text-rendering: geometricprecision;
	-webkit-font-smoothing: antialiased;
	font-family: "Roboto", sans-serif;
	/* height: calc(100vh - 100px); */
	overflow-x: hidden;
	overflow-y: auto;
}

body {
	color: #242628;
	background: #fff;
	font-size: 16px;
	text-rendering: geometricprecision;
	-webkit-font-smoothing: antialiased;
	touch-action: pan-x pan-y;
	font-family: "Roboto", sans-serif;
	/* min-height: 100vh; */
	width: 100%;
}

body.navi_open,
body.fly_cart {
	overflow: hidden;
}

.clearfix {
	zoom: 1;
}

.clearfix:after {
	content: "";
	display: table;
	clear: both;
}

.crossed {
	text-decoration: line-through;
}

.underline {
	text-decoration: underline;
}

figure {
	display: inline-block;
}

figure img {
	width: 100%;
	margin: 0 auto;
	display: block;
}

a img {
	max-width: 100%;
}

.page-load-status {
	display: none;
	/* hidden by default */
	padding-top: 20px;
	border-top: 1px solid #DDD;
	text-align: center;
	color: #777;
}

.likes {
	top: 6px;
	left: 22px;
	color: #792BA2;
	position: relative;
}

.search_header {
	display: flex;
	padding: 0 0px 10px 0;
	font-size: 12px;
	margin-right: 32px;
}

.search_header .buttons_wrap {
	display: flex;
}

.search_header .buttons_wrap .btn {
	width: auto;
	margin-bottom: 0;
	padding: 4px 8px;
}

.search_header .buttons_wrap .btn.active {
	background: #F247A5;
}

.search_header .buttons_wrap .btn:hover {
	background: #F247A5;
}

.search_header .buttons_wrap span:first-child {
	margin-right: 5px;
}

.search_header .user_label {
	margin: 0;
}

.search_header .user_label a {
	color: #fff;
	padding: 5px;
}

.search_header .user_label a:first-child {
	border-right: 1px solid rgba(255, 255, 255, 0.2784313725);
}

.search_header .user_label a.active {
	background: #F247A5;
}

.search_header .user_label a:hover {
	background: #F247A5;
}

.open {
	display: block;
}

.reply_wrap {
	flex-direction: column;
}

.ci {
	position: relative;
}

.ci::before {
	position: absolute;
	font-family: "CustomIcons";
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	color: inherit;
	-webkit-font-smoothing: antialiased;
}

.fa:before {
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.hr {
	background-color: rgba(255, 255, 255, 0.3);
	margin: 2px 0;
	height: 1px;
}

.ci-bell::before {
	content: "\e900";
}

.ci-menu::before {
	content: "\e901";
}

.ci-home::before {
	content: "\e902";
}

.ci-fire:before {
	content: "\e92b";
}

.ci-search::before {
	content: "\e908";
}

.ci-star::before {
	content: "\e904";
}

.ci-add-user::before {
	content: "\e905";
}

.ci-added-user::before {
	content: "\e906";
}

.ci-image-upload::before {
	content: "\e90e";
}

.ci-edit-pen::before {
	content: "\e90f";
}

.ci-checkmark::before {
	content: "\e910";
}

.ci-close::before {
	content: "\e912";
}

.ci-city::before {
	content: "\e913";
}

.ci-close-circle::before {
	content: "\e914";
}

.ci-group::before {
	content: "\e923";
}

.ci-record::before {
	content: "\e917";
}

.ci-plus::before {
	content: "\e918";
}

.ci-small-x::before {
	content: "\e915";
}

.ci-message-sent::before {
	content: "\e915";
}

.ci-chat::before {
	content: "\e907";
}

.ci-close-circle2::before {
	content: "\e91b";
}

.ci-plus-circle::before {
	content: "\e919";
}

.ci-add-user2::before {
	content: "\e91a";
}

.ci-mic::before {
	content: "\e91c";
}

.ci-reply::before {
	content: "\e91d";
}

.ci-copy::before {
	content: "\e91e";
}

.ci-report::before {
	content: "\e91f";
}

.ci-forward::before {
	content: "\e920";
}

.ci-friend-request::before {
	content: "\e921";
}

.ci-loading::before {
	content: "\e924";
}

.ci-empty-heart::before {
	content: "\e927";
	color: #d024da;
}

.ci-empty-heart2::before {
	content: "\e927";
}

.ci-full-heart::before {
	content: "\e929";
	color: #ef5160;
}

.ci-save::before {
	content: "\e928";
	right: 0;
	color: #d024da;
}

.ci-save-full::before {
	content: "\e92a";
	right: 0;
	color: #d024da;
}

/***** Headlines *****/
h1,
h2,
h3,
h4,
h5,
h6 {
	display: block;
	text-rendering: optimizeLegibility;
}

h1 {
	line-height: 1.1em;
	font-weight: 900;
	color: #242628;
	letter-spacing: -0.02em;
	text-align: center;
}

h2 {
	font-weight: 700;
}

h2.activity {
	color: #3e50a0 !important;
}

h3 {
	font-weight: 800;
	letter-spacing: -0.01em;
	line-height: 1.2em;
}

h4 {
	font-size: 20px;
	line-height: 1.4em;
}

h5 {
	letter-spacing: -0.01em;
	line-height: 1.5em;
	font-weight: 700;
}

h6 {
	font-size: 18px;
	font-weight: 800;
	line-height: 1.5em;
}

span {
	font-size: 9px;
	color: #792BA2;
}

strong {
	font-weight: 700;
}

em {
	font-style: italic;
}

p {
	line-height: 1.5em;
}

a {
	color: #F247A5;
	text-decoration: none;
}

a:hover {
	color: #F247A5;
}

/***** Buttons and links *****/
.btn,
button,
input[type=submit] {
	width: auto;
	display: inline-block;
	color: #fff;
	font-size: 10px;
	letter-spacing: 0.02em;
	cursor: pointer;
	line-height: 2em;
	padding: 6px 15px;
	border: none;
	text-align: center;
	border-radius: 23px;
	font-weight: 800;
	background: linear-gradient(90deg, #F247A5 0%, #B0289B 0%);
	text-transform: uppercase;
	width: 100%;
	margin-bottom: 5px;
	letter-spacing: 0.05em;
}

.btn.add_feed,
button.add_feed,
input[type=submit].add_feed {
	font-size: 7px;
	padding: 3px 20px;
	width: auto;
	display: block;
}

.btn:hover,
button:hover,
input[type=submit]:hover {
	background: #F247A5;
	color: #fff;
}

.btn.follow_btn {
	text-transform: unset;
	width: 100%;
	max-width: 90px;
	background: transparent;
	cursor: pointer;
	transition: 0.3s ease-in-out;
	padding: 8px 15px;
	position: relative;
	border-radius: 23px 0 0 23px;
	font-size: 10px;
}

.btn.follow_btn:hover {
	color: #fff;
	background: rgba(199, 4, 173, 0.2901960784);
	transition: 0.2s ease-in-out;
}

.btn.follow_btn::before {
	content: "";
	border-right: 1px solid rgba(244, 142, 200, 0.2705882353);
	height: 80%;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}

.btn.remove {
	font-size: 7px;
	padding: 4px 4px 3px;
	width: auto;
	margin-bottom: 0;
	line-height: 1;
}

@media (min-width: 450px) {
	.btn.remove {
		font-size: 8px;
	}
}

.user_label .btn {
	padding: 13px 0;
	margin-bottom: 0;
	background: transparent;
}

.user_label .btn:not(:first-child)::after {
	content: "";
	border-right: 1px solid rgba(244, 142, 200, 0.2705882353);
	height: 80%;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.user_label .btn.ci::before {
	font-size: 13px;
	top: 50%;
	transform: translate(-50%, -50%);
}

#heart_btn {
	cursor: pointer;
}

.comment_btn {
	max-width: 200px;
	margin: 0 auto;
	width: 100%;
	background: transparent;
}

.friend_search::before {
	content: "\e903";
	position: absolute;
	right: 7px;
	bottom: 7px;
	font-family: "CustomIcons";
	font-size: 15px;
	cursor: pointer;
	color: #792BA2;
}

.close {
	position: absolute;
	top: 7px;
	right: 0;
	width: 20px;
	height: 20px;
	cursor: pointer;
	padding: 2px 22px 15px 12px;
}

.close::before {
	font-size: 10px;
	color: #a19ad3;
}

.button_wrap {
	display: flex;
	margin-bottom: 10px;
	background: #aaeade;
	padding: 4px;
	border-radius: 15px;
}

.button_wrap .contact_item {
	background: transparent;
	padding: 0;
	margin-right: 5px;
}

.button_wrap .comment_btn {
	color: #384240;
	font-size: 10px;
	font-weight: 300;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	text-transform: unset;
	background: rgba(255, 255, 255, 0.3098039216);
	max-width: 100%;
	padding: 0 8px;
}

.chat_wrap .button_wrap {
	padding: 0;
	background: transparent;
}

.chat_wrap .button_wrap button {
	margin-bottom: 0;
}

.chat_wrap .button_wrap .send_image,
.chat_wrap .button_wrap .voice_recording {
	margin: 1px;
	height: auto;
	border-radius: 100%;
	width: auto;
	min-width: 34px;
}

.chat_wrap .button_wrap .send_image::before,
.chat_wrap .button_wrap .voice_recording::before {
	font-size: 14px;
	transform: translate(-50%, -50%);
}

@keyframes spin {
	0% {
		transform: translate(-50%, -50%) rotate(0deg);
	}

	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

.loading-btn {
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	background-color: #F247A5;
	color: #fff;
	cursor: pointer;
}

.loading-btn.loading {
	pointer-events: none;
	position: relative;
}

.loading-btn.loading::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 20px;
	height: 20px;
	border: 3px solid #ffffff;
	border-radius: 50%;
	border-top-color: #fff;
	animation: spin 1s linear infinite;
}

.loading {
	background: linear-gradient(135deg, rgba(178, 51, 123, 0.7803921569) 0%, rgba(176, 20, 218, 0.9098039216) 100%);
	pointer-events: none;
}

.loading:hover {
	background: linear-gradient(135deg, rgba(178, 51, 123, 0.7803921569) 0%, rgba(176, 20, 218, 0.9098039216) 100%);
}

.loading::before {
	content: "\e924";
	font-family: "CustomIcons";
	position: absolute;
	top: 50%;
	left: 60%;
	font-size: 12px;
	color: #fff;
	animation: rotate 1s infinite linear;
}

@keyframes rotate {
	from {
		transform: translate(calc(-50% + 5px), -50%) rotate(0deg);
	}

	to {
		transform: translate(calc(-50% + 5px), -50%) rotate(-360deg);
	}
}

select,
textarea,
input[type=text],
input[type=password],
input[type=email],
input[type=search],
input[type=tel] {
	width: 100%;
	color: #242628;
	resize: none;
	display: block;
	font-size: 10px;
	padding: 10px;
	line-height: 1.3em;
	position: relative;
	outline: none;
	border-radius: 10px;
	font-family: "Roboto", sans-serif;
	border: 1px solid #CCB8D5;
	transition: background 0.3s, border 0.3s ease-in-out;
}

select:focus,
textarea:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=search]:focus,
input[type=tel]:focus {
	border-color: rgba(36, 38, 40, 0.4);
}

.field .error {
	border-color: red !important;
}

.error-message {
	color: red;
	font-size: 11px;
	margin: 3px 0 10px;
}

.browse_files {
	padding-left: 17px;
	font-weight: 500;
	cursor: pointer;
}

input[type=file] {
	display: none;
}

textarea {
	height: auto;
}

form button {
	font-size: 10px;
	padding: 8px;
	text-align: center;
}

.input_wrapper {
	margin-bottom: 14px;
}

.input_wrapper input[type=text] {
	font-size: 10px;
}

.group_wrapper .nice-select {
	height: 25px;
	margin-bottom: 3px;
	padding: 6px;
}

.group_wrapper .nice-select ul {
	padding: 0 5px;
}

.group_wrapper .nice-select ul .option {
	padding: 6px;
	line-height: 1.33em;
	min-height: 20px;
}

label {
	font-size: 10px;
	font-weight: 700;
	line-height: 1.5em;
	color: #792BA2;
	display: block;
	margin-bottom: 5px;
}


label.user_label {
	background: linear-gradient(135deg, #eb41a1 0%, #c109f3 100%);
	border: none;
	display: flex;
	position: relative;
	margin: 14px auto 0;
	max-width: 100%;
	line-height: 2.4em;
	text-align: center;
	border-radius: 23px;
	justify-content: space-between;
}

label.user_label a:first-child {
	border-radius: 23px 0 0 23px;
}

label.user_label a:last-child {
	border-radius: 0 23px 23px 0;
}

label.user_label a {
	border-radius: 0;
}

label.user_label a:hover {
	color: #fff;
	background: #F247A5;
}

input[type=search] {
	padding: 5px;
	margin-bottom: 5px;
	font-size: 10px;
	background: #e2e7ff;
	border-radius: 0;
	border: none;
}

input[type=checkbox] {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 20px;
	height: 20px;
	border: 2px solid #fff;
	background: #fff;
	border-radius: 5px;
	outline: none;
	cursor: pointer;
	position: relative;
}

input[type=checkbox]:checked {
	background-color: #fff;
	border-color: #fff;
}

input[type=checkbox]:checked::before {
	display: block;
}

input[type=checkbox]::before {
	content: "\e90b";
	font-family: "CustomIcons";
	font-size: 12px;
	color: #792BA2;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: none;
}

label {
	display: inline-block;
	margin-right: 10px;
}

.comment_btn input {
	margin-bottom: 8px;
	width: 100%;
	padding: 5px;
}

.comment_wrapper textarea {
	margin-bottom: 5px;
	font-size: 10px;
	color: #792BA2;
	min-height: 140px;
}

.comment_wrapper button {
	width: 100%;
	padding: 5px;
}

.edit_profile {
	padding: 40px 15px 0;
}

/**************************
******* Navigation *******
************************/
/******* Mobile navigation *******/
@media screen and (max-width: 991px) {
	.nav_wrapper {
		border: 1px solid #8E989F;
		top: 0;
		padding: 0;
		width: 100%;
		z-index: 10;
		overflow-y: auto;
		background: #fff;
		transition: left 0.6s ease-in-out;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		position: fixed;
		bottom: 0;
		left: -100%;
	}

	.main_navi {
		padding: 65px 0 0 65px;
	}

	.main_navi li {
		display: block;
	}

	.main_navi li.logo {
		display: none;
	}

	.main_navi li a {
		font-size: 18px;
		font-weight: 800;
		color: #000;
		display: inline-block;
		line-height: 1.2em;
		padding: 10px 0px 2px;
		margin-bottom: 8px;
		position: relative;
		transition: color 0.3s, background 0.3s ease-in-out;
	}

	.main_navi li a::after {
		height: 2px;
		content: "";
		width: 100%;
		max-width: 0%;
		background-color: #242628;
		transition: max-width 0.5s ease-in-out;
		position: absolute;
		bottom: -3px;
		left: 50%;
		transform: translateX(-50%);
	}

	.main_navi li:hover>a::after,
	.main_navi li:focus>a::after,
	.main_navi li.active>a::after {
		max-width: 100%;
	}

	.m_contact {
		padding: 50px 32px;
		position: relative;
	}

	.m_contact::before {
		position: absolute;
		content: "";
		width: calc(100% - 64px);
		height: 0.5px;
		background-color: #8E989F;
		left: 32px;
		top: 0;
	}

	.m_contact li {
		margin-bottom: 16px;
	}

	.m_contact li:last-of-type {
		margin-bottom: 0;
	}

	.m_contact li a,
	.m_contact li span {
		font-size: 16px;
		font-weight: 500;
		line-height: 1.2em;
		color: #242628;
		padding-left: 25px;
		display: block;
	}

	.m_contact li a {
		transition: color 0.3s ease-in-out;
	}

	.m_contact li a:hover {
		color: #F247A5;
	}
}

@media screen and (max-width: 991px) and (min-width: 360px) {
	.nav_wrapper {
		max-width: 380px;
	}
}

/******* Desktop navigation *******/
@media (min-width: 450px) {
	.mobile_info {
		display: none;
	}

	.main_navi {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.main_navi li {
		display: block;
	}

	.main_navi li a {
		color: #000;
		display: block;
		font-size: 16px;
		position: relative;
		font-weight: 700;
		line-height: 1.3em;
	}

	.main_navi li a::after {
		height: 2px;
		content: "";
		width: 100%;
		max-width: 0%;
		background-color: #242628;
		transition: max-width 0.5s ease-in-out;
		position: absolute;
		bottom: -3px;
		left: 50%;
		transform: translateX(-50%);
	}
}

@media (min-width: 450px) and (min-width: 600px) {
	.main_navi li a {
		font-size: 19px;
	}
}

@media (min-width: 450px) {
	.main_navi li a.header_logo {
		transition: max-width 0.3s ease-in-out;
		line-height: 0;
		max-width: 145px;
	}

	.main_navi li a.header_logo::after {
		content: none;
	}

	.main_navi li:hover a::after,
	.main_navi li:focus a::after,
	.main_navi li.active a::after {
		max-width: 100%;
	}

	.main_navi li.add_links {
		display: none;
	}
}

/**********************************
******* Mobile navi toggle *******
********************************/
label[for=toggle_nav] {
	cursor: pointer;
}

label[for=toggle_nav]:before {
	color: #242628;
	display: block;
	font-size: 22px;
	font-family: "CustomIcons";
}

@media (min-width: 450px) {
	label[for=toggle_nav] {
		display: none;
	}
}

label[for=toggle_nav].open {
	height: 40px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

@media (min-width: 450px) {
	label[for=toggle_nav].open {
		display: none;
	}
}

label[for=toggle_nav].open:before {
	content: "\e900";
}

label[for=toggle_nav].open:after {
	top: 0;
	z-index: 1;
	content: "";
	opacity: 0;
	width: 100%;
	pointer-events: none;
	background: rgba(0, 0, 0, 0.8);
	transition: opacity 0.6s ease-in-out;
	position: fixed;
	bottom: 0;
	left: 0;
}

label[for=toggle_nav].close_btn {
	position: absolute;
	top: 32px;
	right: 32px;
}

label[for=toggle_nav].close_btn:before {
	content: "\e901";
	font-size: 16px;
}

#toggle_nav {
	display: none;
}

#toggle_nav:checked~* label[for=toggle_nav]:after {
	opacity: 1;
	pointer-events: auto;
}

#toggle_nav:checked~* .nav_wrapper,
#toggle_nav:checked~.nav_wrapper {
	left: 0;
}

.sticky {
	position: fixed;
	top: 33px;
	left: 0;
	right: 0;
	z-index: 10;
	width: 100%;
	background: #fff;
}

.sticky .main_header_row {
	padding: 10px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

@media (min-width: 450px) {
	.sticky .main_header_row {
		padding: 15px 30px;
	}
}

.sticky .main_header_row .header_logo_mobile {
	display: block;
	margin: 0 auto;
}

@media (min-width: 450px) {
	.sticky .main_header_row .header_logo_mobile {
		display: none;
	}
}

.sticky .main_header_row .header_logo {
	max-width: 80%;
	display: block;
	margin: 0 auto;
}

/* Header Styles */
header {
	background: linear-gradient(90deg, #540D6E 0%, #F247A5 100%);
	height: 50px;
	z-index: 1000;
	width: 100%;
	display: flex;
	align-items: center;
	position: relative;
}

.header-container {
	display: flex;
	justify-content: space-between;
	/* Променено обратно на space-between */
	align-items: center;
	width: 100%;
	padding: 0 20px;
}

/* Logo Style */
.logo-container {
	display: flex;
	align-items: center;
}

.logo-container figure {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
}

header .logo {
	height: 1.75em;
	width: auto;
	/* Добавено за запазване на пропорциите */
	cursor: pointer;
	transition: transform 0.3s ease;
}

/* Search Icon */
.search-container {
	position: relative;
}

header .ci-search {
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

header .ci-search::before {
	color: #FFFFFF;
	font-size: 20px;
}

/* Добавено за текста на логото */
.logo-text {
	margin-left: 10px;
	color: white;
	font-size: 1.5em;
	font-weight: bold;
	white-space: nowrap;
	/* Предотвратява пренасяне на нов ред */
}

/* Secondary Header and Navigation Styles */
.secondary-header {
	background: linear-gradient(135deg, #e0e6ff, #c8cff5);
	z-index: 1000;
	position: relative;
}

.nav-wrapper {
	width: 100%;
	max-width: 1200px;
	/* Adjust based on your layout */
	margin: 0 auto;
}

.message-nav {
	padding: 0;
	margin: 0;
	list-style-type: none;
	display: flex;
	justify-content: space-around;
	background-color: #c8cff5;
}

.nav-item {
	position: relative;
	flex: 1;
	text-align: center;
	color: #792BA2;
	text-decoration: none;
	padding: 10px 0;
	font-size: 14px;
	transition: all 0.3s ease;
	border-bottom: 2px solid transparent;
}

.nav-item.active {
	color: #F247A5;
	border-bottom-color: #F247A5;
	font-weight: 500;
	transform: translateY(-2px);
}

.nav-item .nav-counter {
	top: 0.675em;
	right: 2.2em;
	left: auto;
}


.users_in .name_wrap p {
	display: none;
}


/* Footer Styles */
#footer {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	/* background-color: #5c2ba2;*/
	background: linear-gradient(90deg, #2A0F45 0%, #4A1063 100%);
	height: 4em;
	z-index: 3;
}

.footer-nav {
	position: relative;
	height: 100%;
	top: 0.9em;
}

.nav-left a {
	position: relative;
	transition: all 0.3s ease;
	display: inline-flex;
	justify-content: center;
	min-height: 3em;
	padding: 0.5em;
	margin: -0.5em;
}

.nav-right a {
	position: relative;
	transition: all 0.3s ease;
	display: inline-flex;
	justify-content: center;
	min-height: 3em;
	padding: 0.5em 1.5em 0.5em 0.5em;
	margin: -0.5em;
}

.nav-left {
	position: absolute;
	left: 1.5em;
}

.nav-right {
	position: absolute;
}

.nav-left a {
	padding-right: 2em;
}

.footer-nav .ci {
	font-size: clamp(1.5em, 2.5vw, 1.3em);
	color: #FFFFFF;
	text-shadow: 0 0px 1px rgba(255, 0, 255, 0.6);
	filter: drop-shadow(0 0px 1px rgba(255, 0, 255, 0.6));
	transform: scale(1);
	pointer-events: none;
}

.footer-nav a.active .ci {
	color: #00FFFF;
	text-shadow: 1px 0px 5px rgba(0, 255, 255, 0.6), 0 0 20px rgba(0, 255, 255, 0.5);
	filter: drop-shadow(1px 0px 5px rgba(0, 255, 255, 0.6));
}

.footer_profile_image {
	margin-top: -0.4em;
	/* Коригирана позиция нагоре */
	width: 2em;
	height: 2em;
	border-radius: 50%;
	border: 0.15em solid #FFFFFF;
	background-size: cover;
	background-position: center;
	box-shadow: 0 0px 1px rgba(255, 0, 255, 0.6);
	filter: drop-shadow(0 1px 3px rgba(255, 0, 255, 0.6)) brightness(1.1);
	transition: all 0.3s ease;
	object-fit: cover;
	pointer-events: none;
}

.footer_profile_image:hover,
.footer-nav a.active .footer_profile_image {
	border-color: #00FFFF;
	transform: scale(1.1);
	box-shadow: 0 4px 8px rgba(255, 255, 0, 0.7), 0 0 20px rgba(255, 255, 0, 0.5);
}



@media screen and (min-width: 360px) {

	/* Huawei P30 Pro width */
	.nav-left a {
		margin-right: calc(1em + (4 - 2) * ((100vw - 360px) / (428 - 360)));
	}

	.nav-right a {
		padding-left: calc(0.1em + (4 - 2) * ((100vw - 360px) / (428 - 360)));
	}

	.nav-right {
		right: calc(1em + (3.5 - 2.5) * ((100vw - 360px) / (428 - 360)));
	}
}

@media screen and (min-width: 428px) {

	/* iPhone 13 Pro Max width */
	.nav-left a {
		margin-right: 1.8em;
	}

	.nav-right a {
		padding-left: 0.1em;
	}

	.nav-right {
		right: 1.1em;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fadeOut {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

.fade-in {
	animation: fadeIn 0.5s ease forwards;
}

.fade-out {
	animation: fadeOut 0.75s ease forwards;
}

/* Optional: Add a delay for cascading effect */
.fade-in-delay {
	opacity: 0;
	animation: fadeIn 0.25s ease forwards;
}

.fade-out-delay {
	opacity: 1;
	animation: fadeOut 0.25s ease forwards;
}

.fade-in-delay:nth-child(2),
.fade-out-delay:nth-child(2) {
	animation-delay: 0.1s;
}

.fade-in-delay:nth-child(3),
.fade-out-delay:nth-child(3) {
	animation-delay: 0.2s;
}

.fade-in-delay:nth-child(4),
.fade-out-delay:nth-child(4) {
	animation-delay: 0.3s;
}

body {
	position: relative;
	background: url(/assets/images/chat_bg.webp) center center no-repeat;
	background-size: cover;
}

main {
	max-width: 800px;
	margin: 0 auto;
	/*height: calc(100vh - 100px);*/
	overflow-y: auto;
	overflow-x: hidden;
	/* background: url(/assets/images/chat_bg.webp) center center no-repeat;*/
	background-size: cover;
}

main>section>.row {
	/*height: 100%; */
}

main>section:not(.top_users) {
	height: calc(100vh - 100px);
}

.new_header+main {
	padding-top: 60px;
}

.close_profile_button {
	margin: 27px auto;
	width: 90%;
	text-align: center;
	display: block;
}

/* ******* */
/* SHADOWS */
/* ******* */
img {
	filter: brightness(1.1);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
}

.section_title,
.progress-bar,
.feature-bar,
.price-section,
.features-section,
.act-notification-card,
.apple-signin-button,
.massonry_grid,
.message_wrap,
.button_wrap,
.comment-bubble,
.inner_wrap,
.info-card,
.message_date,
.active_contact,
.secondary-header,
.ci-search,
.search_result,
.popup_message,
.emoji_react,
.profile_image {
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header {
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

footer {
	box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.2);
}

.btn,
button,
select {
	box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.4);
}

.message_time,
.divider-text {
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 1));
}



.profile {
	display: flex;
	padding: 7px;
}

.profile .main_info {
	max-width: 55%;
	flex-basis: 55%;
}

:root {
	--primary-color: #8a2be2;
	/* Purple */
	--secondary-color: #ff69b4;
	/* Pink */
	--accent-color: #20b2aa;
	/* Light Sea Green */
	--background-color: #f0f0f0;
	--text-color: #333;
	--full-height: calc(var(--vh, 1vh) * 100);
}


.profile_info .inner_wrap .info-card {
	display: flex;
	align-items: flex-start;
	background-color: #ffffff;
	border-radius: 8px;
	padding: 10px;
	margin-bottom: 12px;
	flex-direction: column;
}

.info-card h3 {
	font-size: 1em;
	font-weight: 600;
	margin-bottom: 15px;
	color: var(--primary-color);
	position: relative;
	padding-bottom: 10px;
}

.info-card h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 2px;
	background-color: var(--secondary-color);
	transition: width 0.3s ease;
}

.info-card:hover h3::after {
	width: 100%;
}

.info-card-stats {
	background-color: #f8f8f8;
	border-left: 4px solid var(--secondary-color);
}

.info-card-activity {
	border-top: 2px solid var(--accent-color);
	padding-top: 15px;
	transition: border-color 0.3s ease;
}

.info-card strong {
	font-weight: 600;
	color: var(--primary-color);
}

.profile .gallery {
	max-width: 45%;
	flex-basis: 45%;
	padding-left: 7px;
}

.profile .gallery .friends {
	height: 100%;
}

.profile .section_title .edit_user::before {
	content: "\e90f";
	position: absolute;
	right: 7px;
	bottom: 7px;
	font-family: "CustomIcons";
	font-size: 15px;
	cursor: pointer;
	color: #792BA2;
}

.main_navigation {
	height: 100%;
}

.main_navigation>.row {
	height: 100%;
}

body.error {
	height: 100vh;
	background: url(/assets/images/chat_bg.webp) center center no-repeat;
	background-size: cover;
	text-align: center;
	color: #fff;
	font-family: "Helvetica Neue";
	font-size: 16px;
	line-height: 1.5;
}

body.error .logo {
	display: block;
	margin: 0 auto;
	max-width: 150px;
	padding-top: 40px;
}

body.error h1 {
	font-size: 24px;
	line-height: 1.5em;
	margin: 0 auto 16px;
	padding: 0 20px;
	text-shadow: 0 0 3px white;
	letter-spacing: 0.5px;
	font-weight: 600;
	max-width: 600px;
	color: #fff;
	letter-spacing: 5px;
}

body.error p {
	color: #fff;
	font-weight: 300;
	max-width: 600px;
	margin: 0 auto 24px;
	text-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
	letter-spacing: 0.5px;
	padding: 0 20px;
}

body.error p a {
	color: inherit;
}

body.error p a:hover {
	color: #fff;
}

body.error .button {
	color: #2EA3F2;
	background: #fff;
	border-radius: 3px;
	display: inline-block;
	padding: 12px 48px;
	text-decoration: none;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
	transition: all 0.2s ease-out;
}

body.error .button:hover {
	margin-top: -2px;
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

body.error .browser {
	width: 400px;
	min-width: 200px;
	min-height: 264px;
	background: #FFFFFF;
	box-shadow: 0 40px 80px 0 rgba(0, 0, 0, 0.25);
	border-radius: 3px;
	animation: bobble 1.8s ease-in-out infinite;
	position: relative;
	left: 50%;
	margin-left: -200px;
}

body.error .browser .controls {
	width: 100%;
	height: 32px;
	background: #E8ECEF;
	border-radius: 3px 3px 0 0;
	box-sizing: border-box;
	padding: 10px 12px;
}

body.error .browser .controls i {
	height: 12px;
	width: 12px;
	border-radius: 100%;
	display: block;
	float: left;
	background: #D6DCE0;
	margin-right: 8px;
}

body.error .eye {
	position: absolute;
	left: 34%;
	top: 80px;
	width: 32px;
	height: 32px;
	opacity: 1;
}

body.error .eye+.eye {
	right: 34%;
	left: auto;
}

body.error .eye:before,
body.error .eye:after {
	position: absolute;
	left: 15px;
	content: " ";
	height: 40px;
	width: 3px;
	border-radius: 2px;
	background-color: #FF5E5B;
}

body.error .eye:before {
	transform: rotate(45deg);
}

body.error .eye:after {
	transform: rotate(-45deg);
}

body.error .mouth {
	position: absolute;
	width: 250px;
	top: 178px;
	left: 50%;
	margin-left: -125px;
	height: 40px;
}

body.error .mouth .lips {
	position: absolute;
	left: 15px;
	content: " ";
	height: 40px;
	width: 3px;
	border-radius: 2px;
	background-color: #FF5E5B;
	transform: rotate(-54deg);
}

body.error .mouth .lips:nth-child(odd) {
	transform: rotate(54deg);
}

body.error .mouth .lips:nth-child(n+2) {
	margin-left: 31px;
}

body.error .mouth .lips:nth-child(n+3) {
	margin-left: 62px;
}

body.error .mouth .lips:nth-child(n+4) {
	margin-left: 93px;
}

body.error .mouth .lips:nth-child(n+5) {
	margin-left: 124px;
}

body.error .mouth .lips:nth-child(n+6) {
	margin-left: 155px;
}

body.error .mouth .lips:nth-child(n+7) {
	margin-left: 186px;
}

body.error .mouth .lips:nth-child(n+8) {
	margin-left: 217px;
}

body.error .mouth .lips:nth-child(n+9) {
	margin-left: 248px;
}

@keyframes bobble {

	0%,
	100% {
		margin-top: 40px;
		margin-bottom: 48px;
		box-shadow: 0 40px 80px rgba(0, 0, 0, 0.24);
	}

	50% {
		margin-top: 54px;
		margin-bottom: 34px;
		box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
	}
}

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
	body.error .browser {
		width: 280px;
		margin-left: -140px;
	}

	body.error .browser .eye {
		left: 30%;
	}

	body.error .browser .eye+.eye {
		left: auto;
		right: 30%;
	}
}

body.error .btn {
	max-width: 200px;
}

.auth-container {
	max-width: 400px;
	margin: 20px auto;
	background: white;
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.auth-header_logo {
	display: block;
	margin: 0 auto 15px;
	width: 150px;
}

.auth-header_links {
	text-align: center;
	margin-bottom: 20px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
}

.auth-header_link {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
}

.auth-header_link:hover {
	color: #ffffff;
	text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.auth-header_separator {
	margin: 0 5px;
}

.auth-footer {
	width: 95vw;
	font-size: 9px;
	text-align: center;
}

.auth-footer a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: color 0.3s ease, text-shadow 0.3s ease;
}

.auth-footer a:hover {
	color: #ffffff;
	text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.auth-footer-separator {
	color: rgba(255, 255, 255, 0.6);
	margin: 0 5px;
}

.register {
	min-height: 100vh;
	width: 100%;
	background: linear-gradient(100deg, #540D6E 0%, #7B1B8F 50%, #E247A5 100%);
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}

.register option {
	font-size: 10px;
}

.register .form-inner form .field select {
	color: #000000;
}

.register ::selection {
	background: #fa4299;
	color: #fff;
}

.register .logo {
	max-width: 200px;
	box-shadow: unset;
}

.register .wrapper {
	overflow: hidden;
	max-width: 292px;
	min-width: 200px;
	background: #fff;
	padding: 15px;
	border-radius: 5px;
	box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.1);
	margin: 10px;
}

.register .wrapper.wrong_Ðµmail {
	width: 250px;
}

.register .wrapper .title-text {
	display: flex;
	width: 200%;
}

.register .wrapper .title {
	width: 50%;
	font-size: 10px;
	font-weight: 600;
	text-align: center;
	transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.register .wrapper .slide-controls {
	position: relative;
	display: flex;
	height: 35px;
	width: 100%;
	overflow: hidden;
	margin: 30px 0 10px 0;
	justify-content: space-between;
	border: 1px solid lightgrey;
	border-radius: 5px;
}

.register .wrapper .form-container {
	width: 100%;
	overflow: hidden;
}

.register .slide-controls .slide {
	height: 100%;
	width: 100%;
	color: #fff;
	font-size: 10px;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 1;
	transition: all 0.6s ease;
}

.register .slide-controls label.signup {
	color: #000;
}

.register .slide-controls .slider-tab {
	position: absolute;
	height: 100%;
	width: 50%;
	left: 0;
	z-index: 0;
	border-radius: 5px;
	background: linear-gradient(135deg, #ee3fa2 0%, rgba(192, 56, 229, 0.831372549) 100%);
	transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.register input[type=radio] {
	display: none;
}

.register .reg .slider-tab {
	left: 50%;
}

.register #signup:checked~.slider-tab {
	left: 50%;
}

.register #signup:checked~label.signup {
	color: #fff;
	cursor: default;
	user-select: none;
}

.register #signup:checked~label.login {
	color: #000;
}

.register #login:checked~label.signup {
	color: #000;
}

.register #login:checked~label.login {
	cursor: default;
	user-select: none;
}

.register .form-container .form-inner {
	display: flex;
	width: 200%;
}

.register .form-container .form-inner form {
	width: 50%;
	transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.register .form-inner form .field {
	height: auto;
	width: 100%;
}

.register .form-inner form .field input {
	height: 100%;
	width: 100%;
	outline: none;
	border-radius: 10px;
	border: solid 1px #CCB8D5;
	font-size: 10px;
	transition: all 0.3s ease;
}

.register .form-inner form .field input:focus {
	border-color: #fc83bb;
}

.register .form-inner form .field input::placeholder {
	color: #999;
	transition: all 0.3s ease;
}

.register .form-inner form .pass-link {
	margin-top: 10px;
	margin-bottom: 4px;
}

.register .form-inner form .signup-link {
	text-align: center;
	margin-top: 15px;
	font-size: 10px;
}

.register form .field {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
}

.register form .field input:focus::placeholder {
	color: #b3b3b3;
}

.register form .btn {
	height: 35px;
	width: 100%;
	border-radius: 5px;
	position: relative;
	overflow: hidden;
}

.register form .btn:hover .btn-layer {
	left: 0;
}

.register form .btn input[type=submit] {
	height: 100%;
	width: 100%;
	z-index: 1;
	line-height: 1.2em;
	position: relative;
	background: none;
	border: none;
	color: #fff;
	padding-left: 0;
	border-radius: 5px;
	font-size: 12px;
	cursor: pointer;
	padding: 6px 0 0 0;
}

.register .form-inner form .pass-link a,
.register .form-inner form .signup-link a {
	color: #fa4299;
	text-decoration: none;
	font-size: 10px;
}

.register .form-inner form .pass-link a:hover,
.register .form-inner form .signup-link a:hover {
	text-decoration: underline;
	font-size: 10px;
}

.register form .btn {
	line-height: 1.33em;
}

.register .gender {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
}

.register .gender input[type="radio"] {
	display: none;
}

.register .gender label {
	display: inline-flex;
	align-items: center;
	cursor: pointer;
	margin-right: 20px;
}

.register .gender label::before {
	content: '';
	width: 16px;
	height: 16px;
	border: 2px solid #ee3fa2;
	border-radius: 50%;
	margin-right: 5px;
}

.register .gender input[type="radio"]:checked+label::before {
	background-color: #ee3fa2;
	box-shadow: inset 0 0 0 3px #fff;
}

.divider {
	display: flex;
	align-items: center;
	text-align: center;
	margin: 30px 0;
	font-size: 0.9em;
	color: #666;
	position: relative;
}

.divider::before,
.divider::after {
	content: '';
	flex: 1;
	border-bottom: 1px solid #999;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.divider:hover::before,
.divider:hover::after {
	border-color: #fa4299;
	box-shadow: 0 5px 10px rgba(250, 66, 153, 0.2);
}

.divider::before {
	margin-right: 15px;
}

.divider::after {
	margin-left: 15px;
}

.divider-text {
	font-weight: 300;
	margin: 0 15px;
	color: #666;
	text-transform: uppercase;
	padding: 0 10px;
	position: relative;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.divider:hover .divider-text {
	color: #fa4299;
}

.chat_list {
	background-color: #D5DCFF;
}

.male-nickname {
	color: #0197f9 !important;
	font-weight: bold !important;
}

.female-nickname {
	color: #d321bf !important;
	font-weight: bold !important;
}

.contact_item {
	transform: translateX(0px);
	/* count new messages fix */
	display: flex;
	align-items: center;
	padding: 12px;
	background-color: #D5DCFF;
	border-radius: 8px 0 0 8px;
	margin-bottom: 5px;
}

.contact_item figure {
	display: block;
}

.contact_item figure img {
	object-fit: cover;
	object-position: center center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	transition: transform 0.3s ease;
}

.contact_item.active {
	background-color: #BFCAFF;
	transform: translateX(5px);
	border-radius: ;
}

.contact_item .name_wrap {
	padding-left: 9px;
	width: calc(100% - 60px);
}

.contact_item.online {
	background-color: #BFCAFF;
}

.contact_item.online figure {
	position: relative;
	z-index: 0;
}

.contact_item.online figure::before {
	position: absolute;
	content: "";
	width: 32px;
	height: 32px;
	top: -1px;
	left: -1px;
	background: linear-gradient(135deg, #eb41a1 0%, #c109f3 50%, #4809f3 100%);
	border-radius: 100%;
	z-index: -1;
}

.contact_item.online figure::after {
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	width: 9px;
	height: 9px;
	border-radius: 100%;
	border: 2px solid #BFCAFF;
	background-color: #EB41A1;
}

#chat-userlist .profile-container {}

.name_wrap h2 {
	font-size: 12px;
	line-height: 1.4em;
	color: #792BA2;
	margin-bottom: 2px;
}

.name_wrap p {
	white-space: nowrap;
	color: #8B99D5;
	font-size: 10px;
	letter-spacing: 0.03em;
	line-height: 1.33em;
}

.chat {
	padding: 5px;
	padding-bottom: 0;
	overflow-y: auto;
	margin-right: 4px;
	overflow-x: hidden;
}

.chat .message_box {
	display: flex;
	margin-bottom: 12px;
	position: relative;
}

.message_box figure {
	margin-right: 10px;
}

.message_box figure img {
	border-radius: 50%;
	width: 26px;
	height: 26px;
	object-fit: cover;
}

.message_date_container {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 25px 0 15px;
	position: relative;
}

.message_date_container:hover::before,
.message_date_container:hover::after {
	border-color: rgba(68, 72, 126, 0.6);
}

.message_date {
	font-size: 11px;
	color: #44487e;
	text-align: center;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
	background-color: rgba(255, 255, 255, 0.8);
	padding: 3px 10px;
	border-radius: 15px;
}

.message_time {
	font-size: 10px;
	color: #44487e;
	margin-bottom: 4px;
	padding: 0 5px;
	opacity: 0.7;
}

.message_time_left {
	margin-left: 37px;
	text-align: left;
}

.message_time_right {
	text-align: right;
}

.chat .message_box .search_wrapper {
	width: 100%;
	bottom: 0;
	left: 50%;
	position: fixed;
	transform: translate(-50%, -55px);
	max-width: 800px;
	max-height: 400px;
	z-index: 12;
	display: flex;
	flex-direction: column;
}

.chat .message_box.replied {
	justify-content: flex-end;
}

.chat .message_box.replied .message_wrap .message_box {
	padding: 0;
	max-width: 100%;
	margin-bottom: 0;
}

.chat .message_box.replied .message_wrap .message_box.sent .message_wrap {
	padding-top: 20px;
	background: #7bdce3;
}

.chat .message_box.replied .message_wrap .message_box.sent p::before {
	transform: scaleX(-1);
	top: 6px;
	right: 11px;
}

.chat .message_box.replied .message_wrap .message_box .message_wrap {
	max-width: 100%;
}

.chat .message_box.received {
	justify-content: flex-start;
}

.chat .message_box.received .message_wrap {
	background: #0ED6FF;
}

.chat .message_box.received .message_wrap .message_box {
	padding: 0;
	max-width: 100%;
	margin-bottom: 0;
}

.chat .message_box.received .message_wrap .message_box.reply .message_wrap {
	padding-top: 20px;
	max-width: 100%;
	background: #16bfd7;
}

.chat .message_box.received .message_wrap .message_box.reply p::before {
	top: 6px;
	left: 11px;
}

.chat .message_box.received .message_wrap .message_box.sent .message_wrap {
	max-width: 100%;
}

.chat .message_box.received .message_wrap .message_box .message_box {
	max-width: 100%;
}

.chat .message_box.reply {
	justify-content: flex-end;
}

.chat .message_box.replied .message_wrap .emoji_react,
.chat .message_box.reply .message_wrap .emoji_react {
	background: #BFFFF3;
	right: 0;
}

.chat .message_box.received .message_wrap .emoji_react,
.chat .message_box.sent .message_wrap .emoji_react {
	background: #0ED6FF;
}

.chat .message_box figure {
	margin-right: 5px;
}

.chat .message_box .message_wrap {
	background-color: #BFFFF3;
	border-radius: 10px;
	padding: 9px;
	display: inline-block;
	max-width: calc(100% - 32px);
}

.chat .message_box .message_wrap p {
	font-size: 10px;
	color: #540D6E;
	line-height: 1.1em;
	user-select: none;
}

.chat .message_box .message_wrap.w_image a {
	padding-top: 5px;
	width: 100%;
	max-width: 100%;
}

.chat .message_box .message_wrap.w_image a img {
	padding-top: 3px;
	border-radius: 5px;
}

.chat .message_box .message_wrap figure {
	padding-top: 5px;
	width: 100%;
	max-width: 100%;
}

.chat .message_box .message_wrap figure img {
	border-radius: 5px;
}

.chat .message_box.sent {
	text-align: left;
}

.chat .message_box.sent .message_wrap {
	background-color: #0ED6FF;
	max-width: calc(100% - 55px);
}

.chat .message_box.sent .emoji {
	left: 0;
	right: unset;
	transform: translate(30px, -8px);
	user-select: none;
}

.chat .message_box.sent .reply_pop,
.chat .message_box.sent .report_pop {
	left: 0;
	right: unset;
	transform: translate(30px, 8px);
}

form .input_wrapper input {
	font-size: 10px;
}

form .input_wrapper input[type=checkbox] {
	border-radius: 28px;
	font-size: 10px;
}

form .input_wrapper input::placeholder {
	font-size: 10px;
	color: #CCCCCC;
}

form button {
	font-size: 10px;
	padding-top: 8px;
	padding-bottom: 8px;
	text-transform: none;
	width: 100%;
}

.chat_wrapper {
	display: flex;
}

.chat_wrapper .chat_wrap {
	/* display: flex; */
	flex-direction: column;
	justify-content: space-between;
	flex-basis: 60%;
	max-width: 60%;
}

.chat_wrapper .chat_wrap .active_contact {}

.chat_wrapper .chat_wrap .active_contact .contact_item {
	display: flex;
	padding: 4px;
	justify-content: space-between;
}

.chat_wrapper .chat_wrap .active_contact .contact_item figure img {
	width: 25px;
	height: 25px;
}

.chat_wrapper .chat_wrap .active_contact .contact_item ul li>a::before {
	right: 0;
	top: 50%;
	color: #ad3ec2;
	transform: translateY(-50%);
}

.active_contact .message_request {
	display: flex;
	padding-top: 1px;
	margin: 0;
	margin-left: 3px;
	list-style-type: none;
}

.active_contact .message_request a {
	flex: 1;
	text-align: center;
	color: #792BA2;
	text-decoration: none;
	padding: 10px 0px 2px 0px;
	font-size: 13px;
	transition: all 0.3s ease;
}

.active_contact .message_request a.active {
	color: #F247A5;
	transform: translateX(-5px);
	transform: translateY(-5px);
}

.chat_wrapper .chat_wrap form {
	padding: 5px;
	position: relative;
	max-width: 100%;
	right: unset;
}

.chat_wrapper .chat_wrap form button {
	width: 100%;
}

.chat_wrapper .chat_wrap .reply_message {
	background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(252, 246, 246, 0.4784313725) 100%);
	padding: 4px;
	border-radius: 5px 5px 0 0;
	position: relative;
}

.chat_wrapper .chat_wrap .reply_message .close-btn {
	position: absolute;
	right: 0;
	top: 0;
	width: 20px;
	height: 20px;
	cursor: pointer;
}

.chat_wrapper .chat_wrap .reply_message .close-btn::before {
	content: "\e91b";
	position: absolute;
	font-family: "CustomIcons";
	top: 50%;
	left: 50%;
	font-size: 11px;
	transform: translate(-50%, -50%);
}

.chat_wrapper .chat_wrap .reply_message span {
	color: #242628;
}

.chat_wrapper .chat_wrap .reply_message .reply_wrap .wrap_name {
	font-weight: 600;
	padding-left: 2px;
}

.chat_wrapper .chat_wrap .reply_message .replying_text {
	color: #444343;
}

.chat_wrapper .chat_wrap .reply_message figure {
	max-width: 30px;
	padding: 2px 2px 0 0;
}

.chat_wrapper .chat_list {

	max-width: 40%;
	flex-basis: 40%;
}

.contact_wrap {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-bottom: 10px;
	height: calc(100vh - 136px);
}

.message_request {
	display: flex;
	text-align: center;
	padding: 12px 0 0;
	background: #c8cff5;
	justify-content: space-between;
}

.message_request a {
	width: 100%;
	color: #792BA2;
	font-size: 12px;
	padding-bottom: 8px;
}

.message_request a.active,
.message_request a:hover {
	transition: all 0.3s ease-in-out;
	font-weight: 500;
}



.repl_wrap {
	background-color: rgba(31, 182, 202, 0.6901960784);
	padding: 20px 8px 8px;
	border-radius: 10px;
	margin-bottom: 5px;
	position: relative;
}

.repl_wrap p::before {
	content: "\e91d";
	top: 6px;
	left: 11px;
	position: absolute;
	font-family: "CustomIcons";
}

.sent .repl_wrap {
	text-align: left;
	background-color: rgba(20, 167, 186, 0.6901960784);
}

.sent .repl_wrap p::before {
	transform: scaleX(-1);
	left: unset;
	right: 11px;
}

.massonry_grid {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	border-radius: 0 0 10px 10px;
	background-color: #D5DCFF;
	padding: 8px 4px;
	margin-bottom: 16px;
	padding-bottom: 16px;
}

.massonry_grid .grid_item {
	max-width: calc(50% - 8px);
	flex-basis: calc(50% - 8px);
	margin-bottom: 4px;
	margin-left: 4px;
}

.profile_image {
	padding: 16px 8px;
	background-color: #D5DCFF;
	border-radius: 0 0 10px 10px;
	text-align: center;
	margin-bottom: 16px;
}

.profile_image img {
	border-radius: 0 0 10px 10px;
}

.profile_image .upload_input {
	display: block;
	margin: 16px auto 0;
	max-width: 150px;
}

.profile_image .upload_input input {
	display: none;
}

.profile_image .upload_input .btn {
	font-size: 10px;
	min-width: 120px;
}

@media (min-width: 380px) {
	.profile_image .upload_input .btn {
		min-width: 140px;
	}
}

@media (min-width: 400px) {
	.profile_image .upload_input .btn {
		width: 100%;
		max-width: 170px;
	}
}

@media (min-width: 600px) {
	.profile_image .upload_input .btn {
		max-width: 220px;
	}
}

.inner_wrap {
	padding: 8px;
	border-radius: 0 0 10px 10px;
	margin-bottom: 16px;
	backdrop-filter: blur(10px)
}

.profile_info .inner_wrap {
	background-color: #FFF2C9;
}

.profile_info .inner_wrap p {
	font-size: 10px;
	line-height: 1.33em;
	color: #540D6E;
	margin-bottom: 6px;
}

.profile_info .inner_wrap p strong {
	letter-spacing: 0.03em;
}

.profile_info .inner_wrap p .ci::before {
	left: 3px;
	color: #F9C82E;
	font-size: 10px;
	top: 0;
}

.profile_info .section_title::after {
	content: "\e90f";
}

.section_title {
	position: relative;
}

.section_title::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 3px;
	left: 0;
	bottom: 0;
	background: linear-gradient(100deg, #d024da 74%, #5b18f3 99%);
}

.section_title span:not(.ci) {
	font-size: 12px;
	font-weight: 700;
	color: #fff;
	line-height: 1.5em;
	display: inline-block;
	position: relative;
	z-index: 0;
	background: linear-gradient(100deg, #eb41a1 58%, #c109f3 129%, #8709f4 17%);
	padding: 7px 2px 7px 12px;
}

.section_title span:not(.ci)::before {
	position: absolute;
	content: "";
	background: url(../images/cap.svg) no-repeat;
	width: calc(100% + 3px);
	height: 100%;
	bottom: 0;
	left: calc(100% - 1px);
}

// ===============================
//
//  COMMENTS
//
// ===============================

.comments {
	position: relative;
	height: 100%;
}

.comments .inner_wrap {
	background-color: #BFFFF3;
}

.comment_item {
	margin-bottom: 16px;
	padding-bottom: 16px;
}

.comment_item:last-of-type {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: none;
}

.comment_item .comment {
	font-size: 11px;
	color: #792BA2;
	line-height: 1.5em;
	margin-bottom: 4px;
}

.comments-container {
	background: linear-gradient(to bottom, #e6f7ff, #f0f8ff);
	padding: 10px;
	border-radius: 20px;
}

.comment-bubble {
	background-color: #ffffff;
	border-radius: 20px;
	padding: 15px;
	margin-bottom: 15px;
}

.comment-header {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.comment-avatar {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	margin-right: 12px;
	object-fit: cover;
}

.comment-user-info {
	display: flex;
	flex-direction: column;
}

.comment-username {
	font-weight: bold;
	font-size: 0.7em;
	color: #4a90e2;
}

.comment-timestamp {
	color: #999;
	margin-top: 2px;
	margin-bottom: 6px;
}

.comment-content {
	font-size: 11px;
	line-height: 1.4;
	margin-top: 8px;
	margin-bottom: 12px;
}

.comment-actions {
	display: flex;
	justify-content: flex-start;
	gap: 15px;
}

.comment-action-btn {
	background: none;
	border: none;
	color: #666;
	font-size: 0.85em;
	font-weight: bold;
	cursor: pointer;
	padding: 5px 10px;
	border-radius: 15px;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.comment-action-btn:hover {
	background-color: #f0f0f0;
	color: #4a90e2;
}

@media (min-width: 380px) {
	.comment_item .comment {
		font-size: 13px;
	}
}

.comment_item .links {
	display: flex;
	align-items: center;
}

.comment_item .links a,
.comment_item .links span {
	font-size: 11px;
	color: #B47BD1;
	line-height: 1.2em;
	display: block;
	margin-right: 16px;
}

.friends_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	border-radius: 0 0 10px 10px;
	background-color: #D5DCFF;
	padding: 8px 4px;
	margin-bottom: 16px;
}

.friends_list .friend {
	max-width: calc(50% - 8px);
	flex-basis: calc(50% - 8px);
	margin-bottom: 4px;
}

.friends_list .friend a {
	display: block;
	margin: 0 auto;
	width: 52px;
	height: 52px;
}

@media (min-width: 360px) {
	.friends_list .friend a {
		width: 60px;
		height: 60px;
	}
}

@media (min-width: 400px) {
	.friends_list .friend a {
		width: 72px;
		height: 72px;
	}
}

@media (min-width: 450px) {
	.friends_list .friend a {
		width: 80px;
		height: 80px;
	}
}

@media (min-width: 600px) {
	.friends_list .friend a {
		width: 120px;
		height: 120px;
	}
}

.friends_list .friend a img {
	width: 100%;
	height: 100%;
	object-position: center center;
	object-fit: cover;
}

.friends_list .friend .vip_user {
	padding: 0 0 0 12px;
}

.friends_list .friend .vip_user::before {
	max-width: 16px;
	padding-bottom: 2px;
	font-size: 5px;
	left: 2px;
}

.friends_list .friend h6 {
	font-size: 9px;
	font-weight: 400;
	line-height: 1.4em;
	color: #F247A5;
	text-align: center;
	margin-top: 3px;
}

@media (min-width: 380px) {
	.friends_list .friend h6 {
		font-size: 11px;
	}
}

@media (min-width: 600px) {
	.friends_list .friend h6 {
		font-size: 13px;
	}
}

.friends_list .friend.male h6 {
	color: #4A39FF;
}

.friends_list .btn {
	position: relative;
	top: 30px;
	margin-top: -25px;
}

.friends {
	height: 1000%;
	padding-bottom: 20px;
}

.friends .wrap {
	position: relative;
	background-color: #D5DCFF;
	border-radius: 0 0 10px 10px;
}

.friends .wrap .friend_list {
	background: unset;
	min-height: 50px;
}

.friends .wrap .friend_list .friend {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.friends .wrap .friend_list .friend h6 {
	font-size: 9px;
	font-weight: 400;
	line-height: 1.4em;
	color: #F247A5;
	text-align: center;
	margin-top: 3px;
}

@media (min-width: 380px) {
	.friends .wrap .friend_list .friend h6 {
		font-size: 11px;
	}
}

@media (min-width: 600px) {
	.friends .wrap .friend_list .friend h6 {
		font-size: 13px;
	}
}

.friends .wrap .friend_list .friend h6.vip_user {
	padding: 0 0 0 4px;
}

.friends .wrap .friend_list .friend h6.vip_user::before {
	content: "";
	max-width: 11px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(-9px, -50%);
}

.friends .wrap .friend_list .friend.male h6 {
	color: #4A39FF;
}

.friends .wrap .btn {
	width: 100%;
	max-width: 110px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 50%);
	margin: 0;
}

.search {
	padding: 80px 30px;
}

.search form {
	max-width: 500px;
	margin: 0 auto;
}

.search button {
	display: block;
	width: 100%;
	margin-top: 12px;
}

.input_wrapper .age {
	display: flex;
	gap: 10px;
}

.input_wrapper .age .nice-select {
	margin-bottom: 0;
}

.input_wrapper .nice-select {
	margin-bottom: 8px;
}

.checklist {
	display: flex;
	width: 100%;
}

.checklist .input_wrapper {
	display: flex;
	align-items: center;
}

.checklist .input_wrapper label {
	margin-right: 8px;
	margin-bottom: 0;
}

.checklist .input_wrapper input {
	margin-right: 20px;
}

a img.rounded {
	border-radius: 8px;
}

a img.bordered {
	border: 3px solid #fff;
}

a.vip {
	position: relative;
	z-index: 0;
	display: block;
	height: 100%;
	width: 100%;
}

a.vip::before {
	position: absolute;
	content: "";
	width: 35px;
	height: 35px;
	top: 14px;
	left: 14px;
	background: url("../images/vip_badge.svg") center center no-repeat;
	background-size: contain;
	z-index: 1;
}

a.vip::after {
	position: absolute;
	content: "VIP";
	font-size: 12px;
	color: #fff;
	width: 30px;
	height: 6px;
	top: 21px;
	left: 16px;
	font-weight: 700;
	z-index: 2;
	display: block;
	letter-spacing: 0.02em;
	text-align: center;
}

.search_results {
	padding: 12px 8px 60px;
}

.search_result {
	padding: 16px;
	border-radius: 12px;
	background-color: #C0CFFF;
	margin-bottom: 16px;
}

.search_result span {
	font-size: 14px;
}

.search_result strong {
	font-weight: 600;
	color: var(--primary-color);
}

.search_result .main_info {
	display: flex;
	margin-bottom: 10px;
	max-height: 360px;
	max-width: 500px;
}

.search_result .main_info .profile_img {
	max-width: 50%;
	flex-basis: 50%;
}

.search_result .main_info .profile_img .grid_item {
	height: 100%;
}

.search_result .main_info .profile_img a img {
	width: 100%;
	height: 100%;
	max-height: 298px;
	object-fit: cover;
	object-position: center center;
}

.search_result .main_info .profile_info {
	max-width: 50%;
	flex-basis: 50%;
	padding-left: 15px;
}

.search_result .main_info .profile_info .inner_wrap {
	width: 100%;
	margin-bottom: 0;
	padding-bottom: 0;
	padding-top: 0;
	background-color: unset;
	background-color: rgba(255, 255, 255, 0.1);
	padding: 9px 0px 5px 12px;
}

.search_result .main_info .profile_info .inner_wrap p {
	font-size: 11px;
}

.search_result .main_info .profile_info .inner_wrap p.username {
	font-size: 16px;
	line-height: 1.5em;
	color: #F247A5;
	font-weight: 700;
}

.search_result .main_info .profile_info .inner_wrap .city {
	margin-bottom: unset;
}

.search_result .main_info .profile_info .inner_wrap .hr {
	background-color: rgba(255, 255, 255, 0.3);
	margin: 8px 0;
	height: 1px;
}

.gallery_wrap .slick-list {
	margin: 0 -3px;
}

.gallery_wrap a {
	display: block;
	width: 70px;
	height: auto;
	margin: 0 3px;
}

.gallery_wrap a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.profile_wrap .right_col {
	max-width: 65%;
	flex-basis: 65%;
	height: 100%;
	background-color: rgba(191, 202, 255, 0.6705882353);
	border-radius: 3px;
	overflow: scroll;
}

.profile_wrap .right_col .search_result {
	padding: 8px;
	border-radius: 5px;
	background-color: #D4DCFF;
	margin-bottom: 8px;
}

.profile_wrap .right_col .search_result .main_info {
	display: flex;
	margin-bottom: 7px;
}

.profile_wrap .right_col .search_result .main_info .profile_img {
	max-width: 55%;
	flex-basis: 55%;
}

@media (min-width: 450px) {
	.profile_wrap .right_col .search_result .main_info .profile_img {
		max-width: 50%;
		flex-basis: 50%;
	}
}

.profile_wrap .right_col .search_result .main_info .profile_img .grid_item {
	height: 100%;
}

.profile_wrap .right_col .search_result .main_info .profile_img a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.profile_wrap .right_col .search_result .main_info .profile_info {
	max-width: 45%;
	flex-basis: 45%;
}

@media (min-width: 450px) {
	.profile_wrap .right_col .search_result .main_info .profile_info {
		max-width: 50%;
		flex-basis: 50%;
	}
}

.profile_wrap .right_col .search_result .main_info .profile_info .inner_wrap {
	width: 100%;
	margin-bottom: 0;
	padding-bottom: 0;
	padding-top: 0;
	background-color: unset;
}

.profile_wrap .right_col .search_result .main_info .profile_info .inner_wrap p {
	font-size: 11px;
}

.profile_wrap .right_col .search_result .main_info .profile_info .inner_wrap p.username {
	font-size: 10px;
	letter-spacing: 0.13em;
	line-height: 1.5em;
	color: #F247A5;
	font-weight: 700;
}

.profile_wrap .right_col .search_result .main_info .profile_info .inner_wrap .hr {
	background-color: rgba(255, 255, 255, 0.3);
	margin: 8px 0;
	height: 1px;
}

.profile_wrap .right_col .gallery_wrap .slick-list {
	margin: 0 -3px;
}

.profile_wrap .right_col .gallery_wrap a {
	display: block;
	width: 70px;
	height: 70px;
	margin: 0 3px;
}

.profile_wrap .right_col .gallery_wrap a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

.top_users .women_tab,
.top_users .men_tab {
	display: flex;
	border-radius: 0 10px 10px 0;
	padding: 6px 10px;
	margin-top: 10px;
	border: 1px 1px 1px 0;
	border-left: unset;
	background: linear-gradient(180deg, #DC32BC 0%, rgba(220, 51, 188, 0.7294117647) 48%, #DC32CD);
}

.top_users .women_tab span,
.top_users .men_tab span {
	font-weight: 500;
	color: #fff;
	font-size: 10px;
}

.top_users .women_tab {
	margin-right: 5px;
}

.top_users .men_tab {
	border-radius: 10px 0 0 10px;
	background: linear-gradient(180deg, #0197F9 0%, rgba(1, 151, 249, 0.6196078431) 48%, #0197F9);
	text-align: right;
	justify-content: flex-end;
	margin-left: 5px;
}

.top_users .vip_background {
	overflow: hidden;
}

.top_users .vip_background::before {
	left: 60%;
	max-width: 170px;
	background-size: contain;
}

.top_users .search_result .main_info {
	margin-bottom: 5px;
}

.top_users .main_info {
	padding: 0 2px;
}

.slick-list .slick-track a {
	padding-right: 5px;
}

.men {
	padding: 10px 10px 10px 5px;
}

.men .vip_background {
	background-color: #D4DCFF;
}

.men .vip_background::before {
	display: none;
}

.men .search_result {
	border-radius: 10px;
	border: 1px solid #82F5FD;
}

.women {
	padding: 10px 5px 10px 10px;
	height: 100%;
	overflow-y: auto;
}

.women .search_result {
	border-radius: 10px;
	border: 1px solid #F247A5;
}

.profile_wrap {
	display: flex;
	height: calc(100vh - 100px);
}

.profile_wrap .menu_col {
	max-width: 40%;
	flex-basis: 40%;
	border-radius: 3px;
	position: relative;
	background-color: transparent;
	border-right: 1px solid rgba(255, 255, 255, 0.3019607843);
	overflow-y: auto;
	overflow-x: hidden;
	/* height: calc(100vh - 91px); */
}

.profile_wrap .menu_col.blue {
	background-color: rgba(191, 202, 255, 0.6705882353);
}

.profile_wrap .menu_col .section_title {
	margin-bottom: 10px;
}

.profile_wrap .menu_col .menu_wrap:first-child {
	position: relative;
	margin-top: 10px;
}

.profile_wrap .menu_col .menu_wrap {
	padding: 10px 0;
}

.profile_wrap .menu_col .menu_wrap>ul {
	padding: 0 15px;
	list-style-type: none;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	0px 0px 1px rgba(0, 0, 0, 0.1)
}

@media (min-width: 400px) {
	.profile_wrap .menu_col .menu_wrap>ul {
		padding-left: 10px;
	}
}

.profile_wrap .menu_col .menu_wrap>ul>li>a,
.profile_wrap .menu_col .menu_wrap>ul>li label {
	font-size: 10px;
	font-weight: 500;
	line-height: 1.33em;
	color: #792BA2;
	margin-bottom: 10px;
	display: block;
	padding-left: 17px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.profile_wrap .menu_col .menu_wrap>ul>li>a::before,
.profile_wrap .menu_col .menu_wrap>ul>li label::before {
	top: 50%;
	color: #792BA2;
	transform: translateY(-50%);
	font-size: 10px;
	font-weight: 500;
	left: 0;
	transition: all 0.3s ease;
}

.profile_wrap .menu_col .menu_wrap>ul>li>a.active,
.profile_wrap .menu_col .menu_wrap>ul>li label.active {
	color: #F247A5;
	transform: translateX(5px);
}

.profile_wrap .menu_col .menu_wrap>ul>li>a.active::before,
.profile_wrap .menu_col .menu_wrap>ul>li label.active::before {
	color: #F247A5;
	transform: translateY(-50%) rotate(10deg);
}

.profile_wrap .menu_col .menu_wrap>ul>li>a::after,
.profile_wrap .menu_col .menu_wrap>ul>li label::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #F247A5;
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.profile_wrap .menu_col .menu_wrap>ul>li>a.active::after,
.profile_wrap .menu_col .menu_wrap>ul>li label.active::after {
	transform: scaleX(1);
}

.profile_wrap .menu_col .btn {
	border-radius: 0 100% 0 0;
	transform: translateY(-100%);
	position: absolute;
	top: 0;
	left: 0;
}

.search_col {
	flex-basis: 60%;
	background-color: transparent;
	border-radius: 3px;
}

.search_col .search {
	padding: 5px 7px;
}

.search_col .search .checklist {
	flex-wrap: wrap;
}

.vip_background {
	position: relative;
	background-color: #FFD5F7;
	z-index: 1;
}

.vip_background figure {
	position: relative;
}

.vip_background figure::before {
	content: "VIP";
	background: url(../images/vip_badge.svg) center center;
	background-repeat: no-repeat;
	position: absolute;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	transform: translate(26%, 27%);
	color: white;
	font-size: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 2px;
	max-width: 18px;
	background-size: contain;
	letter-spacing: 1px;
	font-weight: bold;
}

.vip_background::before {
	content: "";
	background: url(../images/vip.svg) center center;
	background-size: cover;
	position: absolute;
	background-repeat: no-repeat;
	top: 0;
	left: 50%;
	transform: translateX(-35%);
	width: 100%;
	height: 100%;
	max-width: 56px;
	opacity: 0.6;
	z-index: -1;
}

.vip_badge::before {
	content: "VIP";
	background: url(../images/vip_badge.svg) center center;
	background-repeat: no-repeat;
	position: absolute;
	right: 0;
	top: 50%;
	width: 100%;
	height: 100%;
	transform: translate(-20%, -50%);
	color: white;
	font-size: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 3px;
	max-width: 28px;
	background-size: contain;
	letter-spacing: 1px;
	font-weight: bold;
}

@media (min-width: 360px) {
	.vip_badge::before {
		transform: translate(-45%, -50%);
		font-size: 9px;
		max-width: 30px;
		padding-bottom: 4px;
	}
}

.vip_user {
	color: #F247A5;
	font-weight: bold;
	position: relative;
	padding: 5px 0px 5px 25px;
	display: block;
	font-size: 12px;
}

.vip_user.man {
	color: #0197F9;
}

.vip_user::before {
	content: "VIP";
	background: url(../images/vip_badge.svg) center center;
	background-repeat: no-repeat;
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	height: 100%;
	transform: translate(0, -50%);
	color: white;
	font-size: 6px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 4px;
	max-width: 20px;
	background-size: contain;
	letter-spacing: 1px;
	font-weight: bold;
}

.vip_star {
	position: relative;
	padding-left: 4px;
}

.vip_star::before {
	content: "\e904";
	font-family: "CustomIcons";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(-9px, -50%);
}

.cards {
	max-height: calc(100vh - 91px);
	height: -webkit-fill-available;
	overflow-y: auto;
}

.card {
	padding: 10px 10px 0 10px;
}

.card .vip_background {
	overflow: hidden;
	border: 1px solid #D539CB;
	border-radius: 10px;
	border-color: #FFD700;
	box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
	filter: drop-shadow(0px 0px 1px #ffffff);
}



.card .vip_background::before {
	left: 100%;
	max-width: 300px;
	background-size: contain;
	transform: translateX(-90%);
}

.card .vip_user {
	font-size: 13px;
	padding: 8px 0 0 0;
}

@media (min-width: 450px) {
	.card .vip_user {
		font-size: 17px;
	}
}

.card .vip_user::before {
	display: none;
}

.card .vip_badge {
	position: relative;
}

.card .vip_badge::before {
	left: 0;
	top: 0;
	width: 33px;
	height: 33px;
	transform: translate(50%, 25%);
	font-size: 10px;
}

@media (min-width: 380px) {
	.card .vip_badge::before {
		font-size: 11px;
		padding-bottom: 5px;
		width: 43px;
		height: 43px;
	}
}

.feeds_page .lb-data {
	position: absolute;
	bottom: 0;
	padding: 10px 10px 15px;
	background: linear-gradient(0, rgba(12, 12, 12, 0.7019607843) 0, rgba(0, 0, 0, 0) 105%);
}

.feeds_page .lb-caption {
	color: #fff;
}

.feeds_page .lb-caption span {
	padding-top: 5px;
	color: #fff;
	display: block;
}

.feeds {
	display: flex;
	flex-direction: column;
}

.feeds .feed_profiles {
	max-width: 60%;
	flex-basis: 60%;
	padding: 10px;
	height: 100%;
	overflow-y: auto;
}

.feeds .profile_card {
	padding: 5px 5px 24px;
}

.feeds .menu_col {
	background: #C0CFFF;
	transition: background-color 0.3s ease;
}

.feeds .chat_wrapper {
	max-width: 60%;
	flex-basis: 60%;
}

.feeds .chat_wrapper .chat_wrap {
	max-width: 100%;
	flex-basis: 100%;
}

.feeds .chat_wrapper .chat_wrap .chat .message_box .profile_options {
	height: 15px;
}

.feeds .chat_wrapper .chat_wrap .chat .message_box .profile_options span {
	display: block;
}

.feeds .chat_wrapper .chat_wrap .chat .message_box .profile_options span::before {
	padding: 4px;
}

.hide {
	display: none;
}

.show {
	opacity: 1;
}

.profile_options {
	display: flex;
	justify-content: space-between;
}

.profile_options span.ci-empty-heart::before,
.profile_options span.ci-full-heart::before {
	font-weight: 500;
	font-size: 14px;
}

.profile_options span::before {
	padding: 4px;
	cursor: pointer;
}

.profile_options span.ci-save {
	font-size: 12px;
}

.second_results .wrap {
	padding: 10px;
}

.second_results .feed_profiles {
	max-width: 60%;
	flex-basis: 60%;
}

.second_results .search_result:not(.vip_background) {
	border-color: #D4DCFF;
}

.second_results .search_result:not(.vip_background) span {
	color: #F247A5;
	font-weight: bold;
	position: relative;
	padding: 10px 0px 10px;
	display: block;
	font-size: 12px;
}

.second_results .vip_background {
	overflow: hidden;
}

.second_results .vip_background::before {
	right: 0;
	left: unset;
	background-size: contain;
	max-width: 150px;
	transform: translateX(15%);
}

.profile_card {
	display: flex;
	flex-direction: column;
	background: #F247A5;
	border-radius: 10px;
	border: 1px solid #0ED6FF;
	background: #D4DCFF;
	padding: 5px;
	margin-bottom: 10px;
}

.profile_card .image_wrap a {
	width: 100%;
	display: block;
}

.profile_card .image_wrap a::before {
	display: none;
}

.profile_card .image_wrap a img {
	width: 100%;
	border: 3px solid #fff;
}

.profile_card .contact_item {
	background: unset;
	padding-left: unset;
	margin-bottom: 5px;
}

.profile_card .contact_item h2 {
	color: #F247A5;
	font-size: 11px;
}

.profile_card .contact_item figure {
	width: 35px;
	height: 35px;
}

.profile_card.vip_background {
	border: 1px solid #F247A5;
	overflow: hidden;
	background: #FFD5F7;
}

.profile_card.vip_background::before {
	max-width: 100px;
	max-height: 110px;
	background-size: contain;
	transform: translate(-33%, -26px) rotate(-33deg);
}

.friend_listing {
	padding: 6px;
	flex-basis: 60%;
}

.friend_listing .search_result {
	max-width: 50%;
	width: calc(50% - 4px);
	flex-basis: 50%;
	padding: 0;
	margin-right: 0px;
}

.friend_listing .search_result .profile_img,
.friend_listing .search_result .profile_info {
	max-width: 100%;
	flex-basis: 100%;
}

.friend_listing .search_result .profile_img .inner_wrap,
.friend_listing .search_result .profile_info .inner_wrap {
	padding: 3px;
}

.friend_listing .search_result .profile_img .inner_wrap p.username,
.friend_listing .search_result .profile_info .inner_wrap p.username {
	font-size: 10px;
	margin-bottom: 0;
}

.friend_listing .search_result .profile_img {
	position: relative;
}

.friend_listing .search_result .profile_img .vip_badge::before {
	top: 17px;
	left: 17px;
	max-width: 18px;
	font-size: 6px;
	padding-bottom: 3px;
}

.friend_listing .search_result .main_info {
	flex-direction: column;
	background: #D4DCFF;
	margin-bottom: 0;
	padding: 10px;
	border-radius: 8px;
}

@media (min-width: 600px) {
	.friend_listing .search_result .main_info {
		padding: 11px;
	}
}

@media (min-width: 800px) {
	.friend_listing .search_result .main_info {
		padding: 11px;
	}
}

.friend_listing .search_result .main_info.vip_background {
	background-color: #FFD5F7;
	overflow: hidden;
}

.friend_listing .search_result .main_info.vip_background::before {
	top: unset;
	bottom: -10px;
	max-width: 60px;
	max-height: 60px;
}

.friend_listing .search_result:nth-child(even) {
	margin-left: 4px;
}

.friend_listing .search_result:nth-child(odd) {
	margin-right: 4px;
}

main>.friend_listing>.row {
	height: auto;
}

.friend_listing .search_result .inner_wrap {
	backdrop-filter: unset !important;
	box-shadow: unset !important;
}

.friend_listing .search_result .profile_info {
	padding: 0;
}

.stats_wrap h2 {
	font-size: 11px;
	margin-bottom: 4px;
	color: #792BA2;
	padding: 4px 0 0 6px;
}

.stats_wrap ul li {
	display: flex;
	margin-bottom: 6px;
	padding-left: 10px;
}

.stats_wrap ul li span {
	font-weight: 500;
}

.stats_wrap ul li .numbers {
	border-left: 1px solid #ab8dd5;
	padding-left: 4px;
	flex-basis: 35%;
	max-width: 35%;
	text-align: left;
}

.stats_wrap ul li .stats {
	flex-basis: 65%;
	max-width: 65%;
}

.profiles_check {
	flex-basis: 60%;
	max-width: 60%;
	padding: 5px 5px 5px 7px;
	height: calc(100vh - 100px);
	overflow-y: auto;
}

.profiles_check .container_wrap {
	background: #D4DCFF;
	border-radius: 9px;
	margin-top: 40px;
}

.profiles_check .container_wrap .vip_background:first-child {
	border-radius: 9px 9px 0 0;
}

.profiles_check .check_wrap {
	background: linear-gradient(135deg, #C0CFFF, #E6EBFF);
	width: 100%;
	padding: 10px;
	margin-top: 5px;
	margin-bottom: 10px;
	border-radius: 8px;
}

.profiles_check .check_wrap:not(:last-child) {
	box-shadow: 0 -17px 14px -18px rgba(168, 178, 222, 0.7215686275) inset;
}

.profiles_check .check_wrap.vip_background::before {
	max-width: 80px;
	left: 30%;
}

.profiles_check .check_wrap .contact_item {
	background: transparent;
	padding: 0;
	overflow: hidden;
	min-height: 55px;
	margin-bottom: 10px;
}

.profiles_check .check_wrap .contact_item .top_gallery_wrap {
	display: flex;
	flex-direction: column;
	height: auto;
	padding: 6px;
	width: 100%;
	max-width: 86px;
}

@media (min-width: 360px) {
	.profiles_check .check_wrap .contact_item .top_gallery_wrap {
		max-width: 110px;
	}
}

@media (min-width: 450px) {
	.profiles_check .check_wrap .contact_item .top_gallery_wrap {
		max-width: 153px;
	}
}

@media (min-width: 600px) {
	.profiles_check .check_wrap .contact_item .top_gallery_wrap {
		max-width: 210px;
	}
}

@media (min-width: 800px) {
	.profiles_check .check_wrap .contact_item .top_gallery_wrap {
		max-width: 317px;
	}
}

.profiles_check .check_wrap .contact_item .top_gallery_wrap a {
	display: block;
	max-width: 60px;
	padding-right: 3px;
}

.profiles_check .check_wrap .contact_item .top_gallery_wrap a img {
	border: 2px solid white;
	object-fit: contain;
	border-radius: 5px;
}

.profiles_check .check_wrap .contact_item .top_gallery_wrap .slick-list .slick-track .slick-slide {
	max-width: 62px;
	width: 100% !important;
}

.profiles_check .check_wrap .date_wrap {
	margin-top: -8px;
}

.profiles_check .check_wrap .date_wrap span {
	color: #8B99D5;
}

header .active_row {
	display: flex;
	overflow: auto;
	scrollbar-width: none;
}

header .active_row .active_user {
	padding: 0 2px;
	position: relative;
}

header .active_row .active_user .active {
	position: absolute;
	width: 11px;
	height: 11px;
	background: #32b732;
	border-radius: 100%;
	right: 0;
	top: -1px;
	border: 2px solid #FFD5F7;
}

header .count_notification {
	position: absolute;
	width: 12px;
	height: 12px;
	background: #d71b37;
	border-radius: 100%;
	right: 9px;
	top: 2px;
	border: 2px solid #ad3ec2;
}

header .notifications span:not(.count_notification) {
	width: 30px;
	margin: 0 5px;
	padding: 15px 0 8px;
}

.new_header .col .contact_item {
	background-color: #AD3DC2;
	border-radius: 0;
	padding: 0;
	border: 0;
}

.new_header .col .contact_item .active_row {
	padding: 12px 8px 4px;
}

.new_header .col .contact_item .active_row .active_user {
	padding: 0 4px;
}

.count_message {
	position: absolute;
	top: 22px;
	left: 22px;
	background: linear-gradient(to bottom right, #FF4081, #F50057);
	color: #fff;
	font-size: 8px;
	font-weight: bold;
	min-width: 14px;
	height: 12px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 2px;
	transition: all 0.3s ease;
	animation: pulseRed 2s infinite;
}

.count_message::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: inherit;
	box-shadow: 0 2px 4px rgba(255, 64, 129, 0.6), 0 0 10px rgba(255, 64, 129, 0.4);
	z-index: -1;
}

.count_message:hover {
	box-shadow: 0 4px 8px rgba(255, 64, 129, 0.8), 0 0 20px rgba(255, 64, 129, 0.6);
}

.contact_item .count_message {
	position: absolute;
	left: 40px;
	top: 43px;
}

.message_box .count_message {
	position: relative;
	font-size: 0;
	top: unset;
	left: -6px;
	min-width: unset;
	padding: 0;
	height: 5px;
	width: 5px;
	left: -4px;
	top: 1px;
	animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 1px rgba(255, 65, 54, 0.7);
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 6px rgba(255, 65, 54, 0);
	}

	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 1px rgba(255, 65, 54, 0);
	}
}

#activity-link .count_message {
	position: absolute;
	top: 22px;
	left: 22px;
	background: linear-gradient(to bottom right, #00B0FF, #0091EA);
	color: #fff;
	font-size: 9px;
	font-weight: bold;
	min-width: 15px;
	height: 13px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 2px;
	transition: all 0.3s ease;
	animation: pulseBlue 2s infinite;
	z-index: 1;
}

#activity-link .count_message::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: inherit;
	/* box-shadow: 0 2px 4px rgba(0, 176, 255, 0.6), 0 0 10px rgba(0, 176, 255, 0.4); */
	z-index: -1;
}

#activity-link .count_message:hover::after {
	/* box-shadow: 0 4px 8px rgba(0, 176, 255, 0.8), 0 0 20px rgba(0, 176, 255, 0.6);*/
}

@keyframes pulseBlue {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 1px rgba(0, 176, 255, 0.7);
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 6px rgba(0, 176, 255, 0);
	}

	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 1px rgba(0, 176, 255, 0);
	}
}


.act-notification-card {
	background: linear-gradient(to bottom right, #D5DCFF, #8ec5fcd3);
	border-radius: 15px;
	padding: 9px;
	margin-bottom: 15px;
	position: relative;
	font-size: 11px;
	overflow: hidden;
}

.act-card-content {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	/* Подравняване в началото */
	position: relative;
	flex-direction: column;
}

.act-user-info {
	display: flex;
	align-items: flex-start;
	/* Променяме на flex-start */
	width: 100%;
	margin-top: 0;
	/* Премахваме горното отстояние */
	padding-top: 0;
	/* Премахваме горния padding */
	min-height: 45px;
}

.act-user-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	margin-right: 10px;
	object-fit: cover;
	margin-top: 0px;
	/* Премахнато ако не е нужно */
}

.act-user-details {
	width: 70%;
	display: flex;
	flex-direction: column;
	padding-top: 8px;
	/* Добавен padding отгоре */
}

.act-username {
	margin: 0;
	font-size: 14px;
	font-weight: bold;
	color: #333;
}

.act-action-text {
	margin: 2px 0 0;
	font-size: 10px;
	color: #555;
}

.act-viewed-photo {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 74px;
	width: 74px;
	height: 100%;
	border-radius: 10px;
	overflow: hidden;
	margin-left: 10px;
}

.act-photo-thumbnail {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.act-timestamp {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 7px;
	font-size: 12px;
	color: #000000;
}

.act-relative-time {
	flex-grow: 1;
}

.act-time-date {
	text-align: right;
}

.act-time,
.act-date {
	margin-left: 3px;
}

.act-unread {
	position: relative;
}

.act-unread::after {
	content: '';
	position: absolute;
	top: 10px;
	right: 10px;
	width: 5px;
	height: 5px;
	background: linear-gradient(to bottom right, #FF4081, #F50057);
	border-radius: 50%;
	animation:
		pulseRed 2s infinite;
	filter: drop-shadow(0px 2px 4px rgba(255, 64, 129, 0.6));

	box-shadow: 0 2px 4px rgba(255, 64, 129, 0.6), 0 0 10px rgba(255, 64, 129, 0.4);
}

@keyframes glowRed {
	0% {
		box-shadow: 0 0 2px 2px rgba(255, 64, 129, 0.6),
			0 0 4px 4px rgba(255, 64, 129, 0.4),
			0 0 6px 6px rgba(255, 64, 129, 0.2);
	}

	50% {
		box-shadow: 0 0 4px 4px rgba(255, 64, 129, 0.8),
			0 0 8px 8px rgba(255, 64, 129, 0.6),
			0 0 12px 12px rgba(255, 64, 129, 0.4);
	}

	100% {
		box-shadow: 0 0 2px 2px rgba(255, 64, 129, 0.6),
			0 0 4px 4px rgba(255, 64, 129, 0.4),
			0 0 6px 6px rgba(255, 64, 129, 0.2);
	}
}

.popup_cont.popup_message {
	position: fixed;
	top: 9%;
	right: 1%;
	width: 300px;
	max-width: 60%;
	background: #D4DCFF;
	color: #333;
	padding: 10px;
	border-radius: 15px;
	z-index: 9999;
	font-family: Arial, sans-serif;
}

.popup_cont .user-info {
	display: flex;
	align-items: flex-start;
}

.popup_cont .user-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #fff;
	margin-right: 10px;
}

.popup_cont .user-details {
	flex: 1;
	text-align: left;
}

.popup_cont .username {
	padding-top: 6px;
	font-size: 0.9em;
	font-weight: bold;
	color: #F247A5;
	margin-bottom: 2px;
}

.popup_cont .message-text {
	font-size: 0.8em;
	color: #666;
}

.custom-select {
	border: 1px solid #ccc;
	color: #792BA2;
	border-radius: 4px;
	overflow: hidden;
	transition: box-shadow 0.3s ease;
}

.custom-select:hover {
	box-shadow: 0 0 10px rgba(121, 43, 162, 0.2);
}

.custom-select div {
	font-size: 12px;
	color: #792BA2;
	padding: 10px;
	cursor: pointer;
	border-bottom: 1px solid #ccc;
	transition: all 0.3s ease;
}

.custom-select div:hover,
.custom-select div:focus {
	background-color: rgba(191, 202, 255, 0.4);
	color: #fa4299;
	font-weight: bold;
	transform: translateX(5px);
}

.custom-select div:last-child {
	border-bottom: none;
}


.inapp-notification {
	display: flex;
	align-items: center;
}

.inapp-notification_user-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	margin-right: 10px;
	object-fit: cover;
}

.inapp-notification_content {
	flex-grow: 1;
	text-align: left;
	margin-top: 2px;
	margin-left: 2px;
}

.inapp-notification_username {
	display: block;
	font-size: 14px;
	font-weight: bold;
	color: #1877f2;
	margin-bottom: 2px;
}

.inapp-notification_message {
	font-size: 13px;
	color: #050505;
	margin: 0;
}

.create-channel-popup h3 {
	margin-bottom: 20px;
	color: #333;
}

.create-channel-popup input {
	width: 100%;
	padding: 10px;
	margin-bottom: 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
}

.notification {
	position: fixed;
	top: 36px;
	left: 50%;
	transform: translateX(-50%);
	padding: 12px 20px;
	border-radius: 8px;
	color: white;
	z-index: 1000;
	max-width: 86%;
	min-width: 86%;
	text-align: center;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	animation: slideIn 0.3s ease-out;
}

.notification.success {
	background-color: #4CAF50;
}

.notification.error {
	background-color: #f44336;
}

@keyframes slideIn {
	from {
		transform: translate(50%, 0);
		opacity: 0;
	}

	to {
		transform: translateX(-50%);
		opacity: 1;
	}
}

.support-page {
	padding: 20px;
	max-width: 800px;
	margin: 0 auto;
}

.support-intro {
	text-align: center;
	margin: 30px 0;
	line-height: 1.6;
	color: #333;
}

.faq-section {
	margin: 40px 0;
}

.faq-section h3 {
	text-align: center;
	margin-bottom: 30px;
	color: #333;
	font-size: 1.5em;
}

.faq-items {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.faq-item {
	background: #fff;
	border-radius: 8px;
	padding: 20px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
	color: #333;
	margin-bottom: 10px;
	font-size: 1.1em;
	font-weight: 600;
}

.faq-item p {
	color: #666;
	line-height: 1.5;
	margin: 0;
}

.contact-info {
	text-align: center;
	margin-top: 40px;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 8px;
}

.contact-info h3 {
	color: #333;
	margin-bottom: 15px;
}

.contact-info p {
	margin: 10px 0;
	color: #666;
}

.contact-info a {
	color: #007bff;
	text-decoration: none;
}

.contact-info a:hover {
	text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.support-page {
		padding: 15px;
	}

	.faq-item {
		padding: 15px;
	}
}

.accept-btn {
	margin: 9px;
	padding: 2px 12px;
	font-size: 11px;
	cursor: pointer;
	text-transform: uppercase;
	font-weight: bold;
	line-height: 1.5;
}

.accept-btn:hover {
	background-color: #e1306c;
}


.login-tip {
	font-size: 10px;
	color: rgba(39, 174, 96, 0.65);
	/* Леко увеличена непрозрачност */
	margin: 4px auto 16px auto;
	text-align: center;
	max-width: 280px;
	line-height: 1.2;
	padding: 4px 10px;
	font-weight: 400;
	/* Добавяме много фин text-shadow за контраст */
	text-shadow: 0 1px 1px rgba(255, 255, 255, 0.1);
	/* Зелена подложка */
	background: linear-gradient(135deg,
			rgba(46, 204, 113, 0.1) 0%,
			rgba(46, 204, 113, 0.05) 100%);
	border-radius: 4px;
	backdrop-filter: blur(5px);
	box-shadow:
		0 1px 3px rgba(0, 0, 0, 0.05),
		inset 0 1px 1px rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(46, 204, 113, 0.1);
}

.login-option-group {
	margin-bottom: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* Бутони */
.fb-login-button,
.sign-in-with-apple-button {
	margin-bottom: 4px;
	/* Малко отстояние преди текста */
}

.login-tip.blue {
	color: rgba(33, 150, 243, 0.65);
	background: linear-gradient(135deg,
			rgba(33, 150, 243, 0.1) 0%,
			rgba(33, 150, 243, 0.05) 100%);
	border: 1px solid rgba(33, 150, 243, 0.1);
}

textarea#description {
	height: 200px;
	resize: vertical;
}

.loading-login {
	position: relative;
	pointer-events: none;
	opacity: 0.7;
}

.loading-login::after {
	content: "";
	position: absolute;
	width: 20px;
	height: 20px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: transparent;
	border: 2px solid #ffffff;
	border-top-color: transparent;
	border-radius: 50%;
	animation: login-spinner 0.8s linear infinite;
}

/* Премахваме всички стилове, които скриват текста */
.loading-login .fb-button-content,
.loading-login .apple-button-content,
.fb-login-button.loading-login .fb-button-content,
.sign-in-with-apple-button.loading-login .apple-button-content {
	opacity: 1 !important;
	/* Форсираме пълна видимост */
}

@keyframes login-spinner {
	to {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

.chat-image {
	transition: opacity 0.2s ease-in-out;
}

.hidden {
	display: none !important;
}

.loading {
	background: linear-gradient(135deg, rgba(178, 51, 123, 0.7803921569) 0%, rgba(176, 20, 218, 0.9098039216) 100%);
	pointer-events: none;
}

.loading:hover {
	background: linear-gradient(135deg, rgba(178, 51, 123, 0.7803921569) 0%, rgba(176, 20, 218, 0.9098039216) 100%);
}

.loading::before {
	content: "\e924";
	font-family: "CustomIcons";
	position: absolute;
	top: 50%;
	left: 60%;
	font-size: 12px;
	color: #fff;
	animation: rotate 1s infinite linear;
}

/* Container for the loading indicator */
#loading-indicator {
	margin: 24px;
	display: flex;
	/* Use flexbox to align items horizontally */
}

/* Styling for the animation */
#loading-indicator::before {
	content: "\e924";
	/* Custom icon */
	font-family: "CustomIcons";
	/* Adjust to match your icon font */
	font-size: 24px;
	/* Adjust size as needed */
	color: #ee3fa2;
	animation: rotate 1s infinite linear;
	/* Apply animation */
}

/* Добавяме нови стилове за inbox layout */

.inbox-container {
	display: flex;
	width: 100%;
	height: 100vh;
	background: var(--bg-primary);
}

.inbox-sidebar {
	width: 40%;
	border-right: 1px solid rgba(255, 255, 255, 0.05);
	background: var(--bg-secondary);
	display: flex;
	flex-direction: column;
}

.inbox-main {
	width: 60%;
	display: flex;
	flex-direction: column;
}

.inbox-header {
	padding: 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	background: var(--bg-secondary);
}

.inbox-messages {
	flex: 1;
	overflow-y: auto;
	padding: 16px;
}

.inbox-list {
	flex: 1;
	overflow-y: auto;
	padding: 8px;
}

.inbox-item {
	display: flex;
	align-items: center;
	padding: 12px;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s ease;
	margin-bottom: 4px;
	background: var(--bg-tertiary);
}

.inbox-item:hover {
	background: rgba(255, 255, 255, 0.05);
	transform: translateX(2px);
}

.inbox-item.active {
	background: var(--accent-blue);
}

.inbox-item-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 12px;
}

.inbox-item-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.inbox-item-content {
	flex: 1;
}

.inbox-item-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 4px;
}

.inbox-item-name {
	font-size: 14px;
	font-weight: 500;
	color: var(--text-primary);
}

.inbox-item-time {
	font-size: 12px;
	color: var(--text-secondary);
}

.inbox-item-preview {
	font-size: 13px;
	color: var(--text-secondary);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.inbox-item.unread {
	background: rgba(59, 130, 246, 0.1);
}

.inbox-item.unread .inbox-item-name {
	font-weight: 600;
	color: var(--accent-blue);
}

/* Стилове за мобилни устройства */
@media (max-width: 768px) {
	.inbox-container {
		flex-direction: column;
	}

	.inbox-sidebar {
		width: 100%;
		height: 40vh;
	}

	.inbox-main {
		width: 100%;
		height: 60vh;
	}
}

/* Подобряваме скролбара */
.inbox-messages::-webkit-scrollbar,
.inbox-list::-webkit-scrollbar {
	width: 6px;
}

.inbox-messages::-webkit-scrollbar-track,
.inbox-list::-webkit-scrollbar-track {
	background: transparent;
}

.inbox-messages::-webkit-scrollbar-thumb,
.inbox-list::-webkit-scrollbar-thumb {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 3px;
}

.inbox-messages::-webkit-scrollbar-thumb:hover,
.inbox-list::-webkit-scrollbar-thumb:hover {
	background: rgba(255, 255, 255, 0.2);
}

/* Добавяме към съществуващите стилове */

.chat-user-info {
	display: flex;
	align-items: center;
	gap: 12px;
}

.chat-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
}

.chat-user-details {
	display: flex;
	flex-direction: column;
}

.chat-user-details h3 {
	font-size: 16px;
	margin: 0;
	color: var(--text-primary);
}

.chat-user-details .status {
	font-size: 12px;
	color: var(--text-secondary);
}

.message-container {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

/* Обновяваме стиловете за input-area в контекста на inbox */
.inbox-main .input-area {
	padding: 16px;
	background: var(--bg-secondary);
	border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.inbox-main .input-wrapper {
	display: flex;
	align-items: center;
	gap: 8px;
	background: var(--bg-tertiary);
	padding: 8px;
	border-radius: 8px;
}

.inbox-main textarea {
	flex: 1;
	background: transparent;
	border: none;
	color: var(--text-primary);
	resize: none;
	min-height: 24px;
	padding: 4px 8px;
}

.inbox-main textarea:focus {
	outline: none;
}

.inbox-main .icon-button,
.inbox-main .send-button {
	background: transparent;
	border: none;
	color: var(--text-secondary);
	padding: 8px;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.inbox-main .icon-button:hover,
.inbox-main .send-button:hover {
	background: rgba(255, 255, 255, 0.1);
	color: var(--text-primary);
}

.sidebar-footer .user-avatar-small {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
}

.sidebar-footer .user-avatar-small img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}