body {
  margin: 0;
}

.App {
  text-align: center;
}

.App-logo {
  height: 40vmin;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .App-logo {
    animation: App-logo-spin infinite 20s linear;
  }
}

.App-header {
  background-color: #282c34;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: calc(10px + 2vmin);
  color: white;
}

.App-link {
  color: #61dafb;
}

@keyframes App-logo-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.subtitle{
  width: 100%;
  font-size: 21px;
  text-align: left
}

.subtitle-content{
  margin-left: 25px;
}

.grant-requests-main-table{
  min-width: 1000px;
}


.grant-request-form{
  /* display: flex;
  flex-direction: column;
  align-items: stretch; */
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px 5px;
}

.grant-request-form .MuiFormControl-root{
  /* margin: 20px; */
  width: calc(50% - 5px);
}

.grant-request-form .title{
  width: 100%;
  text-align: left;
  margin-top: 20px;
}
@keyframes react-file-manager_fadeout {
  from {
    opacity: 1;
    transform: scale(1); }
  to {
    opacity: 0;
    transform: scale(1.1); } }

@keyframes react-file-manager_popup {
  from {
    opacity: 0;
    transform: scale(1.075); }
  25% {
    opacity: 1;
    transform: scale(0.95); }
  50% {
    transform: scale(1.025); }
  to {
    transform: scale(1); } }

@keyframes react-file-manager_rotate {
  100% {
    transform: rotate(1turn); } }

@keyframes react-file-manager_fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes react-file-manager_uploadingBackgroundAnim {
  0% {
    background-position: 50% 0%; }
  50% {
    background-position: 50% 100%; }
  100% {
    background-position: 50% 0%; } }

@keyframes react-file-manager_audioBtnStopAnim {
  0% {
    color: #fff; }
  50% {
    color: #f4645f; }
  100% {
    color: #fff; } }

.react-file-manager .drop-zone {
  border: 1px solid #bbb;
  border-radius: 4px;
  color: #bbb;
  height: 500px;
  margin: auto;
  max-width: 500px;
  min-width: 270px;
  outline: none;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  text-align: center;
  transition: all 0.15s ease-in-out; }
  .react-file-manager .drop-zone:focus {
    background: #def;
    border: 1px solid #303f9f; }

.react-file-manager .drop-zone-container {
  min-height: calc(100% - 15px);
  position: relative;
  width: auto; }

.react-file-manager .drop-zone-disabled {
  background: #eee; }
  .react-file-manager .drop-zone-disabled:focus {
    background: #eee;
    border: 1px solid #bbb; }

.react-file-manager .drop-zone-active-accept {
  background: #acf;
  border: 1px dashed #303f9f;
  color: #333; }

.react-file-manager .drop-zone-active-reject {
  background: #faa;
  border: 1px solid #f4645f;
  color: #f4645f; }

.react-file-manager .drag-drop-layer {
  background: #fff9;
  bottom: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 999; }

.react-file-manager .drag-drop-title {
  color: #777;
  font-size: 20px;
  font-weight: bold;
  padding: 0 30px;
  pointer-events: none;
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
  user-select: none;
  white-space: pre-line; }

.react-file-manager .drag-drop-text {
  font-size: 20px;
  font-weight: bold;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  user-select: none;
  white-space: pre-line;
  width: 90%; }

.react-file-manager .drop-zone-header {
  align-content: stretch;
  align-items: center;
  background: linear-gradient(#ccc, #eee);
  box-shadow: 0 0 3px 1px #777;
  color: #333;
  display: grid;
  font-family: Consolas, 'Times New Roman', Times, serif;
  font-size: 16px;
  gap: 0 4px;
  grid-auto-flow: row;
  grid-template-areas: '. . . .';
  grid-template-columns: 64px minmax(75px, 1fr) minmax(50px, 100px) 42px;
  grid-template-rows: auto;
  height: 20px;
  justify-content: center;
  margin-bottom: 7px;
  padding: 0 10px;
  position: sticky;
  top: 0;
  user-select: none;
  z-index: 1; }
  .react-file-manager .drop-zone-header > div {
    border-left: 1px solid #888;
    border-right: 1px solid #888;
    cursor: pointer;
    display: flex;
    height: 100%;
    justify-content: center;
    position: relative;
    transition: color 0.15s; }
    .react-file-manager .drop-zone-header > div:hover {
      color: #5597ff; }
  .react-file-manager .drop-zone-header > div:nth-child(1) {
    border-left: none; }
  .react-file-manager .drop-zone-header > div:nth-child(4) {
    border-right: none; }

.react-file-manager .drop-zone-footer {
  background: #ccc7;
  bottom: 0;
  color: transparent;
  cursor: pointer;
  font-size: 12px;
  height: 15px;
  line-height: 16px;
  position: sticky;
  transition: all 0.15s;
  user-select: none;
  width: 100%; }
  .react-file-manager .drop-zone-footer:hover {
    background: #cccc;
    color: #333; }

.react-file-manager .loading-icon {
  animation: react-file-manager_rotate 1s linear infinite;
  fill: #777;
  height: 48px;
  width: 48px; }

.react-file-manager .menu {
  background: #eee;
  border: solid 1px #eee;
  box-shadow: 0 0 12px #aaa;
  min-height: 25px;
  min-width: 100px;
  position: fixed !important;
  z-index: 999999; }

.react-file-manager .menu-visible {
  animation: 0.5s 1 react-file-manager_popup; }

.react-file-manager .menu-hidden {
  animation: 0.3s 1 forwards react-file-manager_fadeout; }

.react-file-manager .menu-layer {
  background: #fff7;
  height: 100% !important;
  left: 0 !important;
  opacity: 0;
  position: fixed !important;
  top: 0 !important;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  width: 100% !important;
  z-index: 99999; }

.react-file-manager .menu-layer-visible {
  opacity: 1;
  visibility: visible !important; }

.react-file-manager .menu-item {
  background: white;
  border: solid 1px #eee;
  color: #333;
  cursor: pointer;
  display: grid;
  font-size: 17px;
  grid-template-areas: '. .';
  grid-template-columns: 35px 1fr;
  grid-template-rows: 1fr;
  margin: 1px;
  padding: 5px;
  transition: all 0.1s ease-in-out; }
  .react-file-manager .menu-item:focus {
    background: #5598ff;
    color: white;
    fill: white;
    outline: none; }
  .react-file-manager .menu-item:hover {
    background: #ddd; }
  .react-file-manager .menu-item:hover:focus {
    background: #7ae; }

.react-file-manager .menu-item-icon {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center; }

.react-file-manager .menu-item-name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 2px;
  padding: 0 10px; }

.react-file-manager .menu-item-name-join {
  grid-column: 1 / 3;
  padding: 0 10px; }

.react-file-manager .icon-button, .react-file-manager .icon-button-pos, .react-file-manager .icon-button-neg {
  border: 1px solid #aaa;
  border-radius: 3px;
  box-shadow: 1px 1px 3px 0 #555;
  height: 34px;
  outline: none;
  transition: all 0.2s ease-in-out;
  width: 40px; }
  .react-file-manager .icon-button:focus, .react-file-manager .icon-button-pos:focus, .react-file-manager .icon-button-neg:focus {
    outline: auto #3f52b5; }
  .react-file-manager .icon-button:hover, .react-file-manager .icon-button-pos:hover, .react-file-manager .icon-button-neg:hover {
    background: #fff; }
  .react-file-manager .icon-button:disabled, .react-file-manager .icon-button-pos:disabled, .react-file-manager .icon-button-neg:disabled {
    background: inherit;
    box-shadow: none;
    fill: gray; }
  .react-file-manager .icon-button .svg-icon, .react-file-manager .icon-button-pos .svg-icon, .react-file-manager .icon-button-neg .svg-icon {
    margin-top: 2px; }

.react-file-manager .icon-button-pos, .react-file-manager .icon-button-neg {
  height: 28px;
  margin: 1px; }
  .react-file-manager .icon-button-pos .svg-icon, .react-file-manager .icon-button-neg .svg-icon {
    fill: yellowgreen;
    margin-top: -1px; }

.react-file-manager .icon-button-neg .svg-icon {
  fill: #f4645f; }

.react-file-manager .svg-icon {
  height: 24px;
  width: 24px; }

.react-file-manager .display-item {
  animation: 0.5s 1 normal react-file-manager_popup;
  background: #3f52b5;
  border-radius: 4px;
  box-shadow: 1px 1px 3px 0 #777;
  color: white;
  margin: 5px 4px;
  min-height: 74px;
  position: relative;
  transition: all 0.3s ease-in-out; }

.react-file-manager .display-item-initial {
  border: 1px solid #333; }

.react-file-manager .display-item-uploading {
  animation: react-file-manager_uploadingBackgroundAnim 2.5s ease infinite;
  background: linear-gradient(180deg, #3f52b5, #5598ff);
  background-size: 100% 250%; }

.react-file-manager .display-item-uploaded {
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" fill="rgb(90,170,255)" width="500" height="100" viewBox="0 0 24 24"><path d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.61 5.64 5.36 8.04 2.35 8.36 0 10.9 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4h2c0-2.76-1.86-5.08-4.4-5.78C8.61 6.88 10.2 6 12 6c3.03 0 5.5 2.47 5.5 5.5v.5H19c1.65 0 3 1.35 3 3s-1.35 3-3 3z"/></svg>');
  background-position: center;
  background-size: cover;
  background: #5598ff;
  border: 1px solid #777; }

.react-file-manager .display-item-upload-error {
  background: #f4645f;
  border: 1px solid #a55; }

.react-file-manager .display-item-del-error {
  background: #f4645f;
  border: 1px solid #a55;
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" fill="rgb(250,120,120)" width="500" height="100" viewBox="0 0 24 24"><path d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.61 5.64 5.36 8.04 2.35 8.36 0 10.9 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4h2c0-2.76-1.86-5.08-4.4-5.78C8.61 6.88 10.2 6 12 6c3.03 0 5.5 2.47 5.5 5.5v.5H19c1.65 0 3 1.35 3 3s-1.35 3-3 3z"/></svg>');
  background-position: center;
  background-size: cover; }

.react-file-manager .display-item-edit-mode {
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" fill="rgb(70,100,200)" width="500" height="100" viewBox="0 0 24 24"><path d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.61 5.64 5.36 8.04 2.35 8.36 0 10.9 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4h2c0-2.76-1.86-5.08-4.4-5.78C8.61 6.88 10.2 6 12 6c3.03 0 5.5 2.47 5.5 5.5v.5H19c1.65 0 3 1.35 3 3s-1.35 3-3 3z"/></svg>');
  background-position: center;
  background-size: cover;
  background: #3f52b5;
  border: 1px solid #777; }

.react-file-manager .display-item-disabled {
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" fill="rgb(210,210,210)" width="500" height="100" viewBox="0 0 24 24"><path d="M19.35 10.04C18.67 6.59 15.64 4 12 4 9.11 4 6.61 5.64 5.36 8.04 2.35 8.36 0 10.9 0 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4h2c0-2.76-1.86-5.08-4.4-5.78C8.61 6.88 10.2 6 12 6c3.03 0 5.5 2.47 5.5 5.5v.5H19c1.65 0 3 1.35 3 3s-1.35 3-3 3z"/></svg>');
  background-position: center;
  background-size: cover;
  background: #ddd;
  border: 1px solid #aaa;
  color: rgba(0, 0, 0, 0.4); }

.react-file-manager .read-only-label {
  bottom: 6px;
  cursor: default;
  height: 15px;
  left: 57px;
  position: absolute;
  width: 15px;
  z-index: 1; }
  .react-file-manager .read-only-label > * {
    fill: #ffc200;
    transform: scale(0.65); }

.react-file-manager .progress {
  background: #afffaf;
  border-radius: 4px;
  height: 3px;
  left: 0;
  margin: 1px 3px;
  position: absolute;
  transition: width 0.5s ease-in-out;
  width: 0%; }

.react-file-manager .grid {
  align-content: stretch;
  align-items: center;
  display: grid;
  gap: 0 4px;
  grid-auto-flow: row;
  grid-template-areas: '. . . .';
  grid-template-columns: 64px minmax(75px, 1fr) minmax(50px, 100px) 42px;
  grid-template-rows: auto;
  height: 64px;
  justify-content: center;
  padding: 5px; }
  .react-file-manager .grid > * {
    align-items: center;
    display: grid;
    justify-content: center;
    position: relative; }
  .react-file-manager .grid > *:nth-child(2) {
    -webkit-box-orient: vertical;
    display: block;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-align: left; }

.react-file-manager .type-wrapper {
  border: 1px solid #fff;
  border-radius: 4px;
  height: 62px;
  width: 62px; }
  .react-file-manager .type-wrapper img {
    border-radius: 2px;
    max-height: 60px;
    max-width: 60px;
    width: 100%; }
  .react-file-manager .type-wrapper > div {
    display: flex;
    justify-content: center; }

.react-file-manager .type-img {
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
  padding-right: 4px;
  word-break: break-word;
  font-size: 11px;
  left: 3px;
  position: absolute;
  top: 1px; }

.react-file-manager .type {
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
  padding-right: 4px;
  word-break: break-word;
  font-size: 13px;
  padding-left: 3px; }

.react-file-manager .duration {
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
  bottom: 3px;
  font-size: 12px;
  height: 12px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%); }

.react-file-manager .type-audio {
  background: #fff5;
  border-radius: 50%;
  cursor: pointer;
  height: 32px;
  margin-top: 14px;
  position: relative;
  width: 32px; }

.react-file-manager .type-audio-btn {
  color: #fff;
  cursor: inherit;
  font-family: monospace;
  font-size: 21px;
  left: 11.5px;
  position: absolute;
  top: 2.5px; }

.react-file-manager .type-audio-btn-stop {
  animation: react-file-manager_audioBtnStopAnim 1.5s ease infinite;
  font-size: 17px;
  left: 9px;
  top: 5.75px; }

.react-file-manager .type-audio-duration {
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
  font-size: 12px;
  margin-top: 1px; }

.react-file-manager .text-field {
  background: transparent;
  border: none;
  border-bottom: 2px solid #9cf;
  color: white;
  font: 16px 'Times New Roman';
  transition: all 0.3s ease-in-out;
  width: inherit; }
  .react-file-manager .text-field:focus-visible {
    border-bottom: 2px solid white;
    outline: none; }

.react-file-manager .image-lazy-loader {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 30px;
  min-width: 5px; }

.react-file-manager .image-lazy-loader .none {
  display: none; }

.react-file-manager .image-lazy-loader .visible {
  animation: react-file-manager_fadeIn 0.5s ease-in-out;
  display: flex; }

.react-file-manager .image-loading-icon {
  animation: react-file-manager_rotate 1s linear infinite;
  fill: #777;
  height: 36px;
  width: 36px; }

.react-file-manager .fade-in-anim {
  animation: react-file-manager_fadeIn 0.5s ease-in-out; }

/*# sourceMappingURL=app.css.map*/