@import "https://cdn.jsdelivr.net/npm/bulma@0.9.2/css/bulma.min.css";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
  --main: #5960AF;
  --mainDark: #38376F;
}

* {
  box-sizing: border-box;
  font-family: Inter, Helvetica, Arial, sans-serif;
}

html,
body {
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  background-color: #FFF;
  font-size: 16px;
  overflow: hidden;
}

.tabs {
  overflow: hidden;
  white-space: normal;
  text-align: center;
}

ul {
  width: 100%;
}

li {
  width: 33%;
}

.title {
  color: var(--main);
}

.info {
  margin: 10px 0px auto 10px;
  width: 20px;
  height: 20px;
  line-height: 18px;
  text-align: center;
  border: 1px solid #AAA;
  color: #888;
  font-weight: bold;
  border-radius: 20px;
  font-size: 10px;
}

.info:hover {
  border: 1px solid var(--main);
  color: var(--main);
}

.advanced {
  cursor: pointer;
  margin-bottom: 10px;
}

.button.is-primary {
  background-color: var(--main);
}

.button.is-primary:hover,
.button.is-primary:active {
  background-color: var(--mainDark);
}

.tabs.is-toggle li.is-active a {
  background-color: var(--main);
  border-color: var(--main);
  color: #fff;
  z-index: 1;
}

.error {
  color: #D63E41;
  text-align: center;
  margin-top: -10px;
  font-weight: bold;
  display: none;
  font-size: 12px;
}

.hidden {
  display: none !important;
  visibility: hidden !important;
}

.input:active,
.input:focus,
.is-active.input,
.is-active.textarea,
.is-focused.input,
.is-focused.textarea,
.select select.is-active,
.select select.is-focused,
.select select:active,
.select select:focus,
.textarea:active,
.textarea:focus {
  border-color: var(--main);
  box-shadow: 0 0 0 0.125em rgb(89 96 175 / 25%);
}

.loadError {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.tabs.is-toggle a, .tabs.is-fullwidth li {
  height: 100%
}

.smallLabel {
  font-size: 12px;
}