﻿
#map {
    height: 100%;
    width: 100%;
}
/* Optional: Makes the sample page fill the window. */
html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    position: fixed;
}

header {
    /* your header styles for mobile */
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 75px;
    background: #656a74;
    position: relative;
}

@media only screen and (min-width: 768px) {
    /* your styles for anything bigger than an iPad */
    header {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 105px;
        background: #656a74;
        position: relative;
    }
}

.header-inner {
    /* your header styles for mobile */
    display: flex;
}

@media only screen and (min-width: 768px) {
    /* your styles for anything bigger than an iPad */
    .header-inner {
        display: flex;
    }
}


.button-container {
    /* your header styles for mobile */
    width: 235px;
  /*  height: 100%;*/
    float: right;
    justify-content: flex-end;
    vertical-align: baseline;
}


.button {
    /* your header styles for mobile */
    display: flex;
    float: right;
    border: none;
    color: white;
    padding: 8px;
    align-items: flex-end;
    text-align: right;
    font-size: 12px;
    cursor: pointer;
    min-width: 80px;
    margin: 3px 3px 6px 0px;
    border-radius: 3px;
}

@media only screen and (min-width: 768px) {
    /* your styles for anything bigger than an iPad */
    .button {
        display: flex;
        border: none;
        color: white;
        padding: 10px 20px;
        text-align: center;
        font-size: 18px;
        cursor: pointer;
        min-width: 150px;
        margin: 5px 10px;
        border-radius: 4px;
    }
}

.button-red {
    background-color: #EDA007;
}

.button-green {
    background-color: #165B33;
}

.button a {
    text-decoration: none;
    color: white;
}

.button-red:hover {
    background-color: #F8B229;
}

.button-green:hover {
    background-color: #146B3A;
}

.logo {
    /* your header styles for mobile */
    height: 75px;
}

@media only screen and (min-width: 768px) {
    /* your styles for anything bigger than an iPad */
    .logo {
        height: 100px;
    }
}
