@media (max-width: 768px) {
    .card {
        height: 120px;
        padding: 0;
    }

    .card-body{
        display: flex;
        flex-direction: row;
        height: 160px;
        padding: 0;
        align-items: center;
        /* justify-content: space-between; */
        width: 100%;
    }

    .card-down-body{
        display: none;
    }

    .card-up-body{
       /* margin-left: 12px; */
       display: flex;
       align-items: center; 
       justify-content: space-between;
       position: relative;
       flex: 1;
       padding-right: 15px;
    }

    .card p{
        margin-right: 10px;
    }

    .img-arrow{
        position: absolute;
        right: 10px;
    }

  
   
}
@media (min-width: 768px){
    .card{
        min-height: 412px;

    }
    .card-body{
        flex-direction: column;
    
    }
    .car-up-body{
        margin-top: 34px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .card h5{
        text-align: center;
     }
    
     .img-arrow{
        display: none;
     }

     .card-dialog{
        display: none;
     }
    
   
}

.card{
    border-radius: 14px;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0px 6px 20px 0px #EEF4FD;
    position: relative;
}

.card h5{
    font-size: 16px;
    font-weight: 700;
    color: #333333;
    margin-top: 10px;
}
.card p{
    font-size: 12px;
    font-weight: normal;
    color: #999999;
}

.app-dialog{
    width: 315px;
    height: 431px;
    background: #FFFFFF;
    border-radius: 12px;    
    /* box-shadow: 0px 6px 20px 0px #EEF4FD; */
    position: relative;

}

.card-dialog{
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    position: absolute;
}

.close-img{
    width: 22px;
    height: 22px;
    position: absolute;
    top: 20px;
    right: 17px;
}