﻿#nri-main-content {
    margin-top: 150px;
}

.no-wrap {
    white-space: nowrap;
}

/* Story 79632: increases width of first card container
Keeps sizing of the first card container on the homepage consistent with other card containers when homepage is resized */
@media (min-width: 768px) {
    .col-sm-6:first-child
    {
        width: 100%;
        max-height: 570px;
    }
}
@media (max-width: 1200px) {
    .col-sm-6:first-child
    {
        width: 100%;
        max-height: 470px;
    }
}
@media (max-width: 1000px) {
    .col-sm-6:first-child
    {
        width: 100%;
        max-height: 720px;
    }
}


/* Story 79632: increases width of last card container
Keeps sizing of the last card container on the homepage consistent with other card containers when homepage is resized */
@media (min-width: 768px) {
    .col-sm-6:last-child
    {
        width: 100%;
        max-height: 570px;
    }
}
@media (max-width: 1200px) {
    .col-sm-6:last-child
    {
        width: 100%;
        max-height: 470px;
    }
}
@media (max-width: 1000px) {
    .col-sm-6:last-child
    {
        width: 100%;
        max-height: 720px;
    }
}

/* Story 79632: Keeps card body consistent with the card container for when the page resizes */
/* pixel values for the card body is just container heights minus 10px */
@media (min-width: 768px) {
    .card-body
    {
        max-height: 560px;
    }
}
@media (max-width: 1200px) {
    .card-body
    {
        max-height: 460px;
    }
}
@media (max-width: 1000px) {
    .card-body
    {
        max-height: 710px;
    }
}



.home-notification-banner {
    background-color: rgba(0, 0, 0, 0.296);
    padding: .5em;
    margin-top: 1em;
    margin-bottom: 1em;
    font-weight: 400;
    border: solid #616161 2px;
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
    -moz-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
    display: none;
}

.home-notification-banner-link {
    font-weight: 400;
}

.home-notification-banner-link:hover {
    font-weight: 400;
}

.home-notification-banner-link:focus {
    font-weight: 400;
}

.home-notification-banner-icon {
    max-height: 1.2em;
    margin: .2em .2em;
}