.lato-thin {
    font-family: "Lato", serif;
    font-weight: 100;
    font-style: normal;
}

.lato-light {
    font-family: "Lato", serif;
    font-weight: 300;
    font-style: normal;
}

.lato-regular {
    font-family: "Lato", serif;
    font-weight: 400;
    font-style: normal;
}

.lato-bold {
    font-family: "Lato", serif;
    font-weight: 700;
    font-style: normal;
}

.lato-black {
    font-family: "Lato", serif;
    font-weight: 900;
    font-style: normal;
}

.lato-thin-italic {
    font-family: "Lato", serif;
    font-weight: 100;
    font-style: italic;
}

.lato-light-italic {
    font-family: "Lato", serif;
    font-weight: 300;
    font-style: italic;
}

.lato-regular-italic {
    font-family: "Lato", serif;
    font-weight: 400;
    font-style: italic;
}

.lato-bold-italic {
    font-family: "Lato", serif;
    font-weight: 700;
    font-style: italic;
}

.lato-black-italic {
    font-family: "Lato", serif;
    font-weight: 900;
    font-style: italic;
}

html {
    font-family: "Lato", serif;
    color: #5f4b26;
    background-color: rgb(251, 250, 248);
}
form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}
img.icon {
    fill: white;
}

img {
    width: 100%;
    max-width: 560px;
}
img.mini {
    margin: 20px auto;
    max-width: 360px;
    width: 100%;
}
h1{
    text-align: center;
}
h4 {
    text-align: justify;
    width: 100%;
}
a {
    text-decoration: underline;
    font-weight: bold;
}
p {
    text-align: justify;
}
.flex {
    display: flex;
    justify-content: center;
    align-items: center;
}
.flex.row {
    flex-direction: row;
}
.flex.col {
    flex-direction: column;
}
.container {
    max-width: 720px;
    width: 100%;
    margin: 50px auto auto;
    padding: 2em 0;
}
.custom-container {
    max-width: 720px;
    width: 100%;
    margin: auto;
    padding: 2em 0;
}
.container-wide {
    width: 80em;
    margin: auto;
}
.menu {
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 3em;
}
ul {
    list-style: none;
}
.menu li {
    text-align: center;
    width: 40%;
    padding: 2%;
    background-color: #EFEFEF;
    border-radius: 5px;
}
.menu a {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    cursor: pointer;
}
a, a:visited, a:hover, a:active {
    color: inherit;
    text-decoration: none;
}
nav ul {
    padding: 12px;
}
form {
    display: flex;
    flex-direction: row;
    width: 75%;
}
form .label {
    width: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    margin-bottom: 1em;
}
form .field input {
    width: 90%;
    padding: 2%;
    border: 1px solid #5f4b26;
    border-radius: 2px;
    height: 2em;
    font-size: 24px;
}
form .field textarea {
    width: calc(100% - 4% - 2px);
    padding: 2%;
    border: 1px solid black;
    border-radius: 5px;
    height: 30em;
    resize: none;
    margin-bottom: 1em;
}
form .button {
    width: 56px;
    height: 46px;
    font-size: 14px;
    background-color: #5f4b26;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: white;
    font-weight: 700;
}
.button.logout {
    margin-top: 2em;
}
.error {
    color: darkred;
    width: 100%;
    text-align: center;
    padding: 8px 0;
}
.error-container {
    height: 2em;
    max-width: 380px;
    width: 100%;
    margin: auto;
    padding: .5em 0;
}
.error ul{
    padding: 2%;
}
.success {
    color: darkgreen;
    width: 100%;
    text-align: center;
    font-weight: bold;
}
.list-row {
    justify-content: space-between;
    border: 1px solid black;
    margin-bottom: 1em;
    width: 96%;
    padding: 2%;
}
.list-header {
    text-align: center;
    font-size: 18px;
    margin-bottom: 2em;
}
.list-item {
    text-align: center;
    width: 10%;
    padding: 1%;
    border-right: 1px solid gray;
    font-size: 12px;
    word-wrap: anywhere;
}
.list-item:last-child{
    border: none;
}
.list-item.wide {
    width: 50%;
}
.bottom-nav {
    justify-content: space-around;
}
/* Style the buttons that are used to open and close the accordion panel */
.accordion {
    color: #5f4b26;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: 1px solid #5f4b26;
    border-radius: 5px;
    outline: none;
    transition: 0.4s;
    font-weight: bold;
    background-color: #fbfaf8;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
    background-color: #fbfaf8;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
    padding: 0 18px;
    background-color: #fbfaf8;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
