
.quicksand-<uniquifier> {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

body {
  font-weight: 200 !important;
}
/* custom focus style - needs work */
:focus, .col:focus-within {
  outline: 1px dotted #212121 !important;
  outline-offset: 1px !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
a.skip-to-content-link {
  position: absolute;
  background-color: #fff;
  z-index: 100;
  -webkit-transform: translateY(-200%);
  transform: translateY(-200%);
  padding: 4px 8px;
}
header a {
  display: block;
}
a.skip-to-content-link:focus {
  position: absolute;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}
img#logo{
  width: 100% !important;
}
nav#main, footer#footer {
  background-color: #3573b9;
  /*margin: 0px 24px !important;*/
  padding: 0px !important;
}
nav#main a.nav-link, footer#footer p, footer#footer a {
  color: #FFF !important;
}
nav#main .dropdown-toggle::after {
color:#FFF;
}
.navbar-toggler {
  border: none !important;
}

h1#maincontent {
  font-weight: 200 !important;
  line-height: 1em !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 200 !important;
}
.dropdown-toggle {
   -webkit-box-shadow: none !important;
            box-shadow: none !important;
}
nav.navbar.navbar-expand-lg.navbar-light {
    padding: 0.5rem 0.75rem 1rem 0.75rem !important;
}
.dropdown-item.active, .dropdown-item:active {
  color: var(--bs-dropdown-link-color) !important;
  background-color: white !important;
}

/*summernote override*/
.note-frame {
    font-family: "Montserrat", sans-serif !important;
}
.note-editable {
  background: #fff !important;
  margin: 2px !important;
}
.note-editor.note-airframe .note-status-output,
.note-editor.note-frame .note-status-output {
  padding: 0 0 0 10px !important;
}
.note-editable:focus {
  outline-offset: 0px !important;
  outline: 5px auto Highlight !important;
  outline: 5px auto -webkit-focus-ring-color !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.note-modal-title,
.note-form-label {
  color: #212529 !important;
  font-weight: 200 !important;
}
.note-modal-footer {
  height: auto;
  text-align: right !important;
  margin-bottom: 10px;
}
.close {
  opacity: 1 !important;
}
.note-input {
  width: 99% !important;
  margin: 1px !important;
}
.note-btn {
  height: 33px !important;
}
.note-button,
.note-btn.disabled,
.note-btn[disabled],
fieldset[disabled] .note-btn,
.note-btn-primary {
  border-radius: 0 !important;
  border: none !important;
}
.note-editor .note-toolbar .note-dropdown-menu,
.note-popover .popover-content .note-dropdown-menu {
  min-width: 180px !important;
}
/*custom nav*/
.nav-link {
  display: inline-block !important;
}
.card-img, .card-img-top {
    
}

@media screen and (max-width: 768px) {
  .dropdown-menu {
    padding: 0 !important;
    border: 0 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
  }
  .dropdown-item {
    padding: 0.25rem 0rem !important;
  }
}

/*custom nav animations*/
@media (min-width: 768px) {
  .animate {
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
  }
}
@media (prefers-reduced-motion) {
  .animate {
    -webkit-animation: none;
    animation: none;
  }
}

@keyframes slideIn {
  0% {
    -webkit-transform: translateY(1rem);
    transform: translateY(1rem);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0rem);
    transform: translateY(0rem);
    opacity: 1;
  }

  0% {
    -webkit-transform: translateY(1rem);
    transform: translateY(1rem);
    opacity: 0;
  }
}

@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: transform;
    -webkit-opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 1;
  }
}

.slideIn {
  -webkit-animation-name: slideIn;
  animation-name: slideIn;
}
