:root {
    --color-header-background: #000000;
    --color-nav-background: #0e182c;
    --color-main-background: #161f33;
    --color-callout-background: #152741;
    --color-main-font: #ffffff;
    --color-pink: #e042a0;
    --color-light-pink: #fbb6ce;
    --color-grey: #cbd5e0;
}

body {
    background-color: var(--color-main-background);
    font-family: "Special Elite", serif;
    font-weight: 400;
    font-style: normal;
    text-shadow: 0 0 0 transparent;
    font-size: 1em;
    color: var(--color-main-font);
}

header {
    background-color: var(--color-header-background);
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

#pog-logo {
    width: 80px;
    position: absolute;
    top: 25px;
    left: 40px;
}

header h1 {
    position: absolute;
    top: 22px;
    left: 160px;
}

header h1 a {
    color: var(--color-pink);
    -webkit-text-stroke: 1.5px #ffffff;
}

header div#profile {
    position: absolute;
    top: 40px;
    right: 40px;
    display: inline;
}

header div#profile span#profile-text {
    margin-right: 30px;
}

header div#profile a {
    font-family: "Luckiest Guy";
    text-decoration: none;
    font-size: 1.2em;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 5px;
}

header div#profile a:hover {
    color: #000000;
    border-radius: 20px !important;
    background: white !important;
}

nav {
    background-color: var(--color-nav-background);
    width: 340px;
    position: fixed;
    top: 100px;
    bottom: 0;
    padding-bottom: 20px;
    overflow: auto;
    z-index: 1001;
}

section#main {
    margin-top: 140px;
    margin-left: 400px;
    padding: 20px;
    padding-right: 80px;
}

section#main > p {
    margin-bottom: 15px;
}

h1 {
    font-family: "Luckiest Guy", serif;
    font-weight: 500;
    font-style: normal;
    -webkit-text-stroke: 1.5px #e042a0;
    font-size: 3em;
}

a {
    color: var(--color-main-font);
}

h1 a {
    text-decoration: none;
}

p.launchpad-logo {
    margin-top: 20px;
}

p.launchpad-logo img {
    border: 1px solid var(--color-grey);
    border-radius: 10px;
}

ul.checklist.images {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
}

ul.checklist.images li {
    display: inline-block;
    width: 250px;
    height: 278px;
    border: 1px solid var(--color-callout-background);
    border-radius: 10px;
    background-color: var(--color-callout-background);
    margin: 10px;
    position: relative;
    font-size: 0.8em;
    padding: 10px;
    perspective: 1000px;
}

ul.checklist.images li div.container {
    background-color: var(--color-nav-background);
    border-radius: 10px;
    height: 230px;
    padding: 5px;
}

ul.checklist.images li div.flip {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

ul.checklist.images li img.pog-front-image, ul.checklist.images li img.pog-back-image {
    position: absolute;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

ul.checklist.images li img.pog-back-image {
    transform: rotateY(180deg);
}

ul.checklist.images li p.pog-name {
    margin-top: 10px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 210px;
}

ul.checklist.images li p.pog-name span.number {
    display: none;
}

ul.checklist.images li p.pog-name span.variant a {
    visibility: hidden;
    text-decoration: none;
    position: absolute;
    top: 246px;
    right: 10px;
    width: 16px;
}

ul.checklist.images li p.pog-name span.variant a::before {
    content: "\f002";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    font-size: 1.2em;
    visibility: visible;
}

ul.checklist.images li p.checklist-name {
    color: var(--color-grey);
}

ul.checklist.images li p.checklist-name a {
    color: var(--color-grey);
}

ul.checklist.images li p.checklist-name a:hover {
    color: var(--color-light-pink);
}


ul.checklist.images li p.collect-pog {
    position: absolute;
    top: 210px;
    left: 18px;
    width: 24px;
    height: 24px;
    border-radius: 5px;
    padding-left: 3px;
    border: 1px solid var(--color-grey);
}

ul.checklist.images li p.collect-pog a::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    font-size: 1.2em;
    cursor: default;
    visibility: visible;
}

ul.checklist.images li p.collect-pog.checked a::before {
    content: "\f00c";
}

ul.checklist.images li p.collect-pog a {
    visibility: hidden;
    text-decoration: none;
}

ul.checklist.images li p.flip-pog a::before {
    content: "\f2f9";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    font-size: 1.2em;
    visibility: visible;
}

ul.checklist.images li p.flip-pog a {
    visibility: hidden;
    text-decoration: none;
    position: absolute;
    top: 210px;
    right: 17px;
    width: 16px;
}

ul.checklist.images li p.external-link-pog a::before {
    content: "\f35d";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    font-size: 1.2em;
    visibility: visible;
}

ul.checklist.images li p.external-link-pog a {
    visibility: hidden;
    text-decoration: none;
    position: absolute;
    top: 14px;
    right: 17px;
    width: 16px;
}

ul.checklist.images li:hover {
    border: 1px solid var(--color-grey);
    box-shadow: 0px 0px 25px -9px #ffffff;
}

h2.checklist-name {
    margin-bottom: 20px;
}

ul#details {
    padding: 0;
    margin-left: 20px;
    margin-bottom: 20px;
}

ul#details li {
    list-style-type: "\f192" !important;
    padding-left: 10px;
}

ul#details li::marker {
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    color: var(--color-pink);
}

ul#details span.details-name {
    color: var(--color-light-pink);
}

nav ul {
    font-family: "Luckiest Guy";
    list-style-type: none;
    font-size: 1.5em;
}

nav ul#top-level-nav {
    margin-top: 20px;
}

nav ul#top-level-nav li.expanded {
    margin-left: -22px;
}

nav ul#top-level-nav li.expanded:before {
    content: "\f0d8";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    color: var(--color-pink);
    margin-right: 5px;
}

nav ul a {
    text-decoration: none;
}

nav ul#country-nav {
    font-size: 0.8em;
}

nav ul#country-nav > li > span.name {
    user-select: none;
    cursor: pointer;
}

nav ul#country-nav > li {
    margin-left: -17px;
}

nav ul#country-nav > li:before {
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    color: var(--color-pink);
    margin-right: 5px;
}

nav ul#country-nav > li ul {
    display: none;
}

nav ul#country-nav > li.expanded {
    margin-left: -22px;
}

nav ul#country-nav > li.expanded:before {
    content: "\f0d8";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    color: var(--color-pink);
    margin-right: 5px;
}

nav ul#country-nav > li.expanded ul {
    display: inline;
}

nav ul.checklist-nav {
    font-family: "Special Elite";
    font-size: 0.8em;
}

nav ul.checklist-nav li {
    margin-left: 40px;
}

nav ul.checklist-nav a {
    color: var(--color-light-pink);
}

nav ul.checklist-nav a:hover {
    color: #ffffff;
    text-decoration: underline;
}

input[type=submit] {
    font-family: "Luckiest Guy";
    color: white;
    background-color: var(--color-pink);
    border: 1px solid #ffffff;
    transition: background-color 0.5s ease, transform 0.3s ease;
    padding: 9px 20px 5px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

nav input[type=submit] {
    margin-left: 5px;
}

nav form {
    padding: 20px 0 0 20px;
}

nav input[type=text] {
    width: 225px;
}

form {
    padding: 20px 0 0 0;
}

input[type=submit]:hover {
    background-color: green;
    box-shadow: 0px 0px 25px -9px #ffffff;
    cursor: pointer;
}

input[type=text], input[type=password], input[type=email] {
    margin-bottom: 20px;
    background-color: var(--color-main-background);
    border: 1px solid var(--color-grey);
    border-radius: 10px;
    padding: 9px 20px 5px 20px;
    width: 400px;
    color: white;
}





ul.checklist.list {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
}

ul.checklist.list li {
    display: block;
    border: 1px solid var(--color-callout-background);
    border-radius: 10px;
    background-color: var(--color-callout-background);
    margin-bottom: 10px;
    position: relative;
    font-size: 1em;
    padding: 10px;
    padding-bottom: 5px;
}

ul.checklist.list li div.container {
    display: none;
}

ul.checklist.list li.indent {
    padding-left: 40px;
}

ul.checklist.list li p.pog-name span.variant a {
    visibility: hidden;
    text-decoration: none;
    position: absolute;
    top: 5px;
    right: 12px;
    width: 16px;
}

ul.checklist.list li p.pog-name span.variant a::before {
    content: "\f002";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    font-size: 1.2em;
    visibility: visible;
}

ul.checklist.list li p.checklist-name {
    color: var(--color-grey);
}

ul.checklist.list li p.checklist-name a {
    color: var(--color-grey);
}

ul.checklist.list li p.checklist-name a:hover {
    color: var(--color-light-pink);
}

ul.checklist.list li p.collect-pog {
    font-size: 0.8em;
    position: absolute;
    top: 8px;
    left: 8px;
    width: 24px;
    height: 24px;
    border-radius: 5px;
    padding-left: 3px;
    border: 1px solid var(--color-grey);
}

ul.checklist.list li p.collect-pog a::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    font-size: 1.2em;
    cursor: default;
    visibility: visible;
}

ul.checklist.list li p.collect-pog.checked a::before {
    content: "\f00c";
}

ul.checklist.list li p.collect-pog a {
    visibility: hidden;
    text-decoration: none;
}

ul.checklist.list li p.flip-pog a {
    display: none;
}

ul.checklist.list li p.external-link-pog a {
    visibility: hidden;
    text-decoration: none;
    position: absolute;
    top: 5px;
    right: 45px;
    width: 10px;
}

ul.checklist.list li p.external-link-pog a::before {
    content: "\f35d";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    font-size: 1.2em;
    visibility: visible;
}

ul.checklist.list li:hover {
    border: 1px solid var(--color-grey);
    box-shadow: 0px 0px 25px -9px #ffffff;
}




div#list-options {
    position: absolute;
    right: 60px;
}

div#list-options a {
    display: inline-block;
    visibility: hidden;
    text-decoration: none;
    width: 20px;
    margin-left: 10px;
}

div#list-options a.list-type-images::before {
    content: "\f302";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    font-size: 1.2em;
    visibility: visible;
}

div#list-options a.list-type-list::before {
    content: "\f0ca";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    font-size: 1.2em;
    visibility: visible;
}






@media only screen and (max-device-width: 480px) {

    section#main {
        margin-left: 0;
        padding: 20px;
    }

    h1 {
        font-size: 1.5em;
    }

    ul.checklist.images li {
        width: 175px;
        height: 204px;
        margin-right: 0;
        margin-bottom: 5px;
    }

    ul.checklist.images li div.container {
        height: 155px;
    }
        
    ul.checklist.images li p.collect-pog {
        top: 137px;
        left: 14px;
    }

    ul.checklist.images li p.flip-pog a {
        top: 137px;
    }

    ul.checklist.images li p.pog-name span.variant a {
        top: 172px;
    }

    nav {
        display: none;
        top: 80px;
    }

    #pog-logo {
        width: 60px;
        top: 20px;
        left: 25px;
    }

    header h1 {
        top: 27px;
        left: 110px;
    }

    header {
        height: 80px;
    }

    header div#profile {
        /* display: none; */
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--color-header-background);
    }

    header div#profile span {
        display: block;
    }

    header div#profile span#profile-text {
        margin-left: 30px;
    }

    section#main {
        margin-top: 80px;
    }

}