﻿.welcome-page .logo {
  width: 64px;
}
.welcome-page ul {
    margin: 0;
    padding: 0;
}

.icon-banner {
  width: 42px;
}

.body-container {
  margin-top: 20px;
  padding-bottom: 20px;
}

.welcome-page li {
  list-style: none;
  padding: 4px;
}

.logged-out-page iframe {
  display: none;
  width: 0;
  height: 0;
}

.grants-page .card {
  margin-top: 20px;
  border-bottom: 1px solid lightgray;
}
.grants-page .card .card-title {
  font-size: 120%;
  font-weight: bold;
}
.grants-page .card .card-title img {
  width: 100px;
  height: 100px;
}
.grants-page .card label {
  font-weight: bold;
}
.validation-summary-errors ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.nav-button {
    display: flex;
    justify-content: left;
    align-items: center;
    padding: 6px 20px 6px 14px;
    border: none;
    border-radius: 4px;
    transition: color .15s ease-in-out, background-color .15s ease-in-out;
}
.nav-button:hover {
    background-color: rgb(230, 230, 230);
}
.nav-button > span {
    font-weight: bold;
    font-size: 18px;
    color: #212529;
}
.nav-button > svg {
    height: 20px;
    width: 20px;
    padding: 0;
    margin-right: 8px;
}
@media (max-width: 768px) {
    .nav-button {
        padding: 12px 20px 12px 14px;
    }
    .nav-button > span {
        font-size: 14px;
    }
}