.past-modal {
    background-color: rgba(0, 0, 0, 0.4);
    display: none;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
}

.past-wrap {
    background-color: var(--white);
    margin: 2% auto;
    max-height: calc(100vh - 120px);
    /*overflow-y: auto;*/
    padding: 40px;
    width: 80%;
    position: relative;
}

.past-wrap #closePastBtn {
    position: absolute;
    right: 20px;
    top: 20px;
}

.past-wrap #closePastBtn:before {
    content: '';
    background-image: url(/assets/images/circle-xmark-solid-navy.svg);
    background-repeat: no-repeat;
    margin-right: 6px;
    width: 36px;
    height: 36px;
    display: block;
    cursor: pointer;
}

.past-heading {
    font-size: var(--fontmdesktop);
    font-weight: var(--bold);
    margin-bottom: 16px;
}

.past-inner-wrap {
    /*overflow: scroll;*/
}

@media only screen and (max-width: 980px) {
    #past-chart {
        max-height: 500px !important;
    }
}

        