#info_section {
	padding: 10px 50px;
}

.messages-wrapper {
	min-height: calc(100vh - 300px);
	display: flex;
	align-items: center;
	justify-content: center;
}

.messages-wrapper .container {
	width: 100%;
}

.no-repertoire-message {
	text-align: center;
	padding: 40px 50px;
}

#info_section.no-repertoire-message {
	text-align: center;
	padding: 40px 50px;
}

#info_section.no-repertoire-message p {
	font-size: 18px;
	line-height: 1.6;
	margin-bottom: 20px;
	color: #333;
}

#info_section.no-repertoire-message p:first-of-type {
	font-size: 22px;
}

#info_section.no-repertoire-message strong {
	font-weight: 600;
	color: #000;
}

#info_section.no-repertoire-message a {
	color: #000;
	font-weight: bold;
	text-decoration: underline;
	transition: all 0.3s ease;
}

#info_section.no-repertoire-message a:hover {
	color: #333;
	text-decoration: underline;
}

.messages-empty {
	text-align: center;
	padding: 160px 20px 220px;
}

.messages-empty .cart-empty-icon {
	width: 144px;
	height: 144px;
	margin: 0 auto 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.messages-empty .cart-empty-icon svg {
	width: 124px;
	height: auto;
	display: block;
}

.messages-empty .cart-empty-icon svg path {
	fill: var(--float-basket-color);
}

.messages-empty .cart-empty-icon .count {
	position: absolute;
	top: -8px;
	right: -18px;
	background: var(--main-basket-count-bg-color);
	color: var(--txt-color);
	width: 64px;
	height: 64px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 40px;
	font-weight: 600;
	line-height: 1;
}

.messages-empty .empty-cart-text {
	font-size: 28px;
	margin: 10px 0 30px;
}

.messages-empty .empty-cart-actions {
	margin-top: 10px;
}

.cart_buy_button.cart_buy_button--compact {
	flex: 0 0 auto;
	padding: 10px 40px;
	background: var(--btn-secondary-color);
	border: 1px solid var(--btn-primary-color);
	font-size: 15px;
	color: var(--btn-secondary-txt-color);
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
}

.cart_buy_button.cart_buy_button--compact:hover {
	background: var(--hover-btn-primary-color);
	color: var(--txt-color);
}

.messages-empty .empty-cart-actions a,
.messages-empty .button a,
.messages-empty a.cart_buy_button,
.messages-empty button {
	flex: 0 0 auto;
	padding: 10px 30px;
	background: var(--btn-secondary-color);
	border: 1px solid var(--btn-primary-color);
	font-size: 17px;
	color: var(--btn-secondary-txt-color);
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
}

.messages-empty .empty-cart-actions a:hover,
.messages-empty .button a:hover,
.messages-empty a.cart_buy_button:hover,
.messages-empty button:hover {
	background: var(--hover-btn-secondary-color);
	text-decoration: none;
	color: var(--btn-secondary-txt-color);
}

.messages-text {
	font-size: 40px;
	text-align: center;
	margin-top: 30px;
	margin-bottom: 30px;
	line-height: 1.3;
}

.ticket-info>span>a,
.error-txt>span>a {
	color: #fff !important;
	font-size: 20px;
}

.ticket-info>span:hover>a,
.error-txt>span:hover>a {
	color: #fff !important;
}

.error-icon {
	position: absolute;
	right: 20px;
	bottom: 30px;
	color: #dd1010;
}

.fa-exclamation-circle:before {
	font-size: 20px;
}

@media (max-width: 767px) {
	.messages-wrapper {
		min-height: calc(100vh - 180px);
	}

	.no-repertoire-message,
	#info_section.no-repertoire-message {
		padding: 30px 20px;
	}

	#info_section.no-repertoire-message p {
		font-size: 16px;
	}

	#info_section.no-repertoire-message p:first-of-type {
		font-size: 18px;
	}

	.messages-empty {
		padding: 110px 20px 160px;
	}

	.messages-empty .empty-cart-text {
		font-size: 20px;
		margin: 10px 0 30px;
	}

	.messages-empty .cart-empty-icon {
		width: 108px;
		height: 108px;
		margin-bottom: 32px;
	}

	.messages-empty .cart-empty-icon svg {
		width: 85px;
	}

	.messages-empty .cart-empty-icon .count {
		width: 50px;
		height: 50px;
		font-size: 26px;
		top: -10px;
		right: -14px;
	}
}