@import url('https://fonts.googleapis.com/css?family=Marvel');

/*Now the CSS*/
* {margin: 0; padding: 0;}
html, body { font-family: 'Marvel', sans-serif; font-size: 20px; width: 100%; text-align: center; }

#add_dog { font-size: 1em; display: inline-block; }
#add_dog table { text-align: left; width: 40em; }
#add_dog table tr td:first-child { width: 10em; }
#add_dog table tr td:last-child { margin-left: 1em; width: 20em;}

#add_dog table tfoot tr td { display:table-cell; margin-top: 1em; }
#add_dog table span.vereist { vertical-align:sub; font-weight: bold; color: red; float: right; }
.header { margin-bottom: 1em; }
#footer { display: block; margin-top: 3em; font-size: .7em; margin-bottom: 1em; }

#gegevens { margin-top: 1em; margin-bottom: 2em; display:inline-block; position:relative; width: auto; min-width: 800px; }

form {
	background-color: aliceblue;
	padding: 10px;
	border: solid 1px #85b1de;

background-image: -webkit-gradient(
	linear,
	left top,
	left bottom,
	color-stop(0.72, #F0F8FF),
	color-stop(1, #F8F8FF)
);
background-image: -o-linear-gradient(bottom, #F0F8FF 72%, #F8F8FF 100%);
background-image: -moz-linear-gradient(bottom, #F0F8FF 72%, #F8F8FF 100%);
background-image: -webkit-linear-gradient(bottom, #F0F8FF 72%, #F8F8FF 100%);
background-image: -ms-linear-gradient(bottom, #F0F8FF 72%, #F8F8FF 100%);
background-image: linear-gradient(to bottom, #F0F8FF 72%, #F8F8FF 100%);

	-webkit-box-shadow: #c0c0c0 0px 5px 8px;
	-moz-box-shadow: #c0c0c0 0px 5px 8px;
	box-shadow: #c0c0c0 0px 5px 8px;

	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
}

#ui-id-1,#ui-id-2,#ui-id-3,#ui-id-4 {
	border: 1px solid #ccc;
	font-size: .9em;
	font-weight: bold;
	-moz-outline: none;
	outline: none;
	color: black;
	background-color: #fa8072;
	background-image: none;

	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}

input:not([type="radio"]):not([type="checkbox"]):not([type="file"]) {
	border: 1px solid #ccc;
	padding: 5px 10px;
	text-decoration: none;
	color: #666;
	display: inline-block;
	-moz-outline: none;
	outline: none;
	background-color: #fafafa;
	width: 90%;

	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;

	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}


#menu {
	margin-top: 2em;
	margin-left:auto;
	margin-right:auto;
	z-index: 99;
	width: 800px;
}

#menu li a {
	display: block;
	float: left;
	margin-left: 2em;
	border: 1px solid #ccc;
	background-color: #fafafa;
	margin-bottom: .5em;
	padding: 5px 10px;
	text-decoration: none;
	color: #666;
	display: inline-block;
	-moz-outline: none;
	outline: none;

	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;

	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}
#menu li {
	text-align: center;
	list-style-type: none;

	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}

#menu ul {
	padding-top: 20px; position: relative;

	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}

/*Time for some hover effects*/
/*We will apply the hover effect the the lineage of the element also*/
input:hover:not([type="radio"]):not([type="checkbox"]):not([type="file"]), input:focus:not([type="radio"]):not([type="checkbox"]):not([type="file"]), #menu a:hover {
	background: #c8e4f8; color: #000; border: 1px solid #94a0b4;
}

/*
  Hide radio button (the round disc)
  we will use just the label to create pushbutton effect
*/
input[type="radio"],input[type="file"] {
    display:none;
    margin:10px;
}

/*
  Change the look'n'feel of labels (which are adjacent to radiobuttons).
  Add some margin, padding to label
*/
input[type="radio"] + label,input[type="file"] + label {
	cursor: pointer;
    display:inline-block;
    margin:-2px;
    padding: 4px 12px;
    background-color: #fafafa;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border: 1px solid #ccc;
	margin: 0 .1em;
	color: #666;
	font-size: .9em;
}
/*
 Change background color for label next to checked radio button
 to make it look like highlighted button
*/
input[type="radio"]:checked + label {
   background-image: none;
    background-color:#c8e4f8;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}
input[type="file"]:hover + label,input[type="radio"]:not(:checked):hover + label {
   background-image: none;
    background-color:#c8e4f8;
    color: black;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}

input[type="submit"],input[type="button"] {
	cursor: pointer;
}

input[type='text'] { font-family: 'Marvel', sans-serif; font-size: 1em; }

