﻿@font-face {
  font-family: 'Roboto';
  src: url('../fonts/roboto/Roboto-Regular.ttf') format('ttf');
  font-weight: normal;
  font-style: normal;
}

:root {
  --navy: #06185F;
  --blue: #235EDD;
  --off-white: #FFFFFA;
  --border-grey: rgba(128, 128, 128, 0.37);
  --light-cool-grey: #e7ecf0;
  --font-default: "Roboto", sans-serif;
  --light-blue: #76DCFD;
}

.text-navy {
  color: var(--navy) !important;
}

.text-light-blue {
  color: var(--light-blue);
}

.text-bold {
  font-weight: bold;
}

html {
  min-height: 100%;
}

p, h1, h2, h3, h4, label, li, button {
  font-family: var(--font-default) !important;
}

li {
  list-style: none;
  margin-left: -40px;
}

h4 {
  font-size: 24pt;
}

.login-page {
  margin-top: 3rem;
}

.navbar-brand {
  height: 60px;
}

.body-container {
  min-height: 90vh;
  margin-top: 56px;
  max-width: 100% !important;
  overflow-x: hidden !important;
}

.logged-out-page iframe {
  display: none;
  width: 0;
  height: 0;
}

.grants-page .card {
  margin-top: 20px;
  border-bottom: 1px solid var(--border-grey);
}
.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;
}

.nav-height {
  height: 56px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: var(--border-grey) !important;
}

.card-footer {
  background-color: var(--navy);
  padding-right: 2.5rem;
  padding-top: 1.75rem !important;
  padding-bottom: 1.75rem !important;
}

.registration .btn-next {
    padding-left: 5rem;
    padding-right: 5rem;
    border-radius: 1.25rem;
}

.inline-ToS {
    height: 35vh !important;
    font-size: 12pt !important;
    color: var(--navy);
    padding: 10px;
}

.check-label {
  font-weight: 650 !important;
  color: var(--navy) !important;
}

.modal-link {
  color: var(--blue) !important;
}

.modal-link:hover {
  color: var(--navy) !important;
  text-decoration: underline !important;
}


input[type="checkbox"] {
  /* Remove default checkbox appearance */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  /* Increase size and remove border radius */
  width: 20px;
  height: 20px;
  border-radius: 0;
  border: 1px solid var(--blue);
}

/* Styling when checkbox is checked */
input[type="checkbox"]:checked {
  /* Blue background */
  background-color: var(--navy);
  border: 1px solid var(--navy);
}

/* Styling for the check icon */
input[type="checkbox"]:checked::after {
  /* White check icon */
  content: "";
  display: inline-block;
  width: 12px;
  height: 6px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-left: 3px;
  margin-bottom: 7px;
}

/*
  HEADER STYLES
*/
.navbar {
  margin-bottom: 0;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: var(--light-cool-grey);
}

.nav-height {
  height: 38px;
}

.nav-link.dropdown-toggle {
  cursor: pointer;
}

.nav-link,
.dropdown-text {
  font-family: var(--font-default);
  font-weight: bold;
  color: var(--navy);
  cursor: pointer;
  font-size: 10pt !important;
  transition: all .3s ease;
}

.nav-link.active {
  color: var(--blue);
}

.nav-link:hover,
.dropdown-text:hover {
  color: var(--blue);
  background-color: transparent;
}

.dropdown-text {
  text-decoration: none;
}

.user-dropdown {
  padding: 0;
}

.navbar-nav {
  float: right;
}


/* 
  FOOTER STYLE 
*/
.footer {
  background-color: var(--navy);
}
.footer-text {
  color: white;
  font-weight: 500;
  text-decoration: none;
}

.translate {
  transform: translateY(3px);
}

@media screen and (max-width: 768px) {
  .body-container {
    min-height: 70vh;
  }
}
