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;
}
.error-message {
    width: 100%;
    border: none;
    color: red;
}
.question-message {
    width: 100%;
    border: none;
    color: black;
    text-align: center;
    font-weight: bold;
}

.spinner-message {
    width: 100%;
    border: none;
    color: red;
    text-align: center;
}

.input-separator {
    background-color: white;
    border: hidden;
}
.required-value {
    color: red;
}

.ocean-logo-color {
    color: #10D0CA;
}
video {
    object-fit: initial;
    height: 400px;
}
.blh-25rem {
    line-height: 2.5rem;
}
.processingSpinner {
    margin: auto;
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #10D0CA; /* Ocean Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}