* {
    box-sizing: border-box;
}
.body {
    font-family: "Helvetica Neue", Helvetica, Arial;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    margin: 0;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
}
.page-header {
    width: 100%;
    /* height: 1.8rem; */
    height: 45px;
    display: flex;
    flex-flow: column nowrap;
    position: relative;
    justify-content: center;
    align-items: center;
    background-color: grey;
    color: white;
    font-weight: 500;
}

.page-footer {
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    position: relative;
    justify-content: center;
    align-items: center;
    color: lightgrey;
    font-size: 0.75em;
}

.buttonOpenThumb {
    font-size: 21px;
    color: blue;
    cursor: pointer;
    width: 100%;
    height: 100%;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}
.pageContent {
    display: flex;
    flex-flow: column nowrap;
    max-width: 900px;
    width: 100%;
    /* align-items: center; */
    overflow: auto;
    padding: 5px 10px;
    flex: 1 1 0;
}
.encounterFormContent {
    display: flex;
    flex-flow: column nowrap;
    max-width: 900px;
    width: 100%;
    align-items: center;
    overflow: hidden;
    flex: 1 1 0;
}
.formMenu {
    width: 100%;
    height: 45px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid lightgray;
    margin-bottom: 10px;
    position: relative;
    
}
button, input[type="submit"], input[type="reset"] {
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
}
.backButton {
    font-size: 17px;
    color: blue;
    cursor: pointer;
    position: absolute;
    height: 100%;
    left: 0px;
    top:0;
}
.nextButton {
    font-size: 17px;
    color: blue;
    cursor: pointer;
    position: absolute;
    height: 100%;
    right: 0px;
    top: 0;
}
.button1 {
    font-size: 17px;
}
button.disabled {
    color: grey;
    cursor: auto;
}
.bolded {
    font-weight: 800;
}
.menuTitle {
    font-size: 17px;
    font-weight: 500;
    max-width: calc(100% - 200px);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.MLThumb {
    height: 150px;
    width: 150px;
    position: relative;
    display: flex;
    flex-flow: column nowrap;
    margin: 10px;
}

.thumbImg {
    height: 100%;
    width: 100%;
    opacity: 0.4;
}
.mainMenuAction {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    height: 45px;
    width: 100%;
    align-items: center;
    padding: 0px 10px;
    border-bottom: 1px solid lightgrey;
    font-size: 17px;
    font-weight: 800;
}
.consultationHeader {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    height: 45px;
    width: 100%;
    align-items: center;
    padding: 0px 20px 0px 10px;
    background-color: lightgray;
    font-size: 17px;
    font-weight: 800;
}
.consultationBox {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    width: 100%;
    min-height: max-content;
}
.consultationDetailsBox {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    flex: 1 1 0;
    padding: 10px;
}
.consultationDetailsBox > div {
    height: 40px;
}
.consultationDocs {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    position: relative;
    height: fit-content;
}
.consultationDocBox {
    display: flex;
    flex-flow: row nowrap;
    min-width: 300px;
    flex: 1 1 0;
    height: 170px;
}
