.ante-div{
    display: grid;
    height: 100%;
    grid-template-rows: 60px calc(100% - 60px);
    grid-template-areas: "ante-panel" "ante-content"
}

.ante-panel{
    grid-area: ante-panel;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    /*overflow-y: auto;*/
    /*height: 100%;*/
}

.ante-panel > div{
    display: inline-block;
}

.ante-title{
    font-size: 1.5em;
    padding-left: 20px;
    padding-right: 30px;
}

.ante-dates{
    width: 250px;
}

.ante-dates .ante-date-label{
    font-size: 0.8em;
}

.ante-date-label.edd,
.ante-edd{
    text-align: right;
}

.ante-edd-graph{
    width: 80%;
    margin: auto;
    height: 15px;
}

.ante-graph-container{
    width: 100%;
    background: #adeca5;
    overflow: hidden;
    border-radius: 3px;
    height: 100%;
    position: relative;
    border: solid #31c331 1px;
}

.ante-graph-trimester{
    display: inline-block;
    width: 33.33%;
    height: 100%;
    border-right: solid 1px gray;
    float: left;
    font-size: 14px;
    line-height: 15px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.ante-graph-trimester:last-of-type{
    border: none;
}

.ante-graph-marker{
    position: absolute;
    top: 0px;
    left: 0px;
    background: #24ce39;
    height: 100%;
}

.ante-content{
    grid-area: ante-content;
    background-color: white;
    /*height: 100%;*/
    overflow-y: auto;
    display: grid;
}

.ante-page{
    overflow: auto;
}

.ante-hide{
    display: none !important;
}

.new-anc,
.end-anc{
    margin-left: auto;
    margin-right: 10px;
}

.end-anc{
    background-color: #bb1515;
}