/* Оформление списка достижений (НАЧАЛО) */

.achievement-filter {
	text-align: center;
	margin-top: 1em;
}

.achievement-filter .wrapper {
	position: relative;
	display: inline-block;
	margin: 0 auto 10px;
	padding: 15px;
	border-radius: 10px;
	background: rgba(0, 0, 0, 0.2);
}

.achievement-filter .wrapper img {
	display: block;
	float: left;
	height: 40px;
	margin-left: -5px;
	margin-right: 10px;
}

.achievement-filter .wrapper input {
	width: 280px;
	height: 40px;
	margin: 0;
	padding: 0 10px;
	color: #000;
	font-size: 1.1em;
	line-height: 40px;
	border: 0;
	border-radius: 5px;
	background: #FFF;
}

.achievement-filter .wrapper input:focus {
	outline: 0;
}

@media(max-width: 500px) {
	.achievement-filter .wrapper img {
		display: none;
	}

	.achievement-filter .wrapper input {
		width: 100%;
		min-width: 240px;
	}
}

.achievements {
	margin: 30px auto 0;
	text-align: center;
}

.achievements.container > div {
	display: none;
}

.achievements .no-match {
	display: none;
	margin: 100px 0;
	color: #CCC;
	text-align: center;
}

.achievements .achievement {
	float: left;
	position: relative !important;
	display: inline-block;
	width: 100% !important;
	max-width: 360px !important;
	height: 100px !important;
	margin: 0 15px 15px !important;
	text-align: left !important;
}

@media(max-width: 1250px) {
	.achievements {
		max-width: 785px;
	}
}

@media(max-width: 900px) {
	.achievements {
		max-width: 600px;
	}

	.achievements .achievement {
		float: none;
		margin: 0 0 15px !important;
	}
}

.achievements .achievement .name {
	display: inline-block;
	margin: 0 0 10px;
	font-size: 0.95em;
	line-height: 16px;
}

.achievements .achievement .name a {
	color: #FFF;
}

.achievements .achievement .name:hover {
	text-decoration: underline;
	cursor: pointer;
}

.achievements .achievement .picture {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: -1;
}

.achievements .achievement .picture img {
	float: right;
	height: 64px;
}

.achievements .achievement .achievement-description,
.achievements .achievement .progress {
	margin-right: 64px;
	color: #ABABAB;
	font-size: 0.9em;
	overflow: hidden;
	cursor: default;
	margin-bottom: 5px;
}

.achievements .achievement.stripe .achievement-description,
.achievements .achievement.stripe .progress {
	min-height: 50px;
	max-height: 100px;
	margin-right: 0;
}

.achievements .achievement.stripe .achievement-description:hover,
.achievements .achievement.stripe .progress:hover {
	margin: -5px -10px 0;
	padding: 5px 10px;
	border-radius: 5px;
	background: rgba(0, 0, 0, 0.75);
}

.statistics .achievements .achievement .progress b {
	color: #FFF;
	font-weight: normal;
}

.achievements .achievement .achievement-date {
	display: block; /* Это сделает элемент блочным, размещая его на новой строке */
	clear: both; /* Это предотвратит обтекание соседними элементами */
	text-align: left; /* Выравнивание текста, при необходимости измените на center или right */
	/* Дополнительные стили можно добавить здесь */
}

/* Оформление списка достижений (КОНЕЦ) */


#toTop {
	display: none;
	position: fixed;
	bottom: 10px;
	right: 10px;
	width: 100px;
	height: 30px;
	text-align: center;
	cursor: pointer;
	color: #333;
	font-size: 90%;
	line-height: 28px;
	border: 1px solid #ccc;
	background: #f7f7f7;
}