@media only screen and (max-width: 768px) {
    #accountButton {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        width: auto;
        white-space: initial;
        overflow: visible;
    }
}

body {
    padding: 24px;
    font-family: Averta-Regular, Roboto, sans-serif;
    font-size: 18px;
    line-height: 1.6em;
    -webkit-font-smoothing: antialiased;
    color: black;
}

#homeButton {
    float: left;
    height: auto;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
    padding: 10px;
    margin: 8px;
}

#logoutButton {
    float: right;
    height: auto;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
    padding: 10px;
    margin: 8px;
}

#accountButton {
    flex: auto;
    text-align: left;
    width: 50%;
    height: auto;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
    padding: 10px;
    margin-bottom: 8px;
    word-wrap:break-word;
}

form.search input[type=text] {
    padding: 10px;
    border: 1px solid grey;
    flex: auto;
    width: 40%;
    text-align: left;
    height: auto;
}

form.search button {
    width: 5%;
    padding: 10px;
    height: auto;
}

/*form.search button:hover {*/
/*    background: #0b7dda;*/
/*}*/

/*form.search::after {*/
/*    content: "";*/
/*    clear: both;*/
/*    display: table;*/
/*}*/

#arrow {
    float:  right;
}

#logo {
    width: 250px;
    padding: 25px;
}

#accountButton:hover, #homeButton:hover, #appButton:hover {
    background-color: #E5E5E5;
}

#appButton {
    flex: auto;
    height: auto;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
    padding: 10px;
    margin-bottom: 8px;
}


#sessionButton {
    flex: auto;
    height: auto;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
    padding: 10px;
    margin-bottom: 8px;
}

#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 17px;
}

#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}
