/*=================================
=            Variables            =
=================================*/
html {
  --secondary: #1e2019;
  --background: #F6F6F6;
  --lighten10: #fff;
  --darken10: #ddd;
  --lighten2: #fbfbfb;
  --reverse10: #ddd;
  --lightText: #aaa;
  --mainRGB: 48, 102, 190;
  --secondaryRGB: 30, 32, 25;
  --darken10RGB: 221, 221, 221;
  --errorRGB: 255, 82, 82;
}

.dark-theme {
  --secondary: #bfbfbf;
  --background: #1e2019;
  --lighten10: #333;
  --darken10: #1b1c16;
  --lighten2: #272727;
  --reverse10: #666;
  --lightText: #666;
  --secondaryRGB: 191, 191, 191;
  --darken10RGB: 27, 28, 22;
}

/*=====  End of Variables  ======*/
/*=============================
=            Reset            =
=============================*/
html, body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.4;
  color: var(--secondary);
  font-family: "Asap", sans-serif;
  background-color: var(--background);
}
html a, body a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
html table, body table {
  border-collapse: collapse;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
}
html ul, body ul {
  margin: 0;
  padding: 0;
}
html ul li, body ul li {
  list-style: none;
}
html form, html h1, html h2, html h3, html h4, body form, body h1, body h2, body h3, body h4 {
  margin: 0;
}

::selection {
  background-color: #3066be;
  color: var(--secondary);
}

::-moz-selection {
  background-color: #3066be;
  color: var(--secondary);
}

::-webkit-selection {
  background-color: #3066be;
  color: var(--secondary);
}

/*=====  End of Reset  ======*/
.btn {
  display: inline-block;
  position: relative;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
  padding: 5px 7px;
  border: none;
  outline: none;
  transition-duration: 0.3s;
  cursor: pointer;
}
.btn:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 6px;
  right: 6px;
  height: 2px;
  background-color: #3066be;
  border-radius: 1px;
  transition-duration: 0.3s;
}
.btn:hover {
  color: #3066be;
}
.btn:hover:after {
  left: 0;
  right: 0;
}

.btn-alt {
  display: inline-block;
  position: relative;
  font-family: inherit;
  font-size: inherit;
  color: var(--secondary);
  background-color: transparent;
  padding: 5px 7px;
  border: 1px solid #3066be;
  outline: none;
  border-radius: 3px;
  transition-duration: 0.3s;
  cursor: pointer;
}
.btn-alt:hover {
  background-color: #3066be;
  color: var(--background);
}

.tac {
  text-align: center;
}

.toast {
  z-index: 100;
  position: fixed;
  display: block;
  bottom: 10px;
  right: 10px;
  padding: 12px;
  color: var(--lighten10);
  background-color: #FF5252;
  box-shadow: 0 2px 5px 1px rgba(0, 0, 0, 0.12);
  transition-duration: 0.3s;
  transform: translateX(120%);
}
.toast i {
  padding-right: 7px;
}
.toast li:not(:only-child) {
  list-style-type: disc;
  list-style-position: inside;
}

.toast.error {
  background-color: #FF5252;
}

.toast.success {
  background-color: #43a047;
}

.toast.info {
  background-color: #F5853F;
}

.toast-show {
  transform: translateX(0);
}

.popups {
  display: none;
}

.confirm-cache, .popups {
  z-index: 20;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(var(--secondaryRGB), 0.3);
}
.confirm-cache .confirm-container, .confirm-cache .popup, .popups .confirm-container, .popups .popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90vw;
  max-height: 90vh;
  overflow-x: hidden;
  background-color: var(--background);
  padding: 7px;
  border-radius: 3px;
}
.confirm-cache .confirm-container .confirm-header, .confirm-cache .popup .confirm-header, .popups .confirm-container .confirm-header, .popups .popup .confirm-header {
  border-bottom: 1px solid var(--secondary);
}
.confirm-cache .confirm-container .confirm-header span, .confirm-cache .popup .confirm-header span, .popups .confirm-container .confirm-header span, .popups .popup .confirm-header span {
  display: inline-block;
  height: 25px;
  width: 25px;
  background-color: #F5853F;
  border-radius: 50%;
  text-align: center;
  vertical-align: middle;
  margin: 0 5px 5px 0;
}
.confirm-cache .confirm-container .confirm-header span i, .confirm-cache .popup .confirm-header span i, .popups .confirm-container .confirm-header span i, .popups .popup .confirm-header span i {
  color: var(--background);
  line-height: 25px;
}
.confirm-cache .confirm-container .confirm-content, .confirm-cache .popup .confirm-content, .popups .confirm-container .confirm-content, .popups .popup .confirm-content {
  padding: 7px;
}
.confirm-cache .confirm-container .confirm-buttons, .confirm-cache .popup .confirm-buttons, .popups .confirm-container .confirm-buttons, .popups .popup .confirm-buttons {
  text-align: center;
}
.confirm-cache .confirm-container .close-popup, .confirm-cache .popup .close-popup, .popups .confirm-container .close-popup, .popups .popup .close-popup {
  position: absolute;
  top: 5px;
  right: 5px;
}
.confirm-cache .confirm-container ul li, .confirm-cache .popup ul li, .popups .confirm-container ul li, .popups .popup ul li {
  margin: 7px 0;
}
.confirm-cache .confirm-container ul li label, .confirm-cache .popup ul li label, .popups .confirm-container ul li label, .popups .popup ul li label {
  display: block;
  text-transform: uppercase;
}
.confirm-cache .confirm-container ul li label.default, .confirm-cache .popup ul li label.default, .popups .confirm-container ul li label.default, .popups .popup ul li label.default {
  display: inline;
  text-transform: none;
}

input[type=text], input[type=password], input[type=number], textarea {
  background-color: transparent;
  font-size: 0.9em;
  font-family: inherit;
  color: inherit;
  border: none;
  border-bottom: 1px solid #3066be;
  padding: 5px 7px;
  outline: none;
  transition-duration: 0.3s;
}
input[type=text]:hover, input[type=password]:hover, input[type=number]:hover, textarea:hover {
  background-color: var(--background);
  border-radius: 3px;
}

textarea {
  width: calc(100% - 14px);
  max-width: calc(100% - 14px);
  border: 1px solid var(--reverse10);
  transition-duration: 0s;
}
textarea:hover {
  border-color: var(--secondary);
}
textarea:focus {
  border-color: #3066be;
}

select {
  color: inherit;
  background-color: var(--lighten2);
  border: none;
  border-bottom: 1px solid #3066be;
  padding: 4px 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  transition-duration: 0.3s;
}
select:hover {
  background-color: var(--lighten10);
}

header {
  z-index: 20;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  line-height: 60px;
  background-color: var(--lighten10);
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid var(--darken10);
  transition-duration: 0.15s;
}
header .hl {
  position: absolute;
  left: 5px;
  top: 0;
  bottom: 0;
}
header .hm {
  font-size: 30px;
  color: #3066be;
  font-weight: 500;
  text-align: center;
}
header .hr {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
}
header table {
  height: 100%;
}
header table td {
  padding: 0 3px;
}
header a.btn {
  display: inline;
}

header.not-top {
  box-shadow: 0 2px 5px 1px rgba(0, 0, 0, 0.12);
}

.main-menu {
  position: fixed;
  left: 0;
  top: 60px;
  bottom: 0;
  width: 200px;
  background-color: var(--lighten2);
  border-right: 1px solid var(--darken10);
}
.main-menu ul {
  margin-top: calc(50vh - 60px);
  transform: translateY(-50%);
}
.main-menu ul li {
  transition-duration: 0.3s;
}
.main-menu ul li:hover {
  background-color: var(--reverse10);
}
.main-menu ul li a {
  display: block;
  height: 40px;
}
.main-menu ul li a .icon {
  display: inline-block;
  width: 40px;
  text-align: center;
}
.main-menu ul li a .title {
  display: inline-block;
  line-height: 40px;
}

p.info, div.info.assistant {
  position: relative;
  text-align: justify;
  background-color: rgba(245, 133, 63, 0.6);
  border: 1px solid #f4792c;
  border-radius: 3px;
  padding: 5px 5px 5px 25px;
  font-size: 0.8em;
}
p.info:before, div.info.assistant:before {
  content: "\f129";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  text-align: center;
  transform: translateY(-50%);
}
p.info:after, div.info.assistant:after {
  content: "";
  position: absolute;
  width: 1px;
  top: 5px;
  bottom: 5px;
  left: 20px;
  background-color: #f4792c;
}
p.info p, div.info.assistant p {
  margin: 3px 0;
}
p.info ul, div.info.assistant ul {
  padding-left: 15px;
}
p.info ul li, div.info.assistant ul li {
  list-style: disc;
}

div.info.assistant {
  background-color: rgba(var(--mainRGB), 0.6);
  border: 1px solid #2c5dae;
}
div.info.assistant:after {
  background-color: #2c5dae;
}

p.info.important {
  background-color: rgba(var(--errorRGB), 0.6);
  border: 1px solid #ff3e3e;
}
p.info.important:after {
  background-color: #ff3e3e;
}

main {
  padding-top: 60px;
}
main label {
  font-size: 0.9em;
}
main .wrapper {
  margin: 0 16%;
  padding: 20px;
  background-color: var(--lighten2);
}

.with-menu {
  padding-left: 200px;
}

.feedback {
  position: fixed;
  bottom: 10px;
  right: 10px;
}
.feedback .toggle-feedback {
  display: block;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--lighten10);
  font-family: inherit;
  font-size: 1.1em;
  color: inherit;
  border: none;
  outline: none;
  transition-duration: 0.3s;
  cursor: pointer;
}
.feedback .toggle-feedback:hover {
  background-color: #3066be;
}
.feedback form {
  display: none;
  position: absolute;
  width: max-content;
  max-width: calc(100vw - 100px);
  bottom: 0;
  right: 50px;
  padding: 7px;
  background-color: var(--lighten10);
}
.feedback form textarea {
  min-width: 200px;
}
.feedback form .tac {
  margin: 4px 0;
}

.authorize-cookies {
  z-index: 100;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background-color: var(--lighten10);
  box-shadow: 0 -2px 5px 1px rgba(0, 0, 0, 0.12);
}
.authorize-cookies p {
  font-size: 0.9em;
  margin: 0;
}
.authorize-cookies p {
  font-size: 0.9em;
  margin: 0;
}
.authorize-cookies button {
  margin: 0 12px;
}

.login {
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.login form {
  display: block;
  width: 40vw;
  background-color: var(--lighten10);
  padding: 7px;
  box-shadow: 0 2px 5px 1px rgba(0, 0, 0, 0.12);
  margin: 4vw;
}
.login form table {
  width: 100%;
}
.login form table td {
  padding: 5px;
}
.login form table input[type=text], .login form table input[type=password] {
  width: calc(100% - 14px);
}
.login .separator {
  display: block;
  height: 80vh;
  width: 2px;
  background-color: var(--darken10);
}

.page-error {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 12px;
  border-radius: 3px;
  background-color: var(--lighten10);
  border: 1px solid #3066be;
}
.page-error i {
  font-size: 3em;
  color: #3066be;
}
.page-error p {
  font-size: 1.4em;
}

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