.questionarioPopup {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
	left: 0;
    background-color: rgba(0,0,0,0.7);
    z-index: 9;
}
.questionarioPopupContent {
    margin: 4% auto;
    overflow: auto;
    height: 90%;
    width: 80%;
    box-sizing: border-box;
}
.questionarioClose {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #fff;
    color: #222;
    font-family: Montserrat;
    font-size: 20px;
    width: 28px;
    height: 28px;
    line-height: 25px;
    text-align: center;
    display: block;
    cursor: pointer;
}
td.completed {
    color: green;
}
td.not_completed {
    color: salmon;
}