:root {
	--chat-msg-width: 220px; /* 공통 메시지 넓이 */
	width: 100vw;
	--vh: 100%;
	height:100dvh;
	min-height: 0;
}

.background-icon-image {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	display: block;
	object-fit: contain;
}

#customer-counseling-wrapper {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
}

#customer-counseling-wrapper.chat-bubble {
	border-radius: 15px;
}

.ly_cstmChat {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	min-width: 360px;
	min-height: 300px;
	position: relative;
}

/* header */
.bl_cstmChat_header {
	min-height: 55px;
	background-color: #1d2c69;
	display: flex;
	align-items: center;
	position:sticky;
	top: 0;
	flex: 0 0 auto;
	width: 100%;
	padding: 10px 20px;
	z-index:10;
	gap: 10px;
}

.bl_cstmChat_ttl {
	font-size: 19px;
	font-weight: normal;
	font-stretch: normal;
	font-style: normal;
	line-height: normal;
	letter-spacing: normal;
	text-align: left;
	color: #fff;
}

.header__right-area {
	margin-left: auto;
}

.bl_cstmChat_closeBtn {
	width: 15px;
	height: 15px;
	padding: 0;
}
.bl_cstmChat_backBtn {
	height:28px;
	width:auto;
}

.bl_cstmChat_closeIcon {
	width: 30px;
}

/* body */
.bl_cstmChat_body {
	overflow-y: auto;
	overflow-x: hidden;
	font-size: 14px;
	position: relative;
	scrollbar-width: thin;
	scrollbar-color: rgba(0, 0, 0, .35) transparent;
	scrollbar-gutter: auto;
	flex: 1 1 auto;
}
.bl_chatArea_sysMsgDateWrap {
	object-fit: contain;
  	width:100%;
    background-color:transparent;
}

.bl_chatArea_sysMsgDate {
	border-radius: 16px;
	background-color: #f2f2f2;
	width: 182px;
    height:43px;
    font-size: 12px;
	color: #000;
	padding: 5px 38px;
	box-sizing: border-box; 
}

.bl_cstmChat_dateWrap {
	text-align: center;
	padding: 20px;
}

.bl_cstmChat_date {
	padding: 3px 10px;
	background: rgba(0, 0, 0, 0.17);
	border-radius: 50px;
	color: white;
}

.bl_cstmChat_msgWrapper {
	display: flex;
	flex-direction:column;
	gap: 8px;
	width: 100%;
}

.bl_cstmChat_msg{
	min-height:50px;
	display: flex;
	align-items: center;
	justify-content:center;
}

.bl_cstmChat_msg.img_msg{
	padding:0 !important;
	margin:0;
}

.bl_cstmChat_msgWrapper.counselor .bl_cstmChat_msg {
	background-color: #f2f2f2;
	padding: 10px 20px;
	border-radius: 15px 15px 15px 0;
	color: #000;
}

.bl_cstmChat_msgWrapper.customer .bl_cstmChat_msg {
	background-color: #1d2c69;
	padding: 10px 20px;
	border-radius: 15px 15px 0 15px;
	color: #fff;
}

.bl_cstmChat_txt  {
	white-space: pre-wrap;
	word-break: break-word;
}

.bl_cstmChat_txt a {
    color: #0066cc;
    text-decoration: underline;
    cursor: pointer;
}

.bl_cstmChat_img {
    width: 100%;
    height: 100%;
	display: block;
	cursor: pointer;
}

.bl_cstmChat_actionBtnWrapper {
	position: relative;
	max-width: 250px;
	min-width: 200px;
}

.bl_cstmChat_actionBtn {
	width: 100%;
	text-align: left;
	background-color: #f2f2f2;
    padding: 10px 20px;
    border-radius: 15px;
    color: #000;
}

.bl_cstmChat_actionBtn:hover {
	opacity: 0.9;
	text-decoration: underline;
}

.bl_cstmChat_actionBtnIcon {
	width: 20px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	cursor: pointer;
}

.bl_cstmChat_msgWrapper.customer > div {
	padding:0px;
	margin-left:auto;
}

.bl_cstmChat_sysMsgWrapper {
	display: flex;
	justify-content: center;
	width: 100%;
	padding: 20px;
}

.bl_cstmChat_sysMsgTxtWrapper {
	background: rgba(0, 0, 0, 0.5);
	padding: 8px 10px;
	border-radius: 50px;
	color: var(--text-white);
	text-align: center;
	width: 100%;
}

.bl_cstmChat_scrollBtnWrapper {
	position: absolute;
	bottom: 140px;
	right: 20px;
	display: flex;
	flex-direction: column;
	gap: 5px;
	z-index: 20;
}

.bl_cstmChat_scrollTopBtn, .bl_cstmChat_scrollBottomBtn {
	background: rgba(0, 0, 0, 0.3);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	opacity: 1;
}

.bl_cstmChat_scrollTopBtn.is-hidden, .bl_cstmChat_scrollBottomBtn.is-hidden
	{
	opacity: 0;
	pointer-events: none;
}

.bl_cstmChat_scrollTopIcon, .bl_cstmChat_scrollBottomIcon {
	width: 100%;
	cursor: pointer;
}

/* footer */
.bl_cstmChat_input {
	padding: 10px 15px 15px 10px;
	border-top: 1px solid #c0c0c0;
	flex: 0 0 auto;
	position: sticky;
}

.bl_cstmChat_inputInner {
	display: flex;
	gap: 3px;
}

.bl_cstmChat_inputInner.disable {
    pointer-events: none;
    cursor: not-allowed;
}

.bl_cstmChat_attachBtn {
	display: flex;
	align-items: center;
	cursor: pointer;
}

.bl_cstmChat_attachIcon {
	width: 35px;
}

@media ( max-width : 1024px) {
	.bl_cstmChat_attachIcon {
		width: 30px;
	}
}

.bl_cstmChat_inputWrap {
	display:flex;
	flex: 1;
	min-height: 46px;
	background-color: #f2f2f2;
	border-radius: 23px;
	align-items: center;
	min-width:0;
}

.bl_cstmChat_textarea {
	flex: 1;
	margin-left:25px;
	margin-right:5px;
	min-height: 24px;
	height: 24px;
	max-height: 88px;
	line-height: 24px;
	resize: none;
	font-size:14px;
	overflow-y: auto;
	overflow-wrap: break-word;
	padding: 0;
	scrollbar-width: thin;
	scrollbar-color: rgba(0, 0, 0, .35) transparent;
	scrollbar-gutter: auto;
}
/*
  가로폭 1024px 이하 (모바일 + 태블릿)
  - iOS Safari(아이폰/아이패드)에서는 <input>, <textarea> 같은 입력창의 font-size가 16px 미만일 경우,
    사용자가 입력창을 클릭하면 화면이 자동으로 확대(Zoom-In)되기 때문에 font-size를 16px로 설정.
*/
@media screen and (max-width: 1024px) {
	.bl_cstmChat_textarea {
		font-size: 16px;
	}
}

.bl_cstmChat_sendBtn {
	position: relative;
	height:40px;
	width:40px;
	margin:3px;
	border: none;
	background:none;
	text-align:center;
	line-height:40px;
}

.bl_cstmChat_sendIcon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 22px;
    z-index: 10;
    transform: translate(-55%, -45%);
}

.bl_cstmChat_send-background {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    transform: translate(-50%, -50%);
    aspect-ratio: 1 / 1;
    object-fit: contain; 
}

@media ( max-width : 1024px) {
	.bl_cstmChat_sendIcon {
		width: 20px;
	}
}

/* etc */
.bl_cstmChat button:hover {
	/* opacity: 1 !important; */
}

/* 이미지 클릭 시 원본 모달 */
.bl_imgPreviewModal_overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 1000;
	display: flex;
	justify-content: center;
	align-items: center;
}

.bl_imgPreviewModal_img {
	max-width: 90%;
	max-height: 90%;
	border-radius: 6px;
	user-select: none;
	-webkit-user-drag: none;
}

.bl_imgPreviewModal_closeBtn:hover {
	opacity: 1;
}

.bl_imgPreviewModal_closeImg {
	width: 50px;
	fill: white;
	position: absolute;
	top: 3%;
	right: 3%;
}

.bl_cstmChat_footer {
	padding: 10px 15px;
	background-color: #e5e5e5;
	width: 100%;
	height: 43px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	position:sticky;
}

.footer__powered-by {
	width: 80px;
	height: 10px;
}

.footer__company-logo {
	width: 100px;
	height: 14px;
}

.cstmChat-end-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap:48px;
	padding:20px;
}

.cstmChat-end-notice-area {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	gap: 5px;
	font-size:14px;
}

.cstmChat-end-notice-message {
	max-width: 200px;
}

.cstmChat-end-side-line {
	flex: 1;
	height: 2px;
	background-color: #0a1055;
}

.chat-event-btn {
	height: 50px;
	border-radius: 25px;
	border: solid 1px #000;
	background-color: #1d2c69;
	width: 100%;
	color:#fff;
	font-size:15px;
	font-weight:bold;
}

.chat-confirm__bottom-modal {
	width:100%;
	height:100%;
	position: absolute;
	top: 0;
	left: 0;
}

.bottom-modal__back {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9000;
}

.bottom-modal__back.chat-bubble {
	border-radius: 15px;
}
.bottom-modal__sheet > .sheet-area{
	display:flex;
	flex-direction: column;
	align-items:center;
	justify-content:center;
	width:100%;
	height:100%;
}
.bottom-modal__sheet {
	z-index: 10000;
	display: flex;
	flex-direction:column;
	width: 100%;
	height: 235px;
	border-radius: 15px 15px 0 0;
	background-color: #fff;
	position: absolute;
	left: 0;
	top: 100%;
	transition: top 0.3s ease-in-out;
	padding: 0 14px;
	padding-bottom: 30px;
	padding-top: 25px;
}
.bottom-modal__sheet.chat-bubble {
	border-radius: 15px;
}
.sheet-area.text {
	justify-content:flex-start;
	gap:8px;
}

.bottom-modal__sheet.active {
	top: calc(100% - 235px);
}
.chat-end-btn-area {
	flex:1;
	width:100%;
	gap:10px;
}

.cstmChat-end-confirm-cancel-btn {
	height: 50px;
	border-radius: 25px;
 	border: solid 1px #1d2c69;
  	background-color: transpaernt;
	width: 100%;
	color: #0c0c0c;
	font-size: 15px;
	font-weight: bold;
}
.cstmChat-end-modal__confirm {
	font-size:14px;
}
.cstmChat-end-modal__title {
	font-size:18px;
	font-weight:bold;
}

#customer-chat-interaction {
	display:none;
}
#customer-chat-interaction.active {
	display: flex;
}

/* **********************************************************************************************************************
 * **********************************************************************************************************************
 * **********************************************************************************************************************
 * **********************************************************************************************************************
 * ******************************************************************************************************************** */

/* 메시지 구조 관련 CSS */
.bl_cstmChat_body .group_message_balloon {
    display: flex;
    flex-direction: column;
}

.bl_cstmChat_body .balloon_item {
	display: flex;
	gap: 10px;
	padding: 10px 20px;
	width: 100%;
	flex-direction: column;
    gap: 8px;
    overflow: visible;
}

.bl_cstmChat_body .balloon_item.customer {
	align-items: flex-end;
}

.bl_cstmChat_body .balloon_item.customer .profile_image {
	display: none;
}

/* 말풍선 관련 CSS */
.bl_cstmChat_body .balloon_area {
	display: inline-flex;
	gap: 6px;
}

.bl_cstmChat_body .profile_image {
	width: 48px;
	height: 48px;
	background: transparent;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	align-self: self-end;
	flex-shrink: 0;
}

.bl_cstmChat_body .profile_image img {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	align-self: self-end;
	border-radius: 100%;
}

.bl_cstmChat_body .carousel_inner {
	flex: 1;
	display: flex;
	overflow: visible;
}
.bl_cstmChat_body .chat-swiper {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.bl_cstmChat_body .card_carousel {
	/* flex: 0 0 var(--balloon-width); */
}
.bl_cstmChat_body .card_carousel.swiper-slide {
    width: 270px;
    max-width: 90%;
    flex-shrink: 0;
    display: flex;
}

.bl_cstmChat_body .chat-swiper.is-carousel .card_carousel.swiper-slide {
    width: 270px;
    max-width: 90%;
    flex-shrink: 0;
    display: flex;
}

.bl_cstmChat_body .carousel_inner::-webkit-scrollbar {
    display: none;
}

.bl_cstmChat_body .balloon_chat {
	background-color: #f2f2f2;
	word-break: break-word;
	position: relative;
	border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
    border-bottom-left-radius: 0;
    width: 270px;
    max-width: 100%;
    max-height: 471px;
    display: flex;
    flex-direction: column;
}
.bl_cstmChat_body .balloon_item.customer .balloon_chat {
	border-bottom-right-radius: 0;
    border-bottom-left-radius: 18px;
}
.bl_cstmChat_body .message_balloon {
	background-color: #f2f2f2;
	word-break: break-word;
	position: relative;
	border: 1px solid transparent;
	border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
    border-bottom-left-radius: 0;
    
    display: flex;
    align-items: center;
    
    padding: 10px;
    min-height: 48px;
    
    max-width: 76vw;
    
    overflow: hidden;
}
.bl_cstmChat_body .balloon_item.customer .message_balloon {
	background-color: #1d2c69;
	color: var(--text-white);
	border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 18px;
}

.bl_cstmChat_body .message_balloon .text_message {
    white-space: pre-wrap;
    word-break: break-word;
}

.bl_cstmChat_body .message_balloon .text_message a {
    color: #0066cc;
    text-decoration: underline;
    cursor: pointer;
}

.bl_cstmChat_body .message_balloon .image_message {
	width: 100%;
}

.bl_cstmChat_body .message_balloon .image_message img {
	max-width: 100%;
    display: block;
    cursor: pointer;
}

.bl_cstmChat_body .component_group {
	display: block;
    overflow: hidden;
}
.bl_cstmChat_body .component_group + .component_group {
	margin-top: 10px;
}
.bl_cstmChat_body .component_group:first-child {
	/* padding-top: 16px; */
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
}
.bl_cstmChat_body .component_group:last-child {
	padding-bottom: 16px;
    border-bottom-right-radius: inherit;
    border-bottom-left-radius: inherit;
}
.bl_cstmChat_body .component_group.image_component:first-child {
	padding: 0;
}
.bl_cstmChat_body .image_component {
	text-align: center;
}
.bl_cstmChat_body .image_component > img {
    max-width: 270px;
    /* width: 270px; */
	width: 100%;
    max-height: 150px;
    min-height: 150px;
    
    /* 이미지 ghost drag 방지 */
    user-drag: none;
    -webkit-user-drag: none;

    /* 텍스트 선택 방지 (이미지에만) */
    user-select: none;
    -webkit-user-select: none;

    /* 클릭 가능 */
    cursor: pointer;
}
.bl_cstmChat_body .text_component {
	padding: 0 17px;
	/* max-height: 80px; */
	flex: 1;
    overflow: auto;
  	scrollbar-width: thin;
	scrollbar-color: rgba(0, 0, 0, .35) transparent;
	scrollbar-gutter: auto;
}
.bl_cstmChat_body .balloon_chat > .text_component:first-child {
    margin-top: 10px;
}
.bl_cstmChat_body .composite_text {
    font-size: 14px;
    /* line-height: 18px; */
    white-space: pre-line;
}
.bl_cstmChat_body .button_component {
	padding: 0 17px;
}
.bl_cstmChat_body .button_item {
	position: relative;
}
.bl_cstmChat_body .button_item:not(:first-child) {
	margin-top: 5px;
}
.bl_cstmChat_body .normal_button {
	width: 100%;
	border: 1px solid #acacac;
	border-radius: 19px;
	height: 36px;
	padding: 0 35px 0 15px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	text-align: left;
	background: white;
}
.bl_cstmChat_body .normal_button_icon {
	width: 25px;
	position: absolute;
	top: 50%;
	right: 6px;
	transform: translateY(-52%);
	pointer-events: none;
}

/* 말풍선 핫키 버튼 관련 CSS */
.bl_cstmChat_body .balloon_item.counselor .balloon_hotkey {
	margin-left: 54px;
}
.bl_cstmChat_body .hotkey_button_inner {
	display: inline-flex;
	flex-direction: column;
	gap: 8px;
	justify-content: start;
	align-items: center;
}
.bl_cstmChat_body .hotkey_button_item {
	width: auto !important;
}
.bl_cstmChat_body .hotkey_button_inner.horizontal {
	flex-direction: row;
	gap: 0px;
}
.bl_cstmChat_body .hotkey_button {
	height: 50px;
	width: 226px;
	background: #f2f2f2;
	border: 1px solid transparent;
	padding: 0 35px 0 15px;
	border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
    border-bottom-left-radius: 0;
   	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	text-align: left;
}
.bl_cstmChat_body .balloon_item.customer .hotkey_button {
	border-bottom-right-radius: 0;
    border-bottom-left-radius: 18px;
}

/* 말풍선 상태 관련 CSS */
.bl_cstmChat_body .balloon_item.counselor .balloon_status {
	padding-left: 54px;
}
.bl_cstmChat_body .balloon_status .status_time {
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--gray-70);
}

.swiper-container {
	margin: 0 !important;	
}

/*****************************************/
/**** 고객 채팅화면 입력 폼 CSS     ****/
/*****************************************/

.form_message {
    width: 400px;
    max-width: 100%;
    padding: 15px;
    background-color: #f8f9fa; /* 시안의 옅은 회색 배경 */
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-sizing: border-box;
}

.form_message .chatbot-dynamic-form {
    display: flex;
    flex-direction: column;
    align-items: stretch; /* start 대신 stretch를 주어 자식들이 width 100%를 꽉 채우게 함 */
    gap: 15px;
}

.form_message .form-block-item {
    width: 100%;
}

.form_message .form-block-item  .block-name-area{
    display:flex;
    margin: 0 0 5px 5px;
}

.form_message .form-block-item  .block-name-area > span {
    font-weight: 500;
}

.form_message .chatbot-dynamic-form .bl_input {
    width: 100%;
    padding: 7px 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    background-color: #ffffff;
    box-sizing: border-box;
    transition: border-color 0.2s ease-in-out;
}

.form_message .chatbot-dynamic-form .bl_input::placeholder {
    color: #adb5bd;
}

.form_message .chatbot-dynamic-form .bl_input:focus {
    outline: none;
    border-color: #86b7fe; /* 포커스 시 접근성 향상 (필요시 변경) */
}

.form_message .chatbot-dynamic-form .bl_textarea {
    width: 100%;
    padding: 7px 10px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
    background-color: #ffffff;
    box-sizing: border-box;
    transition: border-color 0.2s ease-in-out;
    resize: none;
}

.form_message .chatbot-dynamic-form .bl_textarea::placeholder {
    color: #adb5bd;
}

.form_message .chatbot-dynamic-form .bl_textarea:focus {
    outline: none;
    border-color: #86b7fe; /* 포커스 시 접근성 향상 (필요시 변경) */
}


.form_message .form-block-item.select-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px;
}

.form_message .select-label {
    margin: 0;
    font-size: 13px;
    color: #495057;
    font-weight: 500;
}

.form_message .options-wrapper {
    background-color: #ffffff;
    border: 1px solid #ced4da;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.form_message .check-item-label {
    display: flex;
    align-items: center;
    padding: 7px 15px;
    margin: 0;
    border-bottom: 1px solid #e9ecef;
    cursor: pointer;
}

/* 마지막 항목은 밑줄 제거 */
.form_message .check-item-label:last-child {
    border-bottom: none;
}

.form_message .check-item-label input[type="radio"],
.form_message .check-item-label input[type="checkbox"] {
    margin: 0 10px 0 0;
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #555;
}

.form_message .check-text {
    font-size: 14px;
    color: #495057;
}

.form_message .form-validation-error {
    margin: 4px 0 0 0 !important;
    text-align: left;
    line-height: 1.4;
}

.form_message .btn-submit-form {
    width: 100%;
    padding: 14px;
    margin-top: 8px;
    background-color: #e0f2f8;
    border: 1px solid #b8dae6;
    border-radius: 24px;
    color: #495057;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
}
.form_message .btn-submit-form.is-submitted {
	opacity: 0.5;
	cursor: default;
}

.form_message .btn-submit-form:hover {
    background-color: #d1ecf4;
}

.form_message .form-msg-area {
    width:auto;
    min-height: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.form-field-error {
    display: none;
    color: #e02020;
    font-size: 12px;
    margin-top: 6px;
}

.form-block-item:has(textarea) .form-field-error {
    margin-top: 2px;
}

/* 선택형 (radio/checkbox) */
.form-block-item.select-group .form-field-error {
    margin-top: 0;
}

.form-field-error.is-active {
    display: block;
}

.form-input-error {
    border: 1px solid #e02020 !important;
}

/*****************************************/
/**** 고객 채팅화면 폼 결과(Result) CSS  ****/
/*****************************************/
.form_result_message {
    width: 400px;
    max-width: 100%;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
}

.form_result_message .result-title {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin: 0 0 12px 0;
}

.form_result_message .result-list-wrapper {
    background-color: #ffffff;
    border: 1px solid #ced4da;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
}

.form_result_message .result-item {
    display: flex;
    align-items: flex-start;
    padding: 12px 14px;
    border-bottom: 1px solid #e9ecef;
    font-size: 14px;
    color: #495057;
    line-height: 1.4;
    word-break: break-all;
}

.form_result_message .result-item:last-child {
    border-bottom: none;
}

.form_result_message .bullet {
    margin-right: 6px;
    font-weight: bold;
    color: #495057;
}

.form_result_message .value {
    flex: 1;
}

.form-block-item {
    position: relative;
}

.textarea-count {
    position: absolute;
    right: 8px;
    top: 107px;
    font-size: 12px;
    color: var(--gray-50);
    pointer-events: none;
}
