body {
    color: white;
    background-color: #013A6B;
    padding-bottom: 30px;
}

div.container-fluid {
    color: #2c3e50;
}

div.diagonal-green {
    background-image: -webkit-linear-gradient(30deg, white 90%, grey 10%);
}

@media (min-width: 576px) {
    .card-columns {
        column-count: 2;
    }
}

@media (min-width: 768px) {
    .card-columns {
        column-count: 3;
    }
}

@media (min-width: 992px) {
    .card-columns {
        column-count: 4;
    }
}

@media (min-width: 1200px) {
    .card-columns {
        column-count: 4;
    }
}


/* Style the header */

.header {
    color: #f1f1f1;
}


/* Page content */

.container-fluid {
    padding: 16px;
}


/* The sticky class is added to the header with JS when it reaches its scroll position */

.pricing-header {
    background: #013A6B;
    position: fixed;
    top: 0;
    width: 100%;
    margin-left: -16px;
    z-index: 10;
    font-size: 50%;
    padding: 5px 0px 5px 0px !important;
}


/* Add some top padding to the page content to prevent sudden quick movement (as the header gets a new position at the top of the page (position:fixed and top:0) */

.pricing-header+.container-fluid {
    padding-top: 100px;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    margin-left: -16px;
    z-index: 11;
    font-size: 50%;
    padding: 10px 0px 10px 0px !important;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #013A6B;
    color: white;
    text-align: center;
    margin-bottom: -13px;
}

.card-header {
    text-overflow: ellipsis;
    /* Required for text-overflow to do anything */
    white-space: nowrap;
    overflow: hidden;
}

.toast-center-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*
Animation for ngView
*/
.view-animate.ng-enter {
    transition: 0.5s ease-in-out;
    opacity: 0;
    transform: translateX(100%);
}

.view-animate.ng-enter-active {
    opacity: 1;
    transform: translateX(0);
}

.view-animate.ng-leave {
    transition: 0.5s ease-in-out;
    opacity: 1;
    transform: translateX(0);
}

.view-animate.ng-leave-active {
    opacity: 0;
    transform: translateX(-100%);
}
/*
End of Animation for ngView
*/