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

.survey-popup {
	position: fixed;
	right: calc(16 / 375 * 100vw);
	bottom: calc(calc(16 / 375 * 100vw) + env(safe-area-inset-bottom));
	z-index: 1100;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	width: calc(100% - calc(32 / 375 * 100vw));
	padding: calc(8 / 375 * 100vw) calc(15 / 375 * 100vw);
	border-radius: calc(8 / 375 * 100vw);
	background: #fff;
	box-shadow: 0 calc(1 / 375 * 100vw) calc(6 / 375 * 100vw) 0 #b6bdcc;
	color: #192b5b;
}

.survey-popup--above-cta {
	bottom: calc(calc(72 / 375 * 100vw) + env(safe-area-inset-bottom));
}

.survey-popup__body {
	flex: 1 1 auto;
	min-width: 0;
}

.survey-popup__title {
	margin: 0;
	color: #192b5b;
	font-size: calc(12 / 375 * 100vw);
	font-weight: bold;
	line-height: calc(16 / 375 * 100vw);
	white-space: nowrap;
}

.survey-popup__meta {
	margin: 0;
	color: #888;
	font-size: calc(12 / 375 * 100vw);
	font-weight: 500;
	line-height: calc(16 / 375 * 100vw);
	white-space: nowrap;
}

.survey-popup__meta-value {
	margin-left: calc(5 / 375 * 100vw);
}

.survey-popup__button {
	flex: 0 0 auto;
	display: block;
	box-sizing: border-box;
	width: calc(100 / 375 * 100vw);
	height: calc(45 / 375 * 100vw);
	margin-right: calc(15 / 375 * 100vw);
	border-radius: calc(8 / 375 * 100vw);
	background: #192b5b;
	color: #fff;
	font-size: calc(14 / 375 * 100vw);
	font-weight: 500;
	line-height: calc(45 / 375 * 100vw);
	text-align: center;
	text-decoration: none;
}

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

.survey-popup__close {
	flex: 0 0 auto;
	position: relative;
	width: calc(20 / 375 * 100vw);
	height: calc(20 / 375 * 100vw);
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.survey-popup__close::before,
.survey-popup__close::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: calc(12 / 375 * 100vw);
    height: calc(1.5 / 375 * 100vw);
	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: calc(2 / 375 * 100vw) solid #4fa5d8;
	outline-offset: calc(2 / 375 * 100vw);
}