html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

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

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.pointer, .cursor-pointer {
    cursor: pointer;
}

.hover:hover {
    background-color: #888;
}

*:focus {
    outline: none;
}

.form-check-input:checked {
    background-color: #FEC107;
    border-color: #FEC107;
}

.nav-link {
    color: var(--bs-dark);
}

/**
 * Remove focus styles for non-keyboard focus.
 */
:focus:not(:focus-visible) {
    outline: 0;
    box-shadow: none;
}

/**
 * Cross-browser styles for explicit focus via 
 * keyboard-based (eg Tab) navigation or the
 * .focus-visible utility class.
 */
:focus,
.focus-visible:focus:not(:focus-visible) {
    outline: 0;
    box-shadow: 0 0 0 .2rem #fff, 0 0 0 .35rem #069;
}

.pulse {
    box-shadow: 0 0 0 0 rgba(66, 212, 105, 0.4);
    -moz-animation: pulse 2s infinite;
    -webkit-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(66, 212, 105, 1);
    }

    70% {
        box-shadow: 0 0 0 5px rgba(66, 212, 105, 0);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(66, 212, 105, 0);
    }
}