@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');

/* Default */

:root {
    --primary-color: #23544D;
}

body {
	
    font-family: 'Open Sans', sans-serif;
    color: var(--primary-color);
	
}

fieldset {
	
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    padding: 0px;
	margin: 0px;
	
}

hr {
	
	height: 1px;
	border-width: 0;
	background-color: var(--primary-color);
	padding-left: 0px;
	margin: 0px;
		
}

body {
	
	padding: 0px;
	margin: 0px;
	background-color: white;
}

/* Header */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
	background-color: #F7F7F7;
}

header a {
	font-weight: bold;
	font-size: 22px;
	text-decoration: none;
	margin-left: 10px;
	margin-bottom: 7px;
	margin-top: 7px;
	display: inline-block;
	color: var(--primary-color);
}

header fieldset {
    margin-left: 8px;
    margin-right: 8px;
    margin-bottom: 10px;
    padding-right: 1px;
    display: flex;
    justify-content: space-between;
    align-items: center;
	background-color: white;
}

header input {
    border: none;
    outline: none;
    margin-bottom: 5px;
    margin-left: 4px;
    margin-top: 5px;
    flex-grow: 1;
    font-size: 18px;
    font-weight: normal;
}

header button {
	border: none;
	outline: none;
	padding: 4px;
	background-color: var(--primary-color);
	margin: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	color: white;
}	

/* Header */

main {
    margin-top: 100px;
	margin-left: 10px;
	margin-right: 10px;
}

main h1 .small-text {
    font-size: 16px;
    font-weight: normal;
}

h1 {
    font-size: 26px;
	margin-bottom: 1px;
}

main fieldset {
	
	margin: 0px;
	
}

div .container {
	width: 100%;
	border: 1px solid #000;
}

div .left {
	
	float: left;
	width: 30%;
	height: 100%;
	margin-right: 5px;
	
}
.right {
	float: left;
	width: calc(70% - 5px);
}

legend {
	
	margin-left:6px;
	margin-bottom: 0px;
	
}

main input {
    border: none;
    outline: none;
    margin-bottom: 5px;
    margin-left: 4px;
    margin-top: 0px;
    flex-grow: 1;
    font-size: 26px;
    font-weight: normal;
	color: var(--primary-color);
	width: calc(100% - 8px);
    box-sizing: border-box; 
}

main select {
    border: none;
    outline: none;
    margin-bottom: 5px;
    margin-left: 4px;
    margin-top: 0px;
    flex-grow: 1;
    font-size: 26px;
    font-weight: normal;
	color: var(--primary-color);
	width: calc(100% - 12px);
    box-sizing: border-box; 
}

.quick-information {
	
	background: var(--primary-color);
	height: 120px;
	
}

h2 {
	
	color: white;
	margin: 0;
	margin-top: 5px;
	text-align: center;
	font-size: 26px;
	
}