﻿/* 
    ------------------------------
    SkyCard Styles  (Mobile first)
    ------------------------------
*/

.sky-card, .sky-card * {
    box-sizing: border-box;
    border-spacing: 0px;
}

.sky-card {
    width: 100%;
    border-radius: 0.5rem !important;
    background-color: #fff;
    border-width: 1px;
    border: 1px solid #e5e5e7;
    padding: .5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .sky-card > .body,
    .sky-card > .header,
    .sky-card > .footer {
        padding: 1rem !important;
    }

    .sky-card > .header {
        border-radius: 0.5rem 0.5rem 0 0;
        border-bottom: 1px solid #E5E5E7;
        color: #000;
        font-size: 1rem !important;
        font-weight: 500 !important;
    }

    .sky-card > .footer {
        border-radius: 0 0 0.5rem 0.5rem;
        border-top: 1px solid #E5E5E7;
        color: #000;
    }


/*Style breaks inline with Bootstrap
------------------------------------
sm and up ( 36rem = 576px )*/
@media (min-width: 48rem) {
}

/*md and up ( 48rem = 768px )*/
@media (min-width: 48rem) {
}

/*lg and up ( 62rem = 992px )*/
@media (min-width: 48rem) {
}

/*xl and up ( 75rem = 1200px )*/
@media (min-width: 75rem) {
}

/*xxl and up ( 87.5rem = 1400px )*/
@media (min-width: 87.5rem) {
}
