﻿:root {
    --bz-blue-darkest: #00354e;
/*    --bz-blue-darkest: #00364F;*/
/*    --bz-blue-darker: #5F72B7;*/
    --bz-blue-darker: #005881;
    --bz-blue: #0086C5;
/*    --bz-blue-lighter: #C4CDF2;*/
    --bz-blue-lighter: #33CCFF;
    --bz-blue-lightest: #C5ECFF;
    --bz-grey-darkest: #4D4D4D;
    --bz-grey-darker: #0000008a;
    --bz-grey-lighter: #c0c0c0;
    --bz-grey-lightest: #F8F8F8;
    --bz-green: #339933;
    --bz-red: #FF3333;
    --bz-yellow: #FFCC00;
    --bz-yellow-darker: #DDB100;
  }

html, body {
    font-family: 'Roboto';
    font-size: 16px;
    background-color: var(--bz-grey-lightest);
    line-height: 125%;
}

main hr {
    border-top: 3px solid #ccc;
    margin-top: 36px;
}

p, ul, ol {
    font-size: 1rem;
}


h1 {
    font-size: 1.6rem;
    font-weight: bold;
    text-align: left;
    margin-top: 18px;
    margin-bottom: 24px;
    line-height: 125%;
    color: var(--bz-blue-darkest);
}

h2 {
    font-size: 1.6rem;
    font-weight: normal;
    text-align: left;
    margin-top: 18px;
    margin-bottom: 14px;
    line-height: 125%;
}

h3 {
    font-size: 1.2rem;
    font-weight: normal;
    font-style: italic;
    text-align: left;
    margin-top: 16px;
    margin-bottom: 14px;
    line-height: 125%;
}


.bz-subtitle {
    font-size: 1.3rem;
    font-weight: normal;
    font-style: italic;
    text-align: center;
    margin-bottom: 40px;
    color: var(--bz-blue-darkest);
}


/***************Used in WWW***********************/
.bz-flex-row {
    display: flex;
    justify-content:  space-evenly;
    align-items: center;
}


/*
 * SVG
 */

 .bz-square {
    fill: none;
    stroke: #fff;
    stroke-miterlimit: 12;
    stroke-width: 10px;
}

.bz-circle {
    fill: #fff;
    stroke-width: 0px;
}

.bz-icon-white {
    fill: white;
}

.bz-icon-dark {
    fill: var(--bz-blue-darkest);
}


.bz-svg-go {
    height:1em;
    margin-bottom: 0.125em;
    margin-left:0.5em;
}

/*
 * Image
 */

 
.bz-overlay {
    font-size: smaller;
    position: absolute;
    padding: 4px 8px;
    width: 40%;
    font-style: italic;
    box-shadow: 4px 4px 5px rgb(0 0 0 / 25%);
    background-color: rgba(255, 255, 255, 0.8);
}
.bz-animate {
    animation: 1s ease 0s normal forwards 1 fadein;
}

@keyframes fadein{
    0% { opacity:0; }
    66% { opacity:0; }
    100% { opacity:1; }
}

.bz-bottom-left {
    bottom: 0px;
    left: 0px;
}
.bz-bottom-right {
    bottom: 0px;
    right: 0px;
}


.maxXL {
    max-width: 640px;
    width: 100%;
}

.maxLG {
    max-width: 560px;
    width: 100%;
}

.maxMD {
    width: 100%;
    max-width: 480px;
}

.maxMDh {
    max-height: 400px;
    height: auto;
}


.maxSM {
    width: 100%;
    max-width: 320px;
}

.maxSMh {
    max-height: 320px;
    height: auto;
}
.maxXSh {
    max-height: 80px;
    max-width: 100%;
    height: auto;
}

.maxXS {
    max-width: 240px;
    width: 100%;
}



/*
 * Text
 */


.bz-menu-item {
    overflow-y: auto;
}

.bz-center{
    text-align: center;
}

.bz-page {
    padding: 10px 10px 10px 10px;
}

.bz-page .mdl-grid {
    padding: 0px;
}

.bz-game-icon{
    background-color: var(--bz-blue);
    color: white;
    text-align: center;
    margin: 24px 0 36px 0;
}

.bz-game-icon path, .bz-game-icon circle, .bz-game-icon rect {
    fill: #fff;
}

.bz-game-icon svg{
    height:32px;
}

.bz-gameplay.bz-game-icon svg{
    height:24px !important;
}

.bz-game-icon p{
    margin:3px 0;
}

.bz-gameplay {
    display: flex;
    justify-content:  space-evenly;
    padding: 15px 0;
}

#gameplay h2 {
    margin-top: 0px;
}

.bz-line {
    display: flex;
    justify-content:  center;
    align-items: center;
    margin: 36px 25% 24px 25% ;
}

.bz-line path, .bz-line circle, .bz-line rect {
    fill: var(--bz-blue-darkest);
}

.bz-line-segment .bz-border {
    border-top: solid 1px var(--bz-blue-darkest);
    min-width: 100px;
    margin: 0 8px;
    line-height: 0px;
}

.bz-line svg {
    height: 36px;
}

.bz-social-icon{
    min-width:24px !important;
}

.bz-social-icon path, .bz-social-icon circle, .bz-social-icon rect {
    fill: #fff;
}

.bz-social-icon svg{
    height:24px;
}

.bz-video {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}

.bz-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bz-caption {
    margin-top: 6px;
    font-style: italic;
    text-align: center;
}

.bz-button {
    color: white;
    background-color: var(--bz-blue-darkest);
    text-align: center;
}

.bz-btn-caption {
    margin-top: 6px;
    font-weight: bold;
    font-size: 1.1rem;
}


.bz-toc {
    text-align: center;
}

.bz-toc a, a.bz-toc {
    color: #000;
    text-transform: uppercase;
    line-height: 2rem;
    text-decoration: none;
    margin-left: 18px;
    margin-right: 18px;
}

#www-beloz .mdl-cell {
    position: relative;
}


/*
 * MDL Hacks
 */


 .mdl-layout {
    position: relative;
    min-height: 100% ;
    max-width: 960px;
    margin-left: auto ;
    margin-right: auto;
}

.mdl-layout__header {
    background-color: var(--bz-blue-darkest);
}

/* MENU */

a.mdl-layout-title {
    text-decoration: none;
    color:white;
}

.mdl-menu__item a {
    font-family: "Helvetica","Arial",sans-serif; 
    text-decoration: none;
    color: #000;
    text-transform: uppercase;
    font-weight: 500;
    height: 36px;
}

.mdl-layout__header-row {
    justify-content: space-between;
}

.mdl-tabs__tab-bar a {
    color: var(--bz-grey-lighter);
}


/***************************************/

 
/*
 / FONTS ROBOTO LATIN ONLY
*/


/* roboto-regular - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: local(''),
        url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'),
        /* Chrome 26+, Opera 23+, Firefox 39+ */
        url('../fonts/roboto-v30-latin-regular.woff') format('woff');
    /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* roboto-italic - latin */
@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 400;
    src: local(''),
        url('../fonts/roboto-v30-latin-italic.woff2') format('woff2'),
        /* Chrome 26+, Opera 23+, Firefox 39+ */
        url('../fonts/roboto-v30-latin-italic.woff') format('woff');
    /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}


/* roboto-700 - latin */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: local(''),
        url('../fonts/roboto-v30-latin-700.woff2') format('woff2'),
        /* Chrome 26+, Opera 23+, Firefox 39+ */
        url('../fonts/roboto-v30-latin-700.woff') format('woff');
    /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

/* roboto-700italic - latin */
@font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 700;
    src: local(''),
        url('../fonts/roboto-v30-latin-700italic.woff2') format('woff2'),
        /* Chrome 26+, Opera 23+, Firefox 39+ */
        url('../fonts/roboto-v30-latin-700italic.woff') format('woff');
    /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}