div.news-detail img.detail_picture {
	float:left;
	margin:0 20px 10px 0;
}
.news-date-time {
	color:#828282;
}
.news-item-name {
	color:#c9a737;
	font-size: 14px;
	margin-bottom: 10px;
}
.news-detail ul{
overflow: hidden;
}

.news-detail-content.text-content img {
	max-width: 800px !important;
}

/* MODAL WINDOW */
.modal-window {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 500;
	height: 0;
}
.modal-window .trigger {
	position: relative;
	top: 0;
	display: block;
	margin-top: -30px;
}
.modal-window .outer {
	position: fixed;
	width: 100%;
	height: 100%;
	min-height: 100%;
	max-height: 100%;
	top: 0;
	left: 0;
	z-index: 100;
	overflow-y: auto;
}
.modal-window .trigger:checked + .outer {
	display: block;
}
.modal-window .box {
	position: absolute;
	top: 0;
	padding: 0 20px;
	width: 100%;
	min-height: 100%;
	box-sizing: border-box;
}
.modal-window .overlay {
	z-index: 10;
	position: absolute;
	top: 0;
	right: 0;
	opacity: 1;
	background: rgba(0,0,0,.65);
	min-height: 100%;
	width: 100%;
}
.modal-window .inner {
	width: 100%;
	opacity: 1;
	max-width: 600px;
	margin: 80px auto;
	background: #fff;
	position: relative;
	overflow: hidden;
	z-index: 20;
	box-shadow: 0 2px 15px -2px rgba(0,0,0,.6);
}
.modal-window .close {
	display: block;
	position: absolute;
	text-align: center;
	font-family: "Arial", sans-serif;
	font-size: 26px;
	line-height: 30px;
	margin: 5px 5px 0 0;
	top: 0;
	right: 0;
	color: #333;
	width: 30px;
	height: 30px;
	z-index: 5;
	-webkit-user-select:none;
	-moz-user-select:none;
	user-select: none;
}
.modal-window .close:active {
	line-height: 32px;
	background: #efefef;
}
.modal-window .content {
	position: relative;
	padding: 40px 30px;
}

.modal-window .error {
	display: block;
	color: red;
	margin-bottom: 15px;
}

.form-control {
	display: block;
	width: 100%;
	margin-bottom: 15px;
}

.form-control label {
	display: block;
	margin-bottom: 5px;
	font-size: 18px;
}

.form-control .ui-input__control {
	padding: 11px;
}

.lds-ellipsis {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 20px;
}
.lds-ellipsis div {
	position: absolute;
	top: 2px;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: #fff;
	animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
	left: 8px;
	animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
	left: 8px;
	animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
	left: 32px;
	animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
	left: 56px;
	animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
	0% {
		transform: scale(0);
	}
	100% {
		transform: scale(1);
	}
}
@keyframes lds-ellipsis3 {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(0);
	}
}
@keyframes lds-ellipsis2 {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(24px, 0);
	}
}