/* https://www.dafont.com/fr/organic-relief.font?text=Intro&af=on&psize=l&back=theme */

@font-face {
  font-family: trueno;
  src: url("trueno.otf") format("opentype");
}

:root {
  --text: #60322c;
  --back: #fff7d6;
  --blue: #28bec6;
  --green: #bada55;
}

* {
  scroll-margin-top: 80px;
}

body {
  font-family: trueno;
  background-color: var(--back);
  color: var(--text);
  animation: fadeInAnimation ease 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

body::-webkit-scrollbar{
  display: none;
}

html{
  scroll-behavior:smooth
}

@keyframes fadeInAnimation {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
   }
}

.title-zone {
  margin: 1rem 1rem 1rem 1rem;
}

.category-list{
  margin-top: 5rem;
}

.block-element {
  border-bottom: solid;
  border-width: 1px;
  border-color: var(--text);
  padding-bottom: 5px;
}

.block-tile {
  width: 80px;
  margin: 20px;
  transition-duration: 0.5s;
}

.block-element .block-tile:hover {
  width: 100px;
  margin: 10px;
  text-decoration: none;
}

.npc-tile {
  width: 150px;
  margin: 20px;
  transition-duration: 0.5s;
}

.block-element .npc-tile:hover {
  width: 170px;
  margin: 10px;
  text-decoration: none;
}

.footer-wiki {
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.goto-menu {
  border-color: var(--blue);
  background-color: var(--blue);
  color: var(--back);
  border-width: 3px;
  border-radius: 1rem;
  padding: 1rem;
  transition-duration: 0.5s;
}

.goto-menu:hover {
  border-color: var(--text);
  background-color: var(--blue);
  color: var(--back);
  text-decoration: none;
  font-size:1.6rem;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}

.wiki-category {
  font-size:1rem;
  border: solid;
  border-color: var(--blue);
  background-color: var(--blue);
  color: var(--back);
  border-width: 3px;
  border-radius: 1rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin: 0.5rem;
  transition-duration: 0.5s;
}

.wiki-category:hover {
  border-color: var(--text);
  background-color: var(--blue);
  color: var(--back);
  text-decoration: none;
  font-size:1.6rem;
  padding-top: 1.55rem;
  padding-bottom: 1.55rem;
}

.navbar-communite {
  font-weight: bold;
  color: var(--text);
  background-color: var(--blue);
}

.bg-communite {
  font-weight: bold;
  color: var(--text);
  background-color: var(--blue);
}

.navbar-communite .nav-link {
  font-weight: bold;
  color: var(--back);
  transition-duration: 1s;
}

.navbar-communite .nav-link :hover {
  border-bottom: solid !important;
  border-width: 2px !important;
  border-color: white !important;
}

.navbar-communite .navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--back);
  background-color: var(--blue);
}

.navbar-communite .navbar-toggler {
  border-radius: 5rem;
  outline: none;
}

.navbar-communite .navbar-toggler-icon {
  border: none;
  background-image: url(/assets/misc/orange.png);
  height: 50px;
  width: 50px;
}

.other-things {
  margin-left: 3rem;
}

.picture-caption {
  color:grey;
  transition: all 0.2s;
}

a.picture-caption:hover {
  color: var(--green);
  font-weight: bold;
  text-decoration: none;
}

.highlight {
  color: var(--blue);
  font-weight: bold;
  transition: all 0.2s;
}

a.highlight:hover {
  color: var(--green);
  font-weight: bold;
  text-decoration: none;
}

.current-nav {
  color: var(--green) !important;
}

.tile-search {
  width:90%;
  margin: 1rem 0 1rem 0;
  background-color: var(--back);
  color: var(--text);
  padding: 10px 20px 10px 20px;
  border: solid;
  border-width: 1px;
  border-radius: 2rem;
  border-color: var(--text);
  outline: none;
}

.overlay {
  z-index: 2001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  background: var(--back);
}

.overlay__inner {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

.overlay__content {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.spinner {
  width: 75px;
  height: 75px;
  display: inline-block;
  border-width: 2px;
  border-color: var(--back);
  border-top-color: var(--text);
  animation: spin 1s infinite linear;
  border-radius: 100%;
  border-style: solid;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

#snackbar {
  visibility: hidden; /* Hidden by default. Visible on click */
  min-width: 250px; /* Set a default minimum width */
  margin-left: -125px; /* Divide value of min-width by 2 */
  background-color: var(--text); /* Black background color */
  color: var(--back); /* White text color */
  text-align: center; /* Centered text */
  border-radius: 2px; /* Rounded borders */
  padding: 16px; /* Padding */
  position: fixed; /* Sit on top of the screen */
  z-index: 100; /* Add a z-index if needed */
  left: 50%; /* Center the snackbar */
  bottom: 30px; /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
  visibility: visible; /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

.emblem-element{
  border-width: 1px;
  border-radius: 2rem;
  border-color: var(--text);
  border: solid;
  padding: 0.7rem 0 0.7rem 0;
  margin: 0.5rem;
}

.emblem-col {
  margin-bottom : 1rem;
}

.contact-section {
  margin-top: 4rem;
  font-size: 0.8rem;
  color: #a77872;
}

.contact-btn {
  border:solid;
  border-radius: 2rem;
  background-color: var(--text);
  color: var(--back);
  padding: 1rem 2rem 1rem 2rem;
  transition-duration: 0.5s;
}

.contact-btn:hover{
  background-color: var(--blue);
}

.contact-input {
  margin-top: 1rem;
  width: 100%;
  background-color: var(--back);
  color: var(--text);
  padding: 10px 20px 10px 20px;
  border: solid;
  border-width: 1px;
  border-radius: 2rem;
  border-color: var(--text);
  outline: none;
}

.server-input{
  margin-top: 1rem;
  width: 100%;
  background-color: var(--back);
  color: var(--text);
  padding: 10px 20px 10px 15px;
  border: solid;
  border-width: 1px;
  border-radius: 2rem;
  border-color: var(--text);
  outline: none;
}

.coord-input {
  margin-top: 1rem;
  width: 100%;
  background-color: var(--back);
  color: var(--text);
  padding: 20px 20px 20px 20px;
  border: solid;
  border-width: 1px;
  border-radius: 2rem;
  border-color: var(--text);
  outline: none;
}

.card-communite {
  border-radius: 2rem;
  border-width: 1px;
  border-color: var(--text);
  border: solid;
}

.card-header-communite {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0,0,0,.05);
  border-radius: 2rem;
}

.communite-pill {
  background-color: var(--blue);
  color: var(--back);
  padding: 0.2rem;
  border: solid;
  border-color: var(--blue);
  border-radius: 0.5rem;
  margin: 0.2rem
}

.communite-btn-filter {
  padding: 0.5rem 2rem 0.5rem 2rem;
  background-color: var(--text);
  color: var(--back);
  border-radius: 1rem;
  margin: 0.2rem;
  border: solid;
  border-width: 1px;
}

.communite-start-filter {
  color: var(--text);
  background-color: var(--back);
  border-radius: 1rem;
  margin: 0.2rem;
  padding: 10px 50px 10px 50px;
  border: solid;
  border-width: 1px;
  outline: none;
  transition: 0.5s;
}

.communite-start-filter:hover {
  color: var(--back);
  background-color: var(--text);
  outline: none;
}

.filter-select {
  width:90%;
  margin: 1rem 0 1rem 0;
  background-color: var(--back);
  color: var(--text);
  padding: 10px 20px 10px 20px;
  border: solid;
  border-width: 1px;
  border-radius: 2rem;
  border-color: var(--text);
  outline: none;
}

.communite-btn-highlight {
  padding: 0.5rem 2rem 0.5rem 2rem;
  background-color: var(--blue);
  color: var(--back);
  border-radius: 1rem;
  margin: 0.2rem;
  border: solid;
  border-width: 1px;
}


.team-card {
  border-style: solid;
  border-width: 1px;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.team-card-header {
  border-bottom: solid;
  border-width: 1px;
  padding-right: 0;
  padding-left: 0;
  padding-bottom: 1rem;
  padding-top: 1rem;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem; 
  background-color: var(--text);
  color: var(--back);
}

.team-card-image {
  padding-bottom: 1rem;
  padding-top: 2rem;
}

.intro-section{
  border-top: solid;
  border-width: 1px;
  border-color: var(--text);
  margin-top: 3rem;
}

.other-title{
  margin-bottom: 1rem;
  margin-top: 4rem;
}

.other-title > div > span{
  font-size: 1.5rem;
  margin-left: 2rem;
}

.intro-summary{
  border: solid;
  border-width: 1px;
  border-radius: 2rem;
  border-color: var(--text);
  margin-bottom: 3rem;
  margin-top: 3rem;
}

.summary-title{
  font-size: 2rem;
  color: var(--back);
  background-color: var(--text);
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.intro-summary-element{
  text-align: center;
  margin-top: 0.6rem;
  margin-bottom: 0.6rem;
}

.intro-summary-element > a{
  color: var(--text);
  font-size: 1.2rem;
}

#scroll-top {
  display: none;
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: var(--blue);
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

#scroll-top{
  font-size: 2rem;
}

.gg-chevron-up {
    box-sizing: border-box;
    position: relative;
    display: block;
    transform: scale(var(--ggs,1));
    width: 22px;
    height: 22px;
    border: 2px solid transparent;
    border-radius: 100px
}
.gg-chevron-up::after {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    width: 10px;
    height: 10px;
    border-top: 2px solid;
    border-right: 2px solid;
    transform: rotate(-45deg);
    left: 4px;
    bottom: 2px
}

.header-tile-info {
  border-bottom: solid;
  border-width: 1px;
  border-color: var(--text);
  margin-bottom: 2rem;
}

.back-tiles {
  margin-left: 1rem;
  background-color: var(--blue);
  color: var(--back);
  border-radius: 1rem;
  padding: 1rem;
}

.search-btn {
  border-radius: 0.5rem;
  border: solid;
  border-width: 1px;
  border-color: var(--back);
  color: var(--back);
  padding: 0.5rem 1rem 0.5rem 1rem;
  background-color: var(--blue);
  transition: all 0.5s;
}

.search-btn:hover {
  border-color: var(--back);
  color: var(--text);
  background-color: var(--back);
  cursor: pointer;
}

.search-input {
  background-color: var(--blue);
  color: var(--back);
  border: solid;
  border-color: var(--back);
  border-radius: 0.5rem;
  border-width: 1px;
  width: auto;
  padding: 0.5rem 1rem 0.5rem 1rem;
}

.search-input:focus{
  outline: none;
}

.search-input::placeholder {
  color: var(--back);
}

fieldset {
  border: 1px solid var(--text);
  width: 360px;
  border-radius: 5px;
}

legend, label{
  color: var(--text); 
  font-size: 24px;
  font-family: sans-serif;
}

/** ########## DATA LIST ########## **/

input {
  font-size: 18px;
  padding: 5px;
  height: 35px;
  width: 350px;
  border: 1px solid var(--text);
  outline: none;
  border-radius: 5px;
  color: var(--text);
/*   border-bottom: none; */
}

.inputfile {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}

.inputfile + label {
  font-size: 1.25em;
  font-weight: 700;
  color: white;
  background-color: black;
  display: inline-block;
  background-color: var(--back);
  color: var(--text);
  border: solid;
  border-width: 1px;
  border-color: var(--text);
  border-radius: 1rem;
  padding: 10px 20px 10px 20px;
  height: 250px;
  width: 250px;
  transition: 0.5s;
}

.inputfile:focus + label,
.inputfile + label:hover {
  background-color: var(--text);
  color: var(--back);
  cursor: pointer;
}

input::-webkit-calendar-picker-indicator {
  opacity: 0;
}

/** ########## SCHEMATIC ########## **/

.schematic-btn {
  width: 350px;
  height: 50px;
  background: var(--text);
  color: var(--back);
  text-align: center;
  border: solid;
  border-radius: 2rem;
}

.files-display {
  width: 350px;
  height: 50px;
  color: var(--text);
  text-align: center;
}

.schematic-btn{
  cursor: pointer;
}

.max-heighted {
  min-height: 75vh;
}

datalist {
  position: absolute;
  max-height: 20em;
  border: 0 none;
  overflow-x: hidden;
  overflow-y: auto;
}

datalist option {
  font-size: 0.8em;
  padding: 0.3em 1em;
  background-color: #ccc;
  cursor: pointer;
}

/* option active styles */
datalist option:hover, datalist option:focus {
  color: #fff;
  background-color: #036;
  outline: 0 none;
}

.dropdown-item {
  color: var(--back);
}

.dropdown-item:hover {
  color: var(--text);
  background-color: var(--blue);
}

.dropdown-menu {
  background-color: var(--blue);
}

.tp-link-btn {
  background-color: var(--back);
  color: var(--text);
  padding: 10px 20px 10px 20px;
  border: solid;
  border-color: var(--text);
  border-width: 1px;
  border-radius: 1rem;
  outline: none;
  transition: 1s;
}

.tp-link-btn:hover {
  text-decoration: none;
  background-color: var(--text);
  color: var(--back);
  border-color: var(--text);
  outline: none;
}

.dropdown-toggle {
  color: var(--back) !important;
  cursor: pointer;
}

.view-image {
  background-color: var(--back);
  border-radius: 1rem;
  border-color: var(--blue);
  border: solid;
  border-width: 1px;
  color: var(--blue);
  padding: 10px 20px 10px 20px;
  transition: 0.5s;
}

.view-image:hover {
  outline: none;
  text-decoration: none;
  color: var(--back);
  background-color: var(--blue);
  border-color: var(--blue);
}

.monument-element {
  border-bottom: solid;
  border-width: 1px;
  padding-bottom: 1rem;
  padding-top: 1rem;
}

.monument-reactions {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.react-monument {
  margin-right: 1rem;
}

.lifeling-info {
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}