:root {
  --primary: #424C6F;
  --secondary: #f77e4b;
}

#content {
  text-align: justify;
}

#soft-page-title {
  text-align: center;
}

.form-error-message {
  display: none;
  color: darkred;
  font-weight: normal;
  letter-spacing: normal;
  text-align: start;
}

#form-captcha-test {
  display: flex;
  align-items: baseline;
  margin-bottom: 5px;
}
#form-captcha-img {
  background-color: #ededed;
}
#form-captcha-reload:hover {
  cursor: pointer;
  color: var(--primary);
}
#form-captcha-error {
  display: none;
  color: darkred;
}

.mainlegal {
  text-align: center;
  font-size: 14px;
  padding-bottom: 10px;
}

.soft-page-text {
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 10px;
}

.soft-page-title {
  padding-top: 20px;
  margin-left: 10px;
}

.soft-page-buttons {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.soft-page-buttons a {
  background-image: none !important;
}

.documentation-button, .soft-download-button {
  background-color: var(--primary);
  border-radius: 10px;
  color: white !important;
  font-weight: normal !important;
  padding: 10px;
  border: none;
  font-size: large;
  margin: 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
  max-height: 50px;
  text-align: center;
}

.documentation-button {
  background-color: var(--secondary);
  margin-left: 30px;
}

.documentation-button:hover, .soft-download-button:hover {
  background-color: rgb(132, 132, 132);
}

.soft-page-text.certification {
  padding-bottom: 10px;
}
.soft-page-text.certification ul {
  list-style-type: none;
  padding-inline-start: 0;
  text-align: center;
}
.soft-page-text.certification li {
  font-weight: bold;
  display: inline;
}
.soft-page-text.certification li:not(:last-child)::after {
  content: ",";
}

.soft-multimedia {
  display: flex;
  justify-content: center;
}
.soft-multimedia img {
  max-height: 400px;
  max-width: 90%;
}
.soft-multimedia video {
  width: 80%;
  max-width: 560px;
}

#soft-page-button-list {
  display: flex;
  flex-direction: column;
}

.store-button {
  width: 150px;
  vertical-align: middle;
}

.image-list {
  height: auto;
}

.sys-configuration {
  padding-bottom: 20px;
}

.grayed {
  background-color: gray !important;
}

#soft-page-content {
  margin-left: 25%;
  margin-right: 25%;
}

#soft-form .popup {
  width: min(80%, 600px);
  max-height: 80%;
  overflow: auto;
  line-height: 1.2em;
}

.form-header-1 {
  background-color: var(--primary);
  margin-top: 0;
  color: white;
  font-family: Tahoma, Arial, sans-serif;
  padding: 5px;
  display: flex;
  flex-direction: column;
}

.form-header-1 h2 {
  font-weight: 700;
  letter-spacing: 2px;
  display: flex;
  justify-content: center;
}
.form-header-1 h2 #form-title-text {
  display: inline-flex;
  padding-top: 13px;
}

.form-close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  color: white !important;
}

.popup .form-header-1 .legal {
  text-align: end;
  font-style: italic;
  font-size: 14px;
  padding-bottom: 10px;
  padding-right: 10px;
}

.popup .form-header-2 {
  border-bottom: 1px solid transparent;
  border-bottom-color: rgba(0, 0, 0, 0.1);
  margin: 20px;
  margin-bottom: 0;
}

.popup .form-header-2 .clinical-warning {
  width: auto;
}

.popup .content {
  overflow: auto;
  height: 30%;
  margin-top: 20px;
}

#before-form {
  flex-direction: column;
  padding-right: 10%;
  padding-left: 10%;
}

.popup .form-input {
  display: flex;
  flex-direction: column;
  margin-bottom: 5px;
  font-weight: 700;
  letter-spacing: 2px;
  min-width: 100px;
  padding-top: 10px;
}

.popup .form-input label {
  display: flex;
  align-content: flex-start;
}

.popup .required label::after {
  content: "*";
  color: darkred;
}

.popup .check {
  padding-bottom: 10px;
  padding-top: 10px;
}

.form-title svg {
  padding-right: 20px;
}

#send-button {
  max-width: 80px;
  justify-content: center;
}

#send-button-wrapper {
  display: flex;
  justify-content: center;
  height: 100px;
}

#after-form {
  margin: 30px;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

#checksum-content {
  display: inline-flex;
}

#checksum-title {
  margin: 10px;
  margin-top: 0;
}

#checksum {
  margin: 10px;
  margin-top: 0;
}

.more-information-link {
  display: inline-block;
  padding-top: 5px;
}

#after-form-error {
  height: auto;
  overflow: auto;
  margin-top: 20px;
  width: fit-content;
}

#after-form-container {
  display: flex;
  justify-content: center;
}

#loader {
  display: none;
  margin: auto;
  border: 10px solid #EAF0F6;
  border-radius: 50%;
  border-top: 10px solid var(--secondary);
  width: 46px;
  height: 46px;
  animation: spinner 4s linear infinite;
}

@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}