.price-amount{
    height: 50px;
    width: 100px;
    font-size: 20px;
    text-align: center;
    color: #ffffff;
    font-family: calibri;
    background-color: #3F51B5;
    margin: 0 auto;
    border-radius: 50%;
    line-height: 50px;
}

.price-desc{
    font-family: calibri;
    font-size: 18px;
    color: #515151;
    text-align: center;
    margin-top: 10px;
}

.price-type{
    font-family: calibri;
    font-size: 20px;
    font-weight: bold;
    color: #3F51B5;
    text-align: center;
    padding: 10px;
    margin: 20px auto 0 auto;
}

.price-card-desc{
    font-family: calibri;
    font-size: 18px;
    color: #515151;
    line-height: 1.2;
    padding: 10px 20px;
    border-bottom: 1px solid #eff4f2;
}

.price-card-desc:last-child{border: none;}

@media screen and (max-width:479px){
    .price-card-wrapper{
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: flex-start;
        align-items: center;
    }
    
    .price-card{
        width: 320px;
        background-color: #ffffff;
        padding: 20px 0;
        border-radius: 10px;
        box-shadow: 2px 2px 20px -10px;
        margin-bottom: 20px;
    }
}

@media screen and (min-width:480px) and (max-width:799px){
    .price-card-wrapper{
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: flex-start;
        align-items: center;
    }
    
    .price-card{
        width: 390px;
        background-color: #ffffff;
        padding: 20px 0;
        border-radius: 10px;
        box-shadow: 2px 2px 20px -10px;
        margin-bottom: 20px;
    }
}

@media screen and (min-width: 800px){
    .price-card-wrapper{
        display: flex;
        flex-direction: row;
        width: 100%;
        justify-content: space-evenly;
    }
    
    .price-card{
        width: 390px;
        background-color: #ffffff;
        padding: 20px 0;
        border-radius: 10px;
        box-shadow: 2px 2px 20px -10px;
        overflow: hidden;
    }
}