* {
    box-sizing: border-box;
    font-family: Helvetica, Arial, sans-serif; 
}
.body {
    font-family: Helvetica, Arial, sans-serif; 
    font-weight: 300;
    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: 44px;
    display: flex;
    flex-flow: row nowrap;
    position: relative;
    justify-content: center;
    align-items: center;
    background: rgb(127,47,79);
    background: -moz-linear-gradient(90deg, rgba(127,47,79,1) 0%, rgba(79,47,127,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(127,47,79,1) 0%, rgba(79,47,127,1) 100%);
    background: linear-gradient(90deg, rgba(127,47,79,1) 0%, rgba(79,47,127,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#7f2f4f",endColorstr="#4f2f7f",GradientType=1);
    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;*/
    overflow-y: auto;
    overflow-x: hidden;
    padding: 5px 10px;
    flex: 20 20 0;
}
.encounterFormContent {
    display: flex;
    flex-flow: column nowrap;
    /*max-width: 900px;*/
    width: 100%;
    align-items: center;
    overflow: hidden;
    flex: 1 1 0;
}

.encounterFormContentSchedule {
    display: flex;
    flex-flow: column nowrap;
    /*max-width: 900px;*/
    width: 100%;
    align-items: center;
    flex: 1 1 0;
}

.formMenu {
    width: 100%;
    height: 45px;
    max-width: 900px;
    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; */
    background: rgb(255,0,63);
    background: -moz-linear-gradient(90deg, rgba(255,0,63,1) 0%, rgba(63,0,255,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(255,0,63,1) 0%, rgba(63,0,255,1) 100%);
    background: linear-gradient(90deg, rgba(255,0,63,1) 0%, rgba(63,0,255,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff003f",endColorstr="#3f00ff",GradientType=1);
    color: rgb(255, 255, 255);
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
}
.backButton {
    font-size: 17px;
    color: blue;
    cursor: pointer;
    position: absolute;
    height: 100%;
    left: 10px;
    top:0;
    background: none;
}
.nextButton {
    font-size: 17px;
    color: blue;
    cursor: pointer;
    position: absolute;
    height: 100%;
    right: 10px;
    top: 0;
    background: none;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
}

.runReport {
    font-size: 17px;
    color: blue;
    cursor: pointer;
    right: 0px;
    top: 0;
    background: none;
    display: flex;
    align-content: center;
    flex-wrap: wrap;
}

.home-button {
    font-size: 17px;
    background: none;
    color: blue;
}

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;
}

.homePage {
    max-width: 350px;
}

html {
    /* normal laptop or desktop */
    font-size: 17px;
}

.loginScreen {
    height: calc(100vh - 4.5rem);
    width: calc(100vw - 0.1rem);
    display: flex;
    flex-flow: row;
    justify-content: center;
    position: relative;
}

.loginForm {
    height: 100%;
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    position: relative;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 740px) {
    .loginForm {
        justify-content: start;
    }
}

.entryField {
    height: 1.8rem;
    max-width: 20rem;
    margin: 5px;
    border: 1px solid rgb(128,0,120);;
    border-radius: 5px;
    width: calc(100% - 20px);
    min-width: 10rem;
    /*background-color: white !important; */
    padding: 4px;
    font-size: 1rem !important;
}

input {
    background-color: white;
}

.button {
        cursor: pointer;
        background: rgb(163, 29, 29);
        width: fit-content;
        border-radius: 15px;
}

.schedulebutton {
    cursor: pointer;
    background: none;
    width: fit-content;
    border-radius: 15px;
    padding: 0 10px;
}

.clinic {
    width: 20rem;
}

.headertitle{
    font-weight: bold;
}

.login-page-header {
    width: 100%;
    height: 44px;
    display: flex;
    flex-flow: row nowrap;
    position: relative;
    justify-content: center;
    align-items: center;
    color: white;
    background: rgb(127,47,79);
    background: -moz-linear-gradient(90deg, rgba(127,47,79,1) 0%, rgba(79,47,127,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(127,47,79,1) 0%, rgba(79,47,127,1) 100%);
    background: linear-gradient(90deg, rgba(127,47,79,1) 0%, rgba(79,47,127,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#7f2f4f",endColorstr="#4f2f7f",GradientType=1);
}

.message_zone {
    color: red;
    text-align: center;
}

.helpIcon {
    border-radius: 50%;
    height: 20px;
    width: 20px;
    border: 2px solid white;
    text-align: center;
    line-height: 15px;
    font-size: 15px;  
    position: absolute;
    right: 10px;  
    cursor: pointer;
}

@media (max-width: 767px) { 
    .navbar{
        display:none;
    }
}