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

:root {
	--card-text-shadow:
		0 1px 2px rgba(0, 0, 0, .85),
		0 2px 6px rgba(0, 0, 0, .70),
		0 0 10px rgba(0, 0, 0, .55);
	--status-text-shadow:
		0 1px 2px rgba(0, 0, 0, .95),
		0 3px 8px rgba(0, 0, 0, .75),
		0 -1px 2px rgba(255, 255, 255, .55);
	--media-border: 10px solid grey;
	--media-border-small: 8px solid grey;
	--avatar-shadow: 0 3px 4px rgba(0, 0, 0, .37);
	--panel-shadow: 0 4px 7px rgba(0, 0, 0, .35);
	--chat-max-width: 520px;
	--chat-media-size: 150px;
	--chat-video-toggle-size: 34px;
	--chat-remove-size: 30px;
	--chat-remove-offset: 6px;
}

html,
body {
	padding: 0;
	margin: 0;
	height: 100%;
}

html {
	font-size: 100%;
}

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

body {
	font-family: 'Lato', Calibri, Arial, sans-serif;
	color: #f2ede3;
	background: #333;
	background-image: url("../images/f8.jpg");
	font-size: 0.9em;
	font-weight: 300;
	-webkit-tap-highlight-color: transparent;
	tap-highlight-color: transparent;
	-webkit-user-select: none;
	user-select: none;
}

a {
	color: #f0f0f0;
	text-decoration: none;
	font-weight: 700;
	letter-spacing: 2px;
	padding: 0 5px;
	text-transform: uppercase;
	font-size: 80%;
}

.container {
	position: relative;
	height: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0;
	border: 3px double grey;
	opacity: 0;
	animation: fadeIn 0.6s ease-out forwards;
}

.bl-main {
	position: absolute;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.bl-main > section {
	position: absolute;
	width: 50%;
	height: 50%;
	transition: all 0.5s ease-in-out;
}

.bl-main > section:first-child,
.bl-main > section:nth-child(2),
.bl-main > section:nth-child(3),
.bl-main > section:nth-child(4) {
	border-top: 7px solid rgba(0, 0, 0, 0.2);
}

/* ABOUT / WORKS collapsed tiles */

.bl-main > section:first-child,
.bl-main > section:nth-child(2) {
	text-align: center;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(to bottom, #000 95%, rgba(0, 0, 0, 0));
	mask-image: linear-gradient(to bottom, #000 95%, transparent);
}

.bl-main > section:first-child {
	padding: 1rem 1rem 0;
	color: #fff;
	text-shadow: var(--card-text-shadow);
}

.bl-main > section:nth-child(2) {
	top: 0;
	left: 50%;
}

.about-avatar {
	display: inline-block;
	margin-left: auto;
	margin-right: auto;
}

.about-avatar img {
	width: 160px;
	height: 160px;
	object-fit: cover;
	display: block;
	border: var(--media-border-small);
	box-shadow: var(--avatar-shadow);
	margin-top: -3px;
}

.about-avatar-inner {
	background: url('../images/back.png') center center/cover no-repeat;
	width: 180px;
	height: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	box-shadow: var(--panel-shadow);
}

.about-avatar-inner img {
	width: 82%;
	height: 82%;
	object-fit: cover;
	display: block;
	border-radius: 5px;
}

.status.online {
	color: #22c55e;
}

.status.offline {
	color: #ef4444;
}

.status.online,
.status.offline {
	font-weight: 700;
	font-size: 1.1rem;
	text-shadow: var(--status-text-shadow);
}

.profile-header {
	margin-top: 5%;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	color: #fff;
	max-width: 1000px;
	text-shadow: var(--card-text-shadow);
}

.bl-main > section:first-child .profile-header {
	flex: 0 0 100%;
	width: 100%;
}

/* SOCIAL & CONTACT collapsed tiles */

.bl-main > section:nth-child(3),
.bl-main > section:nth-child(4) {
	text-align: center;
	top: 50%;
}

.bl-main > section:nth-child(3) {
	left: 0;
}

.bl-main > section:nth-child(4) {
	left: 50%;
	background: url('../images/Chb7.gif') center center/cover no-repeat;
}

/* Generic tile box */

.bl-box {
	position: relative;
	width: 100%;
	height: 100%;
	cursor: pointer;
	opacity: 1;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
	transition: opacity 0.2s linear 0.5s;
}

.bl-box h2 {
	text-align: center;
	margin: 0;
	padding: 20px;
	width: 100%;
	font-size: 1.8em;
	letter-spacing: 1px;
	font-weight: 700;
	text-transform: uppercase;
	white-space: nowrap;
	overflow: hidden;
	transition: all 0.2s ease-in-out;
}

/* Icons */

.bl-icon {
	font-family: 'icomoon';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	cursor: pointer;
	-webkit-font-smoothing: antialiased;
}

.bl-icon:before {
	display: block;
	font-size: 2.5em;
	margin-bottom: 10px;
}

.bl-icon-works:before {
	content: "\e001";
}

.bl-icon-blog:before {
	content: "\e002";
}

.bl-icon-contact:before {
	content: "\e003";
}

.bl-icon-close:before {
	content: "\e005";
}

.bl-main > section .bl-icon-close,
.bl-main > .collapsed-admin-close {
	position: absolute;
	top: 7px;
	right: 10px;
	cursor: pointer;
	z-index: 100;
	opacity: 0;
	pointer-events: none;
	text-shadow: var(--status-text-shadow);
}

.bl-main > .collapsed-admin-close {
	opacity: 1;
	top: 13px;
	pointer-events: auto;
	padding: 0;
	color: inherit;
	font-size: inherit;
	letter-spacing: normal;
	text-transform: none;
}

.bl-main.bl-expand-item > .collapsed-admin-close {
	opacity: 0;
	pointer-events: none;
}

div.bl-panel-items .bl-icon-close:before {
	margin-bottom: 0;
}

/* Content areas */

.bl-content {
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 10px;
	left: 30px;
	right: 30px;
	bottom: 0;
	padding: 0 20px;
	overflow-x: hidden;
	overflow-y: auto;
	transition: opacity 0.1s linear 0s;
}

.bl-content p {
	margin: 0 auto;
	padding-bottom: 15px;
	font-size: 1.7em;
	line-height: 1.2;
}

.bl-content .chat-message-prompt {
	margin-top: 40px;
	padding-top: 13px;
	color: white;
	text-shadow:
		0 0 4px rgba(255, 245, 157, 0.95),
		0 0 8px rgba(255, 245, 157, 0.65);
}

.bl-content .profile-header p {
	line-height: 1.05;
}

.bl-content h2 {
	font-size: 3em;
	font-weight: 300;
	margin: 0 0 10px;
}

.bl-content > ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.bl-content > ul li {
	display: inline-block;
	width: 20%;
	margin: 1%;
}

#bl-work-items {
	font-size: 0;
}

#bl-work-items li {
	width: 27%;
	vertical-align: top;
}

.bl-content > ul li a {
	display: block;
	padding: 0;
	border: var(--media-border);
}

.bl-content > ul li a img {
	display: block;
	width: 100%;
	height: auto;
	max-width: none;
}

/* Panel Items */

div.bl-panel-items,
div.bl-panel-items > div {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
}

div.bl-panel-items {
	top: 100%;
	z-index: 9999;
}

div.bl-panel-items > div {
	background: #3ba5db;
	z-index: 0;
	opacity: 0;
	transform: translateY(0);
	transition: transform 0.5s ease-in-out, opacity 0s linear 0.5s;
}

div.bl-panel-items > div > div {
	position: static;
	width: 70%;
	max-height: 100%;
	overflow-y: auto;
	text-align: center;
	box-shadow: var(--panel-shadow);
}

div.bl-panel-items > div > div img {
	display: block;
	width: 100%;
	height: auto;
	float: none;
	border: var(--media-border);
}

div.bl-panel-items nav {
	position: absolute;
	top: 7px;
	right: 10px;
	left: auto;
	width: auto;
	margin: 0;
	z-index: 9999;
	opacity: 1;
	transition: none;
}

div.bl-panel-items > div.bl-show-work {
	z-index: 1000;
	opacity: 1;
	transform: translateY(-100%);
	transition: transform 0.5s ease-in-out;
}

div.bl-panel-items > div.bl-hide-current-work {
	opacity: 0;
	transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
	transform: translateY(-100%) scale(0.5);
	z-index: 0;
}

/* Section expand / transitions */

.bl-main > section.bl-expand {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.bl-main > section.bl-expand-top {
	z-index: 100;
}

.bl-main > section:nth-child(4).bl-expand {
	--nav-bg: rgba(255, 251, 200, 0.30);
	background-color: var(--nav-bg);
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	z-index: 999;
	box-sizing: border-box;
}

/* Public profile first-message composer: avoid desktop cursor-triggered backdrop repaint */
body.is-not-owner #contact.bl-expand {
	-webkit-backdrop-filter: none !important;
	backdrop-filter: none !important;
	background-color: rgba(255, 251, 200, 0.30);
	background-image: none !important;
	isolation: isolate;
	contain: layout paint;
	transform: translateZ(0);
	backface-visibility: hidden;
}

body.is-owner .bl-main > section:nth-child(4).bl-expand {
	background-image: url("../images/nnm.gif");
}

body.is-not-owner .bl-main > section:nth-child(4).bl-expand {
	background-image: none;
}

.bl-main.bl-expand-item > section:not(.bl-expand),
.bl-main.bl-expand-item > section.bl-scale-down {
	transform: scale(0.5);
	opacity: 0;
}

section.bl-expand .bl-box {
	opacity: 0;
	transition: opacity 0s linear;
}

.no-touch section:not(.bl-expand) .bl-box:hover h2 {
	transform: translateY(-15px);
}

.bl-icon-close {
	transition: opacity 0.1s linear 0s;
}

section.bl-expand .bl-content,
section.bl-expand .bl-icon-close {
	pointer-events: auto;
	opacity: 1;
	transition: opacity 0.3s linear 0.5s;
}

.messages {
	position: fixed;
	top: 3px;
	left: 0;
	right: 0;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 8px 12px;
	pointer-events: none;
	margin: 12px 0;
}

.messages .msg {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	opacity: 0;
	pointer-events: none;
	z-index: 0;
}

.messages .msg:last-child {
	position: relative;
	opacity: 1;
	pointer-events: auto;
	z-index: 10;
	animation: 0.6s ease-out pulseMsg;
}

@keyframes pulseMsg {
	0% { transform: scale(0.9); opacity: 0; }
	50% { transform: scale(1.03); opacity: 1; }
	100% { transform: scale(1); }
}

.msg {
	padding: 8px 10px;
	border: 3px solid blue;
	border-radius: 13px;
	margin-bottom: 6px;
	animation: 0.3s ease-out fadeIn;
	text-transform: uppercase;
}

.msg-success {
	background: #dcfce7;
	color: #166534;
	border-color: green;
}

.msg-error {
	background: #fee2e2;
	color: #991b1b;
	border-color: red;
}

/* Responsive */

@media screen and (max-width: 46.5em) {
	.bl-content,
	.bl-box {
		font-size: 75%;
	}

	.bl-expand .bl-box {
		height: 130px;
	}
}

@media screen and (max-width: 46.5em) and (orientation: portrait) {
	.works-content {
		left: 12px;
		right: 12px;
		padding: 0 6px;
	}

	#bl-work-items {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 12px;
	}

	#bl-work-items li {
		width: calc(50% - 6px);
		margin: 0;
	}

	#bl-work-items li a,
	div.bl-panel-items > div > div img {
		border-width: 8px;
	}

	div.bl-panel-items > div > div {
		width: min(92vw, 520px);
		max-height: calc(100vh - 20px);
		margin-top: 10px;
		margin-bottom: 10px;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* SOCIAL */

.bl-social-box.has-video {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.social-links {
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
}

.social-links li {
	flex: 0 0 7rem;
}

.social-links li a {
	display: block;
	padding: 0.5rem 0.5rem;
	text-align: center;
	border: 2px solid grey;
	background: rgba(0, 0, 0, 0.25);
	box-sizing: border-box;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.social-videos .video-embed iframe {
	display: block;
	width: 80%;
	border: var(--media-border);
	box-sizing: border-box;
	margin: 0 auto 1%;
}

/* Block / Report */

.profile-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.5rem;
	width: 80%;
	margin: 0 auto;
}

.profile-action-form {
	margin: 0;
}

.profile-action-form .btn-profile-action,
.profile-actions > .btn-profile-action {
	width: 100%;
}

.btn-profile-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.3rem 0.75rem;
	border: 2px solid grey;
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.88);
	color: #fff;
	font-size: 0.8rem;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.55);
}

.btn-profile-action:active {
	transform: translateY(1px) scale(0.98);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.report-panel {
	margin-top: 1%;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	transition: transform 0.25s ease;
}

.report-panel-inner {
	background: rgba(0, 0, 0, 0.35);
	border: 2px solid rgba(0, 0, 0, 0.3);
	padding: 1rem;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.45);
}

.report-panel textarea {
	width: 100%;
	min-height: 140px;
	padding: 0.6rem 0.75rem;
	border-radius: 6px;
	border: 1px solid rgba(0, 0, 0, 0.45);
	font-family: inherit;
	font-size: 16px;
	line-height: 1.35;
	background: rgba(10, 10, 10, 0.55);
	color: #f2ede3;
	resize: vertical;
	box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

.report-panel textarea::placeholder,
input::placeholder,
textarea::placeholder {
	font-size: 16px;
}

.report-panel textarea::placeholder {
	color: #ebebeb;
}

input,
textarea,
select {
	font-family: inherit;
	font-size: 16px;
	line-height: 1.35;
}

.report-actions {
	margin-top: 2%;
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
}

.bl-content.report-open > *:not(.profile-actions):not(.report-panel) {
	display: none;
}

.bl-content.report-open .profile-actions,
.bl-content.report-open .report-panel {
	transform: none;
}

.report-message {
	margin-top: 0.75rem;
	padding: 0.4rem 0.6rem;
	border-radius: 6px;
	font-size: 0.8rem;
	line-height: 1.4;
}

.report-message.report-success {
	background: rgba(34, 197, 94, 0.15);
	border: 1px solid rgba(34, 197, 94, 0.7);
	color: #d4d4d4;
}

.report-message.report-error {
	background: rgba(239, 68, 68, 0.15);
	border: 1px solid rgba(239, 68, 68, 0.7);
	color: #fecaca;
}

/* FIRST MESSAGE CHAT COMPOSER */

.chat-messages-wrapper,
.chat-send-form {
	text-align: center;
}

.chat-send-form {
	margin-top: 8px;
}

.chat-separator {
	margin: 10px auto;
	max-width: var(--chat-max-width);
	width: 100%;
	border: 0;
	border-top: 2px solid #ebad5c;
}

.chat-separator-compose {
	margin: 0 auto 13px;
}

.chat-real-textarea {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
	font-size: 16px;
}

.chat-visual-composer {
	position: relative;
	width: 100%;
	max-width: var(--chat-max-width);
	min-height: 0;
	display: block;
	margin: 0 auto;
	padding: 7px 14px 24px;
	border-radius: 15px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: #000000;
	text-align: left;
	font-size: 16px;
	line-height: 1.2;
	color: #fff;
	cursor: text;
	box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.06);
	-webkit-user-select: text;
	user-select: text;
}

.chat-visual-composer.has-media {
	display: grid;
	grid-template-columns: var(--chat-media-size) minmax(0, 1fr);
	grid-template-areas: "media text";
	column-gap: 12px;
	align-items: start;
}

.chat-visual-composer-text {
	position: relative;
	display: block;
	min-height: 1.2em;
	width: 100%;
	min-width: 0;
	height: auto;
	padding-right: 68px;
	outline: none;
	white-space: pre-wrap;
	word-break: break-word;
	overflow: visible;
	font: inherit;
	color: inherit;
	-webkit-user-select: text;
	user-select: text;
}

.chat-visual-composer-text.is-empty::before {
	content: attr(data-placeholder);
	display: block;
	color: rgba(255, 255, 255, 0.72);
	pointer-events: none;
}

.chat-visual-composer-media {
	display: none;
	width: 100%;
}

.chat-visual-composer.has-media .chat-visual-composer-media {
	display: block;
	grid-area: media;
	width: var(--chat-media-size);
	margin-top: 0;
}

.chat-visual-composer.has-media .chat-visual-composer-text {
	grid-area: text;
	min-height: var(--chat-media-size);
}

.chat-compose-preview-inner {
	position: relative;
	display: block;
	width: var(--chat-media-size);
	height: var(--chat-media-size);
	overflow: visible;
	border-radius: 13px;
	border: 2px solid grey;
}

.chat-compose-preview-inner img,
.chat-compose-preview-inner video {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	border-radius: inherit;
	border: 0;
	background: rgba(0, 0, 0, 0.35);
	object-fit: cover;
}

.chat-compose-remove-media {
	position: absolute;
	top: var(--chat-remove-offset);
	right: var(--chat-remove-offset);
	width: var(--chat-remove-size);
	height: var(--chat-remove-size);
	border: 0;
	border-radius: 50%;
	background: rgba(185, 28, 28, 0.95);
	color: #fff;
	cursor: pointer;
	z-index: 3;
	font-size: 18px;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.chat-compose-video-sound-toggle {
	position: absolute;
	left: -7px;
	right: auto;
	bottom: -2px;
	width: var(--chat-video-toggle-size);
	height: var(--chat-video-toggle-size);
	border-radius: 50%;
	border: 2px solid red;
	background: rgba(125, 125, 125, 0.5);
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	z-index: 10;
}

.chat-video-sound-icon {
	font-size: 16px;
	line-height: 1;
}

.chat-composer-counter {
	position: absolute;
	right: 12px;
	bottom: 8px;
	font-size: 12px;
	line-height: 1;
	color: rgba(255, 255, 255, 0.82);
	pointer-events: none;
}

.chat-composer-counter.is-limit {
	color: #ffd479;
	font-weight: 700;
}

.chat-media-notice {
	max-width: var(--chat-max-width);
	margin: 6px auto 0;
	padding: 6px 10px;
	border-radius: 10px;
	background: rgba(185, 28, 28, 0.15);
	border: 1px solid rgba(255, 99, 99, 0.55);
	color: #fff;
	font-size: 12px;
	line-height: 1.35;
}

.chat-send-form .btn-profile-action {
	display: block;
	min-width: 160px;
	margin: 25px auto 2px;
	padding: 7px 30px;
	border-radius: 999px;
	background: #1e5eff;
	color: #ffffff;
	border: 3px solid #ebad5c;
	font-weight: bold;
	text-transform: uppercase;
	cursor: pointer;
	font-size: 12px;
}

/* FIRST MESSAGE MEDIA STRIP */

.chat-media-strip-wrapper {
	position: relative;
	width: 100%;
	max-width: var(--chat-max-width);
	margin: 7px auto 0;
}

.chat-media-strip-outer {
	overflow-x: auto;
	overflow-y: visible;
	white-space: nowrap;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.chat-media-strip-outer::-webkit-scrollbar {
	display: none;
}

.chat-media-strip-list {
	display: inline-flex;
	gap: 10px;
	padding: 3px 0 6px;
}

.chat-media-thumb {
	position: relative;
	width: 78px;
	height: 78px;
	flex-shrink: 0;
	border: 2px solid #ebad5c;
	border-radius: 13px;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.42);
	padding: 0;
	cursor: pointer;
	transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.chat-media-thumb img,
.chat-media-thumb video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
}

.chat-media-thumb.is-selected {
	border-color: #2ee104;
	transform: scale(1.08);
	z-index: 3;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22), 0 0 12px rgba(255, 246, 211, 0.75);
}

.chat-media-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 25px;
	color: #00f;
	padding: 8px 12px;
	background: rgba(245, 192, 0, 0.3);
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
	border-radius: 50px;
	border: 1px solid #00f;
	opacity: 0.6;
	transition: opacity 0.2s, transform 0.2s;
	z-index: 50;
	display: none;
	cursor: pointer;
}

.chat-media-left {
	left: -5px;
}

.chat-media-right {
	right: -5px;
}

@media (max-width: 640px) {
	.chat-send-form {
		margin-top: 6px;
	}

	.chat-visual-composer {
		max-width: 100%;
		padding: 7px 10px 23px;
		font-size: 16px;
		border-radius: 15px;
	}

	.chat-visual-composer.has-media {
		grid-template-columns: 104px minmax(0, 1fr);
		column-gap: 8px;
	}

	.chat-visual-composer.has-media .chat-visual-composer-media,
	.chat-compose-preview-inner,
	.chat-compose-preview-inner img,
	.chat-compose-preview-inner video {
		width: 104px;
	}

	.chat-visual-composer.has-media .chat-visual-composer-media {
		margin-top: 6px;
	}

	.chat-visual-composer.has-media .chat-visual-composer-text,
	.chat-compose-preview-inner,
	.chat-compose-preview-inner img,
	.chat-compose-preview-inner video {
		height: 104px;
	}

	.chat-visual-composer.has-media .chat-visual-composer-text {
		min-height: 104px;
	}

	.chat-compose-preview-inner,
	.chat-compose-preview-inner img,
	.chat-compose-preview-inner video {
		border-radius: 13px;
	}

	.chat-compose-remove-media {
		top: 4px;
		right: 4px;
		width: 24px;
		height: 24px;
		font-size: 15px;
	}

	.chat-compose-video-sound-toggle {
		width: 26px;
		height: 26px;
	}

	.chat-composer-counter {
		right: 10px;
		bottom: 7px;
		font-size: 11px;
	}

	.chat-media-notice {
		margin-top: 5px;
		padding: 5px 8px;
		font-size: 11px;
	}

	.chat-send-form .btn-profile-action {
		min-width: 100px;
		margin-top: 8px;
		padding: 6px 20px;
		font-size: 11px;
	}

	.chat-video-sound-icon {
		font-size: 13px;
	}

	.chat-media-strip-wrapper,
	.chat-media-strip-outer,
	.chat-media-notice {
		max-width: 100%;
	}

	.chat-media-strip-list {
		gap: 8px;
		padding: 3px 0 5px;
	}

	.chat-media-thumb {
		width: 66px;
		height: 66px;
		border-radius: 13px;
	}

	.chat-media-arrow {
		font-size: 20px;
		padding: 6px 9px;
	}
}

@media (max-width: 480px) and (orientation: portrait) {
	.chat-visual-composer {
		padding: 6px 8px 22px;
		font-size: 16px;
	}

	.chat-visual-composer.has-media {
		grid-template-columns: 100px minmax(0, 1fr);
		column-gap: 6px;
	}

	.chat-visual-composer.has-media .chat-visual-composer-media,
	.chat-compose-preview-inner,
	.chat-compose-preview-inner img,
	.chat-compose-preview-inner video {
		width: 100px;
	}

	.chat-visual-composer.has-media .chat-visual-composer-media {
		margin-top: 2px;
	}

	.chat-visual-composer.has-media .chat-visual-composer-text,
	.chat-compose-preview-inner,
	.chat-compose-preview-inner img,
	.chat-compose-preview-inner video {
		height: 100px;
	}

	.chat-visual-composer.has-media .chat-visual-composer-text {
		min-height: 100px;
	}

	.chat-compose-preview-inner,
	.chat-compose-preview-inner img,
	.chat-compose-preview-inner video {
		border-radius: 13px;
	}

	.chat-compose-remove-media {
		width: 22px;
		height: 22px;
		font-size: 12px;
	}

	.chat-compose-video-sound-toggle {
		width: 25px;
		height: 25px;
	}

	.chat-composer-counter {
		right: 8px;
		bottom: 7px;
		font-size: 10px;
	}

	.chat-send-form .btn-profile-action {
		min-width: 120px;
		margin-top: 15px;
		padding: 5px 16px;
	}

	.chat-video-sound-icon {
		font-size: 13px;
	}

	.chat-media-strip-list {
		gap: 5px;
		padding: 2px 0 5px;
	}

	.chat-media-thumb {
		width: 58px;
		height: 58px;
	}

	.chat-media-arrow {
		font-size: 18px;
		padding: 5px 8px;
	}

	.chat-media-left {
		left: -2px;
	}

	.chat-media-right {
		right: -2px;
	}
}