html {
  display: flex;
  height: 100%;
  flex-direction: column;
}

body {
  margin: 0;
  flex-grow: 1;
}

button:focus {
  outline: none
}

.full-screen {
  height: 100vh;
  width: 100vw;
}

.message {
  color: #1DBF4A;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 36px;
}

.fading {
  opacity: 0;
  transition: 0.6s;
}

.move-left {
  margin-right: auto !important;
  margin-left: 0 !important;
}

.move-right {
  margin-left: auto !important;
  margin-right: 0 !important;
}

.loading-wrapper {
  z-index: 9999;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  position: absolute;
  background-color: #535353;
  display: -webkit-flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading-message {
  color: #1DBF4A;
  font-size: 30px;
  font-weight: 600;
}

.body-inner {
  display: flex;
  flex-direction: column;
  background-color: #535353;
  width: 100%;
  height: 100%;
}

.header-wrapper {
  position: relative;
  width: 100%;
  height: 50px;
  background-color: #2C2C2C;
}

.header-inner {
  display: flex;
  width: 100%;
  height: 100%;
}

.site-title-wrapper {
  z-index: 4;
  width: 100px;
  position: relative;
  margin: 0 20px;
  display: inline-block;
}

.site-title-inner {
  border: none;
  color: initial;
  text-decoration: none;
  user-select: none;
  cursor: pointer;
  box-sizing: border-box;
  position: absolute;
  padding: 2px;
  display: inline-block;
  top: 50%;
  transition: 0.2s;
  background-color: #1DBF4A;
}

.site-title-inner:hover {
  transition: 0.3s;
  background-color: #18ef53;
}

.site-title {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 36px;
}

.header-content-wrapper {
  flex-grow: 1;
  margin: 0 10px;
}

.header-content-inner {
  display: flex;
  height: 100%;
  justify-content: space-between;
}

.auth-content {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
}

.header-menu {
  height: 100%;
  display: -webkit-flex;
  -webkit-align-items: center;
  display: flex;
  align-items: center;
}

.header-menu-message {
  font-weight: 500;
  margin: 0 10px;
  padding: 5px;
  color: #1DBF4A;
  font-size: 18px;
}

.header-menu-button2 {
  font-weight: 500;
  cursor: pointer;
  background-color: rgba(0,0,0,0);
  border: none;
  font-size: 18px;
  white-space: nowrap;
  color: #C57B25;
}

.header-menu-button1 {
  font-weight: 500;
  cursor: pointer;
  background-color: rgba(0,0,0,0);
  border: none;
  text-decoration: underline;
  text-underline-position: under;
  color: #1DBF4A;
  font-size: 18px;
}

.header-bottom-wrapper {
  top: 50px;
  box-sizing: border-box;
  padding-left: 140px;
  background-color: #C57B25;
  width: 100%;
  position: absolute;
  z-index: 3;
  height: 35px;
}

.header-bottom-inner {
  width: 100%;
  height: 100%;
}

.header-bottom-text {
  color: #2C2C2C;
}

.header-button-highlight {
  background-color: #C57B25;
}
.header-button-highlight button {
  color: #2C2C2C;
}

.page-content-wrapper {
  flex-grow: 1;
}

.content-centered-wrapper {
  table-layout: fixed;
  display: table;
  width: 100%;
  height: 100%;
}

.content-centered-inner {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}


.page-content-inner {
  width: 100%;
  height: 100%;
}

.cool-text {
  line-height: 90%;
  font-family: Rajdhani;
}

.button2 {
  box-sizing: border-box;
  text-align: center;
  color: #EAEAEA;
  cursor: pointer;
  border: none;
  transition: 0.2s;
  background-color: #2A99BC;
}
.button2:hover, .button2:focus {
  transition: 0.3s;
  background-color: #10AEE0;
}

.button-wrapper {
  margin: 10px;
  cursor: pointer;
  padding: 20px 5px 5px 10px;
  border: none;
  background-color: #C57B25;
  display: flex;
  transition: 0.2s;
  font-size: 30px;
  display: -webkit-flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}

.button-wrapper:hover, .button-wrapper:focus {
  transition: 0.3s;
  background-color: #DB7D0F;
}

.button-text {
  font-weight: bold;
  text-transform: uppercase;
  color: #EAEAEA;
}

.button-arrows {
  font-family: Arial;
  margin-left: 50px;
}

.button-label {
  overflow: hidden;
  text-overflow: ellipsis;
}

.button {
  -moz-box-shadow: 1px 1px 0px 1px #bfbfbf;
	-webkit-box-shadow: 1px 1px 0px 1px #bfbfbf;
	box-shadow: 1px 1px 0px 1px #bfbfbf;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
  margin: 0 10px;
  border-width: 0;
  cursor: pointer;
	color: #ffffff;
	font-family: Arial;
	font-size: 17px;
	font-weight: bold;
	padding: 16px 31px;
	text-decoration: none;
	text-shadow: 0px 1px 0px #2f6627;
  transition-duration: .3s;
  margin: 5px;
}
.button:focus {outline-width: 0}
.button:hover, .button:focus {transition-duration: .3s}

.textfield {
  color: #EAEAEA;
  box-sizing: border-box;
  margin: 20px 0;
  width: 100%;
  display: block;
  background-color: #2C2C2C;
  border: none;
  border-radius: 0;
  font-size: 18px;
  padding: 20px 10px 10px 10px;
}
.textfield:focus {
  background-color: #000000;
  outline-width: 0;
  transition-duration: .3s;
}

.hide {display: none !important}

.form {
  position: relative;
}

input:-webkit-autofill,
input:-internal-autofill-selected {
  font-size: 18px;
  border-radius: 0;
  -webkit-text-fill-color: #EAEAEA;
  -webkit-box-shadow: 0 0 0px 1000px #2C2C2C inset;
  transition: background-color 5000s ease-in-out 0s;
}

input:-webkit-autofill:focus,
input:-internal-autofill-selected:focus {
  font-size: 18px;
  border-radius: 0;
  -webkit-text-fill-color: #EAEAEA;
  -webkit-box-shadow: 0 0 0px 1000px #000000 inset;
  transition: background-color 5000s ease-in-out 0s;
}

@media only screen and (max-width: 700px) {
  .disappear-possible {
    display: none;
  }
}

@media only screen and (max-width: 570px) {
  .header-bottom-wrapper {
    padding-left: 0;
  }
}

@media only screen and (max-width: 460px) {
  .header-bottom-wrapper {
    height:  180px;
  }
}

@media only screen and (max-width: 420px) {
  .header-menu-message {
    position: absolute;
    left: 10px;
    top: 0;
  }
}

@media only screen and (max-width: 360px) {
  .button-arrows {
    display: none;
  }
  .button-wrapper {
    padding: 20px 10px 5px 10px;
  }
}
