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 {

}

a.responsive-button .icon {
    display: none;
}

a.responsive-button .text {
    display: inline;
}

.separator {
    display: inline;
}

@media (max-width: 600px) {
    a.responsive-button {
        text-decoration: none;
    }
    a.responsive-button .icon {
        display: inline;
        font-size: 150%;
    }

    .separator {
        display: none;
    }

    a.responsive-button .text {
        display: none;
    }
}

label.control-label {
    margin-top:20px;
    font-weight: bold;
}

[data-tooltip]:hover::after {
    display: block;
    position: absolute;
    content: attr(data-tooltip);
    border: 1px solid black;
    background: #fffff0;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.4);
    padding: 3px;
}

.spinner {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    border: 4px solid rgb(49, 124, 216);
    border-top: 4px solid #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.note {
    background-color: #fffff0;
    border: solid 1px #101000;
    padding: 12px;
    margin-bottom: 12px;
}