[hidden].survey-popup {
	display: none !important;
}

.survey-popup {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 1100;
	box-sizing: border-box;
	width: 312px;
	padding: 20px;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 1px 6px 0 #b6bdcc;
	color: #192b5b;
}

.survey-popup--above-cta {
	bottom: 135px;
}

.survey-popup__title {
	margin: 0;
	color: #192b5b;
	font-size: 14px;
	font-weight: bold;
	line-height: 21px;
}

.survey-popup__meta {
	margin-top: 5px;
	color: #888;
	font-size: 14px;
	font-weight: 500;
	line-height: 14px;
}

.survey-popup__meta-value {
	margin-left: 5px;
}

.survey-popup__button {
	display: block;
	box-sizing: border-box;
	width: 100%;
	height: 28px;
	margin-top: 15px;
	border-radius: 4px;
	background: #192b5b;
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	line-height: 28px;
	text-align: center;
	text-decoration: none;
}

.survey-popup__button:hover,
.survey-popup__button:focus {
	background: #47557c;
	color: #fff;
}

.survey-popup__close {
	position: absolute;
	top: 10px;
	right: 22px;
	width: 20px;
	height: 20px;
	padding: 0;
	border: 1px solid #192b5b;
	border-radius: 50%;
	background: #fff;
	cursor: pointer;
}

.survey-popup__close::before,
.survey-popup__close::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 1px;
	background: #192b5b;
}

.survey-popup__close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.survey-popup__close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.survey-popup__close:focus,
.survey-popup__button:focus {
	outline: 2px solid #4fa5d8;
	outline-offset: 2px;
}