/* 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;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

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

/* ----------------------------------------------------------------------------------------------------

Super Form Reset

A couple of things to watch out for:

- IE8: If a text input doesn't have padding on all sides or none the text won't be centered.
- The default border sizes on text inputs in all UAs seem to be slightly different. You're better off using custom borders.
- You NEED to set the font-size and family on all form elements
- Search inputs need to have their appearance reset and the box-sizing set to content-box to match other UAs
- You can style the upload button in webkit using ::-webkit-file-upload-button
- ::-webkit-file-upload-button selectors can't be used in the same selector as normal ones. FF and IE freak out.
- IE: You don't need to fake inline-block with labels and form controls in IE. They function as inline-block.
- By turning off ::-webkit-search-decoration, it removes the extra whitespace on the left on search inputs

----------------------------------------------------------------------------------------------------*/
input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  line-height: 1;
  /* Browsers have different default form fonts */
  font-size: 13px;
  font-family: sans-serif;
}

/* Remove the stupid outer glow in Webkit */
input:focus {
  outline: 0;
}

/* Box Sizing Reset
-----------------------------------------------*/
/* All of our custom controls should be what we expect them to be */
input,
textarea {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/* These elements are usually rendered a certain way by the browser */
button,
input[type=reset],
input[type=button],
input[type=submit],
input[type=checkbox],
input[type=radio],
select {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* Text Inputs
-----------------------------------------------*/
/* Button Controls
-----------------------------------------------*/
input[type=checkbox],
input[type=radio] {
  width: 13px;
  height: 13px;
}

/* File Uploads
-----------------------------------------------*/
/* Search Input
-----------------------------------------------*/
/* Make webkit render the search input like a normal text field */
input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none;
}

/* Buttons
-----------------------------------------------*/
button,
input[type=reset],
input[type=button],
input[type=submit] {
  /* Fix IE7 display bug */
  overflow: visible;
  width: auto;
}

/* IE8 and FF freak out if this rule is within another selector */
::-webkit-file-upload-button {
  padding: 0;
  border: 0;
  background: none;
}

/* Textarea
-----------------------------------------------*/
textarea {
  /* Move the label to the top */
  vertical-align: top;
  /* Turn off scroll bars in IE unless needed */
  overflow: auto;
}

/* Selects
-----------------------------------------------*/
select[multiple] {
  /* Move the label to the top */
  vertical-align: top;
}

:root {
  --color: #243746;
  --color-primary: #158876;
  --color-secondary: #0e2233;
  --bg: #f3f5f4;
  --bg-secondary: #fff;
  --border-color: #ddd;
}

.dark-mode {
  --color: #ebf4f1;
  --color-primary: #41b38a;
  --color-secondary: #fdf9f3;
  --bg: #091a28;
  --bg-secondary: #071521;
  --border-color: #0d2538;
}

.sepia-mode {
  --color: #433422;
  --color-secondary: #504231;
  --bg: #f1e7d0;
  --bg-secondary: #eae0c9;
  --border-color: #ded0bf;
}

html, body {
  color: var(--color);
  background: var(--bg);
  font-family: "Open Sans", sans-serif;
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
}

.centered {
  text-align: center;
}

.hide {
  display: none !important;
}

a {
  color: var(--color-primary);
}
a:hover {
  color: var(--color-secondary);
}

header {
  position: absolute;
  width: 100%;
  height: 60px;
  text-align: center;
  z-index: 10;
}
header.header-cont .branding {
  text-align: left;
}
@media only screen and (max-width: 767px) {
  header.header-cont .branding {
    text-align: center;
  }
}
header.header-cont .branding .branding-h1 {
  font-size: 2rem;
  margin-top: 0.5rem;
}
header.header-cont .branding a {
  text-decoration: none;
  text-transform: capitalize;
  color: #fff;
  font-weight: 500;
  font-size: 1em;
  padding-top: 20px;
  margin: 0;
}
header.header-cont .menu {
  text-align: right;
}
@media only screen and (max-width: 767px) {
  header.header-cont .menu {
    text-align: center;
  }
}
header.header-cont .menu ul {
  list-style-type: none;
  padding: 15px 0 0 0;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  header.header-cont .menu ul {
    margin: 15px 0;
    padding: 15px 0;
    background: #687A91;
  }
}
header.header-cont .menu ul li {
  display: inline-block;
  margin-right: 15px;
}
header.header-cont .menu ul li:last-child {
  margin-right: 0;
}
header.header-cont .menu ul li a {
  text-decoration: none;
  text-transform: capitalize;
  color: #fff;
  font-weight: 500;
  font-size: 1em;
}
header.header-cont .menu ul li a:link, header.header-cont .menu ul li a:visited {
  color: #D6DBD9;
}
header.header-cont .menu ul li a:hover {
  color: #B5C0B0;
}
header.header-cont .menu ul li a:active {
  color: #B5C0B0;
}

.banner {
  display: block;
  padding: 120px 0;
  color: #fff;
}
.banner.full {
  padding-bottom: 40px;
}
.banner.no-bottom-padding {
  padding-bottom: 0;
}
.banner.short {
  padding-bottom: 20px;
}
.banner.pic.format-nowebp {
  background: url("/assets/img/hero-2-e2.jpg") top center no-repeat;
  background-size: cover;
}
.banner h1.line1, .banner .line1 {
  font-size: 3.5rem;
  line-height: 4rem;
  font-weight: 300;
  margin-bottom: 0;
  text-shadow: 2px 2px 2px #000000;
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .banner h1.line1, .banner .line1 {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .banner h1.line1, .banner .line1 {
    font-size: 2rem;
    text-align: center;
  }
}
.banner .line2 {
  font-size: 1.2rem;
  line-height: 1.5rem;
  margin-top: 1.5em;
  font-weight: 300;
  margin-bottom: 0;
  text-shadow: 2px 2px 2px #000000;
}
@media only screen and (max-width: 767px) {
  .banner .line2 {
    text-align: center;
    padding: 1rem;
  }
}
.banner .line2 span {
  color: greenyellow;
}
.banner .contact-box {
  text-align: center;
  padding: 2em;
  margin: 40px 0;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 5px;
}
.banner .contact-box h2 {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0;
  color: gold;
}
.banner .contact-box .line2 {
  text-align: left;
  margin-bottom: 2rem;
}
.banner .contact-box .line3 {
  text-align: center;
  margin-bottom: 1rem;
}
.banner .contact-box ul {
  list-style-type: none;
  padding: 15px 0 0 0;
  margin: 0;
}
.banner .contact-box ul li {
  display: inline-block;
  margin-right: 15px;
}
.banner .contact-box ul li:last-child {
  margin-right: 0;
}
.banner .contact-box ul li a {
  text-decoration: none;
  color: #fff;
}
.banner .avatar-box {
  background: url("/assets/img/20211128_143127.png") bottom center no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
}
.banner .avatar-box.xmas {
  background: url("/assets/img/20211128_143127_xmas.png") bottom center no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  .banner .avatar-box {
    background: none;
  }
}

main h2 {
  font-weight: bold;
  font-size: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
main h2 img {
  vertical-align: middle;
}
main .color-grey {
  background-color: #C3C9D1;
}
main .block-section {
  padding: 5rem 0;
}
@media only screen and (max-width: 767px) {
  main .block-section {
    padding: 1rem 0;
  }
}
main .block-section .block-cont {
  padding: 2rem 0;
}
main .block-section .block-cont h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  main .block-section .block-cont h2 {
    text-align: center;
  }
}
main .block-section .block-cont p {
  font-size: 1rem;
  line-height: 1.1rem;
  margin-bottom: 0;
  padding-bottom: 1rem;
}
@media only screen and (max-width: 767px) {
  main .block-section .block-cont p {
    text-align: center;
  }
}
main .block-section .block-cont ul {
  padding-left: 1rem;
  list-style-type: square;
}
main .block-section .card {
  padding: 2rem 0 1rem 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  min-width: 0;
  word-wrap: break-word;
  background-color: var(--bg-secondary);
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}
main .block-section .card.flush-top {
  padding-top: 0;
}
main .block-section .card.no-border {
  border: 0;
}
main .block-section .card .card-img-top {
  width: 100%;
}
main .block-section .card .card-body {
  flex: 1 1 auto;
  padding: 1rem 1rem;
}
main .block-section .card .card-body h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1.3rem;
}
main .block-section .card .card-body h3 abbr {
  background: #687A91;
  padding: 0.3rem 0.4rem;
  border-radius: 4px;
  color: #fff;
  font-weight: normal;
  font-size: 0.8rem;
}
main .block-section .card .card-body p {
  line-height: 1.2rem;
  padding-bottom: 1rem;
}
main .block-section .card .card-body p strong {
  font-weight: bold;
  padding: 1rem 0;
}
main .block-section .card .card-body .footer-link {
  margin-top: 1.5rem;
  padding: 1rem 0;
}
main .block-section .card .card-body .footer-link p {
  margin-bottom: 2rem;
}
main .block-section .card .card-body .footer-link a {
  text-decoration: none;
  color: cadetblue;
}
main .block-metaverse {
  border-top: 5px solid var(--border-color);
  border-bottom: 5px solid var(--border-color);
}
main .block-metaverse h2 {
  text-align: center;
  font-size: 1.2em;
  line-height: 2rem;
}
main .block-metaverse img {
  margin: 0 auto;
  display: block;
}
main .block-metaverse .introTextBlock {
  padding: 2rem 0;
}
main .block-metaverse .introTextBlock h2 {
  text-align: center;
  font-size: 2em;
  line-height: 3rem;
}
main .block-metaverse .introTextBlock p {
  font-size: 1.2em;
  line-height: 1.5rem;
  padding-bottom: 1rem;
}
main .block-metaverse .introTextBlock p strong {
  font-weight: bold;
  padding: 1rem 0;
}
main .block-metaverse .introTextBlock .yt {
  width: 100%;
  text-align: center;
  margin: 3rem auto;
  display: flex;
  justify-content: center;
  align-content: center;
}
main .block-metaverse .introTextBlock .yt .yt-item {
  display: flex;
}
main .block-metaverse .introTextBlock .yt a {
  line-height: 32px;
  margin-left: 8px;
}
main .block-metaverse .introTextBlock .yt img {
  margin-left: 2rem;
  vertical-align: middle;
}
main .block-metaverse .introTextBlock .footer-link {
  text-align: center;
  margin-top: 1.5rem;
  padding: 1rem 0;
}
main .ribbon span {
  font-size: 10px;
  font-weight: bold;
  color: #FFF;
  text-transform: uppercase;
  text-align: center;
  line-height: 20px;
  width: 100px;
  display: block;
  background: #79A70A;
  background: linear-gradient(#2989d8 0%, #1e5799 100%);
  box-shadow: 0 3px 10px -5px rgb(0, 0, 0);
  position: absolute;
  top: 5px;
  right: -21px;
}
main a.btn, main button.btn {
  padding: 0.8rem 1.4rem;
  text-decoration: none;
  cursor: pointer;
}
main a.btn.primary, main button.btn.primary {
  border: 1px solid var(--border-color);
  background: var(--bg);
  color: var(--color-primary);
}
main a.btn.primary:visited, main a.btn.primary:link, main button.btn.primary:visited, main button.btn.primary:link {
  background: var(--bg);
  color: var(--color-primary);
}
main a.btn.primary:hover, main a.btn.primary:active, main button.btn.primary:hover, main button.btn.primary:active {
  background: #687A91;
  color: #fff !important;
}
main a.btn.filled, main button.btn.filled {
  display: block;
  text-align: center;
}
main a.btn.secondary, main button.btn.secondary {
  border: 1px solid var(--border-color);
}
main a.btn.secondary:visited, main a.btn.secondary:link, main button.btn.secondary:visited, main button.btn.secondary:link {
  background: var(--bg-secondary);
  color: var(--color-secondary);
}
main a.btn.secondary:hover, main a.btn.secondary:active, main button.btn.secondary:hover, main button.btn.secondary:active {
  background: #3d4e5f;
  color: #fff !important;
}
main a.btn.secondary.green, main button.btn.secondary.green {
  background: var(--bg-secondary);
  color: var(--color-secondary);
}
main a.btn.secondary.green:hover, main a.btn.secondary.green:active, main button.btn.secondary.green:hover, main button.btn.secondary.green:active {
  background: #608E00;
  color: #fff !important;
}
main input {
  padding: 1rem;
  color: var(--color);
  background: var(--bg-secondary);
  border: 1px solid #687A91;
  border-radius: 7px;
  font-size: 1rem;
}
main .alljewels {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #ddd;
}
main .alljewels.noline {
  border: 0;
}
main .alljewels.noline h2 {
  text-align: center;
}
main .alljewels .jewel {
  padding: 1rem;
}
main .alljewels .jewel img {
  vertical-align: middle;
}
main .alljewels .jewel small {
  line-height: 42px;
}
main .alljewels .jewel div {
  margin: 1rem 0;
}
main .alljewels .jewel p {
  text-align: center;
}
main .alljewels .jewel p.total {
  font-size: 2rem;
  line-height: 2.2rem;
  color: #1e5799;
  font-weight: 600;
}
main p.water {
  color: #0066cc;
}
main p.oil {
  color: #47494e;
}
main p.wood {
  color: #4c9651;
}
main p.limestone {
  color: #bbb;
}
main p.iron {
  color: #b63a1f;
}
main p.sand {
  color: #8a8549;
}
main p.metal {
  color: #ff000f;
}
main p.coal {
  color: #3b4e5b;
}
main p.time {
  color: #ee9238;
}
main p.research {
  color: #9879ea;
}
main p.ether {
  color: #504231;
}
main .res {
  display: flex;
  flex-wrap: wrap;
}
main .res .item {
  padding: 0.5rem;
  text-align: center;
  border: 1px solid #0d2538;
  margin: 0.1rem;
}
main .res .item p {
  padding-bottom: 0;
  margin-bottom: 0;
  font-weight: 400;
  font-size: 1rem;
}
main .glossary {
  display: flex;
  justify-content: space-between;
}
main .glossary .item {
  padding: 0.5rem;
  text-align: center;
  border: 1px solid #0d2538;
  margin: 0.1rem;
}
main .glossary .item p {
  padding-bottom: 0;
  margin-bottom: 0;
  font-weight: 400;
  font-size: 1rem;
}
main .glossary .item small {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 42px;
}
main .crafting {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
main .crafting .row3 {
  display: block;
  flex-wrap: wrap;
}
main .crafting .row3 .item {
  padding: 0.5rem;
  text-align: center;
  border: 1px solid #0d2538;
  margin: 0.1rem;
}
main .crafting .row3 .item img {
  vertical-align: middle;
}
main .crafting .row3 .item small {
  line-height: 42px;
}
main .crafting .row3 .item p {
  padding-bottom: 0;
  margin-bottom: 0;
  font-size: 1.2rem;
}
main .triangle {
  border-right: 10px solid;
  border-bottom: 10px solid;
  height: 30px;
  width: 30px;
  transform: rotate(-45deg);
  margin-right: 10px;
}
main .mega-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

footer {
  background-color: var(--bg);
  padding: 2rem 0 1rem 0;
}
footer .block-cont .copy {
  text-align: center;
}
@media only screen and (max-width: 767px) {
  footer .block-cont .copy {
    padding: 3rem 1.5rem;
  }
}
footer .block-cont p {
  color: var(--color);
  margin-bottom: 2rem;
  line-height: 1.2rem;
}

/*
table style
 */
.improving {
  margin-bottom: 3rem;
}

.table-essence {
  border: 1px solid var(--bg);
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}
@media screen and (max-width: 600px) {
  .table-essence {
    border: 0;
  }
}
@media screen and (max-width: 600px) {
  .table-essence thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
}
.table-essence caption {
  margin-bottom: 3px;
}
.table-essence tr {
  background-color: var(--bg-secondary);
  border: 1px solid #ddd;
  padding: 0.35em;
}
@media screen and (max-width: 600px) {
  .table-essence tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: 0.625em;
  }
}
.table-essence th,
.table-essence td {
  padding: 0.625em;
  text-align: center;
  font-size: 1.5rem;
}
.table-essence th:first-child,
.table-essence td:first-child {
  background-color: #1e5799;
}
.table-essence th img,
.table-essence td img {
  height: 32px;
  vertical-align: middle;
  -o-object-fit: contain;
}
@media screen and (max-width: 600px) {
  .table-essence td {
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: 0.8em;
    text-align: right;
  }
}
@media screen and (max-width: 600px) {
  .table-essence td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }
}
@media screen and (max-width: 600px) {
  .table-essence td:last-child {
    border-bottom: 0;
  }
}

/*
 CSS for the main interaction
*/
.tabset > input[type=radio] {
  position: absolute;
  left: -200vw;
}

.tabset .tab-panel {
  display: none;
}

.tabset > input:first-child:checked ~ .tab-panels > .tab-panel:first-child,
.tabset > input:nth-child(3):checked ~ .tab-panels > .tab-panel:nth-child(2),
.tabset > input:nth-child(5):checked ~ .tab-panels > .tab-panel:nth-child(3),
.tabset > input:nth-child(7):checked ~ .tab-panels > .tab-panel:nth-child(4),
.tabset > input:nth-child(9):checked ~ .tab-panels > .tab-panel:nth-child(5),
.tabset > input:nth-child(11):checked ~ .tab-panels > .tab-panel:nth-child(6) {
  display: block;
}

/*
 Styling
*/
.tabset > label {
  position: relative;
  display: inline-block;
  padding: 15px 15px 25px;
  border: 1px solid transparent;
  border-bottom: 0;
  cursor: pointer;
  font-weight: 600;
}

.tabset > label::after {
  content: "";
  position: absolute;
  left: 15px;
  bottom: 10px;
  width: 22px;
  height: 4px;
  background: var(--bg);
}

.tabset > label:hover,
.tabset > input:focus + label {
  color: var(--color);
}

.tabset > label:hover::after,
.tabset > input:focus + label::after,
.tabset > input:checked + label::after {
  background: #06c;
}

.tabset > input:checked + label {
  border-color: #ccc;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: -1px;
}

.tab-panel {
  padding: 30px 0;
  border-top: 1px solid #ccc;
}
.tab-panel h2 {
  color: #41b38a;
}

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