#paca-frontend-widget-modal {
	position: fixed;
	z-index: 99999;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	display: flex;
	align-items: flex-start;
	justify-content: center;
	overflow-y: auto;
}

.paca-frontend-widget-modal-content {
	background: #fff;
	padding: 1rem;
	border-radius: 8px;
	max-width: 500px;
	width: 100%;
	max-height: calc(100vh - 4rem);
	overflow-y: auto;
	box-shadow: 0 2px 1rem rgba(0, 0, 0, 0.2);
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin: auto 0;
}

#paca-frontend-widget-modal-close {
	background: transparent;
	border: none;
	font-size: 20px;
	cursor: pointer;
}

.paca-frontend-widget-modal-body {
	font-size: 1rem;
}

.paca-frontend-widget-modal-header,
.paca-frontend-widget-modal-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.paca-frontend-widget-modal-header h2 {
	margin: 0;
	font-weight: 600;
	font-size: 1.3rem;
}

.paca-frontend-widget-modal-footer {
	display: flex;
	justify-content: flex-end;
}

#paca-frontend-widget-modal-cancel {
	&:hover {
		cursor: pointer;
	}
}

.paca-summary-button {
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	z-index: 9999;

	&:hover {
		cursor: pointer;
	}
}