:root {
    --color-lightest: #f9fdfe;
    --color-gray-light: #cdcfcf;
    --color-gray-medium: #686a69;
    --color-gray-dark: #414643;
    --color-darkest: #2a2f2c;
}

*,
::before,
::after {
    margin: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background: antiquewhite;
    color: var(--color-gray-medium);
}


ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: black;
}

.nav li {
    float: left;
    border-right:1px solid #bbb;
}


.nav li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.nav li a:hover:not(.active) {
    background-color: white;
    color: black;
}

.nav .active {
    background-color: Darkred;
}

.footer {
    list-style-type: none;
    position: fixed;
    overflow: hidden;
    left: 0;
    bottom: 0;
    width: 100%;
    color: white;
    background-color: black;
    text-align: center;
}

.footer li {
    float: left;
    border-right:1px solid #bbb;
}

.footer li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.footer li a:hover:not(.active) {
    background-color: white;
    color: black;
}

/* Headings use a different font because they’re hipsters. */
h2 {
    color: var(--color-darkest);
    font-size: 110%;
    line-height: 1.1;
}

h1 {
    font-size: 125%;
}

/* Set up general layout rules for outer containers. */
.contact-form,
.results {
    width: 90vw;
    max-width: 550px;
    margin: 8vh auto;
}

p {
    margin-top: 0.5rem;
    font-size: 87.5%;
}

.results pre {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background:$color-lightest;
    border: 1px solid var(--color-gray-light);
    overflow-x: scroll;
}

.contact-form form {
    position: relative;
    display: block;
    margin: 0;
    padding: 1rem 0 2rem;
    border-top: 1px solid var(--color-gray-light);
    border-bottom: 1px solid var(--color-gray-light);
    overflow: hidden;
}

.input-group {
    margin-top: 0.25rem;
    padding: 0.5rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 18px;
}

.contact-form label {
    display: block;
    color: $color-gray-dark;
    font-family: Lato, sans-serif;
    font-size: 90%;
    line-height: 1.125;
}

.group-label {
    display: inline-block;
    margin-right: 1rem;
    font-size: 90%;
}

.contact-form label.inline {
    display: inline-block;
    margin-left: 0.25rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    display: block;
    margin-top: 0.25rem;
    padding: 0.5rem 0.75rem;
    border: 1px solid $color-gray-light;
    width: 100%;
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    transition: 150ms border-color linear;
}

.contact-form input[type=checkbox],
.contact-form input[type=radio] {
    display: inline-block;
    width: auto;
}

.contact-form input[type=checkbox]:not(:first-of-type),
.contact-form input[type=radio]:not(:first-of-type) {
    margin-left: 1rem;
}

.contact-form input:focus,
.contact-form input:active {
    border-color: var(--color-gray-medium);
}

.contact-form button {
    display: block;
    margin: 0.5rem 1rem 0;
    padding: 0 1rem 0.125rem;
    background-color: var(--color-gray-medium);
    border: 0;
    color: var(--color-lightest);
    font-family: lato, sans-serif;
    font-size: 100%;
    letter-spacing: 0.05em;
    line-height: 1.5;
    text-transform: uppercase;
    transition: 150ms all linear;
}

.contact-form button:hover,
.contact-form button:active,
.contact-form button:focus {
    background: var(--color-darkest);
    cursor: pointer;
}

.slidecontainer {
    width: 100%;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    border-radius: 5px;
    background: gray;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: black;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: black;
    cursor: pointer;
}


::placeholder {
    color: black;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-weight: 600;
    opacity: 50%;
}


h3{
    text-align: center;
    font-weight: 700;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color:Black;
}

.svg-overskrift {
    text-align: center;
}

.svgtxt {
    text-anchor: middle;
}

.cirtxt {
    text-anchor: middle;
    font-size: 12px;
}