﻿:root {
    --background-darker: #1f1f1f;
    --background-dark: #2f2f2f;
    --background-light: #3f3f3f;
    --accent-light: #10cabc;
    --accent-dark: #0FAA9E;
    --accent-clicked: #0E9287;
    --label-font: 'Arial Rounded MT';
}

html, body {
    width: 100%;
    margin: 0;
    background-color: var(--background-dark);
}

html {
    height: 100%;
}

header {
    width: 100%;
    height: 170px;
    background-image: url('/media/Header.png');
    background-size: 1075px;
    background-repeat: no-repeat;
    background-position-y: 12px;
}

div.loading {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: var(--background-dark);
    background-image: url('/media/loading.gif');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
    height: 100%;
    width: 100%;
}

div.home_overlay {
    height: 120px;
    width: 320px;
}

    div.home_overlay:hover {
        cursor: pointer;
    }

p.nav-bar {
    margin-left: 0px;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40%;
    text-align: center;
}

div.nav_bar_container {
    bottom: 0;
    background-color: var(--accent-clicked);
    width: 100%;
}

div.nav_bar {
    display: inline-flex;
}

div.nav_tab {
    width: 120px;
    background-color: var(--accent-light);
    font-family: var(--label-font);
    height: 50px;
    border-right: 2px solid var(--background-light);
}

    div.nav_tab:hover {
        cursor: pointer;
        background-color: var(--accent-dark);
    }

    div.nav_tab:active {
        background-color: var(--accent-clicked);
    }

div.drop_down_parent {
    height: 50px;
    display: flex;
    position: relative;
    flex-direction: column;
}

div.drop_down_option {
    display: none;
    z-index: 10;
    border-top: 2px solid var(--background-light);
    position: relative;
}

iframe.large {
    width: 80vw;
    height: 45vw;
}

.drop_down_parent:hover .drop_down_option {
    display: flex;
}

hr {
    border-color: var(--accent-dark);
    display: block;
    margin-top: 25px;
}

main {
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--background-light);
    width: 90%;
    padding-top: 2px;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 25px;
    font-family: Georgia;
    overflow: auto;
}
div.home {
    background-color: var(--background-darker);
    border-radius: 30px;
    width: 80%;
    padding: 1px 7px 7px 14px;
    margin-top: 15px;
    margin-left: 5%;
    margin-right: auto;
}
main.home {
    background-color: var(--background-dark);
    background-image: url('/media/homebackground.png');
    background-repeat: no-repeat;
    background-size: 500px;
    background-position: right;
    background-position-y:0px;
    width: 100%;
    margin-top: 0px;
    padding: 0 0 0 0;
}

footer {
    display: table;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

div.footer-cell {
    display: table-cell;
    vertical-align: middle;
    height: 50px;
    color: var(--accent-light);
    font-family: var(--label-font);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--accent-light);
    font-family: Century Gothic, CenturyGothic, AppleGothic, sans-serif;
}

p, ul {
    margin-left: 50px;
    color: whitesmoke;
}

h1.article, h2.article, h3.article, h4.article, h5.article, h6.article {
    margin-left: 10%;
    margin-right: 10%;
}

p.article, ul.article, li.article {
    margin-left: auto;
    margin-right: auto;
    width: 75%;
}
li.article {
    margin-bottom: 15px;
}

.link {
    color: var(--accent-light);
}

    .link:hover {
        cursor: pointer;
        color: var(--accent-dark);
    }

    .link:active {
        color: var(--accent-clicked);
    }

a {
    color: var(--accent-light);
    text-decoration: none;
}

    a:visited {
        color: var(--accent-light);
    }

    a:hover {
        color: var(--accent-dark);
    }

    a:active {
        color: var(--accent-clicked);
    }

div.scroller {
    white-space: nowrap;
    overflow: hidden;
}

/*
* Start Slider CSS
*/
.spleach-scroller {
    display: flex;
    flex-direction: row;
    width: 49vw;
    min-width: 850px;
    min-height: 400px;
    height: 22vw;
    overflow: hidden;
    background-color: black;
    position: relative;
}

.spleach-scroller-large {
    margin-left: auto;
    margin-right: auto;
    height: 33vw;
    width: 73.5vw;
}

.spleach-scroller-center {
    width: 80%;
}

.spleach-scroller-left {
    direction: rtl;
    align-self: flex-start;
    flex-basis: 10%;
    width: 10%;
    height: 100%;
    opacity: 40%;
    overflow: hidden;
    pointer-events: none;
}

.spleach-scroller-right {
    align-self: flex-end;
    flex-basis: 10%;
    width: 10%;
    height: 100%;
    pointer-events: none;
    opacity: 40%;
}

.spleach-scroller-left-arrow {
    position: absolute;
    z-index: 9;
    opacity: 40%;
    height: 100%;
}

.spleach-scroller-right-arrow {
    position: absolute;
    z-index: 9;
    right: 0;
    opacity: 40%;
    height: 100%;
}

.spleach-scroller-left-arrow:hover {
    opacity: 100%;
    cursor: pointer;
}

.spleach-scroller-right-arrow:hover {
    opacity: 100%;
    cursor: pointer;
}
/*
*  End Slider CSS
*/


/*
* Start Band Page
*/
.vue-scroller-band_page {
    float: right;
    margin: 20px;
    height: 15vw;
    width: 33vw;
}

p.band_page {
    margin-left: 0px;
}

a.official_band_site {
    font-size: 25px;
}
/*
* End Band Page
*/

/*
* Start PoGo
*/
div.pogo_event {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
}

    div.pogo_event::before {
        content: "";
        position: absolute;
        top: 0px;
        right: 0px;
        bottom: 0px;
        left: 0px;
        background-color: rgba(0,0,0,0.75);
    }

.pogo_event {
    position: relative;
}

p.pogo_highlight, p.lucky_dex {
    position: relative;
    display: inline-block;
    width: 300px;
    text-align: center;
    margin-left: 0px;
    vertical-align: middle;
}

img.pogo_highlight {
    margin-top: 10px;
    width: 150px;
}

img.lucky_dex {
    margin-top: 10px;
    height: 100px;
}

/*
* End PoGo
*/
