.textarea-block {
	margin-bottom: 1rem;
}
.textarea-block textarea {
	height: 55vh;
	font-size: 16pt;
	padding-bottom: 45px;
	resize: none;
}
.textarea-block__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 8px;
	margin-top: -46px;
}
.dosh-heza-preloader {
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.voiceover__btn[disabled=disabled] {
	opacity: .8;
}
.voiceover__btn, .voiceover__play-stop-btn {
	width: 40px;
	height: 40px;
	background: transparent;
	border: none !important;
	outline: none !important;
	color: #002033cc;
	border-radius: 100%;
	transition: all .25s;
}
.voiceover__play-stop-btn {
	display: none;
}
.voiceover__btn:hover, .voiceover__play-stop-btn:hover {
	background-color: #f5f7f9;
}
.voiceover__btn:active, .voiceover__play-stop-btn:active,
.voiceover__btn:focus, .voiceover__play-stop-btn:hover {
	border: none !important;
	outline: none !important;
}
.textarea-block .cymbols-count {
	font-size: 12px;
	color: #666;
	padding-right: 5px;
}
#dosh-heza-form #error-no-text {
	display: none;
}
.audio-list .audio-list-item {
	position: relative;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-content: center;
	align-items: center;
	padding: 8px;
	border: 1px solid #eee;
	border-radius: 5px;
	margin-bottom: 8px;
}
.audio-list-item .play-pause-block {
	margin-right: 10px;
}
.audio-list-item span.audio-title {
	display: block;
	max-width: 86%;
	white-space: nowrap;
  	overflow:hidden;
  	text-overflow: ellipsis;
}
.audio-list-item .audio-action-block {
	position: absolute;
	right: 8px;
	display: flex;
	flex-direction: row;
	align-content: center;
	align-items: center;
	justify-content: space-between;
	width: 45px;
	/*border: 1px solid #000;*/
}
.audio-list-item a.audio-delete {
	color: #666;
}
a.disable {
	pointer-events: none;
	cursor: default;
}


/* Всплыващие подсказки */
.tltp {
    position: relative;
    cursor: pointer;
}

.tltp[data-tooltip]:hover:after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 4px 8px;
    border-radius: 5px;
    white-space: nowrap;
    font-size: 13px;
	font-weight: 400;
    z-index: 10;
    opacity: 1;
    visibility: visible;
}

.tltp[data-tooltip]:after {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}


@media (max-width: 480px) {
	.textarea-block textarea {
	    height: 40vh;
		font-size: 14pt;
	}
}