/*-----------------------booster panel----------------------------------*/
#BlurredBackground {
    position: fixed;
    height: 100%;
    width: 100%;
    inset: 0;
    margin: auto;    
    backdrop-filter: blur(5px);   
    z-index: 25;
    display: none;
    align-items: center;
    justify-content: center;
}

.BoosterPanel{
    /*
    height: 60%;
    width: 80%;
    background-color: #252837;
    border:1px solid rgb(99, 95, 95);
    border-radius: 5px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    overflow: hidden;*/

    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 600px;
    max-width: 80%;
    min-width: 400px;
    padding: 20px;
    border-radius: 20px;
    position: relative;
    background-color: #1a1a1a;
    color: #fff;
    border: 1px solid #333;
}


.BoosterPlanBox {
    height: 90%;
    width: 100%;
    padding: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    overflow: auto;
}

.Plan {
    height: 100%;
    /*width: 20%;*/
    min-width: 280px;
    border:1px solid rgb(63, 63, 63);
    padding: 10px 2px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-right: 5px;
    margin-left: 5px;
}

.PlanTitle {
    padding: 0 5px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.PlanTitle h3 {
    margin-bottom: 15px;
}

.UpperPlanPortion {
    height: 40%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.PlanImgBox {
    height: 60%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.PlanImg {
    height: 100%;
    width: auto;
}

.PlanDetails {
    height: 50%;
    width: 100%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    /*justify-content: space-between;*/
}

.DetailSpacer {
    height: 33%;
    width: 100%;
}

.PlanButton {
    height: 10%;
    width: 100%;
    /*border:1px solid rgb(99, 95, 95);*/
    box-shadow: 0px 4px 5px #5345B0;
    border-radius: 10px;
    background-color: #5345B0;
    transition: all 0.3s ease;
}

.PlanButton:hover {
    background: #6757D6;
    /* this transition option actually makes a smooth transition when hovering over some items */
    box-shadow: 0px 0px 0px #6757D6;
}


#TakePlan {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 10px;
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
}