/* Стили для аукциона */
.auction-accordion {
	margin-bottom: 20px;
}

.auction-header {
	position: relative;
}

.auction-title {
	padding: 15px;
	background: #f8f9fa;
	border: 1px solid #ddd;
	border-radius: 4px;
	cursor: pointer;
	display: flex;
	align-items: center;
	transition: all 0.3s ease;
}

.auction-title:hover {
	background: #e9ecef;
}

.auction-title.active {
	background: #e9ecef;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.auction-title.active .icon-plus:after {
	transform: rotate(90deg);
}

.auction-title[data-disabled="true"] {
	cursor: not-allowed;
	opacity: 0.7;
}

.auction-content {
	border: 1px solid #ddd;
	border-top: none;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	padding: 15px;
	background: #fff;
}

.icon-plus {
	position: relative;
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-right: 10px;
}

.icon-plus:before,
.icon-plus:after {
	content: '';
	position: absolute;
	background-color: #333;
	transition: transform 0.3s ease;
}

.icon-plus:before {
	top: 7px;
	left: 0;
	width: 16px;
	height: 2px;
}

.icon-plus:after {
	top: 0;
	left: 7px;
	width: 2px;
	height: 16px;
}