:root {
    --primary: #000000;
    --secondary: #f80000;
    --third: #ffffff;
    --txt_l: #000000;
    --bg_l: #ffffff;
    --txt2: #f80000;
    --bg_2: #ffffff;
}
.arial {
    font-family: 'Arial';
}
html {
    min-height: 100%;
    position: relative;
}
body {
    height: 100%;
    font-family: 'Bangers','Arial';
    font-size: 22px !important;
    color: #fff;
    margin: 0px;
    padding: 0px;
}
.page_wrapper {
    width: 100%;
    height: 100%;
    background-color: var(--bg_l);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.header {
    position: fixed;
    width: 100%;
    min-height: 110px;
    margin: 0px;
    background-color: var(--primary);
    z-index: 2;
    font-size: 26px;
    border-top: 2px solid var(--secondary);
    border-bottom: 2px solid var(--secondary);
}
#nav_bar {
    display: flex;
    width: 100%;
    height: 106px;
    align-items: center;
}
#logo_wrapper {
    display: flex;
    width: 29%;
    height: 100%;
    align-items: center;
    padding-left: 7px;
    padding-top: 2px;
}
#links_options_wrapper {
    display: flex;
    position: relative;
    flex-direction: row;
    width: 71%;
    height: 100%;
}
#header_responsive {
    display: none;
    position: relative; 
    justify-content: flex-end;   
    width: 80%;
    height: 100%;
}
.menu_wrapper {
    position: absolute;
    top: 18px;
    right: 10px;
    z-index: 1;
}
.menu_btn {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 80px;
    height: 80px;
    cursor: pointer;
    transition: all .5s ease-in-out;
}
.menu_btn_burger {
    width: 40px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all .5s ease-in-out;
}
.menu_btn_burger::before,
.menu_btn_burger::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all .5s ease-in-out;
}
.menu_btn_burger::before {
    transform: translateY(10px);
}
.menu_btn_burger::after {
    transform: translateY(-10px);
}
.menu_btn.open .menu_btn_burger {
    transform: translateX(-50px);
    background: transparent;
}
.menu_btn.open .menu_btn_burger::before {
    transform: rotate(45deg) translate(35px, -35px);
}
.menu_btn.open .menu_btn_burger::after {
    transform: rotate(-45deg) translate(35px, 35px);
}
#responsive_menu {
    display: none;
    position: relative;
}
#header_links {
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
    justify-content: flex-end;
    align-items: center;
    padding-top: 2px;
}
.link {
    margin-left: 20px;
    margin-right: 20px;
}
.links_style a:link, .links_style a:visited {
    color: var(--third);
    text-decoration: none;
}
.links_style a:hover {
    color: var(--secondary);
    transition: 1s;
}
.countdown {
    position: absolute;
    width: max-content;
    top: 5px; 
    right: 60px;
    font-size: 16px;
}
.countdown2 {
    position: absolute;
    width: max-content;
    top: 5px; 
    right: 35px;
    font-size: 16px;
}
.livestream {
    top: 2px;
    padding: 4px;
    border: 1px solid var(--secondary);
}
.settings_wrapper {
    position: absolute;
    top: 3px;
    right: 5px;
    background-color: var(--primary);
    overflow: visible;
    z-index: 3;
}
.settings_flex {
    display: flex;
}
#settings_logo {
    display: flex;
    justify-content: flex-end;
    width: max-content;
    height: max-content;
}
#settings_mail {
    position: relative;
    width: max-content;
    z-index: 6;
}
#settings_mail:hover {
    cursor: pointer;
}
#dialog_mail {
    display: none;
    position: absolute;
    width: max-content;
    height: max-content;
    top: 0px;
    right: 55px;
    font-size: 14px;
    padding: 5px;
    color: var(--primary);
    background-color: var(--primary);
    border: 1px solid var(--secondary);
    border-radius: 2px;
    z-index: 5;
}
.mask2 {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0px;
    background-color: rgb(0,0,0,0.5);
    z-index: 3; 
}
#mail_form {
    display: none;
    position: fixed;
    width: max-content;
    height: max-content;
    left: 0; 
    right: 0; 
    margin-left: auto; 
    margin-right: auto;
    margin-top: 50px;
    padding: 30px;
    color: var(--secondary);
    background-color: var(--bg_l);
    border: 1px solid var(--secondary);
    border-radius: 5px;
    z-index: 7;
}
.link_success a:visited, .link_success a:link {
    color: var(--secondary);
    text-decoration: underline;
}
#settings_logo:hover {
    cursor: pointer;
}
#settings {
    display: none;
    position: absolute;
    top: 20px;
    right: 5px;
    max-width: max-content;
    max-height: max-content;
    padding-left: 5px;
    padding-right: 10px;
    width: max-content;
    font-size: 12px;
    background-color: var(--primary);
    border: 1px solid var(--secondary);
    border-radius: 5px;
    z-index: 7;
}
.switch_wrapper {
    display: flex;
    width: 100%;
    align-items: center;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 10px;
    z-index: 9;
}
.switch_wrapper:hover {
    cursor: pointer;
}
.switch {
    display: flex;
    position: relative;
    align-items: center;
    width: 50px;
    height: 20px;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border: 2px solid var(--third);
}
.switch_toggle {
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: var(--third);
    border-radius: 50%;
    margin: 2px;
}
.switch_background {
    display: none;
    position: absolute;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    opacity: 0.5;
    margin: -4px;
}
.settings_options_mode {
    margin-left: 5px;
    width: 70px;
}
.settings_options_image {
    margin-left: 5px;
}
#header_responsive {
    display: none;
}
.spacer_wrapper {
    width: 100%;
    height: max-content;
}
#spacer {
    width: 100%;
    min-height: 110px;
}
#spacer_responsive {
    display: none;
    min-height: max-content;
}
#spacer_responsive a:visited, #spacer_responsive a:link {
    color: var(--bg_l);
}
.content_wrapper {
    width: 100%;
    min-height: 75vh;
    position: relative;
    color: var(--txt_l);
    background-color: var(--bg_l);
    padding-bottom: 15px;
}
.content_wrapper a:visited, .content_wrapper a:link{
    color: var(--txt2);
}
.content_wrapper a:hover {    
    color: var(--txt_l);
    transition: 1s;
}
.content {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    padding-top: 5px;
}
#announcenemt_wrapper {
    display: none;
}
#announcement {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}
#cozy_background {
    display: flex;
    height: 35px;
    align-items: center;
    background-color: #607090;
    border-radius: 5px;
    margin-left: 5px;
    padding-top: 3px;
    padding-left: 5px;
    padding-right: 5px;
    box-shadow: 1px 2px 3px var(--txt_l);
}
.breadcrumbs {
    width: 50%;
    text-align: left;
    font-size: 14px;
}
.heading1 {
    color: var(--txt2);
    font-size: 26px;
    margin-bottom: 20px;
}
.content_area {
    text-align: left;
    font-family: 'Arial';
}
.gv_heading {
    font-size: 1.75em;
    color: var(--secondary);
    text-shadow: 1px 1px 3px var(--txt_l);
}
.footer {
    position: relative;
    width: 100%;
    min-height: max-content;
    background-color: var(--primary);
    color: var(--secondary);
    border-top: 1px solid var(--secondary);
}
.footer_wrapper {
    display: flex;
    width: 95%;
    min-height: 100%;
    margin: 0 auto;
    align-items: center;
    font-size: 16px;
}
.footer_left {
    display: flex;
    flex-direction: column;
    width: 50%;
    min-height: 100%;
    text-align: left;
}
.footer_nav {
    margin-bottom: 10px;
}
.footer_right {
    display: flex;
    width: 50%;
    justify-content: flex-end;
    margin-top: 20px;
    margin-bottom: 30px;
} 
.footer_media_wrapper{
    display: inline-block;
    min-width: max-content;
    padding-left: 25px;
    padding-right: 25px;
    text-align: center;
    margin-right: 10px;
}
.footer_media {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    text-align: left;
    padding-bottom: 5px;
}
.footer_img {
    width: 30px;
    height: 30px;
}
.footer_image {
    width: 100%;
    height: 190%;
}
.mask {
    display: none;
    width: 100%;
    min-height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 2; 
}
.mask_loading {
    display: none;
    width: 100%;
    min-height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgb(0,0,0,0.7);
    z-index: 100; 
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.intro {
    position: absolute; 
    display: none; 
    width: max-content; 
    height: max-content;
    border: 1px solid var(--secondary);
}
#close_intro {
    position: absolute;
    top: 5px;
    right: 5px;
}
#close_intro:hover {
    cursor: pointer;
}
#volume {
    position: absolute;
    bottom: 10px;
    right: 5px;
}
#volume:hover {
    cursor: pointer;
}
.welcome_div {
    position: absolute; 
    display: none; 
    top: 80px;
    right: -140px;
}
#welcome_msg {
    display: none;
    position: absolute;
    top: 5px;
    right: 125px;
    width: 150px;
    background-color: white;
    border: 1px solid var(--secondary);
    color: var(--primary);
    font-size: 16px;
    padding: 5px;
    border-radius: 5px;
}
.red_ {
    color: var(--secondary);
}
.red2:hover {
    cursor: pointer;
}
@media screen and (max-width: 1299px){
    .content {
        width: 99%;
    }  
}
@media screen and (max-width: 850px){
    #logo_wrapper {
        width: 20%;
    }
    #links_options_wrapper {
        width: 80%;
    }
}
@media screen and (max-width: 750px){
    #links_options_wrapper {
        display: none;
    }
    #header_responsive {
        display: flex;
    }
    .content {
        width: 100%;
    }    
    .content_area {
        width: 90%;
        margin: 0 auto;
        font-size: 16px;
    }
    .footer_wrapper {
        width: 99%;
    }
    .footer_left {
        padding-left: 10px;
    }
    .footer_media_wrapper{
        padding-left: 15px;
        padding-right: 15px;
        text-align: center;
        margin-right: 5px;
    }
}
@media screen and (max-width: 600px){
    #header_links {
        justify-content: center;
    }
    .link {
        margin-left: 10px;
        margin-right: 10px;
    }
    .footer_wrapper {
        font-size: 14px;
    }
    .footer_media_wrapper{
        padding-left: 5px;
        padding-right: 5px;
    }
}
@media screen and (max-width: 499px){
    .header {
        font-size: 18px;
    }
    #settings_mail {
        padding-top: 3px;
    }
    .footer_wrapper {
        font-size: 10px;
    }
    .footer_img {
        width: 15px;
        height: 15px;
    }
}