* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-transform: lowercase;
}

::-webkit-scrollbar {
  display: none;
}

h1 {
  font-family: "Arial Black", sans-serif;
  font-weight: 900;
  font-size: 2em;
  line-height: 1.25em;
  color: black;
  margin: 30px 0;
}

legend {
  font-family: "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: black;
}

p, label, input, button, option, select {
  font-family: "Segoe UI", sans-serif;
  font-weight: 400;
  font-size: 1em;
  line-height: 1.25em;
  color: black;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  padding: 0 30px;
}

body header {
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  padding: 20px;
}

body header img {
  height: 55px;
  width: 125px;
}

body main aside {
  display: none;
}

body main section fieldset {
  border: none;
  border-radius: 7px;
  -webkit-box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
  padding: 30px;
  margin-bottom: 50px;
}

body main section fieldset .radio > div:not(:last-child) {
  margin-bottom: 10px;
}

body main section fieldset .radio input[type="radio"] {
  opacity: 0;
  margin-left: -15px;
}

body main section fieldset .radio input[type="radio"] + label {
  position: relative;
  padding-left: 43px;
  cursor: pointer;
  line-height: 27px;
  display: inline-block;
}

body main section fieldset .radio input[type="radio"] + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 23px;
  height: 23px;
  border: 1px solid #ff7f00;
  border-radius: 100%;
  background: #fff;
}

body main section fieldset .radio input[type="radio"] + label:after {
  content: '';
  width: 17px;
  height: 17px;
  background: #ff7f00;
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

body main section fieldset .radio input[type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

body main section fieldset .radio input[type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

body main section fieldset #group-left {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3fr;
      grid-template-columns: 1fr 3fr;
  gap: 20px;
}

body main section fieldset .material-design {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 25px;
  height: 46px;
}

body main section fieldset .material-design input, body main section fieldset .material-design select {
  text-transform: none;
  border: none;
  border-bottom: 1px solid #ff7f00;
  height: 1px;
  margin-top: 10px;
  background-color: transparent;
  padding-left: 7px;
  -webkit-transition: height 0.3s;
  transition: height 0.3s;
}

body main section fieldset .material-design input:focus, body main section fieldset .material-design select:focus {
  outline: none;
}

body main section fieldset .material-design select {
  padding-left: 0px;
}

body main section fieldset .material-design label {
  padding: 2px 0 0 7px;
  -webkit-transition: font-size 0.3s;
  transition: font-size 0.3s;
}

body main section fieldset .material-design label:hover {
  cursor: text;
}

body main section fieldset .material-design.focus {
  background-color: #FFF5EB;
}

body main section fieldset .material-design.focus input, body main section fieldset .material-design.focus select {
  height: 30px;
  outline: none;
  margin-top: 0;
}

body main section fieldset .material-design.focus label {
  font-size: 10px;
}

body main section fieldset .material-design.is-value {
  background-color: white;
}

body main section fieldset #upload-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-line-pack: center;
      align-content: center;
  position: relative;
  margin-top: 25px;
}

body main section fieldset #upload-container label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

body main section fieldset #upload-container label#file-upload {
  width: 160px;
  height: 45px;
  background-color: white;
  border: 1px solid #ff7f00;
  border-radius: 7px;
}

body main section fieldset #upload-container label#file-upload:hover {
  background-color: #FFF5EB;
}

body main section fieldset #upload-container label#file-upload:active {
  -webkit-box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.16);
}

body main section fieldset #upload-container input[type="file"] {
  opacity: 0;
  z-index: 2;
  position: absolute;
  margin-left: calc(100vw - 60px - 60px - 160px);
  width: 160px;
  height: 100%;
}

body input[type="submit"], body button {
  width: 120px;
  height: 45px;
  background-color: #ff7f00;
  border: none;
  -webkit-box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 7px;
}

body input[type="submit"]:hover, body button:hover {
  background-color: rgba(255, 127, 0, 0.9);
  -webkit-box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.16);
          box-shadow: 5px 5px 8px rgba(0, 0, 0, 0.16);
}

body input[type="submit"]:active, body button:active {
  -webkit-box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.16);
}

body footer {
  margin-top: 60px;
}

body footer p {
  text-align: center;
}

body img.fullwidth {
  width: 100%;
  height: auto;
  margin: 30px 0 60px 0;
}

body div.floating-button {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body div.floating-button #button-website {
  width: 180px;
  height: 45px;
  margin: 0 auto;
}

@media screen and (min-width: 600px) {
  body {
    margin: 0 8vw;
  }
  body main section fieldset #upload-container input[type="file"] {
    margin-left: calc(84vw - 60px - 60px - 160px);
  }
}

@media screen and (min-width: 960px) {
  body {
    margin: 0 15vw;
  }
  body main {
    overflow: hidden;
    height: calc(100vh - 140px - 80px);
  }
  body main#home {
    border: none;
    border-radius: 14px;
    -webkit-box-shadow: 7px 7px 15px rgba(0, 0, 0, 0.16);
            box-shadow: 7px 7px 15px rgba(0, 0, 0, 0.16);
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 40% 60%;
        grid-template-columns: 40% 60%;
  }
  body main img.fullwidth {
    width: 70%;
    margin-left: 15%;
  }
  body main aside {
    display: block;
    background-image: url("./Bilder/rollup.jpg");
    background-position: center;
    background-size: cover;
  }
  body main section {
    overflow-y: scroll;
    padding: 20px 17%;
  }
  body main section fieldset #upload-container input[type="file"] {
    margin-left: calc(((70vw - 60px)*0.6)*0.66 - 60px - 160px);
  }
}
/*# sourceMappingURL=style.css.map */