.ct-card {
    border-radius: 5px;
    background: #fff;
    border: 1px solid transparent;
    &.ct-card-border {
        border: 1px solid $border-color;         
    }        
    &:hover {
        box-shadow: 0 1px 8px rgba(0,0,0,0.16);       
        border: 1px solid #eee;    
    }  
    &.disabled-hover:hover {
        box-shadow: none;
    }
    .ct-card-head {
        padding: 15px;
        border-radius: 5px 5px 0 0;
        font-size: 14px;
        line-height: 1;
        border-bottom: 1px solid #e6e6e6; 
        .ct-card-title {
            font-weight: bold;
            display: inline-block;
        }
        .ct-card-extra {
            float: right;
        }
    }
    .ct-card-body {
        padding: 15px;
        border-radius: 0 0 5px 5px;
    }
}