@import url("https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --color-header-background: rgba(47, 48, 51, 1);
  --color-menu-background: rgba(246, 245, 243, 1);
  --color-menu-background-active: rgba(71, 105, 87, 0.1);
  --color-footer-background: rgba(47, 48, 51, 1);
  --color-icon: rgba(102, 102, 255, 1);
  --color-header-text: rgba(71, 105, 87, 1);
  --color-box-border: rgba(47, 48, 51, 0.2);
  --color-body: #FFFFFF;
  --color-header: rgba(71, 105, 87, 0.1) !important;
  --color-link: #476957;
  --color-black: #2f3033;
  --color-gray: #e8e7e1;
  --color-blue: #b7d3ff;
  --color-green: #476957;
  --color-button-green: #2F3033;
  --color-red: #476957;
  --color-ligth-green: #a3d4c4;
  --color-white: #ffffff;
  --color-grade-out: #aaaaaa;
  --color-box: rgba(246, 245, 243, 0.4);
  --color-disable-text: #AAAAAA;
  --color-disable-border:#ddd;
  --color-disable-background:#ddd;
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-body: #2f3033;
    --color-box-border: #1e1e1e;
    --color-box: #3e3e3e;
    --color-button-green: rgba(163,212,196,0.5);
    --color-black: #e8e7e1;
    --color-green: #a3d4c4;
    --color-link: #a3d4c4;
  }
  header > div.headerBar a > div.logo {
    background-image: url("/img/kubedna-wh-f1c8804cb7674e9b7ce5859913980f32.png") !important;
    opacity: 0.75;
  }
  .image > img {
    opacity: 0.5;
  }
  textarea, input, select {
    background: #4d4d4d;
    border: 1px solid #2e2e2e;
  }
  input:-webkit-autofill {
    -webkit-text-fill-color: var(--color-black) !important;
    -webkit-box-shadow: 0 0 0 30px #4d4d4d inset !important;
  }
  footer {
    opacity: 0.75;
  }
}
* {
  box-sizing: border-box;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 13px;
  font-style: normal;
  text-decoration: none;
  font-weight: 400;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  font-size-adjust: none;
  color: var(--color-black);
}

body {
  margin: 0;
  padding: 0;
  width: 100vw;
  min-height: 100vh;
  max-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  background: var(--color-body);
}
body a {
  color: var(--color-link);
  font-weight: 800;
  cursor: pointer;
}

.hide {
  display: none;
}

.mainWrapper {
  max-width: 100%;
  width: 100%;
  min-height: 100vh;
  max-height: 100vh;
  display: flex;
  flex-direction: column;
  margin-left: auto !important;
  margin-right: auto !important;
}
.mainWrapper > header {
  flex-grow: 0;
  flex-shrink: 0;
}
.mainWrapper > main {
  display: flex;
  flex-grow: 1;
  flex-shrink: 1;
  overflow-y: auto;
  padding: 10px 10px 30px 10px;
  width: 100%;
  flex-direction: column;
  gap: 10px;
}
.mainWrapper > main > div.container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.mainWrapper > main > div.container.center {
  margin: auto;
}
.mainWrapper > main > div.container.title {
  padding: 10px 20px;
}
@media screen and (max-width: 600px) {
  .mainWrapper > main > div.container.title {
    padding: 10px 10px;
  }
}
.mainWrapper > main > div.container.title div {
  font-size: 13px;
  padding: 8px 0 4px 0;
  letter-spacing: 1px;
}
.mainWrapper > main > div.container article {
  width: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-box-border);
  border-radius: 3px;
  padding: 10px 20px;
  gap: 6px;
  background: var(--color-box);
}
.mainWrapper > main > div.container article.row {
  flex-direction: row;
}
@media screen and (max-width: 600px) {
  .mainWrapper > main > div.container article {
    padding: 10px 10px;
  }
}
.mainWrapper > main > div.container article > h3 {
  font-size: 14px;
}
.mainWrapper > main > div.container .spacer {
  flex-grow: 2;
  flex-shrink: 1;
  min-height: 24px;
}
.mainWrapper > main > div.container h4,
.mainWrapper > main > div.container h3 {
  font-weight: 600;
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 0;
  color: var(--color-link);
  letter-spacing: 2px;
}
.mainWrapper > main > div.container div.description {
  font-size: 13px;
  padding: 8px 0 4px 0;
  letter-spacing: 1px;
}
.mainWrapper > main > div.container div.qrCode img {
  width: 200px;
  height: 200px;
}
.mainWrapper > main > div.container code {
  background: #eee;
  font-weight: bold;
  letter-spacing: 1px;
  color: #000;
  padding: 6px;
  border: 1px solid #aaa;
}
.mainWrapper > main div.resetPasswordContainer {
  margin-top: 16px;
  margin-bottom: 8px;
  display: flex;
  justify-content: flex-end;
}
.mainWrapper > main div.resetPasswordContainer > a {
  font-size: 13px;
}
.mainWrapper > main div.subtext {
  font-style: normal;
  margin-top: 30px;
  margin-bottom: 30px;
  justify-content: center;
  text-align: center;
}
.mainWrapper > main div.subtext.info {
  align-items: center;
  display: flex;
  grid-gap: 10px;
  border-radius: 5px;
  font-weight: 600 !important;
  border: 1px solid #eeefa8;
  background: #fafdf6;
  padding: 13px 5px;
}
.mainWrapper > main div.subtext.info > i {
  font-weight: 600 !important;
}
.mainWrapper > main div.subtext.info > span {
  font-size: 13px;
  font-weight: 600 !important;
}
.mainWrapper > main div.subtext > a,
.mainWrapper > main div.subtext > span {
  font-size: 13px;
}

.buttonHolder {
  display: flex;
  justify-content: space-around;
  gap: 8px;
  width: 100%;
}
.buttonHolder.bottom-space {
  padding-bottom: 16px;
}
.buttonHolder > button {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  font-weight: 600;
  gap: 10px;
  color: var(--color-white);
  background-color: var(--color-button-green);
  border: 1px solid var(--color-green);
}
.buttonHolder > button > i {
  font-size: 22px;
  color: var(--color-white);
}
.buttonHolder > button > span {
  font-weight: 600;
  color: var(--color-white);
}

.actionVerified {
  display: flex;
}
.actionVerified > span {
  font-size: 13px;
  font-weight: 600;
  white-space: break-spaces;
  color: darkgreen;
  letter-spacing: 1px;
}

.actionSuccess,
.actionError {
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 10px;
}
.actionSuccess.actionSuccess,
.actionError.actionSuccess {
  flex-direction: column;
}
.actionSuccess.actionSuccess > h3,
.actionError.actionSuccess > h3 {
  color: var(--color-link);
  letter-spacing: 2px;
}
.actionSuccess.actionSuccess > i,
.actionError.actionSuccess > i {
  font-size: 100px;
  color: #86A450;
}
.actionSuccess.actionSuccess > span,
.actionError.actionSuccess > span {
  font-size: 13px;
  font-weight: 600;
  white-space: break-spaces;
  color: var(--color-black);
}
.actionSuccess.actionSuccess > span.addition,
.actionError.actionSuccess > span.addition {
  font-weight: 400;
  margin-top: 16px;
  letter-spacing: 1px;
}
.actionSuccess > i,
.actionError > i {
  font-size: 20px;
  color: #9C4B3E;
}
.actionSuccess > span,
.actionError > span {
  font-size: 14px;
  white-space: break-spaces;
  color: #9C4B3E;
  font-weight: 600;
  letter-spacing: 1px;
}
.actionSuccess > span a,
.actionError > span a {
  color: #9C4B3E;
  text-decoration: underline;
  font-weight: 600;
}

div.skipButton form {
  align-items: flex-end;
}
div.skipButton button {
  display: flex;
  background: unset;
  color: var(--color-link);
  width: unset;
  padding: unset;
  font-weight: 800;
  margin: 10px;
  border: unset;
}

header {
  flex-grow: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--color-box-border);
  background-color: var(--color-header-background);
  height: 80px;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 600px) {
  header {
    height: unset;
    padding: 8px 0 16px 0;
  }
}
header * {
  color: var(--color-black);
}
header > div.headerBar {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 7%;
}
@media screen and (max-width: 600px) {
  header > div.headerBar {
    margin: 0 10px 0 20px;
  }
}
header > div.headerBar > div {
  display: flex;
  gap: 10px;
}
header > div.headerBar a {
  display: flex;
  align-items: center;
  gap: 10px;
}
header > div.headerBar a > div.logo {
  height: 24px;
  width: 200px;
  background-image: url("/img/kubedna-wh-f1c8804cb7674e9b7ce5859913980f32.png");
  background-size: cover;
  background-repeat: no-repeat;
}
header > div.headerBar a > div.logo > img {
  display: none;
  max-height: 24px;
}
header > div.headerBar > span {
  display: flex;
  flex-grow: 1;
  min-height: 40px;
  align-items: center;
}
header > div.headerBar > span.title {
  font-weight: 600;
  font-size: 16px;
}

footer {
  height: 20px;
  background: var(--color-footer-background);
}
@media screen and (max-width: 600px) {
  footer {
    display: none;
  }
}

form {
  width: 100%;
  flex-grow: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
form .spacer {
  flex-grow: 2;
  flex-shrink: 1;
  min-height: 30px;
}
form label:first-of-type {
  margin-top: 0;
}
form label {
  margin-top: 16px;
  margin-bottom: 4px;
  display: block;
  font-weight: 600;
}
form textarea {
  resize: none;
  height: 200px;
}
form button {
  border-radius: 5px;
  color: var(--color-white);
  cursor: pointer;
  background-color: var(--color-button-green);
  border: 1px solid var(--color-green);
  padding: 13px;
  font-weight: 600;
}
form button.cancel {
  border: 1px solid var(--color-box-border);
  color: var(--color-black);
  background-color: rgba(71, 105, 87, 0.1);
}
form input[type=date],
form select {
  color: var(--color-black);
}
form select:focus,
form textarea:focus,
form input:focus {
  outline: none;
}
form label:has(+ input.invalid, + select.invalid) {
  color: #9C4B3E;
}
form span.error {
  display: none;
}
form.invalid span.error {
  display: unset;
  color: #9C4B3E;
  padding: 4px 0;
}
form.invalid label {
  color: #9C4B3E;
}
form.invalid textarea,
form.invalid select,
form.invalid input {
  background-color: rgba(255, 221, 221, 0.2);
  border-color: #f1aaaa;
}
form textarea.invalid,
form select.invalid,
form input.invalid {
  background-color: rgba(255, 221, 221, 0.2);
  border-color: #f1aaaa;
}
form label.invalid {
  color: #9C4B3E;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--color_grade_out);
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: var(--color_grade_out);
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: var(--color_grade_out);
}

input[type=text], input[type=search], input[type=number], input[type=password], input[type=date], select, textarea {
  width: 100%;
  border: 1px solid var(--color-box-border);
  border-radius: 5px;
  padding: 7px 13px;
  font-size: 13px;
  display: inline-block;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=number] {
  -moz-appearance: textfield;
}

button.icon,
input[type=search].icon,
input[type=text].icon {
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center left;
  background-position-x: 10px;
  padding-left: 34px;
}

@font-face {
  font-family: "Material Symbols Outlined";
  font-style: normal;
  font-weight: 300;
  src: url("/css/font/MaterialSymbolsOutlined-21a5d6dcd3e8e84a99517a39ecb5c056.woff2") format("woff2");
}
i {
  font-family: "Material Symbols Outlined";
  font-variation-settings: "FILL" 0;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  display: flex;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  justify-content: center;
  align-items: center;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "liga";
}
i.error::after {
  content: "warning";
}
i.login::after {
  content: "key";
}
i.cancel::after {
  content: "cancel";
}
i.info::after {
  content: "info";
}
i.done::after {
  content: "done";
}
i.email::after {
  content: "mail";
}

@font-face {
  font-family: "Hanken Grotesk", sans-serif;
  font-style: normal;
  font-weight: 100 900;
}
