.mpp-section{
    margin-top:30px;
}

.mpp-title{
    font-size:20px;
    font-weight:700;
    color:#000000;
    line-height:1.2;
    margin-bottom:20px;
}

.mpp-grid{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
}

.mpp-card{
    width:180px;
    border:2px solid #e5e5e5;
    border-radius:10px;
    cursor:pointer;
    overflow:hidden;
    transition:.2s;
    background:#fff;
}

.mpp-card:hover{
    border-color:#df4b43;
    transform:translateY(-3px);
}

.mpp-card img{
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
}

.mpp-name{
    padding:12px;
    text-align:center;
    font-weight:600;
}

.mpp-selected{
    border:2px solid #df4b43 !important;
}
.mpp-card{
    position:relative;
}

.mpp-check{

    display:none;

    position:absolute;

    top:10px;

    right:10px;

    width:30px;

    height:30px;

    border-radius:50%;

    background:#FE645A;

    color:white;

    font-weight:bold;

    justify-content:center;

    align-items:center;

}

.mpp-selected{

    border:2px solid #FE645A !important;

    box-shadow:0 0 15px rgba(254,100,90,.25);

}

.mpp-selected .mpp-check{

    display:flex;

}