html {
    margin: 0;
    padding: 0;
}

* {
    margin: 0;
    padding: 0;
}

body {
    background: white;
    margin: 0;
    font-family: "Noto Sans", sans-serif;
    color: rgb(56, 65, 75);
}

#header1 {
    background-color: rgb(56, 65, 75);
    height: 200px;
    margin: auto;
}
#header2 {
    position: absolute;
}

#headerContent {
    max-width: 1002px;
    position: relative;
}

#headerText {
    position: relative;
    top: 160px;
    background-color: rgb(255, 217, 46);
    padding: 12px;
    margin-top: -90px;
    margin-left: 24px;
    margin-right: 24px;
}

#form {
    margin: auto;
    padding-left: 24px;
    padding-right: 24px;
    max-width: 1002px;
    margin-top: 110px;
}

h1 {
    text-transform: uppercase;
    font-size: 33.75px;
    font-weight: 700;
}
h2 {
    text-transform: uppercase;
    font-size: 22.5px;
    font-weight: 600;
}
h3 {
    text-transform: uppercase;
    font-size: 18.75px;
    padding-top: 32px;
}
#plLogo {
    width: 160px;
    margin-top: 18px;
    padding-left: 24px;
}

@media (width <= 1026px) {
    #plLogo {
        padding-left: 24px;
    }
}

.valueInput {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
}

.fieldName {
    font-size: 16px;
    font-weight: 700;
}

.fieldRemark {
    font-size: 13px;
    font-style: italic;
    color: rgb(192, 43, 10);
}

.inputField {
    outline: none;
    margin-top: 6px;
    font-size: 14px;
    font-weight: 700;
    color: rgb(56, 65, 75);
    line-height: 26.25px;
    height: 50px;
    background-color: #f9f9f9;
    border-top: 1px solid #f9f9f9;
    border-left: 1px solid #f9f9f9;
    border-right: 1px solid #f9f9f9;
    border-bottom: 1px solid rgb(56, 65, 75);
    padding-left: 16px;
}

textarea {
    padding-top: 10px;
    min-height: 5rem;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border: 1px solid rgb(255, 217, 46);
}

#buttonSend {
    height: 55px;
    color: white;
    font-size: 14px;
    font-weight: bold;
    background-color: rgb(56, 65, 75);
    margin-top: 30px;
    padding-top: 16px;
    padding-right: 24px;
    padding-bottom: 16px;
    padding-left: 24px;
    border: none;
}
#buttonSend:hover {
    color: #e1e2e4;
    cursor: pointer;
}

#footer {
    margin-top: 100px;
    height: 60px;
    background-color: rgb(56, 65, 75);
    color: white;
    font-size: 18.75px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.fCol {
    display: flex;
    flex-direction: column;
    flex-basis: 100%;
}
.fColLeft {
    margin-left: 24px;
}
.fColRight {
    margin-right: 20px;
    justify-content: end;
}

ul {
    display: flex;
    list-style: none;
    font-size: bold;
    justify-content: end;
}
li {
    padding: 0 15px;
    display: flex;
    justify-content: end;
}
a {
    color: inherit;
    text-decoration: none;
}
li:hover {
    color: #e1e2e4;
}
@media only screen and (max-width: 720px) {
    #headerText h1 {
        font-size: 30px;
    }
    #footer {
        height: 100px;
        font-size: 16px;
        line-height: 28px;
    }
    ul {
        display: block;
    }
}

.flexContainer {
    display: flex;
    flex-wrap: wrap;
}

.flexItemLeft {
    flex: 48%;
    padding-right: 20px;
}

.flexItemRight {
    flex: 48;
}

.flexItemStreet {
	flex: 35%;
    padding-right: 20px;
}

.flexItemCode {
	flex: 20%;
    padding-right: 20px;
}

.flexItemCity {
	flex: 35%
}

a#agreementLink {
	text-decoration: underline solid !important;
	color: revert !important;
}

.showLink {
	text-decoration: underline solid !important;
	color: revert !important;
}

/* Responsive layout - makes a one column-layout instead of a two-column layout */
@media (max-width: 680px) {
    .flexItemRight {
        flex: 100%;
    }
    .flexItemLeft {
        flex: 100%;
        padding-right: 0;
    }
}