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;
}

label {
    font-weight: 500;
}

.nav-link {
    font-weight: 500;
}

/* type selector for radio buttons */
input[type="radio"] {
    margin-left: 10px; /* applies spacing to the left of the circle */
    margin-right: 3px; /* applies spacing between the circle and text */
}

/* type selector for checkboxes */
input[type="checkbox"] {
    margin-left: 10px; /* applies spacing to the left of the checkbox*/
    margin-right: 3px; /* applies spacing between the checkbox and text */
    width: 15px;
    height: 15px;
    vertical-align: middle;
    position: relative;
    top: -1px;
}
