/** COLORS **/
/** BREAKPOINTS **/
/** COMMON SIZES **/
html {
  scroll-padding-top: 80px;
}

body {
  margin: 0px;
  background: rgb(30, 65, 0);
  background: radial-gradient(circle, rgb(30, 65, 0) 0%, rgb(19, 75, 0) 50%, rgb(30, 65, 0) 100%);
  color: white;
}

h1, h2, h3, h4, h5, h6 {
  text-align: center;
}

img {
  max-width: calc(100% - 10px);
  max-height: calc(100% - 10px);
  -o-object-fit: contain;
     object-fit: contain;
  padding: 5px;
}

/**
GENERIC CLASSES
*/
.hidden {
  visibility: hidden;
  opacity: 0;
}

.fullyhidden {
  display: none;
}

.txt-center {
  text-align: center;
  width: 100%;
}

.txt-left {
  text-align: left;
}

.txt-right {
  text-align: right;
}

.margin-small {
  margin: 1rem;
}

.no-margin {
  margin: 0 !important;
}

.rotate-180 {
  transform: rotate(180deg);
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100000;
}

a.no-text-decorations {
  text-decoration: unset;
  color: white;
}

img.inline-icon {
  height: 2rem;
  width: auto;
  position: relative;
  transform: translateY(25%);
}

.no-min-height {
  min-height: unset !important;
}

/**
SECTIONS CLASSES
*/
.main-view {
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 600px) {
  .main-view {
    flex-direction: column;
  }
}

.side-section {
  border: 2px solid black;
  padding: 5px;
  max-width: 20vw;
  width: 20vw;
  flex: 20;
}
.side-section.pre-content {
  border-left: none;
  margin-left: 0px;
}
.side-section.post-content {
  border-right: none;
}
@media screen and (max-width: 600px) {
  .side-section {
    max-width: unset;
    width: 100%;
  }
}

.main-section {
  border: 2px solid black;
  flex: 80;
}

/*
Apply to a div to cause semi-transparency
If data-target is specified, the shader will by JS be adjusted to the width of the target
*/
.shader {
  background-color: rgba(0, 0, 0, 0.8);
}

/** FLEXBOX CLASSES **/
.row {
  display: flex;
  flex-direction: row;
}
.row div {
  flex: 1;
}

.vertical-padding {
  min-height: 80px;
}

.column {
  display: flex;
  flex-direction: column;
}

.flex-center {
  justify-content: center;
  align-content: center;
}

/** SPINNING LOADER **/
.spinning-loader-wrapper {
  background-color: rgba(30, 65, 0, 0.5) !important;
}
.spinning-loader-wrapper .spinning-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: inline-block;
  width: 80px;
  height: 80px;
}
.spinning-loader-wrapper .spinning-loader:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #000;
  border-color: #000 transparent #000 transparent;
  animation: spinning-loader 1.2s linear infinite;
}

@keyframes spinning-loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/** JSON DATA **/
.json-data {
  white-space: break-spaces;
}

/** BUTTONS **/
.btn {
  width: 80%;
  max-width: 200px;
  min-height: 2rem;
  padding: 0.5rem;
  margin: 0.5rem auto;
  color: white;
  background-color: grey;
  border: 1px solid black;
  border-radius: 1rem;
  text-align: center;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: row;
}
.btn:hover, .btn.hover-lock {
  background-color: grey;
  filter: brightness(1.5);
}
.btn img {
  display: inline-block;
  height: 30px;
  width: 30px;
  flex: 1;
  text-align: right;
  align-self: center;
}
.btn img + span {
  text-align: left !important;
}
.btn span {
  display: inline-block;
  flex: 2;
  text-align: center;
  align-self: center;
}

.inline-btn {
  display: inline-block;
  width: unset;
  max-width: unset;
  padding: 0.1rem;
  height: 0.5rem;
  top: 0.3rem;
  margin: 0;
  margin-left: 1rem;
}

.img-btn {
  display: flex;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin: 1rem 2rem 1rem 2rem;
  color: white;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.img-btn .img-btn-text {
  text-align: center;
}

.image-btn-1 {
  background-image: url(/frontend/images/ButtonStandard.jpg);
}
.image-btn-1:hover {
  background-image: url(/frontend/images/ButtonHighlighted.jpg);
}

.btn-submit {
  cursor: pointer;
}

/** Data types display **/
/** Description + Flavor **/
.description-with-flavor {
  text-align: center;
}
.description-with-flavor .flavor {
  font-style: italic;
}

/** BACKGROUNDS **/
.background-mossy {
  background-image: url(/frontend/images/mossy_texture.jpg);
  background-size: cover;
}

.modal {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  z-index: 1000000;
  background-color: rgba(0, 0, 0, 0.7);
}
.modal .modal-content-box {
  background-color: rgb(30, 65, 0);
  position: absolute;
  min-width: 50%;
  min-height: 50%;
  max-width: min(600px, 100% - 2rem);
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  text-align: center;
  max-height: 100%;
  overflow-y: auto;
}
.modal .modal-content-box .pseudo-form {
  margin-bottom: 2rem;
}
.modal .modal-content-box .pseudo-form .input {
  margin: 0.5rem;
}
.modal .modal-content-box .pseudo-form .input.textarea {
  display: flex;
  flex-direction: column;
  width: -moz-min-content;
  width: min-content;
  margin: auto;
}
.modal .modal-content-box .pseudo-form .input.textarea input[type=button] {
  width: -moz-min-content;
  width: min-content;
  margin: 1rem auto;
}
.modal .error {
  background-image: url(/frontend/images/mossy_texture.jpg);
  background-size: cover;
  transition: visibility 0.5s, opacity 0.5s linear;
  filter: hue-rotate(270deg) contrast(1.4);
  font-size: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.modal .error h3 {
  display: none;
}
.modal.error .modal-content-box.spinning-loader-wrapper {
  background-color: transparent !important;
}
.modal {
  /** SPECIFIC MODALS **/
}
.modal.error, .modal.error .modal-content-box {
  z-index: 10000;
}
.modal.insert.link .select-cardnumber {
  margin-top: 1rem;
  max-width: 100px;
  width: 100%;
}
.modal.select.image .select.image {
  overflow-y: scroll;
  max-height: 50vh;
}
.modal.select.image .select.image .image-list .row {
  height: 3rem;
  position: relative;
  top: 0.5rem;
}
.modal.select.image .select.image .image-list .row .file-name {
  padding-left: 2.5rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.modal.select.image .select.image .image-list .row .file-name img {
  width: 2rem;
  height: 2rem;
  position: absolute;
  left: 0;
}
.modal.select.image .select.image .image-list .row.file {
  cursor: pointer;
}
.modal.select.image .select.image .image-list .row.file .file-name img {
  top: -0.5rem;
}
.modal.select.image .select.image .image-list .row.file.selected {
  background-color: gray;
}
.modal.select.image .select.image .image-list .row.folder {
  cursor: pointer;
  flex-direction: column;
  height: unset;
  margin-bottom: 1rem;
  /** EXPANDED **/
}
.modal.select.image .select.image .image-list .row.folder .folder-content {
  display: block;
  padding-left: 2rem;
}
.modal.select.image .select.image .image-list .row.folder .folder.open {
  display: inline-block;
}
.modal.select.image .select.image .image-list .row.folder .folder.closed {
  display: none;
}
.modal.select.image .select.image .image-list .row.folder {
  /** COLLAPSED SPECIFICS **/
}
.modal.select.image .select.image .image-list .row.folder.collapsed .folder-content {
  display: none;
}
.modal.select.image .select.image .image-list .row.folder.collapsed .folder.open {
  display: none;
}
.modal.select.image .select.image .image-list .row.folder.collapsed .folder.closed {
  display: inline-block;
}
.modal.friendly .pseudo-form {
  margin: 0 auto 0.2rem;
  max-width: 90%;
}
.modal.friendly .pseudo-form .action-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.modal.friendly .pseudo-form input {
  margin: 0.5rem 0;
  text-align: center;
  width: 100%;
  max-width: unset;
  display: block;
  padding: 0.25rem;
  font-size: 1.5rem;
}
.modal.friendly .pseudo-form .img-btn {
  margin: 0.5rem 1rem;
}

.double-corner-bordered-box {
  position: relative;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5px;
  border: 2px solid #daf9e8;
}
.double-corner-bordered-box:before, .double-corner-bordered-box:after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  font-size: 14px;
  color: #daf9e8;
  border: 2px solid #daf9e8;
  line-height: 12px;
  top: 5px;
  text-align: center;
}
.double-corner-bordered-box:before {
  left: 5px;
}
.double-corner-bordered-box:after {
  right: 5px;
}
.double-corner-bordered-box .box-inner {
  position: relative;
  border: 2px solid #daf9e8;
  padding: 40px;
}
.double-corner-bordered-box .box-inner:before, .double-corner-bordered-box .box-inner:after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  font-size: 14px;
  color: #daf9e8;
  border: 2px solid #daf9e8;
  line-height: 12px;
  bottom: -2px;
  text-align: center;
}
.double-corner-bordered-box .box-inner:before {
  left: -2px;
}
.double-corner-bordered-box .box-inner:after {
  right: -2px;
}

.error-border {
  border: 3px solid red;
}

.card-header {
  display: flex;
  justify-content: center;
}
.card-header .header-text h1 {
  transform: translateY(-25%);
}
.card-header .header-text h1 img {
  height: 4rem;
  position: relative;
  top: 1.5rem;
}
.card-header .previous-card, .card-header .next-card {
  width: 50px;
  height: 50px;
  background-image: url("/frontend/images/icons/next.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  align-self: center;
  margin: 1rem;
  cursor: pointer;
  filter: invert(1);
}
.card-header .previous-card:hover, .card-header .next-card:hover {
  background-image: url("/frontend/images/icons/next-highlight.png");
}

.card-full-image-view {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  position: relative;
}
.card-full-image-view div {
  max-width: 40vw;
  position: relative;
}
.card-full-image-view div .click-areas {
  border-radius: 5%;
  position: absolute;
  display: flex;
  flex-direction: column;
  max-width: calc(100% - 10px);
  max-height: calc(100% - 10px);
  width: 100%;
  height: 100%;
  top: 0px;
  padding: 5px;
}
.card-full-image-view div .click-areas .click-area {
  flex: 1;
}
.card-full-image-view div .click-areas .click-area:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.card-full-image-view div .click-areas .click-area:nth-child(1) {
  border-radius: 5% 5% 0 0;
}
.card-full-image-view div .click-areas .click-area:nth-child(2) {
  border-radius: 0 0 5% 5%;
}
.card-full-image-view div img {
  border-radius: 5%;
}
@media screen and (max-width: 600px) {
  .card-full-image-view div {
    max-width: 48vw;
  }
}

.stage {
  text-align: center;
  border-top: 1px solid black;
}

#stage-2-img, #stage-3-img {
  transform: scale(-1);
}

.stage-image {
  position: relative;
}
.stage-image .shader {
  height: calc(50% - 5px);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  transform: translateX(-50%);
  border: 1px solid black;
  border-radius: 0 0 5% 5%;
}
.stage-image img {
  border-radius: 5%;
}
@media screen and (max-width: 600px) {
  .stage-image {
    width: 70%;
    margin: auto;
  }
}

.stage-description, .keywords {
  margin-left: 5px;
  margin-right: 5px;
}
.stage-description .keywords-list .keyword p img, .keywords .keywords-list .keyword p img {
  position: relative;
  height: 2rem;
  width: 2rem;
  top: 1rem;
}

.stage-description .flavor {
  font-style: italic;
}

/** UPDATE KEYWORDS EDITOR **/
.keyword-btn {
  margin: 0.5rem;
  width: -moz-min-content;
  width: min-content;
  padding: 0 0.5rem;
  border: 1px solid black;
  border-radius: 2rem;
  background-color: grey;
  cursor: pointer;
  text-wrap: nowrap;
  min-width: 100px;
  min-height: 40px;
  display: flex;
  flex-direction: row;
}
.keyword-btn:hover {
  filter: brightness(1.5);
}
.keyword-btn img {
  display: inline-block;
  height: 30px;
  width: 30px;
  flex: 1;
  text-align: left;
  align-self: center;
}
.keyword-btn span {
  display: inline-block;
  flex: 2;
  text-align: center;
  align-self: center;
  text-wrap: wrap;
}
.keyword-btn .remove-keyword {
  margin: 5px;
  background-image: url("/frontend/images/icons/delete.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.keyword-btn .remove-keyword:hover {
  cursor: pointer;
  background-image: url("/frontend/images/icons/delete-inverted.png");
}

.popular-keywords .row, .all-keywords .row {
  flex-wrap: wrap;
}

.selected-keywords {
  border-right: 1px solid black;
}
.selected-keywords .keyword-btn {
  width: calc(100% - 2rem);
  cursor: default;
}
.selected-keywords .keyword-btn:hover, .selected-keywords .keyword-btn.selected {
  filter: unset !important;
}

.expansion-full-image-view {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  position: relative;
}

.expansion-header {
  display: flex;
  justify-content: center;
}
.expansion-header .header-text h1 {
  transform: translateY(-25%);
}
.expansion-header .header-text h1 img {
  height: 4rem;
  position: relative;
  top: 1.5rem;
}

/** Search box **/
.search-navigation {
  text-align: center;
}

/** EXPANSION SELECTOR **/
.select-expansion-wrapper {
  position: relative;
}

.btn-select-list {
  margin-top: 10px;
  width: 100%;
  max-width: 350px;
  height: 45px;
  border-radius: 5px;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 0px !important;
  cursor: pointer;
}
.btn-select-list:hover {
  background-color: #F4F3F3;
  border: 1px solid transparent;
  box-shadow: inset 0 0px 0px 1px #ccc;
}

.select-list {
  width: 100%;
  max-width: 350px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  z-index: 10;
  background-color: white;
  color: black;
}
.select-list ul {
  margin: 0px;
  padding: 0px;
}

.btn-select-list li, .select-list li {
  text-align: left;
  position: relative;
  width: 100%;
  list-style: none;
  padding-top: 5px;
  margin-bottom: 5px;
  height: 35px;
  cursor: pointer;
}
.btn-select-list li:hover, .select-list li:hover {
  background-color: #F4F3F3;
}
.btn-select-list li img, .select-list li img {
  margin: 0px 5px;
  height: 40px;
  width: 40px;
}
.btn-select-list li span, .select-list li span {
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
}

/** CARD NUMBER INPUT **/
.select-cardnumber-wrapper {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: center;
}
.select-cardnumber-wrapper .select-cardnumber {
  margin-top: 1rem;
  max-width: 120px;
  width: 100%;
  height: 40px;
  font-size: 24px;
  text-align: center;
}
.select-cardnumber-wrapper .previous-card, .select-cardnumber-wrapper .next-card {
  margin: 1rem;
}
.select-cardnumber-wrapper .previous-card input, .select-cardnumber-wrapper .next-card input {
  height: 40px;
  width: 40px;
}

.language-select .menu-button {
  padding: 0rem;
  height: 100%;
}
.language-select .menu-button .btn-select-language {
  height: 100%;
  margin: 0;
  background-color: transparent;
  border: none;
  box-shadow: none;
}
.language-select .menu-button .btn-select-language li {
  height: 80%;
  padding: 0;
  margin: 0;
  background-color: transparent;
  text-align: center;
}
.language-select .menu-button .btn-select-language li img {
  height: 100%;
  width: auto;
}

.select-language {
  width: unset;
  background-color: rgba(0, 0, 0, 0.3);
  position: relative;
  left: unset;
  transform: unset;
}
.select-language li {
  text-align: center;
  height: unset;
}
.select-language li img {
  height: 4rem;
  width: auto;
}
.select-language li:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

@media screen and (max-width: 600px) {
  .top-navigation .home-link {
    display: flex !important;
  }
}
.top-navigation .mobile-nav {
  display: none;
  align-self: right;
  margin: 1rem;
}
@media screen and (max-width: 600px) {
  .top-navigation .mobile-nav {
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
  }
}
.top-navigation .mobile-nav #nav-check {
  display: none;
}
.top-navigation .mobile-nav #nav-check:checked ~ .mobile-nav-menu {
  display: flex;
}
.top-navigation .mobile-nav .mobile-nav-menu {
  display: none;
  flex-direction: column;
  padding: 0;
  margin-top: 80px;
}
.top-navigation .mobile-nav .mobile-nav-menu .mobile-nav-button {
  min-height: 30px;
  min-width: 120px;
  font-size: 20px;
  padding: 1rem;
  border: solid 1px gray;
  background-color: #EEE;
}
.top-navigation .mobile-nav .nav-toggle {
  cursor: pointer;
  display: block;
  position: relative;
  width: 25px;
  height: 23px;
}
.top-navigation .mobile-nav .nav-toggle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #DDD;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: -25s ease-in-out;
}
.top-navigation .mobile-nav .nav-toggle span:nth-child(1) {
  top: 0px;
}
.top-navigation .mobile-nav .nav-toggle span:nth-child(2) {
  top: 10px;
}
.top-navigation .mobile-nav .nav-toggle span:nth-child(3) {
  top: 20px;
}
.top-navigation .menu-row {
  justify-content: space-around;
  background-image: url(/frontend/images/mossy_texture.jpg);
  background-size: cover;
}
@media screen and (max-width: 600px) {
  .top-navigation .menu-row {
    height: 80px;
  }
}
.top-navigation .menu-row .menu-link {
  text-decoration: none;
  color: white;
  font-size: 30px;
  flex: 1;
  text-align: center;
  display: flex;
  align-items: center;
  height: 80px;
}
@media screen and (max-width: 600px) {
  .top-navigation .menu-row .menu-link {
    display: none;
  }
}
.top-navigation .menu-row .menu-link .menu-button {
  padding: 1rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.top-navigation .menu-row .menu-link:hover {
  text-decoration: underline;
  color: grey;
}
.top-navigation .menu-row .main-logo {
  height: 80%;
}
.top-navigation .nav-padder {
  padding-top: 80px;
  width: 100%;
}

.navigation-tabs {
  height: 0px;
}
@media screen and (max-width: 600px) {
  .navigation-tabs {
    height: unset;
    background-image: url(/frontend/images/scaleHorizontal.png);
    background-size: 100% 100%;
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.6);
  }
}
.navigation-tabs .tabs {
  display: flex;
  flex-direction: row;
  max-width: clamp(75%, 800px, 100%);
  margin: auto;
  position: relative;
  transform: translateY(-100%);
}
@media screen and (max-width: 600px) {
  .navigation-tabs .tabs {
    flex-wrap: wrap;
    transform: unset;
    max-width: 85%;
  }
}
.navigation-tabs .tabs .tab {
  text-decoration: none;
  flex: 1;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin: 1rem;
  color: white;
  background-image: url(/frontend/images/ButtonStandard.jpg);
}
@media screen and (max-width: 600px) {
  .navigation-tabs .tabs .tab {
    margin: 1rem;
    max-height: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.navigation-tabs .tabs .tab .title h3 {
  padding: 0.5rem;
}
.navigation-tabs .tabs .tab.selected {
  background-image: url(/frontend/images/ButtonPressed.jpg);
}
.navigation-tabs .tabs .tab:hover {
  background-image: url(/frontend/images/ButtonHighlighted.jpg);
}

.current-tab-content {
  justify-content: space-around;
  background-image: url(/frontend/images/mossy_texture.jpg);
  background-size: cover;
}

.full-image-text {
  position: absolute;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
@media screen and (max-width: 600px) {
  .full-image-text {
    transform: translateY(-50%);
  }
}
.full-image-text h2 {
  width: 100%;
  font-size: 120px;
  -webkit-text-stroke: 3px black;
}
@media screen and (max-width: 600px) {
  .full-image-text h2 {
    font-size: 56px;
    -webkit-text-stroke: 1px black;
  }
}

.main-image-wrapper {
  overflow: hidden;
  position: relative;
  height: calc(100% - 80px);
}
@media screen and (max-width: 600px) {
  .main-image-wrapper.register-form {
    min-height: 125vh;
  }
}
.main-image-wrapper .main-image {
  width: auto;
  height: 100%;
  padding: 0px !important;
  max-width: unset !important;
  max-height: unset !important;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 600px) {
  .main-image-wrapper .main-image :not(.full-view) {
    height: 40vh;
  }
}
@media screen and (min-aspect-ratio: 1.8) {
  .main-image-wrapper .main-image {
    width: 100%;
    height: auto;
  }
}

.register-form {
  height: calc(100vh - 80px);
}
.register-form .login-form-wrapper {
  max-height: calc(100% - 2rem);
  overflow-y: scroll;
}

.translator-btn.translate-page {
  display: none;
  width: unset;
  max-height: 1rem;
  max-width: 2rem;
  top: 0.5rem;
}
.translator-btn.translate-page.active {
  display: inline-flex;
}

.frontpage-center-btn {
  width: -moz-max-content;
  width: max-content;
  padding: 0 2rem;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.frontpage-center-btn .img-btn {
  padding: 0 2rem;
}

.error-view {
  position: absolute;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
.error-view h2 {
  width: 100%;
  font-size: 120px;
  -webkit-text-stroke: 3px black;
}

.page-link-list-wrapper {
  margin: auto;
  max-width: clamp(75%, 800px, 100%);
  position: relative;
  padding: 2rem;
}
.page-link-list-wrapper .box-inner {
  width: -moz-max-content;
  width: max-content;
  width: 100%;
  padding: 0px;
}
.page-link-list-wrapper .box-inner .link-list-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media screen and (max-width: 600px) {
  .page-link-list-wrapper .box-inner .link-list-wrapper {
    flex-direction: column;
  }
}
.page-link-list-wrapper .box-inner .link-list-wrapper a {
  width: 25%;
}
@media screen and (max-width: 600px) {
  .page-link-list-wrapper .box-inner .link-list-wrapper a {
    width: 100%;
  }
}
.page-link-list-wrapper .box-inner .link-list-wrapper a .page-link {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-right: 2px;
  border-left: 0;
  border-style: solid;
  -o-border-image: linear-gradient(to bottom, rgba(24, 24, 24, 0.5), #daf9e8, rgba(24, 24, 24, 0.5)) 1 100%;
     border-image: linear-gradient(to bottom, rgba(24, 24, 24, 0.5), #daf9e8, rgba(24, 24, 24, 0.5)) 1 100%;
  height: calc(100% - 4rem);
}
@media screen and (max-width: 600px) {
  .page-link-list-wrapper .box-inner .link-list-wrapper a .page-link {
    border-right: 0;
    border-bottom: 2px;
    -o-border-image: linear-gradient(to right, rgba(24, 24, 24, 0.5), #daf9e8, rgba(24, 24, 24, 0.5)) 1;
       border-image: linear-gradient(to right, rgba(24, 24, 24, 0.5), #daf9e8, rgba(24, 24, 24, 0.5)) 1;
    padding: 1rem 2rem 1rem 2rem;
  }
}
.page-link-list-wrapper .box-inner .link-list-wrapper a .page-link .image-wrapper {
  text-align: center;
}
.page-link-list-wrapper .box-inner .link-list-wrapper a .page-link .texts-wrapper {
  height: 75%;
  text-align: center;
}
.page-link-list-wrapper .box-inner .link-list-wrapper a .page-link .img-btn {
  margin: unset !important;
}
.page-link-list-wrapper .box-inner .link-list-wrapper a:nth-child(4) .page-link {
  border-right: 0;
}

.tutorial-view {
  position: relative;
  width: 100%;
}
.tutorial-view .video-header h1 {
  width: 100%;
  font-size: 60px;
  -webkit-text-stroke: 2px black;
  margin-block-start: 0;
}
@media screen and (max-width: 600px) {
  .tutorial-view .video-header h1 {
    font-size: 40px;
    -webkit-text-stroke: 1px black;
    margin: auto;
    width: 85%;
    margin-bottom: 1rem;
  }
}
.tutorial-view .video-wrapper {
  max-width: clamp(75%, 800px, 100%);
  margin: auto;
  text-align: center;
  padding-bottom: 4rem;
}
.tutorial-view .video-wrapper video {
  max-width: 100%;
  max-height: 75vh;
  width: auto;
}
.tutorial-view.with-background {
  background-image: url(/frontend/images/BannerImage.jpg);
  background-size: cover;
  min-height: calc(100% - 240px);
  padding-top: 80px;
  padding-bottom: 80px;
}

.login-form-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: clamp(50%, 1000px, 90%);
}
.login-form-wrapper .login-form {
  display: flex;
  flex-direction: column;
}
.login-form-wrapper .login-form h1 {
  text-align: center;
}
.login-form-wrapper .login-form label {
  margin-top: 1rem;
}
.login-form-wrapper .login-form input {
  margin: 0.5rem 0;
  text-align: center;
  width: 100%;
  max-width: unset;
  display: block;
  padding: 0.25rem;
  font-size: 1.5rem;
}
.login-form-wrapper .login-form p {
  font-size: 1.5rem;
}

.login-error, .register-error {
  color: red;
}

table.toplist {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin: auto;
  text-align: center;
  border-spacing: 0px;
  border-collapse: collapse;
  display: block;
  overflow-x: auto;
}
table.toplist th {
  font-size: 2rem;
  border-bottom: 5px solid white;
  padding: 0 1rem;
  cursor: pointer;
}
table.toplist th .ascending {
  transform: rotate(-90deg) translateX(-25%);
}
table.toplist th .descending {
  transform: rotate(90deg) translateX(25%);
}
table.toplist th .ascending, table.toplist th .descending {
  height: 1rem;
}
table.toplist th .ascending.hidden, table.toplist th .descending.hidden {
  display: none;
}
@media screen and (max-width: 600px) {
  table.toplist th {
    font-size: 1rem;
  }
}
table.toplist td {
  font-size: 1.5rem;
  border-bottom: 1px solid white;
  padding: 0.3rem;
  text-wrap: nowrap;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 600px) {
  table.toplist td {
    font-size: 0.75rem;
  }
}
table.toplist tr.owned td {
  font-weight: 900;
  font-style: italic;
}
table.toplist .table-icon {
  height: 2rem;
  width: auto;
  position: absolute;
  transform: translateX(-25%) translateY(-15%);
}
table.toplist .has-icon {
  padding-left: 2rem;
}

.toplist-error {
  font-size: 2rem;
  color: red;
}

.toplist-wrapper {
  max-height: calc(100% - 2rem);
  overflow-y: auto;
}
@media screen and (max-width: 600px) {
  .toplist-wrapper .main-image {
    min-height: calc(100vh - 80px) !important;
  }
}
@media screen and (max-width: 600px) {
  .toplist-wrapper .box-inner {
    padding: 20px;
  }
}

.toplist-wrapper.login-form-wrapper {
  width: unset;
  overflow-x: scroll;
  max-width: calc(100% - 2rem);
}

.navigation-pagination .next, .navigation-pagination .fast-next, .navigation-pagination .previous, .navigation-pagination .fast-previous {
  cursor: pointer;
}
.navigation-pagination .next:hover, .navigation-pagination .fast-next:hover, .navigation-pagination .previous:hover, .navigation-pagination .fast-previous:hover {
  filter: brightness(0.5);
}
.navigation-pagination .previous img {
  transform: rotate(180deg) translateY(-25%) !important;
}

.toplist-editor-wrapper {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.toplist-editor-wrapper .toplist-editor {
  width: clamp(50%, 1000px, 90%);
  text-align: center;
}
.toplist-editor-wrapper .toplist-editor .filter-actions {
  align-items: center;
  justify-content: center;
}
.toplist-editor-wrapper .toplist-editor .filter-content .column div {
  margin: 0.2rem;
}
.toplist-editor-wrapper .toplist-editor .filter-content .base-kingdom-select.hidden, .toplist-editor-wrapper .toplist-editor .filter-content .expansion-limitations.hidden {
  height: 0;
}
.toplist-editor-wrapper .toplist-editor .filter-columns .selected-columns-list-wrapper {
  flex: 2;
  justify-self: end;
  text-align: right;
}
.toplist-editor-wrapper .toplist-editor .filter-columns .selected-columns-list-wrapper select {
  width: 50%;
}
.toplist-editor-wrapper .toplist-editor .filter-columns .adjust-order-buttons {
  flex: 1;
  text-align: left;
  justify-content: center;
}
.toplist-editor-wrapper .toplist-editor .filter-columns .adjust-order-buttons div {
  display: flex;
  align-items: baseline;
}
.toplist-editor-wrapper .toplist-editor .filter-columns .adjust-order-buttons .earlier-order, .toplist-editor-wrapper .toplist-editor .filter-columns .adjust-order-buttons .later-order {
  top: unset;
  cursor: pointer;
  width: 50px;
}
.toplist-editor-wrapper .toplist-editor .filter-columns .adjust-order-buttons .earlier-order:hover, .toplist-editor-wrapper .toplist-editor .filter-columns .adjust-order-buttons .later-order:hover {
  filter: brightness(0.5);
}
.toplist-editor-wrapper .toplist-editor .filter-columns .adjust-order-buttons .earlier-order {
  transform: rotate(-90deg);
}
.toplist-editor-wrapper .toplist-editor .filter-columns .adjust-order-buttons .later-order {
  transform: rotate(90deg);
}
.toplist-editor-wrapper .toplist-editor .expansion-list select {
  max-width: 80%;
  min-width: 200px;
  width: -moz-min-content;
  width: min-content;
  margin: auto;
}
.toplist-editor-wrapper .toplist-editor .buttons {
  justify-content: center;
}

.kingdom-edit-actions, .expansion-edit-actions {
  display: flex;
  max-width: 400px;
  flex-direction: column;
  margin: auto;
  align-items: center;
}
.kingdom-edit-actions .img-btn, .expansion-edit-actions .img-btn {
  margin: 1rem 0 0 0;
  padding: 1rem;
}
.kingdom-edit-actions .img-btn span, .expansion-edit-actions .img-btn span {
  font-size: 20px;
}

.kingdom-wrapper {
  max-height: calc(100% - 6rem);
  overflow-y: auto;
}

@media screen and (max-width: 600px) {
  .kingdom-view .main-image {
    min-height: calc(100vh - 80px) !important;
  }
}

.categories-select {
  flex: 3 !important;
  text-align: center;
}
.categories-select select {
  width: 75%;
  height: 100%;
}

.questions-wrapper, .answers-wrapper {
  text-align: center;
}

#category-questions, #question-answers {
  width: 75%;
  height: 100%;
  margin: auto;
}

.certified-player-quiz {
  background-color: rgba(0, 0, 0, 0.3);
  background-image: url("/frontend/images/CertifiedPlayer.png");
  min-height: calc(100vh - 80px);
  background-blend-mode: multiply;
}/*# sourceMappingURL=main.css.map */