/* 
	http://meyerweb.com/eric/tools/css/reset/ 
	v2.0 | 20110126
	License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

i, em {
  font-style: italic;
}

b, strong {
  font-weight: bold;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  font-size: 62.5%;
}

form > div.form-input {
  margin-bottom: 3rem;
}
form > div.form-input::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.1rem;
  background-color: #c0c0c0;
  margin-top: 2rem;
}
form > div.form-input > label, form > div.form-input > h2 {
  font-size: 2rem;
  display: block;
  color: #2c2c2c;
}
form > div.form-input > label > img.flag, form > div.form-input > h2 > img.flag {
  height: 0.8em;
  vertical-align: top;
  margin: 0 0.5rem;
}
form > div.form-input > label > div.info, form > div.form-input > h2 > div.info {
  position: relative;
  display: inline-block;
  vertical-align: baseline;
  background-color: #007272;
  color: white;
  border-radius: 100%;
  width: auto;
  height: 1.8rem;
  aspect-ratio: 1;
  box-sizing: content-box;
  margin: 0rem 1rem;
}
form > div.form-input > label > div.info::before, form > div.form-input > h2 > div.info::before {
  content: "?";
  display: inline;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
}
form > div.form-input > label > div.info > div, form > div.form-input > h2 > div.info > div {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  top: 0%;
  left: calc(100% + 1rem);
  background-color: #007272;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2em;
  padding: 1rem;
  width: 10rem;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
form > div.form-input > label > div.info:hover > div, form > div.form-input > h2 > div.info:hover > div {
  opacity: 1;
}
form > div.form-input > p.limit {
  text-align: right;
  margin-bottom: 1rem;
}
form > div.form-input > input:not([type=checkbox]), form > div.form-input > textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 1rem;
  box-sizing: border-box;
}
form > div.form-input > input[type=checkbox] {
  margin: 2rem;
  margin-left: 0;
}
form > div.form-input > input[type=file] {
  display: none !important;
}
form > div.form-input > ul.radio-list, form > div.form-input > ul.check-list {
  margin-top: 2rem;
  margin-left: 2rem;
}
form > div.form-input > ul.radio-list > li, form > div.form-input > ul.check-list > li {
  margin: 1rem;
  margin-left: 0rem;
}
form > div.form-input > select {
  display: none;
}
form > div.form-input > div.custom-select {
  position: relative;
  margin-top: 2.5rem;
}
form > div.form-input > div.custom-select > div {
  border: solid black 0.1rem;
  border-top-right-radius: 5rem;
  border-bottom-right-radius: 5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
}
form > div.form-input > div.custom-select > div > span {
  display: flex;
  flex-direction: row;
  align-items: center;
  white-space: nowrap;
  padding: 0.5rem 1rem;
  flex: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
form > div.form-input > div.custom-select > div > span > img {
  height: 1em;
  width: auto;
  margin-right: 1em;
}
form > div.form-input > div.custom-select > div button {
  display: inline-block;
}
form > div.form-input > div.custom-select > div button::before {
  content: url("/src/Components/Forms/images/caret-down-solid.svg");
  width: 0.6em;
  display: block;
  aspect-ratio: 1/1;
}
form > div.form-input > div.custom-select > ul {
  position: absolute;
  top: 100%;
  left: 0;
  border: solid black 0.1rem;
  background-color: white;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  overflow-y: auto;
  z-index: 1;
}
form > div.form-input > div.custom-select > ul.top {
  top: auto;
  bottom: 100%;
}
form > div.form-input > div.custom-select > ul.bottom {
  top: 100%;
  bottom: auto;
}
form > div.form-input > div.custom-select > ul > li {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
  white-space: nowrap;
}
form > div.form-input > div.custom-select > ul > li > img {
  height: 1em;
  width: auto;
  margin-right: 1em;
}
form > div.form-input > div.custom-select > ul > li.selected {
  cursor: default;
  background-color: #00d5c8;
}
form > div.form-input > div.custom-select > ul > li:not(.selected):hover {
  background-color: #84e9e3;
}
form > div.form-input > input[type=date] {
  margin: 2rem;
  margin-left: 0;
}
form > div.form-input.datetime > .custom-select {
  display: inline-block;
}
form > div.form-input > p.file-info {
  margin: 1rem 0;
}
form > div.form-input > p.error {
  color: #e62031;
  padding: 1rem;
  border: solid 0.1rem #e62031;
  margin: 1rem 0;
  border-radius: 0.5rem;
}
form > div.form-input > div.image-preview {
  margin-top: 2rem;
  width: 20rem;
  border: solid 0.1rem #c0c0c0;
}
form > div.form-input > div.image-preview > img {
  width: 100%;
}
form > div.form-input > div.select-list {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  margin-top: 2rem;
}
form > div.form-input > div.select-list > div:not(.button-container) {
  width: 45%;
}
form > div.form-input > div.select-list > div:not(.button-container) > ul {
  height: 10rem;
  overflow-y: auto;
  display: block;
  border: solid 0.1rem #2c2c2c;
}
form > div.form-input > div.select-list > div:not(.button-container) > ul > li {
  border-bottom: solid 0.1rem #c0c0c0;
  padding: 0.5rem;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
form > div.form-input > div.select-list > div:not(.button-container) > ul > li.selected {
  background-color: #00d5c8;
}
form > div.form-input > div.select-list > div.button-container {
  width: 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
form > div.form-input > div.select-list > div.button-container > button {
  margin: 0.5rem 0;
  padding: 1rem;
  display: block;
}
form > div.form-input > div.select-list > div.button-container > button::before {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
form > div.form-input > div.select-list > div.button-container > button.remove-button::before {
  background-image: url("/src/Components/Forms/images/left-long-solid.svg");
}
form > div.form-input > div.select-list > div.button-container > button.add-button::before {
  background-image: url("/src/Components/Forms/images/right-long-solid.svg");
}
form > div.form-input.required > label:before {
  content: "*";
  color: #007272;
}
form > div.form-input.required > label > div.info > div:before {
  content: "Required - ";
}
form > input[type=submit], form > button {
  margin-right: 1rem;
}

input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: #fff;
  margin: 0;
  box-sizing: border-box;
  font: inherit;
  color: currentColor;
  width: 1.14em;
  height: 1.14em;
  border: 0.14em solid currentColor;
  border-radius: 50%;
  transform: translateY(-0.075em);
  display: inline-grid;
  place-content: center;
}
input[type=radio]:before {
  content: "";
  display: block;
  width: 0.64em;
  height: 0.64em;
  border-radius: 50%;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em #007272;
}
input[type=radio]:checked::before {
  transform: scale(1);
}
input[type=radio]:disabled {
  opacity: 0.4;
}
input[type=radio]:disabled::before {
  box-shadow: inset 1em 1em #c0c0c0;
}

input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: #fff;
  margin: 0;
  box-sizing: border-box;
  font: inherit;
  color: currentColor;
  width: 1.14em;
  height: 1.14em;
  border: 0.14em solid currentColor;
  transform: translateY(-0.075em);
  display: inline-grid;
  place-content: center;
}
input[type=checkbox]:before {
  content: "";
  display: block;
  width: 0.66em;
  height: 0.66em;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  background-color: #007272;
  background-image: url("/src/Components/Forms/images/check-solid.svg");
  background-size: 75% auto;
  background-position: center;
  background-repeat: no-repeat;
}
input[type=checkbox]:checked::before {
  transform: scale(1);
}
input[type=checkbox]:disabled {
  opacity: 0.4;
}
input[type=checkbox]:disabled::before {
  background-color: #c0c0c0;
}

.wysiwyg > .ql-editor {
  min-height: 30rem;
}

.tab-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  border: solid 0.1rem #c0c0c0;
  border-radius: 1rem;
  overflow: hidden;
}
.tab-container > ul {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.tab-container > ul li {
  padding: 2rem;
  flex: 1;
  text-align: center;
  border-bottom: solid 0.1rem #c0c0c0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: background-color 0.3s ease-in-out;
}
.tab-container > ul li.selected {
  background-color: #00d5c8;
  cursor: default;
}
.tab-container > ul li:not(:last-child) {
  border-right: solid 0.1rem #c0c0c0;
}
.tab-container > ul li:not(.selected):hover {
  background-color: #84e9e3;
}
.tab-container > div {
  flex: 1;
  display: none;
  padding: 2rem;
  overflow-y: auto;
}
.tab-container > div.selected {
  display: block;
}

#site_menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 6rem;
  height: 100vh;
  background-color: #00d5c8;
  overflow: hidden;
  transition: width 0.3s ease-in-out;
  z-index: 1;
}
#site_menu ul {
  border-bottom: solid 0.1rem #034441;
}
#site_menu li > a, #site_menu li > div {
  display: flex;
  align-items: center;
  flex-direction: row;
  font-size: 1.8rem;
  text-decoration: none;
  color: #2c2c2c;
}
#site_menu li > a > svg, #site_menu li > div > svg {
  font-size: inherit;
  height: 1em;
  aspect-ratio: 1/1;
  margin: 0.5em 0.5em 0.5em 1em;
  flex-shrink: 0;
}
#site_menu li > a > span, #site_menu li > div > span {
  flex-shrink: 0;
  font-size: inherit;
  margin: 0.5em 1em 0.5em 0em;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
}
#site_menu li > div {
  background-color: white;
  color: #007272;
  cursor: default;
}
#site_menu li > div > svg path {
  fill: #007272;
}
#site_menu li > a {
  color: #2c2c2c;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
#site_menu li > a > svg path {
  fill: #2c2c2c;
  transition: fill 0.3s ease-in-out;
}
#site_menu li > a:hover {
  color: #007272;
  background-color: #84e9e3;
}
#site_menu li > a:hover > svg path {
  fill: #007272;
}
#site_menu:hover {
  width: 20rem;
}
#site_menu:hover li > a > span, #site_menu:hover li > div > span {
  opacity: 1;
}

div.history-panel {
  padding: 1rem;
  border: solid 0.1rem #c0c0c0;
  border-radius: 1rem;
  margin: 2rem 0;
}
div.history-panel > ul > li {
  margin: 0.7rem 0;
  font-size: 1.1rem;
}
div.history-panel > ul > li:first-child {
  margin-top: 0;
}
div.history-panel > ul > li:last-child {
  margin-bottom: 0;
}
div.history-panel > ul > li > span {
  font-weight: 600;
}

div.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: rgba(44, 44, 44, 0.5);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
div.modal-container > div.modal {
  background-color: white;
  min-width: 50%;
  max-width: 80%;
  max-height: 80%;
  transform: scale(0);
  transition: transform 0.3s ease-in-out;
  overflow: auto;
}
div.modal-container.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
div.modal-container.open > div.modal {
  transform: scale(1);
}

div.error-panel {
  padding: 1rem;
  box-sizing: border-box;
  border: 0.1rem dashed #e62031;
  color: #e62031;
  display: block;
  margin: 2rem 0;
}
div.error-panel > p {
  margin: 1rem 0;
}
div.error-panel > ul {
  padding-left: 2rem;
}
div.error-panel > ul > li {
  margin: 1rem 0;
  list-style: disc;
}
div.error-panel > *:first-child {
  margin-top: 0;
}
div.error-panel > *:last-child {
  margin-bottom: 0;
}

div.warning-panel {
  padding: 1rem;
  box-sizing: border-box;
  border: 0.1rem dashed #faa902;
  color: #b77101;
  display: block;
  margin: 2rem 0;
}
div.warning-panel > p {
  margin: 1rem 0;
}
div.warning-panel > ul {
  padding-left: 2rem;
}
div.warning-panel > ul > li {
  margin: 1rem 0;
  list-style: disc;
}
div.warning-panel > *:first-child {
  margin-top: 0;
}
div.warning-panel > *:last-child {
  margin-bottom: 0;
}

div.info-panel {
  padding: 1rem;
  box-sizing: border-box;
  border: 0.1rem dashed #00d5c8;
  color: #007272;
  display: block;
  margin: 2rem 0;
}
div.info-panel > p {
  margin: 1rem 0;
}
div.info-panel > ul {
  padding-left: 2rem;
}
div.info-panel > ul > li {
  margin: 1rem 0;
  list-style: disc;
}
div.info-panel > *:first-child {
  margin-top: 0;
}
div.info-panel > *:last-child {
  margin-bottom: 0;
}

.flow-editor {
  position: relative;
  width: 100%;
  height: 20rem;
  background-color: #ececec;
  overflow: auto;
}
.flow-editor > .opening {
  position: absolute;
  top: 3rem;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 2rem;
  height: 2rem;
  background-color: white;
  border: solid #2c2c2c 0.1rem;
  border-radius: 100%;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.flow-editor > .opening:before {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, 0%);
  content: "Start";
  height: 3rem;
  padding: 0.5rem 1rem;
  box-sizing: border-box;
  background-color: white;
  border-radius: 1rem;
  border: solid #2c2c2c 0.1rem;
}
.flow-editor > .flow-box {
  position: absolute;
  width: 25rem;
  height: 15rem;
  border: solid 0.1rem #c0c0c0;
  border-radius: 1rem;
  background-color: white;
  box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.45);
  box-sizing: border-box;
  padding: 1rem;
}
.flow-editor > .flow-box > .flow-inputs, .flow-editor > .flow-box > .flow-outputs {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.flow-editor > .flow-box > .flow-inputs > div, .flow-editor > .flow-box > .flow-outputs > div {
  height: 100%;
  aspect-ratio: 1/1;
  border-radius: 100%;
  border: solid #2c2c2c 0.1rem;
  background-color: white;
  margin: 0 0.2rem;
}
.flow-editor > .flow-box > .flow-inputs > div.disabled, .flow-editor > .flow-box > .flow-outputs > div.disabled {
  background-color: #c0c0c0;
}
.flow-editor > .flow-box > .flow-inputs {
  top: calc(-1.5rem / 2);
}
.flow-editor > .flow-box > .flow-inputs > div {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.flow-editor > .flow-box > .flow-outputs {
  bottom: calc(-1.5rem / 2);
}
.flow-editor > .flow-box > .flow-outputs > div {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.flow-editor > .flow-box > .flow-outputs > div.bad {
  background-color: #e62031;
}
.flow-editor > .flow-box > .flow-outputs > div.ok {
  background-color: #faa902;
}
.flow-editor > .flow-box > .flow-outputs > div.best {
  background-color: #00d5c8;
}
.flow-editor > .flow-box > .flow-content {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.flow-editor > .flow-line {
  position: absolute;
  width: 0.2rem;
  background-color: black;
  height: 30rem;
  transform-origin: 50% 0%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

.interactive-map {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background-image: url("/src/Images/world-map.jpg");
  background-size: 100% auto;
  margin-top: 2rem;
}
.interactive-map > div {
  position: absolute;
  width: 1%;
  aspect-ratio: 1/1;
  background-color: #2c2c2c;
  border-radius: 100%;
  transform: translate(-50%, -50%);
}
.interactive-map > div.focused {
  background-color: #e62031;
  width: 1.5%;
}
.interactive-map > div.focused:not(.static) {
  cursor: grab;
}
.interactive-map > div.focused:not(.static):active {
  cursor: grabbing;
}

div.pagination > * {
  margin: 2rem;
}
div.pagination > p {
  text-align: center;
}
div.pagination > p select {
  margin: 0 1rem;
}
div.pagination > p button {
  font-size: 1em;
  padding: 0.5rem 2rem;
}
div.pagination > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
div.pagination > ul > li {
  margin: 1rem 0.5rem;
  font-weight: 600;
}
div.pagination > ul > li svg {
  display: inline-block;
  vertical-align: bottom;
  width: 1em;
  height: 1em;
}
div.pagination > ul > li svg.skip-to-start {
  background-image: url("/src/Components/Pagination/images/angles-left-solid.svg");
}
div.pagination > ul > li svg.step-back {
  background-image: url("/src/Components/Pagination/images/angle-left-solid.svg");
}
div.pagination > ul > li svg.step-forward {
  background-image: url("/src/Components/Pagination/images/angle-right-solid.svg");
}
div.pagination > ul > li svg.skip-to-end {
  background-image: url("/src/Components/Pagination/images/angles-right-solid.svg");
}
div.pagination > ul > li > a, div.pagination > ul > li > span {
  text-decoration: none;
  font-weight: 400;
  padding: 0.5rem;
  border: solid 0.1rem #007272;
  display: block;
  min-width: 3rem;
  box-sizing: border-box;
  text-align: center;
}
div.pagination > ul > li > span {
  border-color: #c0c0c0;
  cursor: default;
}
div.pagination > ul > li > a {
  transition: background-color 0.3s ease-in-out;
  cursor: pointer;
}
div.pagination > ul > li > a > svg path {
  fill: #007272;
}
div.pagination > ul > li > a:hover {
  background-color: #84e9e3;
}
div.pagination > ul > li.selected > span {
  border-color: #007272;
  background-color: #00d5c8;
  color: white;
  text-shadow: 0px 0px 2px #007272, 0px 0px 2px #007272;
}

div.dot-menu {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  box-sizing: border-box;
  border-radius: 100%;
}
div.dot-menu:before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("/src/Components/DotMenu/images/ellipsis-vertical-solid.svg");
  background-position: center;
  background-size: 2rem 2rem;
  background-repeat: no-repeat;
}
div.dot-menu > ul {
  display: none;
  position: absolute;
  left: 3rem;
  top: 0;
  z-index: 1;
  background: white;
  padding: 0.5rem;
  box-sizing: border-box;
  filter: drop-shadow(0 0 0.3rem rgba(0, 0, 0, 0.5));
}
div.dot-menu > ul:before {
  position: absolute;
  display: block;
  content: "";
  width: 2rem;
  height: 2rem;
  background-image: url("/src/Components/DotMenu/images/callout.svg");
}
div.dot-menu > ul.left:before {
  left: calc(100% - 0.2rem);
  transform: rotate(180deg);
}
div.dot-menu > ul.right:before {
  right: calc(100% - 0.2rem);
}
div.dot-menu > ul.above:before {
  top: auto;
  bottom: 0.25rem;
}
div.dot-menu > ul.below:before {
  top: 0.25rem;
  bottom: auto;
}
div.dot-menu > ul > li {
  padding: 1rem 1.5rem;
  white-space: nowrap;
  transition: background-color 0.3s ease-in-out;
}
div.dot-menu > ul > li:not(:last-child) {
  border-bottom: solid 0.1rem #c0c0c0;
}
div.dot-menu > ul > li:hover:not(.disabled) {
  background-color: #c8c3f6;
}
div.dot-menu > ul > li.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
div.dot-menu > ul input[type=submit] {
  display: none;
}
div.dot-menu.open > ul {
  display: block;
}

ul.bird-seed {
  display: flex;
  width: 100%;
  flex-direction: row;
  margin-bottom: 2rem;
}
ul.bird-seed > li {
  display: block;
}
ul.bird-seed > li > span {
  position: relative;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  border: solid #00d5c8 0.2rem;
  box-sizing: border-box;
  background-color: #00d5c8;
}
ul.bird-seed > li > a {
  position: relative;
  padding: 0.5rem 1.5rem;
  border-top-left-radius: 2rem;
  border-bottom-left-radius: 2rem;
  border: solid #ececec 0.2rem;
  border-right: none;
  box-sizing: border-box;
  background-color: white;
  text-decoration: none;
  color: black;
  transition: background-color 0.3s ease-in-out;
}
ul.bird-seed > li > a::after {
  content: ">";
  margin-left: 1rem;
}
ul.bird-seed > li > a::before {
  content: "";
  position: absolute;
  display: block;
  top: -0.2rem;
  left: 100%;
  width: 2rem;
  height: 100%;
  background-color: white;
  box-sizing: content-box;
  border-top: solid #ececec 0.2rem;
  border-bottom: solid #ececec 0.2rem;
  transition: background-color 0.3s ease-in-out;
}
ul.bird-seed > li > a:hover {
  background-color: #84e9e3;
}
ul.bird-seed > li > a:hover::before {
  background-color: #84e9e3;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  color: #2c2c2c;
}

main {
  padding: 2rem;
  box-sizing: border-box;
}
main.with-menu {
  margin-left: 6rem;
}

h1 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #007272;
}

h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

a {
  color: #007272;
}

section {
  padding: 2rem 0;
  box-sizing: border-box;
}
section:not(.panel):first-child {
  padding-top: 0;
}

table {
  width: 100%;
}
table td {
  padding: 1rem;
}
table thead td {
  border-bottom: solid 0.2rem #00d5c8;
  font-size: 2rem;
}
table tbody td {
  border-bottom: solid 0.1rem #ececec;
  padding-top: 2rem;
  padding-bottom: 2rem;
  transition: background-color 0.3s ease-in-out;
}
table tbody td.button-holder {
  display: grid;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  row-gap: 0.5rem;
  -moz-columns: 2;
       columns: 2;
}
table tbody td.button-holder a.button {
  text-align: center;
}
table tbody td.button-holder > form > button, table tbody td.button-holder > form input {
  width: 100%;
  text-align: center;
}
table tbody td.button-holder button, table tbody td.button-holder input[type=submit], table tbody td.button-holder a.button {
  margin: 0;
  background-color: #9185f1;
  color: white;
  text-shadow: 0rem 0rem 0.2rem #6b4beb, 0rem 0rem 0.2rem #6b4beb, 0rem 0rem 0.2rem #6b4beb, 0rem 0rem 0.2rem #6b4beb;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 1.3rem;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, filter 0.3s ease-in-out, transform 0.3s ease-in-out;
}
table tbody td.button-holder button:hover, table tbody td.button-holder input[type=submit]:hover, table tbody td.button-holder a.button:hover {
  background-color: #c8c3f6;
}
table tbody td.button-holder button:disabled, table tbody td.button-holder input[type=submit]:disabled, table tbody td.button-holder a.button:disabled {
  border-color: #696969;
  background-color: #c0c0c0;
  color: #ececec;
  text-shadow: 0rem 0rem 0.1rem #2c2c2c, 0rem 0rem 0.1rem #2c2c2c, 0rem 0rem 0.1rem #2c2c2c;
  cursor: default;
}
table tbody td ul.audience-list {
  max-width: 25rem;
}
table tbody td ul.audience-list > li {
  background-color: white;
  border: solid 0.1rem #6b4beb;
  display: inline-block;
  margin: 0.3rem;
  padding: 0.4rem 0.6rem;
  border-radius: 2rem;
}
table tbody tr:hover td {
  background: rgba(132, 233, 227, 0.2);
}
table div.state-icon {
  position: relative;
  width: 3rem;
  display: inline-block;
  vertical-align: middle;
  margin: 0 1rem;
}
table div.state-icon > div {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 60%;
}
table div.state-icon > div > svg {
  fill: #e62031;
}
table div.state-icon.published > svg {
  fill: #00d5c8;
}
table div.state-icon.new-changes > svg {
  fill: #faa902;
}
table div.state-icon.draft > svg {
  fill: #696969;
}
table div.state-icon.good > svg {
  fill: #00d5c8;
}
table div.state-icon.bad > svg {
  fill: #e62031;
}

.panel {
  background-color: white;
  padding: 2rem;
  border-bottom: 0.5rem solid #00d5c8;
}

button, input[type=submit], a.button {
  display: inline-block;
  background-color: #00d5c8;
  border: none;
  color: #2c2c2c;
  padding: 1rem 3rem;
  border-radius: 4rem;
  font-weight: 600;
  font-size: 1.5rem;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
}
button:hover, input[type=submit]:hover, a.button:hover {
  background-color: #84e9e3;
}
button:disabled, input[type=submit]:disabled, a.button:disabled {
  background-color: #c0c0c0;
  cursor: default;
}

.info-box {
  padding: 1rem;
  box-sizing: border-box;
  border: 0.1rem dashed #00d5c8;
  display: block;
}

ul.square-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
ul.square-grid > li {
  flex-shrink: 0;
  flex-grow: 0;
  width: calc(20% - 1.6rem);
  margin: 2rem 2rem 2rem 0;
  aspect-ratio: 1/1;
  box-sizing: border-box;
  border: solid 0.1rem black;
  padding: 1rem;
  overflow: hidden;
}
ul.square-grid > li:nth-child(5n) {
  margin-right: 0;
}

ul.grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3rem;
}
ul.grid > li {
  box-sizing: border-box;
  border: solid 0.1rem #c0c0c0;
  overflow: hidden;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
}
ul.grid > li > img {
  width: 100%;
}
ul.grid > li > h1 {
  font-size: 2rem;
  margin: 1rem;
  flex: 1;
}
ul.grid > li > h2 {
  font-size: 1.4rem;
  margin: 1rem;
  margin-top: 0;
  flex: 1;
  color: #696969;
}
ul.grid > li > a {
  margin: 1rem;
  display: block;
  text-align: center;
  align-self: stretch;
}

@media screen and (max-width: 1366px) {
  ul.grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media screen and (max-width: 1024px) {
  ul.grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 600px) {
  ul.grid {
    grid-template-columns: repeat(2, 1fr);
  }
}/*# sourceMappingURL=styles.css.map */