*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  user-select: none;
}

*.hidden {
  display: none !important;
}

*.unshow {
  opacity: 0 !important;
}

*[disabled] {
  opacity: 0.5;
  pointer-events: none;
  background: repeating-linear-gradient(-45deg, var(--disabled-background-1), var(--disabled-background-1) 10px, var(--disabled-background-2) 10px, var(--disabled-background-2) 20px) !important;
}

*[data-value=init] {
  display: none !important;
}

body {
  --br: 10px;
  --brb: 1000px;
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  width: 100%;
  font-size: 1.1em;
}
@media all and (max-width: 900px) {
  body {
    --width-page:95%;
  }
}
body main {
  width: 100%;
  min-height: 100svh;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
  background-color: var(--main-background);
}
body main a {
  text-decoration: none;
  color: inherit;
}
body main button, body main a:not(.home) {
  cursor: pointer;
  font-size: 0.8em;
  padding: 0.5em 1em;
  border-radius: var(--brb);
  border: 1px solid var(--border-color);
  color: var(--text-color-priority-1);
}
body main button.active, body main a:not(.home).active {
  background: var(--button-background) !important;
  color: #fff !important;
}
body main header {
  width: 100%;
}
body main header .wrapper-header {
  width: var(--width-page);
  max-width: var(--max-width-page);
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  padding: 2em 0 1em;
  gap: 1em;
}
body main header .wrapper-header a {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  gap: 0.5em;
}
body main header .wrapper-header .beta-label {
  padding: 0.2em 0.5em;
  background: var(--beta-label-background);
  border-radius: var(--brb);
  color: var(--beta-label-color);
  border: 1px solid;
  font-size: smaller;
}
body main .top-bar-main,
body main .top-bar-sub {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  z-index: 99999;
  padding: 1em 0;
  width: 100%;
  position: sticky;
  background: var(--main-background);
  top: 0;
  border-bottom: 1px solid var(--border-color);
}
body main .top-bar-main .container-icon,
body main .top-bar-sub .container-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 3em;
  aspect-ratio: 1;
  background: var(--main-background);
  border: 1px solid var(--border-color);
  border-radius: var(--brb);
}
body main .top-bar-main .container-icon.abs,
body main .top-bar-sub .container-icon.abs {
  width: fit-content;
  aspect-ratio: auto;
  gap: 0.5em;
  background: none;
}
body main .top-bar-main .container-icon.open,
body main .top-bar-sub .container-icon.open {
  outline: 2px solid var(--button-background);
  outline-offset: 2px;
}
body main .top-bar-main .container-top,
body main .top-bar-sub .container-top {
  width: var(--width-page);
  max-width: var(--max-width-page);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1em;
}
body main .top-bar-main .container-top label,
body main .top-bar-sub .container-top label {
  width: 100%;
  display: flex;
}
body main .top-bar-main .container-top label input,
body main .top-bar-sub .container-top label input {
  width: 100%;
  padding: 0.5em 1em;
  border-radius: var(--brb);
  border: 1px solid var(--border-color);
  outline: none;
}
body main .top-bar-sub {
  background: none;
  border: none;
  top: 10vh;
  padding: 1em 1em 0;
  gap: 0.5em;
  justify-content: flex-end;
}
body main .top-bar-sub a {
  background: var(--card-background);
}
body main .wrapper-main {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  margin: 1em 0;
  flex-direction: column;
  width: var(--width-page);
  max-width: var(--max-width-page);
  justify-content: flex-start;
  gap: 1em;
}
body main .wrapper-main .description {
  text-align: justify;
}
body main .wrapper-main .calendar {
  width: 100%;
  gap: 1em;
  display: flex;
  flex-direction: column;
  margin: 0 auto 1em;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 2em;
  gap: 1em;
}
@media all and (max-width: 600px) {
  body main .wrapper-main .calendar {
    gap: 0.5em;
  }
}
body main .wrapper-main .calendar .month {
  display: grid;
  gap: 1em;
  grid-template-columns: repeat(7, 1fr);
}
@media all and (max-width: 600px) {
  body main .wrapper-main .calendar .month {
    gap: 0.5em;
  }
}
body main .wrapper-main .calendar .month h2 {
  text-transform: capitalize;
  text-align: end;
  border-radius: var(--br);
  background: var(--disabled-background-1);
  grid-column: span 7;
  padding: 0.5em 1em;
}
body main .wrapper-main .calendar .month .header-label {
  display: grid;
  gap: 1em;
  grid-template-columns: repeat(7, 1fr);
  grid-column: span 7;
}
@media all and (max-width: 600px) {
  body main .wrapper-main .calendar .month .header-label {
    gap: 0.5em;
  }
}
body main .wrapper-main .calendar .month .header-label p {
  margin: auto;
}
body main .wrapper-main .calendar .month .day-in-calendar {
  aspect-ratio: 1;
  border-radius: var(--br);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  border: 1px solid var(--border-color);
  opacity: 0.5;
  position: relative;
  background: repeating-linear-gradient(-45deg, var(--disabled-background-1), var(--disabled-background-1) 10px, var(--disabled-background-2) 10px, var(--disabled-background-2) 20px) !important;
}
body main .wrapper-main .calendar .month .day-in-calendar.currentDay {
  outline: 2px solid var(--button-background);
  outline-offset: 2px;
  outline-style: dashed;
}
body main .wrapper-main .calendar .month .day-in-calendar.article-linked {
  background: var(--button-background) !important;
  color: var(--main-bg);
  cursor: pointer;
  opacity: 1;
}
body main .wrapper-main .calendar .month .day-in-calendar .number-element-a-day {
  position: absolute;
  top: -0.5em;
  right: -0.5em;
  background: #2b5f4e;
  aspect-ratio: 1;
  border-radius: var(--brb);
  width: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}
body main .wrapper-main .container-cards {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 1em;
}
body main .wrapper-main .container-cards [class^=card] {
  max-height: 50vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
  gap: 1em;
  padding: 1em;
  border: 1px solid var(--border-color);
  width: 100%;
  background: var(--card-background);
  border-radius: var(--br);
  box-shadow: rgba(50, 50, 93, 0.25) 0 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
body main .wrapper-main .container-cards [class^=card]:target {
  outline: 2px solid var(--button-background);
  outline-offset: 2px;
  scroll-margin-top: 40vh;
}
body main .wrapper-main .container-cards .card-no-result {
  min-height: 40svh;
}
body main .wrapper-main .container-cards .card-no-result .container-icon {
  font-size: 2em;
}
body main .wrapper-main .container-cards .card-no-result .container-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: row;
  gap: 1em;
}
body main .wrapper-main .container-cards .card-creation {
  outline: 2px solid var(--button-background);
  outline-offset: 2px;
  position: relative;
  align-items: flex-start;
  justify-content: flex-start;
}
body main .wrapper-main .container-cards .card-creation label {
  width: 100%;
  display: flex;
}
body main .wrapper-main .container-cards .card-creation label.txta {
  flex: 100;
}
body main .wrapper-main .container-cards .card-creation label input, body main .wrapper-main .container-cards .card-creation label textarea {
  width: 100%;
  padding: 0.5em 1em;
  border-radius: var(--brb);
  border: 1px solid var(--border-color);
  outline: none;
}
body main .wrapper-main .container-cards .card-creation label textarea {
  border-radius: var(--br);
  resize: none;
}
body main .wrapper-main .container-cards .card-creation .container-selection-template {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
  flex-direction: row;
  translate: none;
  gap: 0.5em;
}
body main .wrapper-main .container-cards .card-creation .container-selection-template button {
  background: var(--card-background);
  border: 1px solid var(--border-color);
  width: 2em;
  aspect-ratio: 1;
  border-radius: var(--brb);
  display: flex;
  align-items: center;
  justify-content: center;
}
body main .wrapper-main .container-cards .card-creation .container-selection-template button i {
  margin: auto;
}
body main .wrapper-main .container-cards .card-creation .button-creation-submit {
  margin-left: auto;
}
body main .wrapper-main .container-cards .expand-wrapper-card-created {
  margin-left: auto;
  background: var(--card-background);
  z-index: 100;
}
body main .wrapper-main .container-cards .wrapper-card-created {
  height: 100%;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 1em;
}
body main .wrapper-main .container-cards .wrapper-card-created .card {
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
body main .wrapper-main .container-cards .wrapper-card-created .card .header-card,
body main .wrapper-main .container-cards .wrapper-card-created .card .footer-card {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  width: 100%;
  gap: 1em;
}
body main .wrapper-main .container-cards .wrapper-card-created .card .header-card .title-card,
body main .wrapper-main .container-cards .wrapper-card-created .card .footer-card .title-card {
  white-space: nowrap;
  overflow-x: auto;
}
body main .wrapper-main .container-cards .wrapper-card-created .card .footer-card p {
  font-size: smaller;
  color: var(--text-color-priority-2);
  white-space: nowrap;
}
body main .wrapper-main .container-cards .wrapper-card-created .card .footer-card .type-card {
  text-transform: uppercase;
}
body main .wrapper-main .container-cards .wrapper-card-created .card .wrapper-card {
  display: flex;
  width: 100%;
  padding: 1em;
  overflow-y: auto;
  background: var(--disabled-background-1);
  border-radius: var(--br);
}
body main .wrapper-main .container-cards .wrapper-card-created .card.stacked:target {
  outline: none !important;
}
body main footer {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 100%;
  padding: 1em;
  height: 15vh;
}