html, body {
    margin: 0; padding: 0;
    background-color: black !important;
    color: #cccccc;
}
svg.pwa_link > *, svg.pwa_back > * {
    pointer-events: none !important;
}
#offlinePage {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 100px);
    width: 100%;
}
svg.pwa_link:hover .pwa-nav-box, svg.pwa_link.active .pwa-nav-box {
    fill: #CFB53B !important;
}

.c-burger {
    display: inline-flex;
    flex-direction: column;
    justify-content: space-around;
    position: relative;
    height: 24px;
    width: 24px;
}
.c-burger span {
    display: block;
    background-color: black;
    height: 2px;
    width: 100%;
}
#tdlpwa_navbar {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
    padding: 0px 15px;
    height: 70px;
    background: #0a0a0a;
    box-shadow: 0 0 3px -1px black;
}
#urlContent {
    display: block;
    position: relative;
    height: calc(100vh - 90px);
    width: 100vw;
}

.c-navLinks { /* navbar */
    display: flex;
    position: absolute;
    top: 80px;
    left: 0px;
    width: 100%;
    height: auto;
    z-index: 100;
    background: #121212;
    color: white;
    flex-wrap: wrap;
    visibility: hidden;
    opacity: 0;
    padding-top: 32px;
}
.c-navLinks .c-navLinksExit {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 10px;
    right: 10px;
    height: 24px;
    width: 24px;
    font-size: 32px;
}
.c-link, .c-link:visited, .c-link:hover  {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.c-navLinks.active {
    transition: opacity 500ms;
    visibility: visible;
    opacity: 1;
}

.c-navLinks .c-linkBox {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: space-around;
    min-height: 120px;
    width: 25%;
    padding: 20px;
    padding-top: 40px;
}

.c-navLinks .c-linkBox h4 {
    position: absolute;
    top: 12px;
}
.c-navLinks .c-linkBox a {
    padding: 4px 10px;
    border: 1px solid #222;
    border-radius: 10px;
    font-size: 14px;
    text-wrap: nowrap;
    margin: 2px 0px;
}
@media (max-width: 767px) {
    .c-navLinks .c-linkBox {
        width: 50%;
    }
    .c-navLinks {
        min-height: calc(100vh - 60px);
    }
}
footer {
    display: block;
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    padding: 3px 15px;
    background-color: black;
}
footer small {
    color: #eeeeee;
}
#noticeWrapper {
    display: flex;
    position: fixed;
    bottom: 40px;
    right: 10px;
    width: calc(100% - 20px);
    max-width: 600px;
    visibility: hidden;
    opacity: 0;
}
#noticeWrapper.active {
    visibility: visible;
    opacity: 1;
}
#noticeWrapper .notice {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    background: #00ff00;
    color: black;
    padding: 10px;
    text-decoration: none;
    font-weight: bold;
    text-align: justify;
    pointer-events: all;
    cursor: pointer;  
}
#c-mainContent {
    position: relative;
}
#iframeLoading {
    display: flex;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: black;
    background-image: url('/assets/store/loading-starburst-v2.gif');
    background-position: center center;
    background-size: 100px auto;
    background-repeat: no-repeat;
    z-index: 100;
    transition: opacity 400ms;
    opacity: 1;
}
#iframeLoading.hide {
    opacity: 0;
    pointer-events: none;
}