body,
p,
span,
div,
li {
  font-family: Calibri, Arial, sans-serif;
  font-size: 16px;
  color: #222526;
}

label,
div.alert-box {
  font-size: 16px;
}

ul,
ol,
li {
  list-style-position: inside;
}

h1 {
  color: #00305e;
  font-weight: 600;
  font-size: 2em;
}

h2 {
  color: #00305e;
  font-weight: 600;
  font-size: 1.5em;
}

hr {
  background-color: #00305e;
  height: 3px;
}

#content a {
  color: #0079c1;
}
#content a:hover {
  text-decoration: underline;
}

select {
  margin-bottom: 8px;
}

select.error {
  border-color: #c60f13;
  background-color: rgba(198, 15, 19, 0.1);
}

label.error {
  margin-top: -5px;
  margin-bottom: 15px;
  font-size: 14px;
}

.row {
  width: 1024px;
}

#top-banner {
  max-width: 1024px;
}

div#content {
  background: none repeat scroll 0 0 white;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border: 1px solid #dbdbdb;
  box-shadow: 0 1px 3px #dddddd;
  margin: 0 auto;
  padding: 20px 20px 20px 20px;
  text-align: left;
}

div#main-container {
  margin: 0 auto;
  max-width: 1024px;
}

h1.header {
  margin-top: 0;
  text-align: center;
}

#content a.landingLinks {
  align-items: center;
  background: #00305e;
  border-radius: 4px;
  box-shadow: 5px 5px 3px #ccc;
  color: #ffffff;
  cursor: "pointer";
  display: flex;
  flex-direction: column;
  font-size: 1.5em;
  font-weight: bold;
  justify-content: center;
  letter-spacing: 1px;
  line-height: 1.2em;
  margin: 20px 0;
  padding: 20px 20px;
  text-align: center;
}
#content a.landingLinks:hover {
  background: #51b848;
  text-decoration: none;
}
#content a.landingLinks span.smaller {
  font-size: 1em;
}

.landingLinks p.smaller {
  font-size: 16px;
  margin-top: 0.5em;
  margin-bottom: 0;
  color: #ffffff;
  line-height: 1.25em;
}
.landingLinks p.smaller:hover {
  color: #ffffff;
}

label a.smaller {
  font-size: 14px;
  padding-left: 20px;
}

.clear-after:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
  font-size: 0;
}

@media only screen and (max-width: 320px) {
  div#content {
    padding: 20px 0 20px 0;
  }
  div#main-container {
    border: none;
  }
}
/* NAV overrides */
.nav-item {
  width: 33.33%;
}

.nav-item a {
  background: #00305e;
  font-size: 16px;
  border-radius: 3px;
}

.nav-item > a:hover {
  background: #0079c1;
  color: #ffffff;
}

.nav-mobile {
  background-color: #00305e;
}

.nav-click:hover {
  background-color: #0079c1;
}

@media only screen and (min-width: 320px) and (max-width: 768px) {
  .nav {
    background: #00305e;
  }
}
.no-padding {
  padding: 0px;
}

/* avma breadcrumbs */
#breadcrumbs {
  font-size: 12px;
  margin: 0;
  padding-bottom: 5px;
  margin-bottom: 10px;
  color: #999;
  font-family: Arial, Helvetica, sans-serif;
}

#breadcrumbs strong {
  color: #777;
}

#breadcrumbs a {
  font-weight: normal;
  color: #228cc4;
}

#breadcrumbs a:hover {
  text-decoration: underline;
}

input[type=button],
input[type=submit],
input[type=reset],
button,
#content a.button {
  color: #ffffff;
  background: #00305e;
  box-shadow: 0 3px 0 #00264b;
  font-size: 16px;
  border-radius: 3px;
  font-weight: 700;
  line-height: 1;
  margin: 5px 0 5px 0;
  padding: 10px 20px 8px;
  text-align: center;
  transition: background-color 0.15s ease-in-out;
  border: none;
  cursor: pointer;
}

input[type=button]:hover,
input[type=submit]:hover,
input[type=reset]:hover,
button:hover,
#content a.button:hover {
  background: #33597e;
  box-shadow: 0 3px 0 #002e59;
  text-decoration: none !important;
  cursor: pointer;
}

#footerRight {
  text-align: right;
}

@media (max-width: 767px) {
  #footerRight {
    text-align: left;
    padding-top: 20px;
    margin-left: 10px;
  }
  .mobileHide {
    display: none;
  }
}
.input-feedback {
  margin-bottom: 20px;
}
.input-feedback span {
  color: #cc0000;
  font-style: italic;
}

/* spinner */
#loaderWrap {
  /* The div that shows/hides. */
  display: none; /* starts out hidden */
  z-index: 40001; /* High z-index to ensure it appears above all content */
}

.loaderOverlay {
  /* Shades out background when selector is active */
  position: absolute;
  width: 100%;
  height: 525px;
  z-index: 40001;
}

.vertical-offset {
  /* Fixed position to provide the vertical offset */
  position: absolute;
  top: 34%;
  width: 100%;
  z-index: 40002; /* ensures box appears above overlay */
}

.loaderBox {
  /* The actual box, centered in the fixed-position div */
  max-width: 550px; /* Whatever width you want the box to be */
  position: relative;
  margin: 0 auto; /* Everything below is just visual styling */
  padding: 20px 20px 0 20px;
}

/* loading spinner */
.loader {
  margin: auto;
  border: 20px solid #eaf0f6; /*circle background*/
  border-radius: 50%;
  border-top: 20px solid #51b848; /*spinning color*/
  width: 200px;
  height: 200px;
  animation: spinner 4s linear infinite;
}

@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.or-text {
  text-align: center;
  padding-top: 50px;
  font-weight: bold;
}

@media only screen and (max-width: 768px) {
  .or-text {
    padding-top: 0px;
  }
}
