

#chat-main-block{
	height: 100%;
    padding: 18px 16px 18px 16px;
}

.chat-main-container{
	height: 100%;
	overflow-y: auto;
	border-radius: 13px;
}

.pulse-button{
	display: none;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 40px;
	padding: 0px;
	border: none;
	background: #f7f7f7;
	box-shadow: 0 5px 35px rgba(0, 0, 0, 0.2);
	position: fixed;
	bottom: 70px;
	left: 25px;
	cursor: pointer;
	outline: none;
	z-index: 999999;
	border: 1px solid #f44336;
}

.pulse-button-flex{
	display: flex;
}

.pulse-button__icon{
	display: block;
	width: 60px;
	height: 60px;
	background: url("../img/notification.png") center center/cover no-repeat;
	transition: .3s;
}

.pulse-button__text{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	transition: .3s;
	margin-top: 0;
	background: #f7f7f7;
	border-radius: 40px;
}

.pulse-button__text img{
	width: 34px;
}

.pulse-button:hover .pulse-button__icon{
	opacity: 0;
	visibility: hidden;
	position: absolute;
	transition: .3s;
}

.pulse-button:hover .pulse-button__text{
	transition: .3s;
	opacity: 1;
	visibility: visible;
	position: relative;
}

.pulse-button__rings{
	border: 1px solid #f44336;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	height: auto;
	width: auto;
	border-radius: 50%;
	animation-duration: 2.0s;
	animation-name: pulse_1;
	animation-iteration-count: infinite;
	z-index: -1;
}

.pulse-button__rings:nth-child(2){
	animation-name: pulse_2;
}

.pulse-button__rings:nth-child(3){
	animation-name: pulse_3;
}

@keyframes pulse_1{

	from{
		opacity: 1;
		transform: scale(0.9, 0.9);
		transform: scale(1, 1);
	}
	
	to{
		opacity: 0;
		transform: scale(1.4, 1.4);
	}
	
}

@keyframes pulse_2{

	from{
		opacity: 1;
		transform: scale(0.8, 0.8);
		transform: scale(1, 1);
	}
	
	to{
		opacity: 0;
		transform: scale(1.6, 1.6);
	}
	
}

@keyframes pulse_3{

	from{
		opacity: 1;
		transform: scale(0.8, 0.8);
		transform: scale(1, 1);
	}
	
	to{
		opacity: 0;
		transform: scale(1.9, 1.9);
	}
	
}

@media (prefers-reduced-motion: reduce) {

	.support-content * {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
	
}

.support-content a{
	transition: 0.5s;
	text-decoration: none;
	color: #1e8199;
}

.support-content a:hover,
.support-content a:active,
.support-content a:focus,
.support-content a:visited{
	text-decoration: none;
	color: #1e8199;
}

.support-content a{
	-moz-transition: color 0.2s ease, border-bottom 0.2s ease;
	-webkit-transition: color 0.2s ease, border-bottom 0.2s ease;
	-ms-transition: color 0.2s ease, border-bottom 0.2s ease;
	transition: color 0.2s ease, border-bottom 0.2s ease;
	color: #17a2b8;
	text-decoration: none!important;
}

.support-content a,
.support-content a:hover,
.support-content a:focus,
.support-content a:active,
.support-content a:visited{
	text-decoration: none!important;
}

.support-content strong,
.support-content b{
	font-weight: 600;
}

span.open-chat{
	font-weight: 700;
	font-size: 14px;
}

.support-content .message-list{
	display: flex;
	/* flex-direction: column-reverse; */
	align-items: flex-end;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
	height: calc(100vh - 252px);
	overflow-y: auto;
	margin: 0;
	padding: 10px 15px 15px;
}

.support-content .one-message{
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-wrap: wrap;
	width: 100%;
	margin-top: 0;
	margin-bottom: 22px;
}

.support-content .meta-one-message{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	line-height: 1;
}

.support-content .author-one-message{
	width: calc(100% - 150px);
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-size: 14px;
}

.support-content .login-message{
	background: #007bff;
	color: #fff;
	font-size: 12px;
	padding: 4px 6px;
	border-radius: 15px;
}

.support-content .role-message{
	background: #17a2b8;
	color: #fff;
	padding: 5px 10px;
	border-radius: 15px;
	margin: 0 6px;
}

#chat-main-block .role-message{
	display: none;
}

.support-content .info-one-message{
	width: 60px;
	font-size: 10px;
	font-weight: 600;
	color: #a8aab1;
	text-align: right;
}

.support-content .content-one-message{
	/* border: 1px solid #86BB71; */
	background: #F8F9FE;
	padding: 12px;
	border-radius: 13px;
	/* width: calc(100% - 12px); */
	width: 100%;
	margin: 7px 0 0;
	line-height: 1.1;
	position: relative;
	color: #383D5D;
}

.text-one-message p{
	margin: 0;
}

.support-content .content-one-message iframe{
	max-width: 100%!important;
}

.support-content .content-one-message img{
	width: auto!important;
	max-width: 100%!important;
}

.support-content .edit-one-message{
	width: 22px;
	height: 22px;
	background: #007bff;
	display: none;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	position: absolute;
	top: calc(50% - 22px);
	left: calc(100% + 5px);
	cursor: pointer;
}

.support-content .content-one-message .edit-one-message img{
	width: 11px!important;
}

.support-content .remove-one-message{
	width: 22px;
	height: 22px;
	background: #f44336;
	display: none;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	position: absolute;
	top: calc(50% + 3px);
	left: calc(100% + 5px);
	cursor: pointer;
}

.support-content .content-one-message .remove-one-message img{
	width: 10px!important;
}

.support-content.user-support-block{
	max-width: 1200px;
	margin: 30px auto 0;
}

.support-content.user-support-block h1.page-title{
	color: #222;
	margin: 15px 0 15px;
}

.support-content .form-group{
    margin-bottom: 12px;
}

.support-content .note-editable{
	color: #222;
	min-height: 100px;
}

.support-content.user-support-block .modal.note-modal.show,
.support-content.user-support-block .panel-heading.note-toolbar > div,
.support-content .panel-heading.note-toolbar .note-btn-group.btn-group.note-insert button:nth-child(1),
.support-content .panel-heading.note-toolbar .note-btn-group.btn-group.note-insert button:nth-child(3),
.support-content.user-support-block .modal.note-modal{
	display: none;
}

.support-content.user-support-block .modal.note-modal.show{
	display: none!important;
}

.support-content .panel-heading.note-toolbar .note-btn-group.btn-group.note-insert{
	display: inline-flex;
}

.support-content .panel-heading.note-toolbar .note-btn-group.btn-group.note-insert button.btn{
	min-width: 32px;
	width: 32px;
}

.support-content .btn{
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.support-content .btn-success{
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.support-content .btn-success:hover{
    color: #fff;
    background-color: #218838;
    border-color: #1e7e34;
}

.support-content .btn-outline-info{
    color: #17a2b8;
    border-color: #17a2b8;
}

.support-content .btn-outline-info:hover{
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.support-content .btn-info{
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

.support-content .btn-info:hover{
    color: #fff;
    background-color: #138496;
    border-color: #117a8b;
}

.support-content .one-message.User{
	margin-left: 0;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
}

.support-content .one-message.User .meta-one-message{
	flex-direction: row-reverse;
}

.support-content .one-message.User .author-one-message{
	flex-direction: row-reverse;
}

.support-content .one-message.User .info-one-message{
	text-align: left;
}

.support-content .one-message.User .content-one-message{
	/* border: 1px solid #94C2ED; */
	width: calc(100% - 12px);
}

.support-content .one-message.User .edit-one-message,
.support-content .one-message.User .remove-one-message{
	left: -40px;
}

.support-content .container-btn-more{
	display: flex;
	align-items: flex-start;
	justify-content: center;
	margin-top: 10px!important;
	margin-bottom: 15px!important;
	width: 100%;
}

.support-content .load-more{
	display: inline-block;
    background: #17a2b8;
    color: #fff;
	padding: 4px 20px;
	cursor: pointer;
	font-size: 14px;
	border-radius: 13px;
}

.support-content .opened-chat{
	display: none;
}

.support-content .opened-chat.active{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9;
	background: #fff;
	padding: 0 8px 15px 15px;
}

.support-content .opened-chat .container-btn-more{
	margin-top: 50px!important;
    margin-bottom: 0!important;
	display: none;
}

.chat-main-container.no-scroll-list{
	overflow: hidden;
}

.close-chat-container{
	background: #E8EBFE;
	width: 100%;
	height: 40px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}

.close-chat{
	width: 20px;
	height: 20px;
	position: absolute;
	top: 9px;
	left: 15px;
	z-index: 11;
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAgUlEQVR4nGNgGAWjYBQMdmBpEx1pbhvbOiCWW9hFh5nbxP62sI39b24b2zBglluAcUzlqOU0BxYjNtgtQVnNJvYP3HKbmH2WNrGhtMbmdrFBWHxOTxzzlQHskoF0wIBHAQxghgQdEyEMjDoCBkZDAltI0L06HhQNklEwCkYBAx0AANmiHtwqt9T4AAAAAElFTkSuQmCC);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	cursor: pointer;
}

.support-content .list-dialogs{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
}

.support-content .one-list-dialogs{
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	border-bottom: 1px solid #99999920;
	padding-top: 5px;
	padding-bottom: 5px;
	margin-top: 5px;
	margin-bottom: 5px;
	cursor: pointer;
}

.support-content .one-list-dialogs:first-child{
	border-top: 1px solid #99999920;
}

.support-content .id-one-list-dialogs{
	width: 100%;
	line-height: 1.2;
	padding-right: 7px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.support-content .id-one-list-dialogs a,
.support-content .id-one-list-dialogs a:hover{
	color: #222;
    font-size: 12px;
	text-decoration: none;
	display: contents;
	overflow-y: hidden;
	overflow-x: hidden;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: calc(100% - 120px);
}

.support-content .id-one-list-dialogs a strong,
.support-content .id-one-list-dialogs a strong:hover,
.support-content .id-one-list-dialogs a:hover strong{
	color: #17a2b8;
    font-size: 15px;
}

.support-content .login-one-list-dialogs{
	text-overflow: ellipsis;
    overflow-x: hidden;
    overflow-y: hidden;
    white-space: nowrap;
    font-size: 15px;
	display: none;
}

.support-content .message-one-list-dialogs{
	width: 100%;
	font-size: 15px;
	letter-spacing: 0;
	margin: 2px 0 0;
	height: 38px;
	overflow-y: hidden;
	padding-right: 0;
	cursor: pointer;
	font-weight: 500;
	line-height: 1.1;
}

.support-content .message-one-list-dialogs p{
	margin: 0 0 3px;
}

.support-content .message-one-list-dialogs iframe{
	max-width: 100%!important;
}

.support-content .message-one-list-dialogs img{
	width: auto!important;
	max-width: 100%!important;
}

.support-content .date-one-list-dialogs{
	width: 120px;
    font-size: 11px;
	line-height: 1.15;
    color: #a8aab1;
    text-align: right;
	padding-left: 10px;
	font-weight: 600;
}

.support-content .remove-one-dialog{
	width: 30px;
	height: 30px;
	background: #f44336;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	cursor: pointer;
	
	display: none;
}

.support-content .remove-one-dialog img{
	width: 15px;
}

.support-content .menu-support{
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin: 0 0 15px;
}

.support-content .menu-support a{
	color: #17a2b8!important;
	border: 1px solid #17a2b8;
	padding: 10px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: calc(50% - 5px);
	font-size: 15px;
}

.support-content .menu-support a.active,
.support-content .menu-support a:hover{
	color: #fff!important;
	background: #17a2b8;
	border: 1px solid #17a2b8;
	text-decoration: none;
}

.support-content .alert{
    padding: 12px 12px;
    margin-bottom: 10px;
    border: 1px solid transparent;
	border-radius: 13px;
    width: 100%;
}

.support-content .alert-warning{
    color: #856404;
	color: #fff;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.support-content .alert-danger{
    /* color: #721c24; */
	color: #fff;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.support-content .alert-success{
    /* color: #155724; */
	color: #fff;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.support-content .alert-info{
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

.support-content .alert-primary{
    color: #004085;
	color: #fff;
    background-color: #cce5ff;
    border-color: #b8daff;
}

#delete-dialog .btn-remove-dialog{
	display: flex;
	align-items: flex-start;
	justify-content: center;
	width: 100%;
}

#delete-dialog .btn-remove-dialog button.btn{
	margin: 0 5px;
	font-size: 15px;
	padding: 10px 12px;
}

.support-content .block-submit-btn-win{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	width: 100%;
}

.support-content .block-submit-btn-win .btn{
	font-size: 14px;
	border-radius: 13px;
	padding: 6px 12px;
}

form#add-support-reply textarea[name=message]{
	width: 100%;
	padding: 10px;
	border-radius: 13px;
}

.support-content .success-message,
.support-content .delete-message{
	background: #56b665;
	color: #fff;
	text-align: center;
	width: 100%;
	display: flex;
    align-items: flex-start;
    justify-content: center;
	flex-wrap: wrap;
	padding: 15px;
}

.support-content .delete-message{
	background: #c91517;
}

.support-content label,
.support-content .form-heading{
	width: 100%;
    margin: 0;
    font-weight: 600;
    font-size: 16px;
    color: #333e48;
}

.support-content .pdp-form-heading{
	font-size: 14px;
    width: 100%;
    margin: 0 0 10px;
}

.support-content .answer{
	width: 100%;
	display: flex;
    align-items: flex-start;
    justify-content: center;
	flex-wrap: wrap;
}

.support-content div.ok,
.support-content span.ok,
.support-content div.success,
.support-content span.success{
	color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
	margin-top: 15px;
	padding: 7px 15px;
	text-align: center;
    width: 100%;
	display: flex;
    align-items: center;
    justify-content: center;
	position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
	border-radius: 5px;
}

.support-content div.error,
.support-content span.error{
	color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
	margin-top: 15px;
	text-align: center;
    width: 100%;
	display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 15px;
    margin-bottom: 10px;
    border: 1px solid transparent;
    border-radius: 5px;
    width: 100%;
}

.support-content small.notification{
	background: #17a2b8;
	width: 11px;
	height: 11px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: #fff;
	line-height: 1;
	font-size: 14px;
	margin-right: 10px;
	position: absolute;
	right: 20px;
}

.support-content small.notification.blink{
  -webkit-animation: blink 1.5s linear infinite;
  animation: blink 1.5s linear infinite;
}

@-webkit-keyframes blink{
	100%{
		background: #17a2b8;
		opacity: 1;
	}
}

@keyframes blink{
	100%{
		background: #17a2b8;
		opacity: 0;
	}
}

form#add-support-reply{
	width: 100%;
	padding: 15px;
	background: #fff;
	position: absolute;
	bottom: 0;
	left: 0;
	border-top: 1px solid #E9EBFA;;
}

.support-content{
	width: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	background: #fff;
	padding: 0 8px 15px 15px;
	margin-top: 0;
	font-weight: 500!important;
	letter-spacing: 0;
	font-size: 15px;
	position: relative;
	flex-wrap: wrap;
}

.support-content.user-support-block .message-list{
	min-height: 200px;
	height: calc(100vh - 545px);
    flex-direction: column-reverse;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

.support-content.user-support-block form#add-support-reply{
	position: static;
}

.support-content.user-support-block .form-add-support{
	width: 100%;
    order: 1;
}

.support-content.user-support-block .role-message{
	display: none;
}

.support-content.user-support-block .alert-success,
.support-content.user-support-block .alert-danger,
.support-content.user-support-block .alert-primary,
.support-content.user-support-block .alert-warning{
	color: #555;
}

.support-content.user-support-block form#add-support-reply textarea[name=message]{
	color: #555;
}

.support-content.user-support-block .container-btn-more{
	position: absolute;
	top: 46px;
	left: 0;
}

























.support-content h1.page-title{
	font-size: 26px;
	margin: 0 0 10px;
	font-weight: 600!important;
}

.themeDark .modal-overflow{
	position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 16px;
    background-color: rgba(3,11,21,.85);
	opacity: 0;
	z-index: -1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100vh;
	display: none;
}

.themeDark .modal-overflow.active{
	z-index: 191;
	opacity: 1;
	display: flex;
}

.themeDark .modal-container{
	width: 100%;
	height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
	display: none;
}

.themeDark .modal-container.active{
	opacity: 1;
	z-index: 192;
	display: flex;
}

.themeDark .modal-win{
	display: none;
	z-index: -1;
	position: relative;
	padding: 0;
	width: 400px;
	height: auto;
	max-height: 80vh;
	background: #fff;
	overflow-y: auto;
	border-radius: 5px;
}

.themeDark .modal-win.active{
	z-index: 193;
	display: block;
}

.themeDark .close-small{
	width: 28px;
    height: 28px;
    border: none;
    font-weight: 300;
    font-size: 28px;
    line-height: 28px;
    background-color: transparent;
    color: #c6c6c6;
    padding: 0;
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    z-index: 10;
    transition: color .1s ease-in-out;
	cursor: pointer;
}

.themeDark .close-small svg{
	fill: #c6c6c6;
}

.themeDark .parent-modal-win{
	display: flex;
	justify-content: space-between;
	background-color: #fff;
}

.themeDark .h-modal-win{
	font-weight: 600;
	text-align: center;
	font-size: 23px;
	margin: 36px 0 12px;
	color: #333e48;
	width: 100%;
}

.themeDark .pdp-h-modal-win{
	font-weight: 400;
	text-align: center;
	font-size: 16px;
	margin: 0 0 20px;
	color: #333e48;
	width: 100%;
}

.themeDark .content-modal-win{
	width: 100%;
	padding: 0 32px 32px 32px;
	display: flex;
    align-items: flex-start;
    justify-content: space-between;
	flex-wrap: wrap;
}

.themeDark .content-modal-win form{
	width: 100%;
}

.support-content .hidden{
	display: none!important;
}

#chat-main-block .chat-main-container{
    border-radius: 0;
    overflow: inherit
}

#chat-main-block .h-chat-main-block{
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 800;
    padding-bottom: 13px;
    border-bottom: 2px solid #F3F6FF;
}

#chat-main-block .chat-icon{
    padding: 12px;
    background: linear-gradient(180deg, #560EEC 0%, #9445F0 100%);
    box-shadow: 0px 1px 4px 0px #6016EC;
    border-radius: 10px;
    margin-right: 8px;
}

#chat-main-block .chat-icon svg{
    fill: #fff;
}

#chat-main-block .chat-notice-icon{
    margin-left: auto;
    padding: 7px;
    background-color: #E8EBFE;
    border-radius: 6px;
    position: relative;
    display: flex;
	cursor: pointer;
}

#chat-main-block .notice-value{
    position: absolute;
    height: 16px;
    width: 16px;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: #E8EBFE;
    border: 2px solid #fff;
    border-radius: 50%;
    top: -8px;
    right: -8px;
    font-size: 10px;
}

#chat-main-block .chat-notice-icon.active{        
    background-color: #F85C4D;
}

#chat-main-block .chat-notice-icon.active .notice-value{
    display: flex;
}

#chat-main-block .chat-notice-icon svg{    
    fill: #F85C4D;
}

#chat-main-block .chat-notice-icon.active svg{    
    animation-name: example;
    animation-duration: 3s;
    animation-iteration-count: infinite;    
    fill: #FFF;
}

#chat-main-block .support-content{
    height: calc(100% - 43px);
    padding: 13px 0 0;
    overflow: auto;
}

#chat-main-block .no-scroll-list .support-content {
    overflow: hidden;
}

#chat-main-block .no-scroll-list .support-content .list-dialogs {
    display: none;
}

#chat-main-block .support-content .container-btn-more{    
    margin-top: auto !important;
}

#chat-main-block .support-content .one-list-dialogs:first-child{    
    border-top: none;
}

#chat-main-block .support-content .one-list-dialogs{    
    margin: 0;
    padding: 0;
    border-bottom: none;
    position: relative;
    padding-left: 48px;
}

#chat-main-block .support-content .one-list-dialogs::before{    
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 38px;
    height: 38px;
    background-color: #E8EBFE;
    border-radius: 10px;
}

#chat-main-block .support-content .noanswered.one-list-dialogs::before{
    background: linear-gradient(180deg, #1356D8 0%, #619BFC 100%);
}

#chat-main-block span.open-chat{    
    font-size: 13px;
}

#chat-main-block .support-content .date-one-list-dialogs{    
    font-size: 10px;
    color: #969AB6;
    position: relative;
}
#chat-main-block .support-content .message-one-list-dialogs{
    height: auto;
    padding: 10px 15px;
    background-color: #F8F9FE;
    margin-top: 5px;
    margin-bottom: 30px;
    width: calc(100% - 30px);
    border-radius: 10px;
	min-height: 36px;
    max-height: 53px;
	overflow: hidden;
}
#chat-main-block .support-content .message-one-list-dialogs span{
    display: block;
    height: 100%;
	overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
            line-clamp: 2; 
    -webkit-box-orient: vertical;
}
#chat-main-block .support-content .noanswered .message-one-list-dialogs{
    background: linear-gradient(180deg, #1356D8 0%, #619BFC 100%);
    color: #fff;
}

#chat-main-block .support-content .closed-chat.one-list-dialogs::before{
    background: #F85C4D;
	opacity: 0.5;
}

#chat-main-block .support-content .closed-chat .message-one-list-dialogs{
    background: #F85C4D;
    color: #fff;
	opacity: 0.5;
}

#chat-main-block .support-content .load-more{
    background: linear-gradient(180deg, #560EEC 0%, #9445F0 100%);
    font-weight: 700;
    padding: 10px 20px;
    width: 100%;    
    border-radius: 8px;
    border: none;
}
#chat-main-block .support-content .load-more:hover{
    background: linear-gradient(180deg, #4709C6 0%, #9445F0 100%);
}

#chat-main-block .support-content .opened-chat.active{    
    padding: 0;
}

#chat-main-block .support-content .message-list{    
    padding: 0;
    /* height: calc(100% - 209px); */
    height: calc(100% - 162px);
    flex-direction: column-reverse;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

#chat-main-block .support-content .message-list pre{    
    display: none;
}

#chat-main-block .close-chat-container{    
    border-radius: 8px;
    font-weight: 700;
    display: flex;
    align-items: center;
    padding: 0 15px;
    margin-top: 13px;
    cursor: pointer;
	width: calc(100% - 2px);
}

#chat-main-block .close-chat{    
    position: static;
    margin-right: 10px;
}

#chat-main-block form#add-support-reply{    
    border-top: 2px solid #F3F6FF;
    padding: 15px 0;
}

#chat-main-block form#add-support-reply textarea[name=message]{    
    border-radius: 8px;
    resize: none;
}

.support-content .form-group.message_reply{
	position: relative;
}

.support-content .file_chat_attachment{
	position: absolute;
	width: 22px;
	height: 22px;
	/* background: #F85C4D; */
	bottom: 8px;
	right: 8px;
	color: #E8EBFE;
	cursor: pointer;
}

.support-content .file_chat_attachment input{
	position: absolute;
	width: 22px;
	height: 22px;
	opacity: 0;
	z-index: 5;
	cursor: pointer;
}

.support-content .file_chat_attachment svg{
	position: absolute;
	width: 22px;
	height: 22px;
	opacity: 1;
	z-index: 3;
	fill: #383D5D;
}

.support-content .file_chat_attachment.selected_file svg{
	fill: #7FB53C;
}



.darkMainTheme .support-content .file_chat_attachment svg{
	fill: #F8F9FE;
}

.darkMainTheme .support-content .file_chat_attachment.selected_file svg{
	fill: #8FD143;
}





#chat-main-block .support-content .form-group{
    margin-bottom: 10px;
	position: relative;
}

#chat-main-block .support-content .block-submit-btn-win .btn{
    font-weight: 700;
    border-radius: 8px;
    padding: 10px 7px;
    width: 100%;
    background: linear-gradient(180deg, #560EEC 0%, #9445F0 100%);
    border-color: #560EEC;
}

#chat-main-block .support-content .block-submit-btn-win .btn:hover{
    background: linear-gradient(180deg, #4709C6 0%, #9445F0 100%);
}

#chat-main-block .support-content .block-submit-btn-win .btn + .btn{
    margin-left: 7px;
    background: none;
    border-color: #f36951;
    color: #f36951;
}

#chat-main-block .support-content .block-submit-btn-win .btn + .btn:hover{
    background: #f36951;
    color: #fff;
}

#chat-main-block .support-content .block-submit-btn-win .btn.btn-primary-info{
    border-color: #1356D8;
    color: #1356D8;
}

.darkMainTheme #chat-main-block .support-content .block-submit-btn-win .btn.btn-primary-info{
    color: #F8F9FE;
}

#chat-main-block .support-content .block-submit-btn-win .btn.btn-primary-info:hover{
    background: #1356D8;
    color: #fff;
}

#chat-main-block .support-content .info-one-message {
    width: auto;
    padding-right: 10px;
}

#chat-main-block .support-content .login-message {
    background: none;
    padding: 0;
    border-radius: 0;
    color: inherit;
    font-size: 12px;
    font-weight: 800;
}

#chat-main-block .support-content .one-message.User .content-one-message {
    background: #e5e7f1;
}

.space-close-chat{
	height: calc(100vh - 200px);
}



@keyframes example {
  0% {transform: rotate(10deg);}
  5% {transform: rotate(0deg);}
  10% {transform: rotate(10deg);}
  15% {transform: rotate(0deg);}
  20% {transform: rotate(10deg);}
  25% {transform: rotate(0deg);}
  100% {transform: rotate(0deg);}
}

@media screen and (max-width: 768px){
    
    form#add-support-reply{
        padding: 15px 0;
    }

	.support-content .id-one-list-dialogs a strong,
	.support-content .id-one-list-dialogs a strong:hover,
	.support-content .id-one-list-dialogs a:hover strong{
		font-size: 15px;
	}
	
	.support-content .id-one-list-dialogs a,
	.support-content .id-one-list-dialogs a:hover{
    	font-size: 12px;
	}
	
	.support-content .id-one-list-dialogs{
		width: 100px;
	}
	
	.support-content .message-one-list-dialogs{
		width: calc(100% - 200px);
		font-size: 12px;
		height: 34px;
		line-height: 1.2;
		padding-right: 7px;
	}
	
	.support-content .date-one-list-dialogs{
		width: 52px;
		font-size: 10px;
		padding-right: 0;
		line-height: 1.2;
	}
	
	.support-content .remove-one-dialog{
		width: 23px;
		height: 23px;
	}
	
	.support-content .remove-one-dialog img{
		width: 11px;
	}
	
	.support-content .message-list{
		margin: 0;
        padding: 10px 0 15px;
	}
	
	.support-content .one-message{
		/* width: calc(100% - 40px); */
		margin-top: 12px;
		margin-bottom: 12px;
	}
	
	.support-content .one-message.User{
		margin-left: 40px;
	}
	
	.support-content .one-profile-possibility{
		width: 100%;
		padding: 15px;
		margin: 0 0 15px;
	}
	
	.support-content .btn{
		padding: 10px 15px;
	}
	
	.support-content .panel-heading.note-toolbar .btn{
		padding: 2px 7px;
	}
	
	.support-content .menu-support a{
    	padding: 9px 20px;
	}
	
	.support-content h1.page-title{
		font-size: 20px;
	}
	
	.pulse-button,
	.pulse-button__icon,
	.pulse-button__text{
		width: 38px;
		height: 38px;
	}
	
	.pulse-button__text img{
		width: 22px;
	}
	
	.support-content .note-editable{
    	font-size: 17px;
	}
	
	.support-content .info-one-message{
		width: 70px;
		line-height: 1.2;
	}
	
	.support-content .edit-one-message{
		top: calc(50% - 28px);
	}
	
	.support-content .remove-one-message{
		top: calc(50% + 1px);
	}
	
	.support-content .edit-one-message,
	.support-content .remove-one-message{
		width: 25px;
		height: 25px;
	}
	
	.support-content .content-one-message .edit-one-message img{
		width: 12px!important;
	}
	
	.support-content .content-one-message .remove-one-message img{
		width: 12px!important;
	}
	
	
	
	
	
	
	
	
	
	
	
	
	.support-content.user-support-block{
		margin: 15px auto 0;
        padding: 0;
	}
	
	.support-content.user-support-block .message-list{
    	height: calc(100vh - 410px);
	}
	
	
	
	
	
	
	
	
	
}























