/* Colors */

.secondImage {
  max-width: 350px;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #FFFFFF;
  margin: 0 0 10px 0;
}
h1 {
  font-size: 87px;
  font-family: 'Heroes Legend', 'sans-serif';
  line-height: 140px;
}
h2 {
  font-size: 60px;
  font-weight: 700;
}
h2.heroes {
  font-family: 'Heroes Legend', 'sans-serif';
}
h3 {
  font-size: 28px;
  line-height: 20px;
  padding-top: 2px;
}
h4 {
  font-family: 'Poppins', 'sans-serif';
  text-transform: uppercase;
  letter-spacing: 2px;
}
h4.with-breadcrump::after {
  display: block;
  content: '';
  width: 40px;
  height: 3px;
  border-radius: 100px;
  background: #FFFFFF;
  margin: 20px 0 10px 0;
}
h4.with-breadcrump.center::after {
  margin: 20px auto 10px auto;
}
h5 {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}
/* Buttons */
.btn {
  padding: 13px 18px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border: 2px solid;
  text-decoration: none;
  font-size: 15px;
  position: relative;
  display: inline-block;
  font-weight: bold;
  cursor: pointer;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.btn.small {
  font-size: 13px;
  padding: 10px 15px;
}
.btn.white {
  border-color: white;
  color: white;
}
.btn.white:hover {
  background: rgba(255, 255, 255, 0.3);
}
.btn.white::after {
  background: url("https://unlock.landania.net/assets/images/arrow-right_black.svg") no-repeat center, white;
  background-size: 8px;
  color: #FFFFFF;
}
.btn.black {
  color: #FFFFFF;
}
.btn.black::after {
  background: url("https://unlock.landania.net/assets/images/arrow-right_black.svg") no-repeat center, #FFFFFF;
  background-size: 8px;
}
.btn.black:hover {
  background: rgba(0, 0, 0, 0.1);
}
.btn::after {
  display: block;
  position: absolute;
  right: -30px;
  width: 30px;
  height: calc(100% + 4px);
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  content: '';
  top: -2px;
}
/* Text */
p {
  font-size: 14px;
  line-height: 30px;
  opacity: 0.8;
  color: #FFFFFF;
}
p.small {
  font-size: 12px;
}
/* Container */
.container {
  margin: 130px auto;
  width: 1280px;
}
/* Centered Head */
.centered-head {
  width: 768px;
  margin: auto;
  text-align: center;
}
.centered-head.with-margin {
  margin-bottom: 40px;
}
/* Grid */
.grid .row {
  display: grid;
  margin: 0 -20px;
}
.grid .row.col-14 {
  grid-template-columns: repeat(7, 14.28571428%);
}
.grid .row.col-20 {
  grid-template-columns: repeat(5, 20%);
}
.grid .row.col-25 {
  grid-template-columns: repeat(4, 25%);
}
.grid .row.col-33 {
  grid-template-columns: repeat(3, 33.33333333%);
}
.grid .row.col-50 {
  grid-template-columns: repeat(2, 50%);
}
.grid .row.col-25_75 {
  grid-template-columns: 25% 75%;
}
.grid .row .column {
  margin: 0 20px;
}
.grid .row.autoflow {
  grid-auto-flow: column;
  width: auto;
  overflow: hidden;
  padding: 50px 0;
  display: grid !important;
}
.grid .row.autoflow.col-20 {
  grid-template-columns: repeat(1000, 20%);
}
.grid .row.autoflow.col-25 {
  grid-template-columns: repeat(1000, 25%);
}
.grid .row.autoflow.col-33 {
  grid-template-columns: repeat(1000, 33.33333333%);
}
.grid .row.autoflow.col-50 {
  grid-template-columns: repeat(1000, 50%);
}
/* Badge */
.badge {
  font-size: 10px;
  padding: 5px 10px;
  border-radius: 3px;
  border: 2px solid;
  background-color: transparent;
}
.badge.red {
  color: #D94A38;
  box-shadow: 0 0 15px rgba(217, 74, 56, 0.1) inset;
}
.badge.turqoise {
  color: #28B4A4;
  box-shadow: 0 0 15px rgba(40, 180, 164, 0.1) inset;
}
.badge.black {
  color: #FFFFFF;
  box-shadow: 0 0 15px rgba(54, 54, 54, 0.1) inset;
}
/* Modal */
.modal {
  width: 100%;
  height: 100%;
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: 0.3s;
}
.modal.visible {
  opacity: 1;
  z-index: 10;
}
.modal.visible .modal-content {
  opacity: 1;
}
.modal .modal-content {
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 15px;
  padding: 32px;
  box-sizing: border-box;
  transition: 0.3s;
}
.modal .modal-content.small {
  width: 360px;
}
.modal .modal-content .modal-toggler {
  float: right;
  margin-top: 7px;
  cursor: pointer;
}
.modal .modal-content .modal-toggler span {
  height: 2px;
  width: 14px;
  display: block;
  background: #FFFFFF;
}
.modal .modal-content .modal-toggler span:first-of-type {
  transform: rotate(45deg);
  position: relative;
  top: 2px;
}
.modal .modal-content .modal-toggler span:last-of-type {
  transform: rotate(-45deg);
}
/* Form */
input,
select {
  border: 0;
  border-bottom: 2px #ddd solid;
  padding: 10px 0;
  width: 100%;
  font-size: 14px;
  transition: 0.3s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: 19px;
  outline: none;
}
input[type=search]::-webkit-search-cancel-button,
select[type=search]::-webkit-search-cancel-button {
  display: none;
}
input[type=checkbox],
select[type=checkbox] {
  display: none;
}
input[type=checkbox]:checked + label.checkbox::before,
select[type=checkbox]:checked + label.checkbox::before {
  background: #000000;
}
input[type=checkbox]:checked + label.checkbox::after,
select[type=checkbox]:checked + label.checkbox::after {
  opacity: 1;
}
input:focus,
select:focus {
  border-bottom-color: #FFFFFF;
}
input:valid,
select:valid {
  border-bottom-color: #5bd664;
}
input:required:invalid,
select:required:invalid {
  box-shadow: none;
}
button {
  background: none;
}
label {
  font-size: 14px;
  color: #FFFFFF;
  cursor: pointer;
  position: relative;
}
label.checkbox {
  padding-left: 21px;
}
label.checkbox::before {
  height: 11px;
  width: 11px;
  border: 2px #FFFFFF solid;
  vertical-align: middle;
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  border-radius: 3px;
  transform: translateY(-50%);
  transition: 0.3s;
}
label.checkbox::after {
  position: absolute;
  top: 8px;
  background: url("https://unlock.landania.net/assets/images/check.svg") no-repeat center;
  background-size: cover;
  left: 4px;
  display: block;
  content: '';
  height: 6px;
  width: 7px;
  transition: 0.3s;
  opacity: 0;
}

/* roboto-300 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: local('Roboto Light'), local('Roboto-Light'), url('https://unlock.landania.net/assets/fonts/roboto-v19-latin-300.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('https://unlock.landania.net/assets/fonts/roboto-v19-latin-300.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-regular - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), local('Roboto-Regular'), url('https://unlock.landania.net/assets/fonts/roboto-v19-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('https://unlock.landania.net/assets/fonts/roboto-v19-latin-regular.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-500 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: local('Roboto Medium'), local('Roboto-Medium'), url('https://unlock.landania.net/assets/fonts/roboto-v19-latin-500.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('https://unlock.landania.net/assets/fonts/roboto-v19-latin-500.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* roboto-700 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Bold'), local('Roboto-Bold'), url('https://unlock.landania.net/assets/fonts/roboto-v19-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ url('https://unlock.landania.net/assets/fonts/roboto-v19-latin-700.woff') format('woff');
  /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
body,
html {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Futura bt', 'Roboto', 'sans-serif';
  scroll-behavior: smooth;
  scroll-padding-top: 180px;
  background-color: #0b0b0b;
  color: #7B7B7B;
}
#nav-toggler {
  width: 26px;
  height: 26px;
  direction: rtl;
  position: fixed;
  top: 35px;
  right: 35px;
  z-index: 10;
  border-radius: 5px;
  padding: 10px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  display: none;
}
#nav-toggler span {
  width: 100%;
  height: 3px;
  border-radius: 100px;
  background: white;
  display: block;
  margin-bottom: 8px;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
}
#nav-toggler span:first-of-type {
  width: 80%;
}
#nav-toggler span:last-of-type {
  width: 60%;
}
#nav-toggler span:last-of-type {
  margin-bottom: 0;
}
#nav-toggler.opened span {
  display: none;
  background: #363636;
  width: 100%;
}
#nav-toggler.opened span:last-of-type {
  display: block;
  transform: rotate(-45deg);
}
#nav-toggler.opened span:first-of-type {
  display: block;
  transform: rotate(45deg);
  top: 11px;
  position: relative;
}
#nav-toggler.fixed {
  background: white;
  box-shadow: 0 0 15px 15px rgba(0, 0, 0, 0.05);
}
#nav-toggler.fixed span {
  background: #363636;
}
nav#nav-main {
  width: 100%;
  position: fixed;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: 5;
}
nav#nav-main ul {
  width: 1280px;
  margin: auto;
  padding: 70px 0 55px;
  text-align: center;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
nav#nav-main ul #dropdown {
  display: inline-block;
  position: relative;
}
nav#nav-main ul #dropdown:hover li {
  padding-bottom: 25px;
}
nav#nav-main ul #dropdown:hover #dropdown-menu {
  opacity: 1;
  z-index: 2;
}
nav#nav-main ul #dropdown #dropdown-menu {
  position: absolute;
  background: white;
  border-radius: 5px;
  opacity: 0;
  right: 0;
  top: 30px;
  z-index: -1;
  width: 170px;
  text-align: left;
  border: 2px #ddd solid;
}
nav#nav-main ul #dropdown #dropdown-menu li {
  padding: 10px !important;
  margin: 0;
}
nav#nav-main ul #dropdown #dropdown-menu li a {
  color: #363636;
}
nav#nav-main ul #dropdown #dropdown-menu img {
  filter: none;
  width: 22px;
}
nav#nav-main ul li {
  display: inline-block;
  margin: 0 10px;
  cursor: pointer;
  opacity: 0.75;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
nav#nav-main ul li:hover {
  opacity: 1;
}
nav#nav-main ul li#vertical-line {
  width: 2px;
  height: 15px;
  background: white;
  opacity: 0.5;
  vertical-align: middle;
}
nav#nav-main ul li#signout img {
  margin: 0 0 0 10px;
}
nav#nav-main ul li#link-active {
  opacity: 1;
}
nav#nav-main ul li#signin-as {
  position: relative;
}
nav#nav-main ul li#signin-as::after {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-right: 8px solid white;
  transform: rotate(45deg);
  display: inline-block;
  content: '';
  position: absolute;
  top: 3px;
  right: -22px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
nav#nav-main ul li img {
  height: 16px;
  vertical-align: middle;
  margin-right: 10px;
  opacity: 0.6;
  position: relative;
  top: -1px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
nav#nav-main ul li a {
  color: white;
  font-family: 'Roboto', 'sans-serif';
  text-decoration: none;
  font-size: 14px;
}
nav#nav-main h3 {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
nav#nav-main #right-btn {
  position: absolute;
  top: 55px;
  right: 70px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
nav#nav-main #right-btn::after {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
footer {
  overflow-y: auto;
  background: url("https://unlock.landania.net/assets/images/footer-small.png") no-repeat center;
  background-size: cover;
  width: 100%;
}
footer a {
  margin: 0 20px;
  text-decoration: none;
  color: white;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  font-size: 14px;
}
footer a:hover {
  opacity: 0.7;
}
footer .container {
  margin: 50px auto;
}
footer #footer-copyright {
  background: #363636;
  padding: 18px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: white;
  text-align: center;
  font-size: 14px;
}
header h1,
header h2.heroes {
  color: white;
  text-shadow: 0 0 55px rgba(255, 255, 255, 0.5);
}
header#header-small {
  background-size: cover;
  overflow-y: auto;
  text-align: center;
}
header#header-small #header-content {
  width: 1280px;
  margin: 50px auto 20px auto;
}
header#header-small #header-content.large {
  margin: 160px auto 195px auto;
}
header#header-small #header-content h5 {
  color: white;
}
header#header-small #header-content #content-scroller {
  display: block;
  margin-top: 100px;
  text-decoration: none;
}
header#header-small #header-content #content-scroller p {
  color: white;
}
#team {
  background: #F5F5F5;
  overflow: auto;
}
#team .grid {
  position: relative;
}
#team .slide-control {
  height: 30px;
  opacity: 0.3;
  transition: 0.3s;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#team .slide-control#scroll-left {
  left: -100px;
}
#team .slide-control#scroll-right {
  right: -100px;
}
#team .slide-control:hover {
  opacity: 0.6;
}
#team .row {
  margin: 0 -35px;
}
#team .row .column {
  border-top-left-radius: 90px;
  border-bottom-right-radius: 90px;
  background: white;
  border: 1px #eaeaea solid;
  box-shadow: 0 25px 35px rgba(0, 0, 0, 0.03);
  padding: 45px;
  margin: 0 35px;
}
#team .row .column img {
  border-radius: 10px;
  height: 80px;
  width: 80px;
  border: 1px #E0E0E0 solid;
  margin: 0 auto -50px auto;
  display: block;
  position: relative;
  top: -80px;
  box-shadow: 0 25px 35px rgba(0, 0, 0, 0.11);
}
#statistics .column {
  text-align: center;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  padding: 45px;
  border: 1px solid transparent;
}
#statistics .column:hover {
  border-top-left-radius: 90px;
  border-bottom-right-radius: 90px;
  background: white;
  border-color: #eaeaea;
  box-shadow: 0 25px 35px rgba(0, 0, 0, 0.03);
  margin: 0 35px;
}
#statistics .column h5 {
  font-weight: bold;
}
#statistics .column img {
  height: 65px;
  width: auto;
  margin-bottom: 15px;
}
#statistics .column h2 {
  font-size: 50px;
}
#statistics .column h2 small {
  font-weight: 400;
  font-size: 20px;
  margin: 0 5px;
}
#accounts .container {
  margin: 85px auto;
}
#accounts .column {
  text-align: center;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  padding: 45px;
  border: 1px solid transparent;
  cursor: pointer;
  min-height: 300px;
}
#accounts .column.add-account {
  border: 2px #363636 dashed;
  border-radius: 15px;
  padding: 0;
  box-shadow: none !important;
  position: relative;
}
#accounts .column.add-account span {
  font-size: 70px;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  font-weight: lighter;
  opacity: 0.5;
}
#accounts .column:hover {
  border-top-left-radius: 90px;
  border-bottom-right-radius: 90px;
  background: white;
  border-color: #eaeaea;
  box-shadow: 0 25px 35px rgba(0, 0, 0, 0.03);
  margin: 0 35px;
}
#accounts .column:hover .account-information {
  max-height: 1000px;
}
#accounts .column .account-information {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
}
#accounts .column img.skin {
  border-radius: 10px;
  height: 80px;
  width: 80px;
  border: 1px #E0E0E0 solid;
  margin: 0 auto 25px auto;
  display: block;
  box-shadow: 0 25px 35px rgba(0, 0, 0, 0.11);
}
#accounts .column h5 {
  font-weight: bold;
  margin-bottom: 0;
}
#accounts .column h5 img {
  width: 23px;
  vertical-align: middle;
  top: -2px;
  position: relative;
  margin-right: 8px;
}
#accounts .column table {
  color: #363636;
  margin: 0 auto 25px auto;
  text-align: left;
}
#accounts .column table td:first-of-type {
  opacity: 0.8;
}
#accounts .column table td {
  font-size: 14px;
  vertical-align: top;
}
#login_site h2 {
  line-height: 40px;
}
#login_site form {
  margin: auto;
  width: 360px;
}

@media only screen and (max-width: 560px) {
  /* Universal */
  #nav-toggler {
    display: block;
  }

  .secondImage {
    max-width: 250px;
  }

  nav#nav-main {
    background: white;
    overflow-y: hidden;
    max-height: 0;
    -webkit-transition: 0.6s;
    -moz-transition: 0.6s;
    -ms-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
  }
  nav#nav-main.visible {
    max-height: 1000px;
  }
  nav#nav-main h3 {
    text-align: center;
    margin-right: 22px;
    padding-top: 50px;
    font-size: 25px;
    font-family: 'Heroes Legend', 'sans-serif';
  }
  nav#nav-main ul {
    width: 100%;
    height: auto;
    padding: 0 20px 20px 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  nav#nav-main ul #dropdown:hover li {
    padding: 8px 0;
  }
  nav#nav-main ul #dropdown:hover #dropdown-menu {
    max-height: 1000px;
  }
  nav#nav-main ul #dropdown #dropdown-menu {
    max-height: 0;
    overflow: hidden;
    position: relative;
    border: none;
    text-align: center;
    right: unset;
    top: unset;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  nav#nav-main ul li {
    display: block;
    padding: 8px 0;
    margin: 0;
  }
  nav#nav-main ul li a {
    color: #363636;
    font-size: 16px;
  }
  nav#nav-main #right-btn {
    position: relative;
    border-color: #363636;
    color: #363636;
    right: unset;
    top: unset;
    display: table;
    margin: 0 auto 35px auto;
    left: -15px;
  }
  nav#nav-main #right-btn::after {
    background: url("https://unlock.landania.net/assets/images/arrow-right_white.svg") no-repeat center, #363636;
    background-size: 8px;
    height: 100%;
    top: 0;
  }
  nav#nav-main #right-btn:hover {
    background: rgba(0, 0, 0, 0.1);
  }
  .container {
    width: 85%;
  }
  .grid .row {
    display: block;
    margin: 0 !important;
  }
  .grid .row .column {
    margin: 0 0 35px 0 !important;
  }
  .grid .row.autoflow .column {
    margin: 0 20px !important;
  }
  .grid .row.autoflow.col-33,
  .grid .row.autoflow.col-50 {
    grid-template-columns: repeat(1000, 100%);
  }
  .centered-head {
    width: 100%;
  }
  h1 {
    line-height: 170px;
    margin-bottom: -30px;
    font-size: 45px;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 99%;
    white-space: nowrap;
  }
  h2 {
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 99%;
    white-space: nowrap;
    font-size: 35px;
  }
  h3 {
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 99%;
    white-space: nowrap;
    line-height: 28px;
  }
  header.header-small #header-content {
    width: 85%;
    margin: 80px auto 100px auto !important;
  }
  .modal .modal-content {
    width: 90% !important;
  }
  /* Home */
  header#header-main #header-content {
    width: 85%;
  }
  #about p {
    width: 100% !important;
  }
  #team .slide-control#scroll-right {
    right: -20px;
  }
  #team .slide-control#scroll-left {
    left: -20px;
  }
  /* Clan Overview */
  #clans-overview-header #header-content {
    margin-bottom: 210px !important;
  }
  /* Clan Info */
  #clan-info-header #header-content {
    margin-bottom: 250px !important;
  }
  #clan-info {
    top: -20px;
  }
  #clan-info .container {
    margin: 0 auto;
  }
  #clan-info .container .container-content.visible {
    max-height: 10000px;
  }
  #clan-info .container .container-content .dataTables_wrapper {
    max-width: calc(100% + 90px);
    overflow-x: scroll;
    margin: 0 -45px;
  }
  #clan-info .container .container-content .dataTables_wrapper table {
    margin: 0;
    width: 100%;
  }
  #clan-info .container .centered-head#main {
    width: 50%;
    top: -190px;
  }
  #clan-info .container .centered-head#main .grid .row {
    display: grid;
    grid-template-columns: repeat(2, 50%);
  }
  /* Bauwert */
  #bauwert-overview,
  #bauwert-product {
    top: -90px;
  }
  #bauwert-overview .container .grid .row .column#bauwert-sidebar h4,
  #bauwert-product .container .grid .row .column#bauwert-sidebar h4 {
    margin: 0;
  }
  #bauwert-overview .container .grid .row .column#bauwert-sidebar ul,
  #bauwert-product .container .grid .row .column#bauwert-sidebar ul {
    margin: 0;
    padding: 0;
  }
  #bauwert-overview .container .grid .row .column#bauwert-sidebar ul:last-of-type,
  #bauwert-product .container .grid .row .column#bauwert-sidebar ul:last-of-type {
    margin-bottom: 0 !important;
  }
  #bauwert-overview .container .grid .row .column#bauwert-sidebar ul li,
  #bauwert-product .container .grid .row .column#bauwert-sidebar ul li {
    list-style: none;
    padding: 5px 0;
    opacity: 0.6;
  }
  #bauwert-overview .container .grid .row .column#bauwert-sidebar ul li:last-of-type,
  #bauwert-product .container .grid .row .column#bauwert-sidebar ul li:last-of-type {
    padding-bottom: 0;
  }
  #bauwert-overview .container .grid .row .column#bauwert-sidebar ul li#point-active,
  #bauwert-product .container .grid .row .column#bauwert-sidebar ul li#point-active {
    opacity: 1;
  }
  #bauwert-overview .container .grid .row .column#bauwert-sidebar ul li a,
  #bauwert-product .container .grid .row .column#bauwert-sidebar ul li a {
    color: #363636;
    text-decoration: none;
  }
  #bauwert-overview .container .grid .row .column#bauwert-sidebar.visible ul,
  #bauwert-product .container .grid .row .column#bauwert-sidebar.visible ul,
  #bauwert-overview .container .grid .row .column#bauwert-sidebar.visible h4,
  #bauwert-product .container .grid .row .column#bauwert-sidebar.visible h4 {
    opacity: 1;
    max-height: 10000px;
  }
  #bauwert-overview .container .grid .row .column#bauwert-sidebar.visible ul,
  #bauwert-product .container .grid .row .column#bauwert-sidebar.visible ul {
    margin: 0 0 25px 0;
  }
  #bauwert-overview .container .grid .row .column#bauwert-sidebar.visible h4,
  #bauwert-product .container .grid .row .column#bauwert-sidebar.visible h4 {
    margin-top: -5px;
  }
  #bauwert-overview .container .grid .row .column#bauwert-sidebar.visible #sidebar-toggler,
  #bauwert-product .container .grid .row .column#bauwert-sidebar.visible #sidebar-toggler {
    margin-bottom: 20px;
  }
  #bauwert-overview .container .grid .row .column#bauwert-sidebar ul,
  #bauwert-product .container .grid .row .column#bauwert-sidebar ul,
  #bauwert-overview .container .grid .row .column#bauwert-sidebar h4,
  #bauwert-product .container .grid .row .column#bauwert-sidebar h4 {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
  }
  #bauwert-overview .container .grid .row .column#bauwert-sidebar #sidebar-toggler,
  #bauwert-product .container .grid .row .column#bauwert-sidebar #sidebar-toggler {
    text-align: center;
    display: block;
  }
  #bauwert-overview .container .grid .row .column#bauwert-product_overview #products-search,
  #bauwert-product .container .grid .row .column#bauwert-product_overview #products-search {
    position: inherit;
  }
  #bauwert-overview .container .grid .row .column #product-pricing-history .column,
  #bauwert-product .container .grid .row .column #product-pricing-history .column {
    overflow: scroll;
  }
}

@media only screen and (min-width: 561px) and (max-width: 768px) {
  /* Universal */
  #nav-toggler {
    display: block;
  }
  h1 {
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 99%;
    white-space: nowrap;
    font-size: 60px;
    line-height: 170px;
    margin-bottom: -30px;
  }
  nav#nav-main {
    background: white;
    overflow-y: hidden;
    max-height: 0;
    -webkit-transition: 0.6s;
    -moz-transition: 0.6s;
    -ms-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
  }
  nav#nav-main.visible {
    max-height: 1000px;
  }
  nav#nav-main h3 {
    text-align: center;
    margin-right: 22px;
    padding-top: 50px;
    font-size: 25px;
    font-family: 'Heroes Legend', 'sans-serif';
  }
  nav#nav-main ul {
    width: 100%;
    height: auto;
    padding: 0 20px 20px 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  nav#nav-main ul #dropdown:hover li {
    padding: 8px 0;
  }
  nav#nav-main ul #dropdown:hover #dropdown-menu {
    max-height: 1000px;
  }
  nav#nav-main ul #dropdown #dropdown-menu {
    max-height: 0;
    overflow: hidden;
    position: relative;
    border: none;
    text-align: center;
    right: unset;
    top: unset;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  nav#nav-main ul li {
    display: block;
    padding: 8px 0;
    margin: 0;
  }
  nav#nav-main ul li a {
    color: #363636;
    font-size: 16px;
  }
  nav#nav-main #right-btn {
    position: relative;
    border-color: #363636;
    color: #363636;
    right: unset;
    top: unset;
    display: table;
    margin: 0 auto 35px auto;
    left: -15px;
  }
  nav#nav-main #right-btn::after {
    background: url("https://unlock.landania.net/assets/images/arrow-right_white.svg") no-repeat center, #363636;
    background-size: 8px;
    height: 100%;
    top: 0;
  }
  nav#nav-main #right-btn:hover {
    background: rgba(0, 0, 0, 0.1);
  }
  .container {
    width: 85%;
  }
  .grid .row {
    margin: 0 -10px -35px -10px !important;
    grid-template-columns: 50% 50% !important;
  }
  .grid .row .column {
    margin: 0 10px 35px 10px !important;
  }
  .grid .row.autoflow .column {
    margin: 0 20px !important;
  }
  .grid .row.autoflow.col-33,
  .grid .row.autoflow.col-50 {
    grid-template-columns: repeat(1000, 50%) !important;
  }
  .centered-head {
    width: 100%;
  }
  header.header-small #header-content {
    width: 85%;
    margin: 80px auto 100px auto !important;
  }
  /* Home */
  header#header-main #header-content {
    width: 85%;
  }
  #about p {
    width: 100% !important;
  }
  #team .slide-control#scroll-right {
    right: -40px;
  }
  #team .slide-control#scroll-left {
    left: -40px;
  }
  #statistics h2 {
    font-size: 40px !important;
  }
  /* Clan Overview */
  #clans-overview-header #header-content {
    margin-bottom: 210px !important;
  }
  /* Clan Info */
  #clan-info-header #header-content {
    margin-bottom: 250px !important;
  }
  #clan-info {
    top: -20px;
  }
  #clan-info .container {
    margin: 0 auto;
  }
  #clan-info .container .container-content.visible {
    max-height: 10000px;
  }
  #clan-info .container .container-content .dataTables_wrapper {
    max-width: calc(100% + 90px);
    overflow-x: scroll;
    margin: 0 -45px;
  }
  #clan-info .container .container-content .dataTables_wrapper table {
    margin: 0;
    width: 100%;
  }
  #clan-info .container .centered-head#main {
    width: 50%;
    top: -200px;
  }
  #clan-info .container .centered-head#main .grid .row {
    display: grid;
    grid-template-columns: repeat(2, 50%);
  }
  /* Bauwert */
  #bauwert-overview,
  #bauwert-product {
    top: -90px;
  }
  #bauwert-overview .container .grid .row.col-25_75,
  #bauwert-product .container .grid .row.col-25_75 {
    grid-template-columns: 100% !important;
  }
  #bauwert-overview .container .grid .row .column#bauwert-sidebar h4,
  #bauwert-product .container .grid .row .column#bauwert-sidebar h4 {
    margin: 0;
  }
  #bauwert-overview .container .grid .row .column#bauwert-sidebar ul,
  #bauwert-product .container .grid .row .column#bauwert-sidebar ul {
    margin: 0;
    padding: 0;
  }
  #bauwert-overview .container .grid .row .column#bauwert-sidebar ul:last-of-type,
  #bauwert-product .container .grid .row .column#bauwert-sidebar ul:last-of-type {
    margin-bottom: 0 !important;
  }
  #bauwert-overview .container .grid .row .column#bauwert-sidebar ul li,
  #bauwert-product .container .grid .row .column#bauwert-sidebar ul li {
    list-style: none;
    padding: 5px 0;
    opacity: 0.6;
  }
  #bauwert-overview .container .grid .row .column#bauwert-sidebar ul li:last-of-type,
  #bauwert-product .container .grid .row .column#bauwert-sidebar ul li:last-of-type {
    padding-bottom: 0;
  }
  #bauwert-overview .container .grid .row .column#bauwert-sidebar ul li#point-active,
  #bauwert-product .container .grid .row .column#bauwert-sidebar ul li#point-active {
    opacity: 1;
  }
  #bauwert-overview .container .grid .row .column#bauwert-sidebar ul li a,
  #bauwert-product .container .grid .row .column#bauwert-sidebar ul li a {
    color: #363636;
    text-decoration: none;
  }
  #bauwert-overview .container .grid .row .column#bauwert-sidebar.visible ul,
  #bauwert-product .container .grid .row .column#bauwert-sidebar.visible ul,
  #bauwert-overview .container .grid .row .column#bauwert-sidebar.visible h4,
  #bauwert-product .container .grid .row .column#bauwert-sidebar.visible h4 {
    opacity: 1;
    max-height: 10000px;
  }
  #bauwert-overview .container .grid .row .column#bauwert-sidebar.visible ul,
  #bauwert-product .container .grid .row .column#bauwert-sidebar.visible ul {
    margin: 0 0 25px 0;
  }
  #bauwert-overview .container .grid .row .column#bauwert-sidebar.visible h4,
  #bauwert-product .container .grid .row .column#bauwert-sidebar.visible h4 {
    margin-top: -5px;
  }
  #bauwert-overview .container .grid .row .column#bauwert-sidebar.visible #sidebar-toggler,
  #bauwert-product .container .grid .row .column#bauwert-sidebar.visible #sidebar-toggler {
    margin-bottom: 20px;
  }
  #bauwert-overview .container .grid .row .column#bauwert-sidebar ul,
  #bauwert-product .container .grid .row .column#bauwert-sidebar ul,
  #bauwert-overview .container .grid .row .column#bauwert-sidebar h4,
  #bauwert-product .container .grid .row .column#bauwert-sidebar h4 {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
  }
  #bauwert-overview .container .grid .row .column#bauwert-sidebar #sidebar-toggler,
  #bauwert-product .container .grid .row .column#bauwert-sidebar #sidebar-toggler {
    text-align: center;
    display: block;
  }
  #bauwert-overview .container .grid .row .column#bauwert-product-description .wrapper .row .column #product-image,
  #bauwert-product .container .grid .row .column#bauwert-product-description .wrapper .row .column #product-image {
    width: 50%;
    display: block;
    margin: auto;
  }
  #bauwert-overview .container .grid .row .column#bauwert-product-description .wrapper .row .column #product-pricing-history .row .column,
  #bauwert-product .container .grid .row .column#bauwert-product-description .wrapper .row .column #product-pricing-history .row .column {
    overflow: scroll;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1100px) {
  /* Universal */
  #nav-toggler {
    display: block;
  }
  nav#nav-main {
    background: white;
    overflow-y: hidden;
    max-height: 0;
    -webkit-transition: 0.6s;
    -moz-transition: 0.6s;
    -ms-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
  }
  nav#nav-main.visible {
    max-height: 1000px;
  }
  nav#nav-main h3 {
    text-align: center;
    margin-right: 22px;
    padding-top: 50px;
    font-size: 25px;
    font-family: 'Heroes Legend', 'sans-serif';
  }
  nav#nav-main ul {
    width: 100%;
    height: auto;
    padding: 0 20px 20px 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  nav#nav-main ul #dropdown:hover li {
    padding: 8px 0;
  }
  nav#nav-main ul #dropdown:hover #dropdown-menu {
    max-height: 1000px;
  }
  nav#nav-main ul #dropdown #dropdown-menu {
    max-height: 0;
    overflow: hidden;
    position: relative;
    border: none;
    text-align: center;
    right: unset;
    top: unset;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  nav#nav-main ul li {
    display: block;
    padding: 8px 0;
    margin: 0;
  }
  nav#nav-main ul li a {
    color: #363636;
    font-size: 16px;
  }
  nav#nav-main #right-btn {
    position: relative;
    border-color: #363636;
    color: #363636;
    right: unset;
    top: unset;
    display: table;
    margin: 0 auto 35px auto;
    left: -15px;
  }
  nav#nav-main #right-btn::after {
    background: url("https://unlock.landania.net/assets/images/arrow-right_white.svg") no-repeat center, #363636;
    background-size: 8px;
    height: 100%;
    top: 0;
  }
  nav#nav-main #right-btn:hover {
    background: rgba(0, 0, 0, 0.1);
  }
  .container {
    width: 85%;
  }
  .grid .row {
    margin: 0 -10px -35px -10px !important;
    grid-template-columns: 50% 50% !important;
  }
  .grid .row .column {
    margin: 0 10px 35px 10px !important;
  }
  .grid .row.autoflow .column {
    margin: 0 20px !important;
  }
  .grid .row.autoflow.col-33,
  .grid .row.autoflow.col-50 {
    grid-template-columns: repeat(1000, 50%) !important;
  }
  .centered-head {
    width: 100%;
  }
  h1 {
    font-size: 60px;
    line-height: 90px;
  }
  header.header-small #header-content {
    width: 85%;
    margin: 80px auto 100px auto !important;
  }
  /* Home */
  header#header-main #header-content {
    width: 85%;
  }
  #about p {
    width: 100% !important;
  }
  #team .slide-control#scroll-right {
    right: -40px;
  }
  #team .slide-control#scroll-left {
    left: -40px;
  }
  /* Clan Overview */
  #clans-overview-header #header-content {
    margin-bottom: 210px !important;
  }
  /* Clan Info */
  #clan-info-header #header-content {
    margin-bottom: 250px !important;
  }
  #clan-info {
    top: -170px;
  }
  #clan-info .container {
    margin: 0 auto;
  }
  #clan-info .container .container-content.visible {
    max-height: 10000px;
  }
  #clan-info .container .container-content .dataTables_wrapper {
    max-width: calc(100% + 90px);
    overflow-x: scroll;
    margin: 0 -45px;
  }
  #clan-info .container .container-content .dataTables_wrapper table {
    margin: 0;
    width: 100%;
  }
  #clan-info .container .centered-head#main {
    width: 50%;
    top: -100px;
  }
  #clan-info .container .centered-head#main .grid .row {
    display: grid;
    grid-template-columns: repeat(4, 25%) !important;
  }
  /* Bauwert */
  #bauwert-overview,
  #bauwert-product {
    top: -90px;
  }
  #bauwert-overview .container .grid .row.col-25_75,
  #bauwert-product .container .grid .row.col-25_75 {
    grid-template-columns: 35% 65% !important;
  }
  #bauwert-overview .container .grid .row .column#bauwert-sidebar h4,
  #bauwert-product .container .grid .row .column#bauwert-sidebar h4,
  #bauwert-overview .container .grid .row .column#bauwert-sidebar ul li a,
  #bauwert-product .container .grid .row .column#bauwert-sidebar ul li a {
    max-width: 99%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  #bauwert-overview .container .grid .row .column#bauwert-sidebar ul li a,
  #bauwert-product .container .grid .row .column#bauwert-sidebar ul li a {
    display: inline-block;
  }
  #bauwert-overview .container .grid .row .column#bauwert-product-description #product-pricing-history .row .column,
  #bauwert-product .container .grid .row .column#bauwert-product-description #product-pricing-history .row .column {
    overflow: scroll;
  }
}
@media only screen and (max-width: 1280px) {
  #clans-overview .container .dataTables_wrapper {
    overflow-x: auto;
  }
}
@media only screen and (min-width: 1100px) and (max-width: 1366px) {
  /* Universal */
  nav#nav-main img {
    filter: none;
  }
  nav#nav-main.fixed {
    background: white;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
  }
  nav#nav-main.fixed h3 {
    color: #363636;
    top: 20px;
  }
  nav#nav-main.fixed ul {
    padding: 30px 0;
    width: 90%;
  }
  nav#nav-main.fixed ul li a {
    color: #363636;
  }
  nav#nav-main.fixed #right-btn {
    color: #363636;
    border-color: #363636;
    top: 15px;
  }
  nav#nav-main.fixed #right-btn::after {
    background: url("https://unlock.landania.net/assets/images/arrow-right_white.svg") no-repeat center, #363636;
    background-size: 8px;
  }
  nav#nav-main.fixed #right-btn:hover {
    background: rgba(0, 0, 0, 0.1);
  }
  nav#nav-main h3 {
    color: white;
    left: 60px;
    top: 60px;
    position: absolute;
  }
  .container {
    width: 90%;
  }
  #header-content {
    width: 80% !important;
  }
  #team .slide-control#scroll-right {
    right: -40px;
  }
  #team .slide-control#scroll-left {
    left: -40px;
  }
}
@media only screen and (min-width: 1280px) {
  /* Components */
  h1 {
    max-width: 99%;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow-x: hidden;
    padding: 38px;
    box-sizing: border-box;
  }
  /* Universal */
  nav#nav-main {
    height: 79px;
  }
  nav#nav-main li img {
    filter: invert(1);
  }
  nav#nav-main.fixed {
    background: white;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
  }
  nav#nav-main.fixed h3 {
    color: #363636;
    top: 50%;
    transform: translateY(-50%);
  }
  nav#nav-main.fixed ul {
    padding: 30px 0;
  }
  nav#nav-main.fixed ul li a {
    color: #363636;
  }
  nav#nav-main.fixed ul li img {
    filter: none;
  }
  nav#nav-main.fixed ul li#vertical-line {
    background: #363636;
  }
  nav#nav-main.fixed ul li#signin-as::after {
    border-top-color: transparent;
    border-right-color: #363636;
  }
  nav#nav-main.fixed #right-btn {
    color: #363636;
    border-color: #363636;
    top: 15px;
  }
  nav#nav-main.fixed #right-btn::after {
    background: url("https://unlock.landania.net/assets/images/arrow-right_white.svg") no-repeat center, #363636;
    background-size: 8px;
  }
  nav#nav-main.fixed #right-btn:hover {
    background: rgba(0, 0, 0, 0.1);
  }
  nav#nav-main h3 {
    color: white;
    left: 60px;
    position: absolute;
    top: 68px;
  }
}

@media only screen and (max-width: 560px) {
  header#header-small #header-content {
    width: 85%;
    margin: 80px auto 20px auto !important;
  }
}

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

#loading {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  display: block;
  opacity: 1;
  background-color: #fff;
  z-index: 99;
  text-align: center;
}

#loading img {
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  width: 100px;
  height: auto;
}
