/* Original classes. please avoid changing */
.welcome-page .logo {
  width: 64px;
}

.icon-banner {
  width: 32px;
}

.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;
}

/* OPLZ custom css */
/*utility classes*/
.u-col-flex-wrap {
  display: flex;
  flex-wrap: wrap;
}

.u-flex-align-center {
  display: flex;
  align-items: center;
}

.u-margin-top {
  margin-top: 20px;
}

.u-margin-top-sm {
  margin-top: 15px;
}

.u-margin-top-xs {
  margin-top: 10px;
}

.u-margin-bottom {
  margin-bottom: 15px;
}

.u-margin-right {
  margin-right: 20px;
}

.u-padding-xl-x {
  padding-left: 30px;
  padding-right: 30px;
}

.u-overlay-block {
  height: auto;
  border: 1px solid transparent;
  border-radius: 10px;
  background-color: #F4F6F8;
  padding: 30px 15px;
}

.u-font-weight-600 {
  font-weight: 600;
}

/*shared main container*/
a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

label {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

button:focus {
  outline: none;
}

.main-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image: url("../images/login.png");
  background-repeat: no-repeat;
}

.header {
  background-color: white;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 0 80px;
}

.header__logo {
  height: 45px;
  margin: 20px 0;
}

.content {
  min-height: 67vh;
  padding: 80px 0;
  position: relative;
  width: 50%;
  display: flex;
  align-items: center;
}

/*body content left*/
.body-content-left {
  height: 100%;
  padding: 0 80px;
  flex-grow: 1;
}

.footer {
  position: relative;
  background-color: white;
  padding: 50px 80px;
  margin-top: auto;
}

.footer__logo {
  display: none;
}

.footer__text {
  font-weight: 600;
}

.content-mobile {
  display: none;
}

/*media-query-to-lg*/
@media only screen and (max-width: 992px) {
  .content {
    width: 100%;
  }
  .header {
    padding: 0 60px;
  }
  .main-container {
    background-size: cover;
  }
}
/*MOBILE PAGE*/
@media only screen and (max-width: 768px) {
  .main-container {
    min-height: 100%;
    height: 100%;
  }
  .header {
    padding: 0 30px;
  }
  .content {
    display: none;
  }
  .content-mobile {
    height: 100%;
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
  }
  .content-mobile-wrapper {
    margin: 0 20px;
    padding: 30px;
    display: block;
    background-color: #F4F6F8;
    border-radius: 5px;
  }
  .footer {
    display: none;
  }
}/*# sourceMappingURL=site.css.map */