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;
}

.question {
    padding: 0% 0% 2% 2%;
    font-weight: bold;
}

.options {
    position: relative;
    padding-left: 25px;
}

#options {
    padding: 0% 0% 0% 2%;
}

    #options label {
        display: block;
        margin-bottom: 13px;
        font-size: 14px;
        cursor: pointer;
    }

.options input {
    opacity: 0;
}

.checkmark {
    position: absolute;
    left: 0;
    height: 25px;
    width: 25px;
    border: 1px solid #0d6efd;
    border-radius: 50%;
}

.options input:checked ~ .checkmark:after {
    display: block;
}

.options .checkmark:after {
    content: "";
    width: 10px;
    height: 10px;
    display: block;
    background: white;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%,-50%) scale(0);
    transition: 300ms ease-in-out 0s;
}

.options input[type="radio"]:checked ~ .checkmark {
    background: #0d6efd;
    transition: 300ms ease-in-out 0s;
}

    .options input[type="radio"]:checked ~ .checkmark:after {
        transform: translate(-50%,-50%) scale(1);
    }