/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
  color: #0366d6;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}

body {
  /* Margin bottom by footer height */
  margin-bottom: 60px;
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px; /* Vertically center the text there */
}
.fab-container {
    position: fixed;
    bottom: 60px; /* <- no space before px */
    right: 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    z-index: 2147483647;
    /* Sizing variables */
    --fab-btn: 52px; /* button diameter */
    --fab-ico: 20px; /* icon size */
}

/* Each item row */
.fab-item {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
    text-decoration: none;
    overflow: hidden;
    min-height: var(--fab-btn);
    transition: transform .2s ease, box-shadow .2s ease;
}

    .fab-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0,0,0,.18);
    }

/* Icon bubble */
.fab-icon {
    width: var(--fab-btn);
    height: var(--fab-btn);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 0; /* prevent global font-size leaks */
    line-height: 1;
}
    /* Works for <i> (FA) and inline <svg> */
    .fab-icon i,
    .fab-icon svg {
        width: var(--fab-ico);
        height: var(--fab-ico);
        display: block;
        font-size: var(--fab-ico); /* for FA <i> */
        line-height: 1;
    }

/* Label */
.fab-label {
    background: #fff;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    padding: 0 12px;
    white-space: nowrap;
}

/* Desktop compact & mobile tweaks */
@media (min-width: 992px) {
    .fab-container

{
    --fab-btn: clamp(44px, 4vw, 56px);
    --fab-ico: clamp(18px, 1.6vw, 22px);
}

.fab-label {
    font-size: 15px;
}

}

@media (max-width: 575.98px) {
    .fab-container

{
    --fab-btn: 48px;
    --fab-ico: 18px;
}

.fab-label {
    font-size: 13px;
}
}