﻿:root {
  --body-font-family: 'Lato', sans-serif;
  --heading-font-family: 'Barlow', sans-serif;
  --bs-body-font-family: var(--body-font-family);
  --card-shadow: 0 0 0 1px rgba(0, 0, 0, 0.03), 0 1rem 1rem -.5rem rgba(0,0,0,.1);
}
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font-family);
}
/*------------------------------------------------------------------
    Button
/------------------------------------------------------------------*/
.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}
/*------------------------------------------------------------------
    Form
/------------------------------------------------------------------*/
.form-floating > .form-control,
.form-floating > .form-control-plaintext,
.form-floating > .form-select {
  height: calc(2.875rem + calc(var(--bs-border-width) * 2));
  min-height: calc(2.875rem + calc(var(--bs-border-width) * 2));
  line-height: 1.375;
}
.form-floating > .form-control,
.form-floating > .form-control-plaintext {
  padding: 0.75rem 0.75rem;
}
.form-floating > .form-control:focus,
.form-floating > .form-control-plaintext:focus,
.form-floating > .form-control:not(:placeholder-shown),
.form-floating > .form-control-plaintext:not(:placeholder-shown) {
  padding-top: 1.125rem;
  padding-bottom: 0.375rem;
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control-plaintext:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-control-plaintext:not(:placeholder-shown) ~ label {
  transform: scale(0.85) translateY(-0.625rem) translateX(0.15rem);
}
.form-floating > .form-control:focus ~ label:after,
.form-floating > .form-control-plaintext:focus ~ label:after,
.form-floating > .form-control:not(:placeholder-shown) ~ label:after,
.form-floating > .form-control-plaintext:not(:placeholder-shown) ~ label:after {
  background: transparent;
  height: 1.375em;
  inset: 0.625rem 0.375rem;
}
.form-floating > label {
  padding: 0.75rem 0.75rem;
  line-height: 1.375;
}
/*------------------------------------------------------------------
    Layout
/------------------------------------------------------------------*/
html {
  position: relative;
  min-height: 100%;
}
body {
  margin-left: 6rem;
  background: #f8f8f8;
}
header {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6rem;
  padding: 0.5rem;
  overflow-x: hidden;
  overflow-y: auto;
  background: #87b5e1 url(../img/sync-bg-blue.svg) no-repeat center bottom;
  background-size: contain;
  font-family: var(--heading-font-family);
  font-weight: 500;
  font-size: 12px;
  text-align: center;
  color: #fff;
}
header hr {
  margin: 1rem 0;
  border-top: 1px solid #fff;
}
header a {
  color: #fff;
  transition: color 0.3s;
}
header a:hover {
  color: #f8f670;
}
.header-link {
  display: block;
  text-decoration: none;
  background: transparent;
  border: none;
  color: #fff;
  width: 100%;
  transition: color 0.3s;
}
.header-link:hover {
  color: #f8f670;
}
.header-link + .header-link {
  margin-top: 1rem;
}
.header-link img {
  max-width: 2rem;
}
.header-link .fa-fw {
  display: block;
  width: 100%;
  font-size: 1.5rem;
}
.validation-summary-valid {
  display: none;
}
.validation-summary-errors.alert ul {
  margin-bottom: 0;
}
#SiteToast {
  z-index: 2000;
  cursor: default;
}
#SiteToast .toast {
  position: relative;
  width: 450px;
  border-radius: 0.5rem;
  --bs-toast-spacing: 0.5rem;
}
#SiteToast .toast-body {
  margin: auto 0;
  padding: 1rem 2rem 1rem 1rem;
  font-size: 14px;
}
#SiteToast .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0.5rem 0.5rem 0.5rem auto;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e");
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
}
#SiteToast .btn-copy {
  position: absolute;
  top: 0;
  right: 1.75rem;
  margin: 0.5rem 0.5rem 0.5rem auto;
  background: transparent;
  color: #fff;
  border: none;
  opacity: 0;
}
#SiteToast .toast:hover .btn-copy,
#SiteToast .toast:hover .btn-close {
  opacity: 0.5;
}
#SiteToast .toast .btn-copy:hover,
#SiteToast .toast .btn-close:hover {
  opacity: 1;
}