.wcsbs-offers {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.wcsbs-offers[hidden] {
	display: none;
}

.wcsbs-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .58);
}

.wcsbs-modal-content {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 12px;
	width: min(520px, 100%);
	max-height: calc(100vh - 40px);
	overflow-y: auto;
}

.wcsbs-offer {
	padding: 22px;
	border: 1px solid #d9d9d9;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 18px 60px rgba(0, 0, 0, .35);
	color: #222;
}

.wcsbs-offer__message {
	margin: 0 0 8px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.35;
}

.wcsbs-offer__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.wcsbs-offer__error {
	margin: 12px 0 0;
	color: #b32d2e;
}

.wcsbs-offer.is-loading {
	opacity: .85;
}

.wcsbs-offer button:disabled,
.wcsbs-offer .button:disabled {
	border-color: #aaa !important;
	background: #c7c7c7 !important;
	box-shadow: none !important;
	color: #666 !important;
	cursor: not-allowed;
	opacity: 1;
}

@media (max-width: 520px) {
	.wcsbs-offers {
		padding: 16px;
	}
}
