.popUp{
    position:fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(0);
    transition: 200ms ease-in-out;
    border: 1px solid black;
    border-radius: 10px;
    z-index: 999;
    width: 67.5%;
    height: 90%;
    max-width: 80%;
    background-color: white;
}

.plan-popUp{
    height: 50px;
    width: 300px;
    padding: auto;
    top: 20%;
    min-height: 70px;
    min-width: 250px;

}

.popUp.active{
    transform: translate(-50%,-50%) scale(1);
}
.popUp-header{
    border-top-left-radius: 11px;
    border-top-right-radius: 11px;
    background-color: rgb(199, 199, 199);
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1.5px solid black;
}

.plan-popUp-header{
    padding: .5%;
    font-size: 1.25rem;
    font-weight: bold;
}

.popUp-header .title {
    font-size: 1.25rem;
    font-weight: bold;
}

.popUp-header .close-button{
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
    font-size: 1.25rem;
    font-weight: bold;

}

.popUp-header .close-button:hover{
    color: rgb(255, 89, 0);
    scale: 1.5;
    size: 100;
}

.close-button{
    transition: all ease-in-out 200ms;
}

.popUp-Body {
    padding: 10px 15px;
    max-height:calc(100% - 110px);
    overflow-y: scroll;
}

.plan-popUp-Body{
    
}

#pop_up_window{
    /* adds scroll wheel to entire pop up */
    /* overflow-y: scroll; */
}

.popUp-Body-Title {
    font-weight: bold;
}

.popUp-item{
    margin-top: 1%;
    margin-bottom: 1%;
}


#overlay {
    position: fixed;
    opacity: 0;
    transition: 200ms ease-in-out;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 100;
    pointer-events: none;
}

#overlay.active {
    opacity: 1;
    pointer-events: all;
}

.plan-input{
    float: left;
    width: 70%;
    padding: 3%;
    height: 1%;
}

.plan-btn{
    float: left;

    height: auto;
    width: 22%;
    padding: 3%
}