.button {
  font-size: 0.66em;
  align-items: center;
  border: 0.065rem solid var(--brand-color-1);
  border-radius: 4px;
  color: #000000;
  column-gap: 0.0625rem;
  display: inline-flex;
  height: 100%;
  justify-content: center;
  min-width: 2rem;
  padding: 1px;
  text-decoration: none;
  white-space: nowrap;
}

.navbar .button {
  background-color: #eee;
  font-size: large;
  cursor: pointer;
}

.button:hover, .button:focus {
  border-bottom: 0.065rem solid var(--brand-color-2);
  outline: 0;
  box-shadow: 0 4px 4px -2px rgba(162, 16, 4, 0.2);
}

.button.large {
  font-size: medium;
}

@media screen and (max-width: 1280px) {
  .button.ruby {
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 0.0625em;
  }
  .button.ruby .rt {
    font-size: 0.8em;
  }
}
.button.bz-button {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  padding: 0;
}

.button.bz-button .icon {
  background-color: var(--brand-color-1);
}

@media screen and (max-width: 1280px) {
  .button.bz-button {
    background-color: var(--brand-color-1);
  }
}
.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  width: 90%;
  max-height: 25.889rem;
  border-radius: 4px;
}

.card-direction-row {
  flex-direction: row;
}

.card-head {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-height: 12rem;
}

.card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 0 auto;
  padding: 0.5rem;
}

.card img {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.dialog {
  display: none;
  position: fixed;
  z-index: 1000;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(2px);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.dialog-content {
  overflow: hidden;
  background-color: #ccc;
  display: flex;
  border: 0;
  border-radius: 0.5rem;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  padding: 1rem;
  flex-direction: column;
  max-height: 90%;
}

.dialog-error .dialog-content {
  background-color: red;
  color: white;
}

.dialog-info .dialog-content {
  background-color: blue;
  color: white;
}

.dialog-success .dialog-content {
  background-color: green;
  color: white;
}

.dialog-warning .dialog-content {
  background-color: yellow;
  color: black;
}

.dialog-head {
  display: flex;
  justify-content: space-between;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  align-items: center;
  border-color: #bbb;
}

.dialog-error .dialog-head {
  border-bottom-color: rgba(255, 255, 255, 0.5019607843);
}

.dialog-info .dialog-head {
  border-bottom-color: rgba(255, 255, 255, 0.5019607843);
}

.dialog-success .dialog-head {
  border-bottom-color: rgba(255, 255, 255, 0.5019607843);
}

.dialog-warning .dialog-head {
  border-bottom-color: rgba(0, 0, 0, 0.5019607843);
}

.dialog .dialog-body {
  display: flex;
  margin-top: 1rem;
}

.dialog .close-button {
  cursor: pointer;
  font-size: 2rem;
}

.dialog.show {
  display: flex;
}

.dropdown {
  position: relative;
}

.dropdown.right .content.show {
  right: 0;
}

.dropdown .content {
  background-color: #eee;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  display: none;
  padding: 2px;
  position: absolute;
  min-width: 100%;
}

.dropdown .content.show {
  display: flex;
  flex-direction: column;
  row-gap: 2px;
}

.dropdown .item {
  background-color: #ccc;
  border-radius: 4px;
  cursor: pointer;
}

.dropdown .item:focus,
.dropdown .item:hover {
  background-color: #aaa;
}

#font-size-dropdown .item.font-size-x-small {
  font-size: x-small;
}

#font-size-dropdown .item.font-size-small {
  font-size: small;
}

#font-size-dropdown .item.font-size-medium {
  font-size: medium;
}

#font-size-dropdown .item.font-size-large {
  font-size: large;
}

#font-size-dropdown .item.font-size-x-large {
  font-size: x-large;
}

#font-size-dropdown .item.font-size-xx-large {
  font-size: xx-large;
}

#font-size-dropdown .item.font-size-x-small {
  font-size: x-small;
}

.fsize-xl {
  font-size: x-large !important;
}

.navbar {
  column-gap: 0.5em;
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: fixed;
  background-color: var(--brand-color-1);
  flex-wrap: nowrap;
}

.navbar .item-group.hidden {
  display: none;
}

.navbar .item-group {
  column-gap: 2px;
  display: flex;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  background-color: #eee;
  display: flex;
  flex-direction: column;
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
  overflow-y: scroll;
}

a {
  color: #000;
}

.main {
  --font-size: medium;
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
  font-size: var(--font-size);
  align-items: center;
  margin-bottom: 1rem;
  margin-top: 1rem;
  row-gap: 1rem;
}

.footer {
  background-color: #eee;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 1280px) {
  .footer {
    flex-direction: column;
    align-items: center;
  }
}
.footer .item-group {
  column-gap: 1em;
  display: flex;
}

.footer a {
  color: #666;
  font-weight: bold;
}

.container-w100 {
  width: 100%;
  display: flex;
  column-gap: 1rem;
  row-gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem;
  justify-content: center;
}

.article-section {
  display: flex;
  column-gap: 1rem;
  row-gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  max-width: 1280px;
  width: calc(100% - 1rem);
  justify-content: center;
  background-color: white;
  border-radius: 4px;
}

.article-qz {
  display: flex;
  column-gap: 1rem;
  row-gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  max-width: 1280px;
  width: calc(100% - 1rem);
  justify-content: center;
  background-color: white;
  border-radius: 4px;
}

.signin-form-w {
  padding-top: 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.signin-form {
  max-width: 500px;
}

.signin-form .title-div {
  display: flex;
  justify-content: space-between;
  column-gap: 2px;
}

.signin-form button[type=submit] {
  width: 5em;
}

.signin-form button[type=button] {
  width: 5em;
}

.fieldset {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  align-items: center;
}

.fieldset.buttons {
  justify-content: space-around;
}

.fieldset .button {
  font-size: medium;
}

input {
  border: 0 solid #bbb;
  border-bottom-width: 1px;
}

input:focus,
input:hover {
  outline: 0;
  border-bottom-color: #666;
}

.row {
  display: flex;
}

.opq-div {
  margin-top: 1rem;
  overflow: hidden;
  max-width: 100%;
}

.opq-div input {
  max-width: 100%;
}

.tfq-div {
  margin-top: 1rem;
}

.opq-q {
  display: flex;
  column-gap: 0.5rem;
  flex-direction: column;
  max-width: 100%;
}

.tfq-q {
  display: flex;
  column-gap: 0.5rem;
}

.saveas-form-dialog .title-div {
  display: flex;
  justify-content: space-between;
  column-gap: 2px;
}

.saveas-form-dialog button[type=submit] {
  width: 5em;
}

.saveas-form-dialog button[type=button] {
  width: 5em;
}

.hidden {
  display: none !important;
}

@media screen and (min-width: 1280px) {
  .hidden-on-hd-screen-and-larger {
    display: none !important;
  }
}
@media screen and (max-width: 1280px) {
  .hidden-on-hd-screen-and-smaller {
    display: none !important;
  }
}
:root {
  --brand-color-1: rgb(63, 120, 161);
  --brand-color-2: rgb(162, 16, 4);
  --brand-color-3: rgb(255, 253, 208);
}

/*# sourceMappingURL=styles.css.map */
