@media (min-width: 481px) {
	.fileCreate__wrapper {
		position: fixed;
		bottom: -100%;
		right: 20px;
		z-index: 1020;
		background: var(--base-cont-mod-input);
		width: 560px;
		box-shadow: var(--shadow-tray-major);
		border-radius: 12px 12px 0 0;
		transition: all 0.3s ease;
	}
	.fileCreate__wrapper.top-layer {
		z-index: 1021;
	}
	.fileCreate__wrapper-active {
		bottom: 0
	}

	.fileCreate__wrapper-fullscreen {
		width: calc(100% - 64px);
		right: 0;
		height: 100%;
		border-radius: 0;
	}
	.fileCreate__wrapper-fullscreen .fileCreate {
		height: 100%;
	}
}
@media (max-width: 480px) {
	.fileCreate__wrapper {
		display:none;
	}

	body.mobilefileCreate main {
		display: none;
	}

	body.mobilefileCreate .fileCreate__wrapper {
		display: block;
		height: 100%;
		position: relative;
		background: var(--base-cont-mod-top);
	}

	body.mobilefileCreate .fileCreate__wrapper {
		--layer: 0;
		--zIndex: 1032;
		z-index: calc(var(--zIndex) + var(--layer));
	}
}
.fileCreate {
	min-height: 452px;
}

.fileCreate > * {
	flex-shrink: 0;
	flex-grow: 0;
}

.fileCreate__head {
	padding: 6px 8px;
	height: 44px;
	box-sizing: border-box;
}

/*.fileCreate__head .space, .fileCreate__head ws-icon {*/
/*	width: 40px;*/
/*	height: 40px;*/
/*	display: flex;*/
/*	justify-content: center;*/
/*	align-items: center;*/
/*	border-radius: 20px;*/
/*}*/

/*.fileCreate__head .space ~ .space {*/
/*	margin-left:4px;*/
/*}*/

.fileCreate__head .minimize {
	cursor: zoom-out;
}

.fileCreate__head .space:hover {
	background: var(--base-hlt-b-notr-hover);
}

.fileCreate__head .space:hover:active {
	background: var(--base-hlt-b-notr-selected);
}

.fileCreate__head > .in {
	padding: 0 8px;
	color: var(--base-txt-secondary);
}

.fileCreate__files {
	padding: 12px 24px;
	max-height: 40vh;
	margin-bottom: auto;
}
.fileCreate__content {
	padding: 8px 24px;
}

.fileCreate__content__title {
	margin: 0 0 8px;
}

.fileCreate__content__title textarea {
	max-height: 84px;
	min-height: 32px;
	height: 32px;
	font: var(--font-ui-22-title-1-semi);
	width: 100%;
	box-sizing: border-box;
	border: none;
	resize: none;
	padding: 0;
	overflow: hidden;
	background: transparent;
}

.fileCreate__content__title textarea::placeholder {
	font: 600 18px/32px var(--font-base);
	opacity: 1;
	color: var(--base-txt-tertiary)
}

.fileCreate__content__title textarea::-webkit-input-placeholder {
	font: 600 18px/32px var(--font-base);
	opacity: 1;
	color: var(--base-txt-tertiary)
}

.fileCreate__content .editor__data {
	min-height: 32px;
	font: 13px/20px var(--font-base);
	padding: 12px 0;
	cursor: text;
}

.fileCreate__content .editor__data:focus {
	outline: none;
}
.fileCreate__content__title textarea::placeholder {
	font: var(--font-ui-22-title-1-semi);
	opacity: 1;
	color: var(--base-txt-tertiary)
}

.fileCreate__content__title textarea::-webkit-input-placeholder {
	font: var(--font-ui-22-title-1-semi);
	opacity: 1;
	color: var(--base-txt-tertiary)
}


.fileCreate__content .editor__data:empty:before {
	content: attr(data-placeholder);
	color: var(--base-txt-tertiary)
}

.fileCreate__content__item {
	align-items: flex-start;
	gap: 12px;
	overflow: hidden;
}
.fileCreate__head .fileCreate__content__item {
	gap: 0 4px;
	flex-wrap: nowrap;
	padding: 0 6px 0 2px;
	box-sizing: border-box;
	min-height: unset;
}

.fileCreate__content__item ~ .fileCreate__content__item {
	border-top: 1px solid var(--base-line-tertiary);

}
.fileCreate__content__item > [data-container] {
	overflow: hidden;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
}
.fileCreate__content__item > [data-container]:not([data-container=priority]) {
	flex-shrink: 1;
}
.fileCreate__content__item > [data-container]:not([data-container=priority]) > * {
	flex-shrink: 1;
}
.fileCreate__content__item {
	padding: 4px 0;
}

.fileCreate__content__item > .in {
	font: 11px/20px var(--font-base);
	color: var(--base-txt-tertiary);
	font-variant: small-caps;
}

.fileCreate__content__item .data {
	font: 12px/22px var(--font-base);
	color: var(--base-txt-secondary);
	height: 24px;
	border-radius: 12px;
	background: var(--base-cont-mod-low);
	max-width: 190px;
	overflow: hidden;
	padding: 0 2px;
}

.fileCreate__content__item .data > .in {
	padding: 0 4px;
	color: var(--base-txt-tertiary);
}
.fileCreate__content__item .data > .limit ~ .limit {
	border-left: 1px solid var(--base-line-secondary);
	margin-left: 2px;
	padding-left: 6px;
}
.fileCreate__content__item .prior > .in {
	width:20px;
	text-align: center;
	padding:0;
	color:var(--white-primary);
}

.fileCreate__content__item .data > ws-icon svg {
	width: 16px;
	height:16px;
}
.fileCreate__content__item .data > ws-icon[name=close_sm] {width: 16px;height: 16px;}

.fileCreate__content__item .data > .space ws-icon, .fileCreate__content__item .data > .space svg {
	width: 16px;
	height: 16px;
}

.fileCreate__content__item .data > .in b {
	font-weight: normal;
	color: var(--base-txt-primary);
}

.fileCreate__content__item .data:hover {
	background: var(--base-hlt-hover);
}

.fileCreate__buttons {
	padding: 12px 20px calc(var(--app-sa-bot) + 20px) 20px;
	height: 32px;
	border-top: var(--screen-px) solid var(--base-line-tertiary);
	gap: 8px;
	width: calc(100% - 40px);
	max-width: 700px;
	margin: 0 auto;
}

.fileCreate__buttons > .flex_content {
	position: relative;
}

.fileCreate__buttons .but {
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
}

.fileCreate__buttons .editor__toolbar {
	overflow: visible;
}

.fileCreate__buttons .format_toolbar {
	position: absolute;
	bottom: 44px;
	left: -16px;
	background: var(--base-cont-top);
	box-shadow: 0 0 4px 1px var(--colors-alpha-dark-20);
	border-radius: 4px;
	padding: 4px;
	display: none;
}

.fileCreate__buttons .format_toolbar-active {
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
}
.fileCreate__content__editor textarea {
}

.fileCreate .attachWrapper .fileItem {
	width: calc(100% / 2 - 19px);
	background: var(--base-cont-mod-top);
}
.fileCreate .attachWrapper .fileItem__content .name {
	padding: 0 2px;
}
.fileCreate .attachWrapper .fileItem__content .links ws-icon {
	opacity: 1;
}


.fileCreate__subscribers {
	height:24px;
	font:12px/24px var(--font-base);
	color:var(--base-txt-tertiary);
	position:relative;
	white-space:nowrap;
	gap: 8px;
	cursor: pointer;
}

.fileCreate__subscribers__item:not(.fileCreate__subscribers__item-subscribe) {
}

.fileCreate__subscribers .plus ws-icon {
	border:1px dashed var(--base-txt-secondary);
	width: 24px;
	height:24px;
	box-sizing:border-box;
	border-radius:12px;
}

.fileCreate__subscribers .plus svg {
	width: 16px;
	height: 16px;
}

.fileCreate__subscribers__item:not(.fileCreate__subscribers__item-hidden) ws-icon {
	display:none;
}

.fileCreate__subscribers__item {
	position:relative;
	margin-right: -2px;
}
.fileCreate__subscribers__item:nth-child(n+6) {
	display: none
}
.fileCreate__subscribers__item:nth-child(n+5):last-child {
	display: inline-block
}
.fileCreate__subscribers__item .av_sm {
  box-shadow: 0 0 0 2px var(--base-cont-top);
}
.fileCreate__subscribers__item ws-icon {
	position:absolute;
	bottom:-3px;
	left:-3px;
	background:var(--base-btn-togg-off);
	border-radius:3px;
	width:12px;
	height:12px;
	box-shadow:0 0 0 1px var(--base-cont-mod-top);
}

.fileCreate__subscribers__item ws-icon svg {
	width:10px;
	height:10px;
	fill:var(--white-primary)
}

.fileCreate__subscribers .more {
	display: inline-block;
	width: 24px;
	height: 24px;
	text-align: center;
	font: var(--font-ui-10-nano-med);
	line-height: 24px;
	border-radius: 12px;
	background: var(--base-cont-low);
	vertical-align: top;
	position: relative;
	color: var(--base-txt-primary);
	box-shadow: 0 0 0 2px var(--base-cont-top);
}
.fileCreate-initClose > :not(.editBlock-close) {
	opacity: 0.5;
	pointer-events: none
}
.fileCreate-initClose .editBlock-close {
	position: absolute;
	z-index:1;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--base-cont-mod-top);
	border-top: 2px solid var(--base-btn-alert-primary-minor);
	padding:12px 0 24px;
}

@media (max-width: 480px) {
	.fileCreate {
		min-height: unset;
		height: 100%;
	}
	.fileCreate__files {
		max-height: unset;
		flex-shrink: 1;
	}
}