.cw-atc-modal {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: none;
}

.cw-atc-modal.is-active {
	display: block;
}

.cw-atc-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
}

.cw-atc-modal__content {
	position: relative;
	z-index: 2;
	width: calc(100% - 32px);
	max-width: 520px;
	margin: 10vh auto 0;
	background: #ffffff;
	border-radius: 8px;
	padding: 32px 24px 24px;
	box-sizing: border-box;
}

.cw-atc-modal__close {
	position: absolute;
	top: 10px;
	right: 12px;
	border: 0;
	background: transparent;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	padding: 0;
	color: #000000;
}

.cw-atc-modal__message-wrap {
	display: flex;
	align-items: center;
	gap: 14px;
	padding-right: 20px;
}

.cw-atc-modal__icon {
	flex: 0 0 24px;
	display: block;
}

.cw-atc-modal__icon circle {
	fill: #BA9359;
}

.cw-atc-modal__icon path {
	fill: #ffffff;
}

.cw-atc-modal__message {
	font-size: 16px;
	line-height: 1.5;
}

body.cw-atc-modal-open {
	overflow: hidden;
}