@font-face {
    font-family: "Roboto";
    src: url("../lib/roboto/Roboto-Regular.ttf");
}

html, * {
    font-family: 'Roboto', sans-serif;
}

html, body {
    padding: 0;
    margin: 0;
}

header {
    border-bottom: 5px solid #0ff;
    background-color: #333;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header > div#header_center img {
    margin: 5px 0;
    width: 120px;
    vertical-align: middle;
}

header > div#header_center a
{
    display: block;
    width: inherit;
    margin: 0 auto;
}

header a:active {
    color: black;
}

header > div#header_center, div#header_left, div#header_right {
    display: inline-block;
    flex-grow: 1;
    max-width: 33%;
}

header > div#header_center{
    max-width: 30%;
    text-align: left;
}

header ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

header > div#header_right > ul
{
    justify-content: flex-end;
}

header ul > li {
    border-left: 1px solid white;
    height: 100%;
    padding: 10px 0;
    min-width: 150px;
}

header ul > li:hover {
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

header ul > li:hover > a > span {
    text-decoration: underline;
}

header ul > li:hover > a > span, header ul > li:hover > a > i {
    color: #00ffff;
}

header ul > li:first-of-type {
    border-left: none;
}

header ul > li > a:link {
    text-decoration: none;
    outline: none;
    color: transparent;
}
header ul > li > a:visited {
    text-decoration: none;
    outline: none;
    color: transparent;
}
header ul > li > a:hover {
    text-decoration: none;
    outline: none;
    color: transparent;
}
header ul > li > a:active {
    text-decoration: none;
    outline: none;
    color: transparent;
}

header ul > li > a > i, header ul > li > a > span {
    font-size: 48px;
    display: block;
    color: white;
    margin: auto;
}

header > div#header_left > ul > li > a > i, header > div#header_right > ul > li > a > i
{
    font-size: 36px;
}

header ul > li > a {
    text-align: center;
    display: block;
}

header ul > li > a > span {
    font-size: 20px;
}

header > div#header_left > ul > li > a > img {
    width: 36px;
    margin: 0px;
}

header > div#header_center div
{
    display: inline-block;
    vertical-align: middle;
    text-align: right;
    margin-left: 20px;
}

header > div#header_center a
{
    color: white;
    text-decoration: none;
}

header > div#header_center span
{
    display: block;
    width: 100%;
    font-size: 1.3em;
    text-align: left;
    color: white;
}

header > div#header_center span:first-of-type
{
    color: #00ffff;
    font-size: 2.5em;
}

header > div#menu_mobile
{
    display: none;
    color: white;
    position: absolute;
    top: 20px;
    right: 20px;
}

header > div#menu_mobile:hover
{
    cursor: pointer;
    color: #00cccc;
}

header > div#menu_mobile > i
{
    font-size: 45px;
}

main {
    text-align: center;
    padding: 50px 0 0;
    position: relative;
    overflow: hidden;
}

main > div#titleHolder > span {
    font-size: 2em;
}


main > div#page
{
    margin-top: 100px;
    z-index: 2;
    filter: none;
}

footer {
    border-top: 1px solid #111;
    background-color: #333;
    padding: 20px;
    color: #aaa;
}

footer > div#copyright {
    text-align: center;
}

footer a
{
    color: #00cccc;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #777;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #333;
}

body.mobile_view header > div#header_left
{
    display: none !important;
}

body.mobile_view header > div#header_left, body.mobile_view header > div#header_right
{
    display: none;
}

body.mobile_view header > div#menu_mobile
{
    display: block;
}
body.mobile_view  header > div#header_center{
    width: 100%;
}

div#contact_dialog, div#location_dialog {
    display: none;
}

div#contact_dialog > div#contact_dialog_background, div#location_dialog > div#location_dialog_background {
    position: fixed;
    z-index: 1000;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #333c;
}

div#contact_dialog > div, div#location_dialog > div {
    position: absolute;
    z-index: 1001;
    top: 20%;
    left: 30%;
    width: 40%;
    height: auto;
    border: 2px solid #222;
    background: #fff;
    font-size: 1.2em;
    box-shadow: 0 0 10px 0 #fff;

}

div.dialog_header {
    padding: 30px;
    color: #00ffff;
    background: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

div.dialog_body {
    padding: 30px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

div.dialog_header > i {
    color: white;
    font-size: 36px;
}

div.dialog_header > i:hover {
    cursor: pointer;
    color: #00ffff;
}

div.dialog_header > h1 {
    display: inline-block;
    margin: 0;
}

div.dialog_body > div {
    padding: 10px 20px;
    width: 100%;
    text-align: center;
}

div.dialog_body > div > label {

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

div.dialog_body > div input, div.dialog_body > div textarea {
    padding: 5px 10px;
    font-size: 1.1em;
    width: 60%;
    min-width: 60%;
    margin-left: 20px;
}

div.dialog_body > div textarea {
    min-height: 100px;
}

div.dialog_body > div > button
{
    padding: 10px 40px;
    margin-top: 20px;
    background: #333333;
    color: white;
    border: 1px solid #111111;
    font-size: 1.1em;
}

div.dialog_body > div > button:hover {
    cursor: pointer;
    color: #00ffff;
}


@media screen and (max-width: 1250px) {
    header > div#header_center{
        width: 100%;
        max-width: 100%;
    }
    header > div#header_left, header > div#header_right
    {
        display: none;
    }

    header > div#menu_mobile
    {
        display: block;
    }

}