﻿:root {
  --blueOrisis: #0c3571;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 13px;
  overflow: hidden;
  -webkit-print-color-adjust: exact !important;
  print-color-adjust: exact !important;
}
body {
  font-family: "Montserrat", Helvetica, Arial, serif !important;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.45;
  color: #6e6b7b;
  margin: 0;
  padding: 0;
  background-color: #f8f8f8;
  height: 100vh !important;
}
* {
  padding: 0;
  margin: 0;
}

a {
  color: #0c3571;
  text-decoration: none;
  font-style: italic;
}

.card {
  border: transparent;
  border-radius: 0.5rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  background-color: #ffffff;
  padding: 20px;
  position: relative;
  max-width: 450px;
  width: 90%;
}

@media (max-width: 768px) {
  .card {
    max-width: 90%;
    min-width: 90%;
  }
}

.circle::after {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../assets/circle.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 550px;
  height: 550px;
  top: 0;
  left: 0;
  transform: translate(-30%, -30%);
  z-index: -1;
}

.half-circle::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../assets/half-circle.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 330px;
  height: 330px;
  bottom: 0;
  right: 0;
  transform: translate(30%, 75%);
  z-index: -1;
}

.btn-primary {
  color: #fff;
  background-color: var(--blueOrisis);
  border-color: var(--blueOrisis); /*set the color you want here*/
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: var(--blueOrisis);
  border-color: var(--blueOrisis); /*set the color you want here*/
}

.text-primary {
  color: var(--blueOrisis) !important;
}

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

@import url("https://fonts.googleapis.com/css?family=Lato:400,700");

.blue-orisis-bg {
  background-color: var(--blueOrisis);
  color: #fff;
}

.btn-img {
  height: 25px;
}

.small-icon {
  width: 13px;
  height: 13px;
}

.medium-icon {
  width: 17px;
  height: 17px;
}

.divider {
  border-top: 1px solid #dbdddf;
}

.custom-bg:hover,
.custom-bg:hover {
  color: #828283;
  background-color: #c3dbff42;
  transition: all 0.3s ease-in-out;
}

.custom-bg {
  border: 1px solid #d5d8db;
  color: #828283;
  transition: all 0.3s ease-in-out;
}

.btn:focus {
  outline: none;
  box-shadow: none;
}

.custom-select {
  border: 1px solid #ced4da;
}

.btn-primary:disabled {
  background-color: #6c757d;
  border-color: #6c757d;
}

/* CODE INPUT SECTION */

.code {
  gap: 15px;
}

.code-input {
  width: 2.4rem;
  font-size: 1.9rem;
  text-align: center;
  border: 1px solid #ced4da;
  border-radius: 0.5rem;
  color: var(--blueOrisis);
}

input.code-input::-webkit-outer-spin-button,
input.code-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.code-input:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(12, 53, 113, 0.25);
}

.form-check-input {
  margin-top: 2px;
}
