@font-face {
  font-family: "Code";
  src: url("../fonts/CascadiaCode.woff2") format("woff2");
}

* {
  box-sizing: border-box;
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}

:root {
  --lighter-wl-color: #42b7bd;
  --darker-wl-color: #4696bd;
  --yellow-wl-color: #f2c14e;
  --carmin-wl-color: #aa4465;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-y: scroll;
  overflow-x: hidden;
  /*background-image: radial-gradient(circle, #bff4ee, #b4f0f0, #a9ecf2, #a0e7f5, #98e2f8);
  background-image: radial-gradient(circle, #bff4ee, #72d0b1, #a9ecf2, #a0e7f5, #2a9ec1);*/
  background-image: linear-gradient(80deg, #8971e0 0%, #3d344c 100%);
}

.body-main {
  flex: 1;
  padding-bottom: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.body-main h1 {
  font-size: 3rem;
  margin: 2.5rem 0;
  text-align: center;
  color: white;
}

input[type="submit"],
input[type="button"]{
  width: 30%;
  height: 3.125rem;
  border: 0.0625rem solid;
  background: var(--darker-wl-color);
  border-radius: 1.5625rem;
  font-size: 1.125rem;
  color: #e9f4fb;
  font-weight: 700;
  cursor: pointer;
  outline: none;
}

input[type="submit"]:hover,
input[type="button"]:hover{
  transform: scale(1.05);
  transition: 0.5s;
}

input[type="submit"]:not(:hover),
input[type="button"]:not(:hover){
  transition: 0.5s;
}



.extend-size {
  width: 90%;
}

.single-center-form {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25rem;
  background: rgb(229, 244, 247);
  border-radius: 0.625rem;
  box-shadow: 0.625rem 0.625rem 0.9375rem rgba(0, 0, 0, 0.1);
}

.single-center-form-background {
  background-image: url("../images/back2.webp");
  height: 100vh;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
}

.single-center-form-icon {
  margin: 0.3125rem 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.single-center-form-h1 {
  padding: 0 0 1.25rem 0;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 2em;
  border-bottom: 0.0625rem solid silver;
}

.single-center-form-p {
  padding: 0.825rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
}

.single-center-form-form {
  margin: 0.3125rem 2.5rem;
  box-sizing: border-box;
}

.single-center-form-input-field {
  position: relative;
  border-bottom: 0.0625rem solid silver;
  margin: 1.25rem 0;
}

.single-center-form-input {
  width: 100%;
  height: 2.5rem;
  font-size: 1.25rem;
  background: none;
  border: none;
  outline: none;
}

.single-center-form-input:focus {
  border-bottom: 0.0625rem solid var(--lighter-wl-color);
  transition: 0.5s;
}

.single-center-form-input:valid {
  border-bottom: 0.0625rem solid var(--darker-wl-color);
  transition: 0.5s;
}

.single-center-form-error {
  width: 25rem;
  background: #fff;
  border-radius: 0.375rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 0 1.875rem 1.875rem;
  color: #333;
}

.single-center-form-error img {
  width: 6.25rem;
  margin-top: -3.125rem;
}

.single-center-form-error h2 {
  font-size: 2.375rem;
  font-weight: 500;
  margin: 1.875rem 0 0.625rem;
}

.single-center-form-error button {
  width: 100%;
  margin-top: 3.125rem;
  padding: 0.625rem 0;
  background: #d92f2f;
  color: #fff;
  border: 0;
  outline: none;
  font-size: 1.125rem;
  border-radius: 0.25rem;
  cursor: pointer;
  box-shadow: 0 0.3125rem 0.3125rem rgba(0, 0, 0, 0.2);
}

.vertical-menu {
  z-index: 10;
  position: sticky;
  width: 100%;
  height: 6rem;
  flex-shrink: 0;
  top: 0;
  display: flex;
  background: #251e33;
  border-radius: 0 0 0.625rem 0.625rem;
  box-shadow: 0 0.9375rem 1.5625rem rgba(0, 0, 0, 0.1);
  justify-content: space-around;
  align-items: center;
}

.vertical-menu a {
  width: 100%;
}

.vertical-menu-items {
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  text-align: center;
  width: 100%;
  position: relative;
}

.vertical-menu-icon {
  width: 2.875rem;
  pointer-events: none;
  filter: invert(1);
}

.vertical-menu-menu-items {
  color: white;
  margin-top: 0.625rem;
}

.vertical-menu-submenu {
  position: absolute;
  display: none;
  top: 100%;
  list-style-type: none;
  background: var(--lighter-wl-color);
  color: #f1f1f1;
  border-radius: 0.3125rem;
  z-index: 11;
  right: 0;
  left: 0;
}

.vertical-menu-submenu-items {
 /* width: 16.875rem;*/
  text-align: left;
  padding: 0.8125rem;
  text-decoration: none;
}

.vertical-menu-submenu-separator-line {
  color: var(--darker-wl-color);
  margin: 0.625rem 0;
}

.vertical-menu-items a {
  height: 3.125rem;
}

.vertical-menu a:link,
.wizard-progress-bar a:link,
.vertical-menu a:visited,
.wizard-progress-bar a:visited,
.vertical-menu a:hover,
.wizard-progress-bar a:hover,
.vertical-menu a:active,
.wizard-progress-bar a:active {
  text-decoration: none;
  color: black;
}

.vertical-menu-items:hover ul {
  display: block;
}

.vertical-menu-items:hover {
  background-color: var(--darker-wl-color);
  border-radius: 0.3125rem;
}

/*.vertical-menu-items:hover .vertical-menu-icon {
  filter: invert(1);
}*/

.vertical-menu-items:hover .vertical-menu-menu-items {
  color: white;
}

.vertical-menu-items-restrict:hover {
  background-color: #fa3a3a;
  border-radius: 0.3125rem;
}

.vertical-menu-items-godmode:hover {
  background-color: var(--yellow-wl-color);
  border-radius: 0.3125rem;
}


.vertical-menu-submenu-items:hover {
  background-color: var(--darker-wl-color);
  border-radius: 0.3125rem;
}

.vertical-menu-separator-line {
  color: var(--darker-wl-color);
}

.header-logo {
  width: 5%;
  background-color: var(--darker-wl-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

header img {
  margin: 0 auto;
  display: block;
  height: 90%;
  z-index: 1;
  position: relative;
}

.header-status {
  display: flex;
  height: 3.5rem;
}

.header-box1,
.header-box2 {
  color: #fff;
  text-align: center;
  padding: 1.25rem;
  position: relative;
}

.header-success-1 {
  background: linear-gradient(
    to right,
    var(--lighter-wl-color),
    var(--darker-wl-color)
  );
  width: 47.5%;
}

.header-success-2 {
  background: linear-gradient(
    to right,
    var(--darker-wl-color),
    var(--lighter-wl-color)
  );
  width: 47.5%;
}

.header-failure-1 {
  background: linear-gradient(to right, rgb(239, 100, 100), rgb(225, 46, 46));
  width: 47.5%;
}

.header-failure-2 {
  background: linear-gradient(to right, rgb(225, 46, 46), rgb(239, 100, 100));
  width: 47.5%;
}

.header-mid-failure-1 {
  background: linear-gradient(to right, rgb(225, 139, 10), rgb(240, 149, 12));
  width: 47.5%;
}

.header-status-waf {
  display: none;
  position: absolute;
  top: 100%;
  left: 30%;
  width: 50%;
  background-color: #f5f5f5;
  font-weight: bold;
  border-bottom-left-radius: 0.625rem;
  border-bottom-right-radius: 0.625rem;
  z-index: 10;
}

.header-box1:hover .header-status-waf {
  display: block;
}

.header-status-waf ul {
  color: grey;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-status-waf ul li {
  font-size: 0.8em;
  padding: 3px;
}

.footer p {
  padding: 0.5rem;
  text-align: center;
  border-top: 1px solid rgb(141, 141, 141);
  background-color: var(--lighter-wl-color);
}

.footer a {
  color: blue;
}

.wizard-progress-bar {
  width: 90%;
  border-radius: 0.625rem;
  margin: 2rem auto;
  overflow: hidden;
  display: flex;
  background-color: #fff;
  box-shadow: 0 0.9375rem 1.5625rem rgba(0, 0, 0, 0.2);
}

.wizard-step-circle {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #fff;
  border: 0.125rem solid var(--darker-wl-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: var(--darker-wl-color);
  margin-bottom: 0.3125rem;
  font-size: 1.5rem;
  position: relative;
  z-index: 2;
}

.wizard-step-text {
  text-align: center;
  width: 100%;
  font-weight: bold;
}

.wizard-completed-step .wizard-step-circle {
  border-color: var(--darker-wl-color);
  background-color: var(--darker-wl-color);
  color: #fff;
}

.wizard-current-step .wizard-step-circle {
  border-color: #f2c14e;
  background-color: #f2c14e;
  color: #fff;
}

.wizard-remaining-step .wizard-step-circle {
  border-color: #9e9e9e;
  background-color: #fff;
  color: #9e9e9e;
}

.wizard-progress-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 1.2rem 0;
}

.wizard-progress-step::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.125rem;
  background-color: #aaaaaa;
  top: 39%;
  left: 50%;
  z-index: 1;
}

.wizard-progress-step:last-child::before {
  display: none;
}

.wizard-completed-step::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.125rem;
  background-color: var(--darker-wl-color);
  top: 39%;
  left: 50%;
  z-index: 1;
}

.wizard-progress-step a {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.warning-color {
  color: darkorange;
}

footer {
  flex-shrink: 0;
}

#drop_zone {
    border: 5px dashed #b7b6eb;
    height: 25rem;
    border-radius: 10px;
    cursor: copy;
    display: grid;
    align-content: center;
    font-size: larger;

}

