html,body {
    min-height: 100vh;
}
body {
    font-family: "Open Sans","sans-serif";
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    background-color: #3a342f;
    background-image:url('../images/bg-gray.jpg');
    background-position: top center;
    background-repeat: repeat-x;
    background-attachment: fixed;
    background-size: auto 100%;
    margin: 0;
    color: white;
    font-size: 18px;
}
:root {
    --common: #fff;
    --uncommon: #1eff00;
    --rare: #0070dd;
    --epic: #a335ee;
    --legendary: #ff8000;
    --deathknight: #C41E3A;
    --demonhunter: #A330C9;
    --druid: #FF7C0A;
    --evoker: #33937F;
    --hunter: #AAD372;
    --mage: #3FC7EB;
    --monk: #00FF98;
    --paladin: #F48CBA;
    --priest: #ffffff;
    --rogue: #FFF468;
    --shaman: #0070DD;
    --warlock: #8788EE;
    --warrior: #C69B6D;
}
.color--common {
    color: var(--common);
}
.color--uncommon {
    color: var(--uncommon);
}
.color--rare {
    color: var(--rare);
}
.color--epic {
    color: var(--epic);
}
.color--legendary {
    color: var(--legendary);
}
.color--death-knight {
    color: var(--deathknight);
}
.color--demon-hunter {
    color: var(--demonhunter);
}
.color--druid {
    color: var(--druid);
}
.color--evoker {
    color: var(--evoker);
}
.color--hunter {
    color: var(--hunter);
}
.color--mage {
    color: var(--mage);
}
.color--monk {
    color: var(--monk);
}
.color--paladin {
    color: var(--paladin);
}
.color--priest {
    color: var(--priest);
}
.color--rogue {
    color: var(--rogue);
}
.color--shaman {
    color: var(--shaman);
}
.color--warlock {
    color: var(--warlock);
}
.color--warrior {
    color: var(--warrior);
}
.background--common{
    background: var(--common);
}
.background--uncommon {
    background: var(--uncommon);
}
.background--rare {
    background: var(--rare);
}
.background--epic {
    background: var(--epic);
}
.background--legendary {
    background: var(--legendary);
}
main, .header, .footer {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}
main {
    margin: 50px auto;
    padding: 0 20px 120px;
}
a {
    color: white;
    text-decoration: underline;
    transition: all ease-in-out 300ms;
}
b, strong {
    font-weight: 800;
}
a:hover,
.header label:hover {
    color: gray;
}
h1, h2, h3, h4, h5 {
    margin: 0 0 1rem 0;
    line-height: 1.4;
    font-family: "Bahiana", display;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
    font-weight: normal;
}
h1 {
    font-size: 70px;
}
h2 {
    font-size: 50px;
}
h3 {
    font-size: 45px;
}
h4 {
    font-size: 40px;
}
h5 {
    font-size: 30px;
}
p {
    line-height: 1.7;
}
hr {
    border: 0;
    border-bottom: 1px solid gray;
    margin: 40px 10vw;
}
label {
    display: block;
}
/* HEADER */
header {
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.5);
}
.header__title {
    font-family: "Bahiana", display;
    font-size: 80px;
    text-align: center;
    font-weight: bold;
}
.header a {
    text-decoration: none;
}
.header label {
    cursor: pointer;
    transition: all ease-in-out 300ms;
    display: inline-block;
}
.burgermenu, 
#burgermenu, 
.header__submenu-close {
    display: none;
}
/* FOOTER */
footer {
    padding: 60px 20px 120px 20px;
    background: rgba(0, 0, 0, 0.5);
}
.footer__row {
    padding: 0 20px;
    margin-bottom: 25px;
}
.footer__row + .footer__row {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__row--company {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6)
}
.footer p:first-child {
    margin-top: 0;
}
.footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer li {
    margin: 15px 0;
    position: relative;
    padding-left: 25px;
}
.footer li:before {
    content: '\2014';
    position: absolute;
    left: 0;
}
.footer ul li a {
    text-decoration: none;
    font-size: 17px;
}
/* SOLO LEADERBOARD */
.solo__top {
    display: flex;
    align-items: flex-end;
    margin-top: 50px;
}
.solo__podium {
    flex-basis: 33.3333%;
    text-align: center;
    font-family: "Bahiana", display;
    font-size: 50px;
    position: relative;
}
.solo__podium--first {
    order: 2;
    padding-bottom: 150px;
}
.solo__podium--second {
    order: 1;
    padding-bottom: 100px;
}
.solo__podium--third {
    order: 3;
    padding-bottom: 80px;
}
.solo__podium:after {
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}
.solo__podium--first:after {
    content: '1';
    height: 150px;
    background: rgba(0, 0, 0, 0.8);
}
.solo__podium--second:after {
    content: '2';
    height: 100px;
    background: rgba(0, 0, 0, 0.7);
}
.solo__podium--third:after {
    content: '3';
    height: 80px;
    background: rgba(0, 0, 0, 0.6);
}
.solo__list {
    border: 5px solid white;
}
.solo__character {
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    font-family: "Bahiana", display;
    font-size: 50px;
}
.solo__character:nth-child(even) {
    background: rgba(0, 0, 0, 0.8);
}
.solo__player {
    font-size: 30px;
}
.solo__character .solo__position, 
.solo__character .solo__name, 
.solo__character .solo__player {
    padding: 0 20px 0 0;
}
.solo__character .solo__rating {
    margin-left: auto;
}
/* LEADERBOARD */
.leaderboard__list {
    margin-top: 50px;
    border: 5px solid white;
}
.leaderboard__player {
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    text-align: center;
    position: relative;
}
.leaderboard__player + .leaderboard__player {
    border-top: 5px solid rgba(255, 255, 255, 0.3);
}
.leaderboard__player--header .leaderboard__displayname,
.leaderboard__player--header .leaderboard__characters,
.leaderboard__player--header .leaderboard__achivement {
    font-family: "Bahiana", display;
    font-size: 40px;
}
.leaderboard__player:nth-child(even) {
    background: rgba(0, 0, 0, 0.8);
}
.leaderboard__displayname {
    font-size: 30px;
    font-family: "Bahiana", display;
    z-index: 2;
    text-align: center;
    padding: 10px;
    flex-grow: 0;
    flex-shrink: 0;
}
.leaderboard__characters {
    display: flex;
    flex-grow: 1;
    flex-wrap: wrap;
    padding: 10px;
    z-index: 2;
    border-left: 5px solid rgba(255, 255, 255, 0.3);
    border-right: 5px solid rgba(255, 255, 255, 0.3);
}
.leaderboard__characters > div {
    min-width: 90px;
    margin-bottom: 10px;
    margin-top: 10px;
}
.leaderboard__name {
    font-family: "Bahiana", display;
    font-size: 25px;
}
.leaderboard__indicator {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    margin: 10px 5px;
}
.leaderboard__rating-color {
    width: 100%;
    height: 25px;
    position: absolute;
    top: 0;
    left: 0;
}
.leaderboard__indicator-color {
    height: 25px;
    position: absolute;
    top: 0;
    left: 0;
}
.leaderboard__rating {
    position: relative;
    color: black;
    font-weight: bold;
    font-size: 16px;
}
.leaderboard__role {
    font-size: 12px;
}
.leaderboard__achivement {
    padding: 10px;
    display: flex;
    justify-content: center;
    font-family: "Open Sans","sans-serif";
    font-size: 14px;
    z-index: 2;
    flex-grow: 0;
    flex-shrink: 0;
}
.leaderboard__achivement span {
    margin: 0 5px;
}
.leaderboard__background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(241, 89, 0, 0.3);
    z-index: 1;
}
.leaderboard__crown {
    position: absolute;
    z-index: 2;
    top: -30px;
    left: -20px;
}
/* PICK/EDIT CHALLENGE */
.admin__picker {
    padding: 20px;
    background: black;
    color: white;
    border: 2px solid white;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    height: 60px;
}
.admin__overlay {
    position: fixed;
    width: calc(100vw - 120px);
    height: calc(100vh - 120px);
    top: 0;
    left: 0;
    background: black;
    padding: 100px 60px 60px;
    opacity: 0;
    pointer-events: none;
    transition: opacity ease-in-out 300ms;
    z-index: 2;
}
.admin__characters {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
    box-sizing: border-box;
}
.admin__characters--inactive {
    cursor: not-allowed;
}
.admin__characters--inactive .admin__character {
    pointer-events: none;
}
.admin__overlay .admin__characters {
    justify-content: center;
}
.admin__search {
    width: 100%;
    margin-bottom: 20px;
}
.admin__character {
    width: calc(33% - 20px);
    flex-grow: 0;
    flex-shrink: 0;
    padding: 20px;
    margin: 10px;
    border: 2px solid black;
    display: flex;
    align-items: center;
    cursor: pointer;
    background: black;
    box-sizing: border-box;
}
.admin__character:hover {
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
}
.admin__overlay .admin__character {
    border: 1px solid rgba(255, 255, 255, 0.6);
}
.admin__image {
    width: 50px;
}
.admin__image img {
    width: 50px;
}
.admin__details {
    padding-left: 15px;
}
.admin__name {
    font-weight: bold;
}
.admin__note {
    width: 100%;
    margin: 60px 0;
    text-align: center;
}
.admin__character--goal,
.admin__character--pick {
    opacity: 0.5;
}
.admin__character--selected {
    opacity: 1;
    border-color: white;
}
.admin__splitter {
    display: none;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
    background: black;
    border: 2px solid white;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    padding: 0 0 0 20px;
    box-sizing: border-box;
}
.admin__split {
    display: flex;
    height: 60px;
    border-left: 2px solid white;
    box-sizing: border-box;
}
.admin__split-button {
    padding: 0 25px;
    cursor: pointer;
    height: 60px;
    line-height: 60px;
    box-sizing: border-box;
}
.admin__split-button--off {
    background: white;
    color: black;
}
.admin__split--active .admin__split-button--off {
    background: transparent;
    color: white;
}
.admin__split--active .admin__split-button--on {
    background: white;
    color: black;
}
.admin__options {
    margin: 0 -10px 15px -10px;
}
.admin__option {
    margin: 10px;
}
/* DASHBOARD */ 
.dashboard__intro {
    margin: 60px 0;
}
.dashboard__intro h1 {
    margin: 0;
    line-height: 1;
}
.dashboard__disclaimer {
    font-size: 14px;
    margin: 0 0 15px 0;
    font-style: italic;
}
.dashboard__nothing {
    padding: 60px;
    text-align: center;
    background: black;
    font-size: 20px;
    font-style: italic;
}
.dashboard__quote {
    font-size: 22px;
    font-style: italic;
    opacity: 0.9;
}
.dashboard__characters {
    display: flex;
}
.dashboard__character {
    padding: 5px;
    text-align: center;
}
.dashboard__name {
    font-family: "Bahiana", display;
    font-size: 30px;
}
.dashboard__pointer {
    width: 100%;
    height: 30px;
    position: relative;
    background: transparent;
    border-radius: 10px;
    overflow: hidden;
    background: white;
}
.dashboard__rating-color {
    height: 30px;
}
.dashboard__pointer-color {
    height: 30px;
    position: absolute;
    top: 0;
    left: 0;
}
.dashboard__rating {
    position: absolute;
    color: black;
    font-weight: bold;
    line-height: 30px;
    top: 0;
    left: 0;
    width: 100%;
}
.dashboard__milestone {
    border-top: 1px solid white;
    margin-top: 10px;
    padding: 20px 10px 0 0;
}
.dashboard__add a {
    display: flex;
    text-decoration: none;
    padding: 20px;
    justify-content: center;
    border: 5px solid rgba(255, 255, 255, 0.6);
    background: rgba(0, 0, 0, 0.6);
    transition: all ease-in-out 300ms;
    font-weight: 800;
    text-transform: uppercase;
}
.dashboard__add a:hover {
    background: black;
    color: white;
    border-color: white;
}
.dashboard__add a span {
    display: inline-block;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    border: 2px solid white;
    font-size: 30px;
    color: black;
    background: white;
    border-radius: 50%;
    font-weight: bold;
    transition: all ease-in-out 300ms;
    margin: 0 20px 0;
}
.dashboard__add a:hover span {
    transform: rotate(180deg);
}
.dashboard__challenge {
    border: 5px solid white;
    margin: 0 0 15px 0;
    padding: 20px;
    background: black;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
    position: relative;
}
.dashboard__challenge h3 {
    margin: 0 0 10px 0;
    border-bottom: 1px solid white;
}
.dashboard__challenge .cogwheel {
    position: absolute;
    right: 50px;
    top: 10px;
}
.dashboard__challenge--nothing {
    padding: 60px;
    text-align: center;
    font-size: 20px;
}
.cogwheel {
    font-size: 30px;
    color: gray;
    cursor: pointer;
    transition: all ease-in-out 300ms;
    display: inline-block;
    text-decoration: none;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    font-family: 'Open Sans';
}
.cogwheel:hover {
    transform: rotate(180deg);
}
.dashboard__challenge .cogwheel--x {
    right: 10px;
    top: 10px;
    font-size: 20px;
}
.overlay {
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    transition: all ease-in-out 300ms;
}
.overlay.active {
    opacity: 1;
    pointer-events: auto;
}
.overlay__close {
    font-family: "Bahiana", display;
    font-size: 60px;
    position: absolute;
    top: 25px;
    right: 25px;
    cursor: pointer;
}
.overlay__close:hover {
    text-decoration: underline;
}
.overlay__container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
}
.overlay__container > div {
    width: 400px;
}
.overlay__container h3 {
    margin: 0;
}
.overlay__container p {
    margin: 0 0 15px 0;
}
.overlay__container small {
    font-style: italic;
}
.overlay__container input {
    font-size: 20px;
    width: 100%;
    padding: 10px;
    text-align: center;
    box-sizing: border-box;
}
.overlay__container button, 
.admin__save,
.blog-admin button,
.invite_code button,
.button {
    background: rgba(0, 0, 0, 0.7);
    border: 5px solid rgba(255, 255, 255, 0.6);
    color: white;
    padding: 10px 30px;
    margin: 20px 0;
    cursor: pointer;
    transition: all ease-in-out 300ms;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
}
.overlay__container button:hover,
.admin__save:hover,
.blog-admin button:hover
.invite_code button:hover,
.button:hover {
    background: white;
    border-color: white;
    color: black;
}
#response {
    margin-top: 10px;
}
.error {
    background: rgba(148, 0, 0, 0.5);
    padding: 20px;
}
.error > span {
    border: 2px solid white;
    border-radius: 50%;
    display: inline-block;
    width: 25px;
    height: 25px;
    text-align: center;
    font-weight: bold;
    line-height: 25px;
    margin-right: 10px;
}
/* BLOG ADMIN */
.blog-admin__row {
    margin: 20px 0;
}
.blog-admin input,
.blog-admin textarea {
    width: 100%;
    font-size: 20px;
    padding: 20px;
}
.blog-admin select {
    padding: 20px;
    font-size: 20px;
}
.blog-admin__markdown {
    height: 300px;
}
.blog-admin label {
    font-size: 30px;
    margin-bottom: 10px;
}
/* BLOG */
.blog {
    margin-top: 90px;
}
.blog__content {
    flex-basis: 65%;
}
.blog__content h1 {
    line-height: 1em;
}
.blog__sidebar {
    flex-basis: 35%;
    flex-grow: 0;
    flex-shrink: 0;
}
.blog__sidebar img {
    width: 100%;
    border-radius: 40px 40px 0 0;
    display: block;
}
.blog__about {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 0 0 40px 40px;
}
.blog__sidebar p {
    font-size: 16px;
}
/* BLOG ALL */
.blog-all__posts {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.blog-all__post {
    width: calc(100% - 20px);
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    text-decoration: none;
    border-radius: 20px;
    margin: 10px;
    box-sizing: border-box;
}
.blog-all__post h3 {
    line-height: 1em;
}
.blog-all__posts p:last-child {
    margin-bottom: 0;
}
/* ACHIEVEMENTS */
.achievements {
    margin: 60px 0;
}
.achievements__list {
    display: flex;
    margin: 0 -10px;
}
.achievements__item {
    width: calc(33% - 20px);
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    margin: 10px;
    padding: 20px;
    box-sizing: border-box;
}
.achievements__title {
    font-family: "Bahiana", display;
    font-size: 30px;
    margin: 15px 0;
}
.achievements__item img {
    max-height: 100px;
    max-width: 100%;
}
.achievements__season {
    font-size: 12px;
}
/* INVITE CODE */
.invite_code {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
}
.invite_code label {
    margin-bottom: 20px;
    font-weight: bold;
}
.invite_code input {
    width: 100%;
    padding: 20px;
    font-size: 30px;
}
/* FRONT */
.corkboard {
    min-height: 500px;
    background: black url('/assets/images/front/cork.webp') center center no-repeat;
    background-size: cover;
    border: 10px solid black;
    position: relative;
}
.corkboard:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
}
.corkboard__intro {
    color: black;
    padding: 20px;
    text-align: center;
    background: rgb(218, 218, 218);
    margin: 20px auto 0 auto;
    transform: rotate(1deg);
    max-width: 700px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
    border-radius: 3px;
}
.corkboard__headline {
    font-family: "Bahiana", display;
    font-size: 60px;
}
.corkboard__map {
    margin: 20px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
    transform: rotate(-2deg);
    display: inline-block;
}
.corkboard__map img {
    display: block;
    width: 100%;
}
.corkboard__note {
    width: 200px;
    height: 200px;
    background: #FFFF99;
    color: black;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
    padding: 25px;
    box-sizing: border-box;
    font-family: 'Annie Use Your Telescope', handwriting;
    font-size: 25px;
}
.corkboard__note:after {
    content: '';
    width: 30px;
    height: 30px;
    display: block;
    position: absolute;
    top: 0;
    right: 40%;
}
.corkboard__note--right {
    transform: rotate(3deg);
    bottom: 5%;
    right: -10px;
    margin-left: 25%;
}
.corkboard__note--right:after {
    background: url('/assets/images/front/pin-black.webp') center center no-repeat;
    background-size: 100%;
}
.corkboard__note--left {
    transform: rotate(-1deg);
    bottom: 10%;
    right: 190px;
    background: #7afcff;
    margin-left: 10%;
}
.corkboard__note--left:after {
    background: url('/assets/images/front/pin.webp') center center no-repeat;
    background-size: 100%;
}
.corkboard__login {
    padding: 20px 40px;
    background: black;
    text-align: center;
    box-shadow: 10px 10px 12px rgba(0, 0, 0, 0.6);
    border: 2px solid white;
    margin: 20px;
}
.corkboard__login img {
    width: 100%;
}
.corkboard__login a {
    color: white;
    text-decoration: none;
}
.corkboard__login a:hover {
    opacity: 0.5;
}
.tips {
    text-align: center;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.1);
}
.tips__quote {
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
    font-size: 30px;
    font-style: italic;
    background: white;
    color: black;
    padding: 20px;
    box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.7);
    box-sizing: border-box;
}
.tips h2 small {
    font-size: 50%;
}
.rants {
    margin: 0;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
}
.rants__gizmo {
    text-align: center;
}
.rants__gizmo img {
    width: 100%;
    border-radius: 50%;
    border: 5px solid white;
    background: white;
}
.rants__posts {
    padding: 20px;
}
.rants__button {
    padding-top: 25px;
}
.rants h3 {
    margin-bottom: 0;
}
.rants__date {
    margin-top: 0;
}
@media screen AND (max-width: 499px) {
    .leaderboard__characters {
        width: 100%;
        box-sizing: border-box;
        justify-content: center;
        border: 0;
    }
    .leaderboard__player--header {
        display: none;
    }
    .dashboard__characters {
        flex-wrap: wrap;
        justify-content: center;
    }
    .dashboard__characters > div {
        min-width: 140px;
    }
    .achievements__item {
        width: calc(50% - 20px);
    }
    /* Menu */
    .header__menu {
        position: fixed;
        background: rgba(0, 0, 0, 0.95);
        left: 0;
        width: 100%;
        bottom: 0;
        z-index: 10;
        padding: 20px 20px 100px;
        box-sizing: border-box;
        transform: translateX(100%);
        transition: all ease-in-out 300ms;
    }
    .header__menu label {
        width: 100%;
    }
    .header__menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
        font-size: 30px;
    }
    .header__menu > ul > li {
        padding: 10px;
        border-bottom: 1px solid white;
        position: relative;
    }
    .header__menu > ul > li > ul {
        display: none;
    }
    .header__menu input:checked ~ ul {
        display: block;
    }
    .header__menu > ul > li > ul > li {
        padding: 10px 0;
    }
    .header__menu input {
        display: none;
    }
    .burgermenu {
        display: block;
        position: fixed;
        z-index: 20;
        right: 5px;
        bottom: 5px;
        background: black;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        border: 1px solid white;
        box-sizing: border-box;
    }
    .burgermenu span {
        width: 30px;
        height: 4px;
        background: white;
        display: block;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        transition: all ease-in-out 300ms;
    }
    .burgermenu span:before {
        content: '';
        width: 30px;
        height: 4px;
        position: absolute;
        top: -8px;
        background: white;
        transition: all ease-in-out 300ms;
    }
    .burgermenu span:after {
        content: '';
        width: 30px;
        height: 4px;
        position: absolute;
        top: 8px;
        background: white;
        transition: all ease-in-out 300ms;
    }
    #burgermenu:checked ~ .burgermenu span {
        transform: translate(-15px, -2px) rotate(45deg);
    }
    #burgermenu:checked ~ .burgermenu span:before {
        opacity: 0;
    }
    #burgermenu:checked ~ .burgermenu span:after {
        transform: translate(0, -8px) rotate(90deg);
    }
    #burgermenu:checked ~ .header__menu {
        transform: translateX(0);
    }
    .header__submenu-close {
        position: absolute;
        top: 10px;
        right: 20px;
        pointer-events: none;
    }
    #lbsub:checked ~ .header__submenu-close {
        display: block;
    }
    /* FRONT */
    .corkboard__intro {
        width: 80%;
    }
}
@media screen AND (min-width: 500px) {
    main {
        padding-left: 40px;
        padding-right: 40px;
    }
    .leaderboard__player {
        display: flex;
    }
    .leaderboard__displayname {
        width: 115px;
    }
    .leaderboard__achivement {
        width: 140px;
    }
    .footer {
        display: flex;
        flex-wrap: wrap;
    }
    .footer__row {
        width: 50%;
        box-sizing: border-box;
    }
    .footer__row--company {
        width: 100%;
    }
    .blog-all__post {
        width: calc(50% - 20px);
    }

    /* Menu */
    .header__menu > ul {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        justify-content: center;
    }
    .header__menu > ul li {
        margin: 0 20px;
    }
    .header__menu input {
        display: none;
    }
    .header__submenu {
        position: absolute;
        padding: 0;
        margin: 5px 0 0 ;
        list-style: none;
        background: rgba(0, 0, 0, 0.95);
        z-index: 1;
        opacity: 0;
        pointer-events: none;
        transition: all ease-in-out 300ms;
        padding: 20px;
    }
    .header__menu input:checked ~ .header__submenu {
        opacity: 1;
        pointer-events: auto;
    }
    ul.header__submenu li {
        margin: 10px;
    }
    /* FRONT */
    .corkboard__login {
        position: absolute;
        bottom: 15%;
        left: 50%;
        transform: translateX(-50%);
    }
    .corkboard__map {
        width: 35%;
        margin: 20px 0 20px 34px;
    }
    .corkboard__note {
        position: absolute;
    }
    .corkboard__note--left,
    .corkboard__note--right {
        margin-left: 0;
    }
    .corkboard__login { 
        margin: 0;
    }
    .rants {
        padding: 40px;
    }
    .rants__container {
        display: flex;
        align-items: center;
    }
    .rants__gizmo {
        width: 30%;
    }
    .rants__posts {
        width: 70%;
        padding: 0 40px;
    }
}
@media screen AND (min-width: 769px) {
    .achievements__item {
        width: calc(20% - 20px);
    }
    .admin__character {
        width: calc(25% - 20px);
    }
    .admin__options {
        display: flex;
    }
    .admin__option {
        width: calc(50% - 20px);
    }
    .blog {
        display: flex;
    }
    .blog__sidebar {
        padding-left: 40px;
    }
    .footer__row {
        width: 25%;
    }
    .footer__row--company {
        width: 50%;
    }
}