.card{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    border:1px solid #e4e6ea;
    border-radius: 8px;
    padding:20px;
    background: #fff;
    box-sizing: border-box;
    margin:0 0 20px;
    max-width: 100%;
    position: relative;
    align-self: stretch;
}

.card.card--shadow{
    box-shadow: 0px 3px 3px 0px rgba(0, 20, 46, 0.1);
    border:0;
}

.card-header,
.card .subtitle{
    display: block;
    padding:0 0 8px;
    border-bottom: 1px solid #e4e6ea;
    margin:0 0 15px;
}

.card-header h2,
.card-header h3,
.card .subtitle{
    color: #000;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.3em;
    margin:0;
}

.card .subtitle{
    margin:0 0 15px;
}

.card p{
    font-size: 14px;
    line-height: 1.5em;
    margin:0 0 1.2em;
}

.card a{
    font-size: 14px;
}

.card.card--tabbed{
    border:0;
    background: transparent;
    padding:0;
}

.card.card--tabbed .tabs-panels{
    border-radius: 0 0 8px 8px;
}

.card.card--tabbed.card--shadow{
    box-shadow: none;
}

.card.card--tabbed.card--shadow .tabs{
    margin-left: -3px;
    margin-right:-3px;
    padding:0 3px;
}

.card.card--tabbed.card--shadow .tabs:after{
    content: "";
    position: absolute;
    top:0;
    right:3px;
    left: 3px;
    bottom:0;
    box-shadow: 0px 3px 3px 0px rgba(0, 20, 46, 0.1);
    z-index: -1;
}

.card.card--tabbed.card--shadow .tab:first-child{
    border-left:0;
}

.card.card--tabbed.card--shadow .tab:last-child{
    border-right:0;
}

.card.card--tabbed.card--shadow .tabs-panels{
    border:0;
    border-top:1px solid #e4e6ea;
    box-shadow: 0px 3px 3px 0px rgba(0, 20, 46, 0.1);
}