#survey-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.survey-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
    position: relative;
}
.survey-content p{
	margin-bottom: 15px;
}
.survey-content button{
	border: 1px solid #B7B7B7;
	background: white;
	transition border .25s ease-in-out, background .25s ease-in-out;
}
.survey-content button:hover{
	border-color: #002C7E;
	background: #C0D2FF;
}