#popGraph {
    position: fixed;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100vh;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.75);
    z-index: 500;
    display: none;

}

.putGraph {
    padding: 10px;
    background: white;
    border-radius: 5px;
}

@media(max-width:768px) {
    .putGraph {
        width: 95%;
    }
}

@media(min-width:768px) {
    .putGraph {
        width: 80%;
    }
}

.graphPopHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
}