﻿@charset "UTF-8";
.body-container {
  margin-top: 60px;
  padding-bottom: 40px;
}

.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;
}

.login-page .logo {
  width: 36px;
  height: 58px;
}

#mobile-page .logo {
  width: 36px;
  height: 58px;
}

.admin-logo {
  width: 25px;
}

.multi-checkbox-dropdown {
  position: relative;
  font-size: 14px;
  color: #333;
  z-index: 10;
}
.multi-checkbox-dropdown .dropdown-list {
  padding: 12px;
  background: #fff;
  position: absolute;
  top: 30px;
  left: 2px;
  right: 2px;
  box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.15);
  transform-origin: 50% 0;
  transform: scale(1, 0);
  transition: transform 0.15s ease-in-out 0.15s;
  max-height: 66vh;
  overflow-y: scroll;
}
.multi-checkbox-dropdown .dropdown-option {
  display: block;
  padding: 8px 12px;
  opacity: 0;
  transition: opacity 0.15s ease-in-out;
}
.multi-checkbox-dropdown .dropdown-label {
  display: block;
  height: calc(1.5em + 0.75rem + 2px);
  background: #fff;
  border: 1px solid #ccc;
  padding: 10px 4px 6px 12px;
  line-height: 1;
  cursor: pointer;
}
.multi-checkbox-dropdown .dropdown-label:before {
  content: "▼";
  float: right;
}
.multi-checkbox-dropdown.on .dropdown-list {
  transform: scale(1, 1);
  transition-delay: 0s;
}
.multi-checkbox-dropdown.on .dropdown-list .dropdown-option {
  opacity: 1;
  transition-delay: 0.2s;
}
.multi-checkbox-dropdown.on .dropdown-label:before {
  content: "▲";
}
.multi-checkbox-dropdown [type=checkbox] {
  position: relative;
  top: -1px;
  margin-right: 4px;
}
