$grey-border: #d8dfe6;
$white: #FFFFFF;
$default-box-shadow: 1px 1px 10px 0 rgba(0,44,90,0.15);
$dark-blue: #061c41;
$gray-base:        #000 !default;
$gray-lighter: lighten($gray-base, 93.5%) !default;

.card {
    background-color: $white; 
    border: 1px solid $grey-border;
    box-shadow: $default-box-shadow;
    margin: 20px;

    .header {
        position: relative;
        border-bottom: 1px solid #D8D8D8;
        padding: 15px;
    }
    .body {
        padding: 15px;
        position: relative;
        //height: calc(100% - 105px);
    }
    .footer {
        padding: 15px;
        width: 100%;
        text-align: center;
        background-color: $gray-lighter;
        border-top: 5px solid $grey-border;
        .centerFooter {
            line-height: 50px;
            vertical-align: center;
            display: inline-flex;
        }
    
    }
}