.pw-survey-popover-container
{
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	pointer-events: none;
	z-index: 10000000;
	
	
}

.pw-survey-popover
{
	position: absolute;
	bottom: 0;
	right: 30px;
	background-color: var(--wp--preset--color--blue);
	color: white;
	width: 270px;
	padding: 10px;
	pointer-events: auto;
	transform: translateY(100%) scale(.5);
	transition: .2s all;
	border-top: 2px solid white;
	border-right: 2px solid white;
	border-left: 2px solid white;
	border-radius: 3px 3px 0 0;
}

@media screen and (min-width: 782px)
{
	.pw-survey-popover
	{
		padding: 20px;
	}
}


.pw-survey-popover-container.active .pw-survey-popover
{
	transform: translateY(0) scale(1);
}

#pw-survey-dismiss
{
	font-size: 0;
	background-color: transparent;
	position: absolute;
	right: 10px;
	top: 10px;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border: 0 none transparent;
}

#pw-survey-dismiss:hover
{
	color: var(--wp--preset--color--yellow);
}

#pw-survey-dismiss:after
{
	content: '\00D7';
	font-size: 28px;
	
}

.pw-survey-popover-buttons
{
	margin-top: 25px;
	margin-bottom: 5px;
}

.pw-survey-popover .button
{
	background-color: var(--wp--preset--color--yellow);
	border-radius: 0px;
	padding: 7px 10px;
	text-transform: uppercase;
	font-weight: bold;
	color: var(--wp--preset--color--blue);
}