.wrapper{
	position: absolute;
    background-color: #184d65;
    top: 0px;
    right: 0px;
    left: 0px;
    padding: 50px 0 100px 0;
    min-height: 100%;
}

.body{
	max-width: 700px;
	min-height: 200px;
	width: 95%;
	background-color: white;
	margin-right: auto;
	margin-left: auto;
	padding: 40px;
	color: #2c2c2c;
}

.loading_wrap {
	margin-top: 50px;
	display: flex;
	justify-content: center;
}
.loading_box {
	height: 15px;
	width: 15px;
	margin: 0 15px;
	border-radius: 4px;
	background-color: white;
	animation: blinker 1.5s linear infinite;
}
.loading_box1 {
	animation-delay: 0s;
}
.loading_box2 {
	animation-delay: 0.3s;
}
.loading_box3 {
	animation-delay: 0.6s;
}
@keyframes blinker {  
  0% { background-color: white; }
  30% { background-color: #284d63;}
  60% { background-color: white; }
}

.survey_list_item {
	margin: 10px 0;
	position: relative;
}
.survey_list_a {
	text-decoration: none;
	padding: 10px;
	color: black;
	display: block;
	background-color: #ecf3f7;
	border: 1px solid #DDD;
	border-radius: 10px;
	padding-left: 40px;
}
.survey_list_a:hover {
	background-color: #e1edf3;
}
.completed_icon {
	color: #1ec3a1;
	position: absolute;
	top: 0px;
	left: 0px;
	margin: 10px;
	font-size: 22px;
}

.description {
	margin-top: 30px;
}
.post-description {
	margin-top: 30px;
}

.answerwrap {
	line-height: 21px;
	margin-bottom: 10px;
}
label {
	margin-left: 25px;
}
textarea {
	width: 90%;
}
.clickbox {
	position: absolute;
}

.logo_wrapper {
	margin: -20px 0 0 -20px;
}
.logo {
	max-width: 70%;
	height: 105px;
}
.logo-text {
	height: 70px;
	margin: 17px;
}

.question {
	font-family: 'BodoniSeventytwoITCW01-_731136',serif;
}

.hide_when_loading {
	display: none;
}

.bottompanel {
	padding-top: 20px;
}
.nextbtn {
	float:right;
}
.donebtn {
	float:right;
}
.startbtn {
	float:right;
}

.progressbarholder {
	border: 1px solid black;
	border-radius: 5px;
    margin: 0 40px 20px 40px;
}
.progressbar {
	background-color: #003a5d;
	height: 15px;
	width: 0%;
}

.button {
	background-color: #003a5d;
	color: white;
	border-radius: 20px;
    font-size: 15px;
    text-transform: uppercase;
    padding: 6px 25px;
    font: 400 15px system-ui;
    text-decoration: none;
}
.button:hover {
	background-color: #002a4d;
}

.clear {
	clear: both;
}

.footer {
	border-top: 1px solid #70191ca1;
    margin: 30px 90px 0;
    padding: 10px 0 0 0;
    text-align: center;
    font-size: 14px;
    color: #666;
}