html {
  font-size: 14px;
  position: relative;
  min-height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

body {
  margin: 0;
  background-color: rgb(250, 249, 248)
}

a {
  text-decoration: none;
  color:rgb(103, 32, 223);
}

a:hover {
  text-decoration: none;
  color:rgb(25, 8, 50);
}

/*------ELEMENTS------*/

/*---BUTTON---*/
button, .button {
  border: none;
  border-radius: 0;
  background-color: rgb(120, 255, 255);
  color: rgb(33, 68, 87);
  padding: 10px 20px;
  font-weight: bold;
  /*box-shadow: rgba(33, 68, 87, 0.133) 0px 1.6px 3.6px 0px, rgba(33, 68, 87, 0.11) 0px 0.3px 0.9px 0px;*/
}

button:hover, .button:hover {
  color: rgb(120, 255, 255);
  background-color: rgb(36, 36, 36);
}

.button-primary {
  background-color: rgb(33, 68, 87);
  color: rgb(248, 248, 248);
}

.button-primary:hover {
  background-color: rgb(66, 136, 174);
}

button img, .button img {
  max-height: 100%;
  height: 24px;
  margin-right: 10px;
  margin-bottom: 2px;
}

/*---BOARD---*/
.board {
  font-size: 1rem;
  background-color: rgb(255, 255, 255);
  padding: 32px;
  margin-bottom: 14px;
  box-shadow: rgba(0, 0, 0, 0.133) 0px 1.6px 3.6px 0px, rgba(0, 0, 0, 0.11) 0px 0.3px 0.9px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgb(50, 49, 48);
  position: relative;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.board .board-title, .board h1, .board h2 {
  font-weight: bold;
  margin: 0;
  padding: 0;
  font-size: 1.8em;
  text-align: center;
}

.board .board-text, .board p {
  font-size: 1.2em;
  margin: 12px 0;
  line-height: 1.5em;
  color: rgb(59, 58, 57);
}

.board .board-image, .board img {
  width: 96px;
  height: 96px;
  margin-bottom: 24px;
}

.board .board-buttons {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
}

.board .button, .board button {
  margin-top: 8px;
  width: 100%;
  color: rgb(180, 255, 255);
  background-color: rgb(33, 68, 87);
}

.board .button:hover {
  background-color: rgb(180, 255, 255);
  color: rgb(33, 68, 87);
}

.board .button-primary {
  background-color: rgb(103, 32, 223, .8);
  color: rgb(255, 255, 255);
}

.board .button-primary:hover {
  color: rgb(103, 32, 223);
  background-color: rgb(240, 240, 240);
}

.board .board-label, .board label {
  font-weight: bold;
  border-radius: 8px;
  background-color: rgb(103, 32, 223, .8);
  color: rgb(255, 255, 255);
  padding: 4px 8px;
  font-size: .8rem;
  position: absolute;
  display: inline-block;
  right: 12px;
  top: 12px;
}

/*---EXPANDER (JavaScript managed)---*/
.expander {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  flex-wrap: nowrap;
  margin-bottom: 16px;
}

.expander > label {
  border: 1px solid rgb(220, 220, 220);
  border-radius: 0;
  background-color: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  padding: 24px 96px 24px 24px;
  font-weight: bold;
  position: relative;
  margin-bottom: 0;
  font-size: 1.2rem;
}

.expander > label:hover {
  cursor: pointer;
  background-color: rgb(240, 240, 240);
  color: rgb(103, 32, 223);
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.expander > .expander-content {
  border: 1px solid rgb(200, 200, 200);
  border-top:none;
  border-radius: 0;
  background-color: rgb(255, 255, 255);
  color: rgb(100, 100, 100);
  padding: 20px;
}

.expander-content > p {
  margin: 0;
}

.expander .expander-indicator {
  position: absolute;
  height: 16px;
  width: 16px;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.expander-indicator {
  content:url("../images/expander-indicator-up.svg");
}

.closed .expander-indicator {
  content:url("../images/expander-indicator-down.svg");
}

.opened .expander-content {
  display: block;
}

.closed .expander-content {
  display: none;
}

/*---MENU (JavaScript managed)---*/
.menu {
  position: relative;
}

.menu-button {
  border: 2px solid rgb(120, 255, 255);
  width: 32px;
  height: 32px;
  padding: 8px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}

.menu-button:hover {
  cursor: pointer;
  box-shadow: 2px 2px 4px rgb(33, 68, 87);
}

.closed .menu-content {
  display: none !important;
}

.hidden {
  display: none !important;
}
