html{
	width:100%;
	margin-top:-100vh;
	animation:pageLoad 0.5s ease-in-out forwards;
}

@keyframes pageLoad{
	from{margin-top:-100vh;}
	to{margin-top:0vh;}

}
body{
	padding:0px;
	margin:0px;
	font-size:20px;
}

#header{
	display:block;
	height:auto;
	overflow:hidden;
	/text-align:center;
	/border-bottom:10px solid orange;
	margin:20px;
	padding-bottom:0px;
}

#header h1{
	display:inline;
	color:#00FF0f;
	overflow:none;
	font-family:Monotype Corsiva,Georgia,serif;
	padding-top:20px;
	font-size:130%;
	}

#header img{
	height:50px;
	margin-left:-100px;
	width:auto;
	animation:img 1s ease-in-out 0.8s forwards;
}


@keyframes img{
	from{margin-left:-100px;}
	to{margin-left:5px;}

}
#guyprop{
	max-width:70%;
}
.buttons{
	float:right;
	display:inline;
	border:none;
	float:right;
	margin-right:20px;
	margin-top:5px;
	cursor: pointer;
	overflow-y:hidden;
	}

#header #login-open-button,#logout-button,#profile-button,#notification-button,#messages-button{
	border:none;
	/background-color:#0098FF;
	background-color:#FF0000;
	font-size:70%;
	color:white;
	padding:10px;
	padding-left:58.5px;
	padding-right:58.5px;
	cursor: pointer;
	opacity:0;
	animation:login_open_button 0.4s ease-in-out 0.3s forwards;
}

#header #login-open-button:hover,#logout-button:hover,#profile-button:hover,#notification-button:hover,#messages-button:hover
{
	background-color:#00BFFF;
}


@keyframes login_open_button{
	from{transform:scale(0);opacity:0;}
	to{transform:scale(1);opacity:1;}

}

#logout-button,#profile-button,#notification-button,#messages-button{
}

#logout-button{
	animation:login_open_button 0.4s ease-in-out forwards;
}
#profile-button{
	animation:login_open_button 0.4s ease-in-out 0.3s forwards;
}
#messages-button{
	animation:login_open_button 0.4s ease-in-out 0.6s forwards;
}
#notification-button{
	animation:login_open_button 0.4s ease-in-out 0.8s forwards;
}

#header #signup-open-button{
	border:none;
	/background-color:#0098FF;
	background-color:#FF0000;
	font-size:70%;
	color:white;
	padding:10px;
	padding-left:54px;
	padding-right:54px;
	cursor: pointer;
	animation:signup_open_button 0.4s ease-in-out forwards;
	opacity:0;
}

#header #signup-open-button:hover
{
	background-color:#00BFFF;
	}

@keyframes signup_open_button{
		from{transform:scale(0);opacity:0;}
	to{transform:scale(1);opacity:1;}

}


#modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    padding-top: 60px;
}

.modal-content {
    background-color: #fefefe;
    margin: 5px auto; /* 15% from the top and centered */
    border: 1px solid #888;
    width: 30%; /* Could be more or less, depending on screen size */
	padding:10px;
}

/* The Close Button */
.close {
    /* Position it in the top right corner outside of the modal */
    position: absolute;
    right: 25px;
    top: 0;
    color: #000;
    font-size: 35px;
    font-weight: bold;
}

/* Close button on hover */
.close:hover,
.close:focus {
    color: red;
    cursor: pointer;
}

/* Add Zoom Animation */
.animate {
    -webkit-animation: animatezoom 0.6s;
    animation: animatezoom 0.6s;
}

@-webkit-keyframes animatezoom {
    from {-webkit-transform: scale(0)}
    to {-webkit-transform: scale(1)}
}

@keyframes animatezoom {
    from {transform: scale(0)}
    to {transform: scale(1)}
}

form {
    border: 3px solid #f1f1f1;
}

/* Full-width inputs */
input[type=text], input[type=password] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

#steps-content{
	margin:20px;
	width:75%;
	text-align:center;
	display:inline-block;
	/background-color:red;
}

#response_form{
	margin:auto;
	padding:30px;
	display:table;
}

#response_table
{
	margin:auto;
	padding:30px;
	display:table;
}
.content{
	text-align:center;
	width:70%;
	border-right:3px dashed brown;
	padding:0px;
}
.response_form_row{
	text-align:left;
	display:table-row;
}
.response_form_cell1,.response_form_cell2{
	display:table-cell;
}

.response_table_row{
	text-align:left;
	display:table-row;
}
.response_table_cell1,.response_table_cell2{
	display:table-cell;
}
.response_table_cell1,.response_form_cell1{
	border-right:2px solid red;
	padding-right:10px;
	color:green;
}

.response_table_cell2,.response_form_cell2{
	color:orange;
	padding-left:30px;
}
.content h2{
	color:#0070FF;
}
#form_tag_response{
	border:none;
}
#edit_button_form{
	border:none;
}

#edit_button,#submit_button{
	color:white;
	border:none;
	background-color:red;
	padding:10px;
	padding-left:58.5px;
	padding-right:58.5px;
	cursor: pointer;
}

#edit_button:hover,#submit_button:hover{
	background-color:green;
}
#login-button,#cancel-button
{
	width:100%;
	border:none;
	background-color:#00AA00;
	font-size:70%;
	color:white;
	padding:10px;
	padding-left:58.5px;
	padding-right:58.5px;
	cursor: pointer;
}


#cancel-button{
	margin-top:10px;
	border:none;
	background-color:red;
}

#login-button:hover{
	background-color:#008800;
}

#cancel-button:hover{
	background-color:#AA0000;
	}

#questionaire_fill_msg{
		padding: 5px;
		margin-left:17px;	
		margin-right:17px;
		display:block;
		background-color:#ffebe8;
		border:1px solid #dd3c10;
}
