body {
	position: relative;
    height: 100%;
    width: 100%;
	margin: 0;
}
*::-webkit-scrollbar,
.doseListBox::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
*::-webkit-scrollbar-track,
.doseListBox::-webkit-scrollbar-track {
    box-shadow: inset 0 0 3px 2px #969696;
    border-radius: 50px;
    margin: 1vh;
}
*::-webkit-scrollbar-thumb,
.doseListBox::-webkit-scrollbar-thumb {
    background-color: rgba(37, 74, 212, 0.7);
    border-radius: 50px;
}

.mainBg {
    background: url(../images/wood-bg.jpg);
    background-size: 100%;
    /*background-size: cover;
    background-repeat: no-repeat;*/
}

h1 {
    font-size: 30px;
    line-height: 50px;
    color: #efefef;
    text-align: center;
}

.buttonMe {
    border: 4px solid #c4c4c4;
    border-radius: 5px;
    background: #191919;
    color: #c4c4c4;
    cursor: pointer;
    margin: 5px;
    padding: 3px 10px;
}
.buttonMe:hover {
    border-color: #101010;
    background: #b7b7b7;
    color: #101010;
}

.smooth {
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.flexMe {
    display: flex;
}
.flexMeSpaceAround {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.popOut_btn {
    background: #3a3a3a;
    padding: 5px 10px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: #efefef;
    line-height: 28px;
    cursor: pointer;
}
.popOut_btn:hover {
    background: #6f6f6f;
    color: #191919;
    border-color: #191919;
}

.popOut_overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(128, 128, 128, 0.75);
    z-index: 11;
    display: none;
}
.popOut_overlay.active {
    display: block;
}
.popOut_content {
    background: #8c8c8c;
    border: 5px solid #4c4c4c;
    border-radius: 10px;
    position: relative;
    z-index: 13;
    width: 1000px;
    max-width: 87vw;
    min-height: 100px;
    max-height: 85vh;
    margin: 10vh auto;
    padding: 15px;
}
.popOut_header {
    width: 100%;
    background: #c7c7c7;
    padding: 5px 0;
    font-size: 25px;
    font-weight: 800;
    color: #4c4c4c;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 20px;
}

.popOutContent {
    max-height: 350px;
    overflow: auto;
}

.flexMeSpaceAround.addDoseForm {
    flex-wrap: wrap;
    /*flex-direction: column;*/
}

.inputBox {
    margin: 10px 10px;
}

.inputBox label {
    display: block;
    text-align: center;
    color: #efefef;
    font-weight: 800;
}

input#doseInput {
    width: 50px;
}

/*#hiddenSpacer {*/
/*    opacity: 0;*/
/*}*/

.topHeader {
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0;
    width: 100%;
    height: 50px;
    z-index: 9;
    background: #4c4c4c;
    border-bottom: 5px solid #4c4c4c;
}

.centerBox {
    color: #efefef;
    font-size: 30px;
    font-family: cursive;
    line-height: 50px;
}

.logoBox {
     /*width: 30%;*/
     /*float: left;*/
     /*text-align: center;*/
     font-family: cursive;
 }

.logoBox a {
    /*font-size: 30px;*/
    line-height: 50px;
    /*margin: 15px;*/
    color: #efefef;
    /*text-decoration: none;*/
    display: flex;
}

.logoBox img {
    height: 45px;
    margin: 0 10px;
}

.animating-width {
    background: #e78629;
    color: white;
    height: 100px;
    width: 50%;
}
.animating-width:hover {
    transition(.3s width ease-in-out);
       cursor: pointer;
       width: 100%;
   }

.fillerWidth {
    width: 100%;
}

.mainMenuBox {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 15px;
}

a {
    color: #efefef;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 20px;
    text-decoration: none;
}


.mainContent {
    position: relative;
    padding: 0.5%;
    text-align: center;
    color: #efefef;
    width: 1000px;
    max-width: 90%;
    margin: 75px auto;
    background: #4c4c4cde;
    /*min-height: 400px;*/
    z-index: 1;
}

.doseListBox {
    max-height: 70vh;
    overflow: auto;
    border: 1px dashed;
    padding: 7px;
    border-radius: 10px;
    margin: 0 7px 3px;
}

.buttonRow,
.listRow {
    display: flex;
    justify-content: space-around;
    border: 1px solid;
    margin: 3px 0;
    padding: 4px 0;
}
.listRow:nth-child(Even) {
    background: #413e4d;
}
.listRow:hover {
    background: #6a6872;
}

.listRow div {
    width: 100%;
}

.listRow .dosage {
    width: 50%;
}
.purple {
    background: purple;
}

.buttonRow {
    border: none;
    border-bottom: 5px solid;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.buttonRow span {
    margin: 5px 10px 5px;
}

/*@media screen and ( max-width: 1099px ) {*/
/*    .flexMeSpaceAround.addDoseForm {*/
/*        flex-wrap: wrap;*/
/*        flex-direction: column;*/
/*    }*/
/*}*/
