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 #11a7b5;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    background-color: #f0f8ff;
}
@page {
    size: landscape;
}

a {
    text-decoration: none;
    color: #11a7b5;
}

.btn-download {
    background-color: #11a7b5;
    color: white;
}

.ocean-logo {
    background-color: #343a40;
}
.ocean-logo img {
    width: 160px;
}

.container {
    max-width: 968px;
}

.content {
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #eee;
}

footer {
    font-size: 0.75em;
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: #3b4348;
        color: #fff;
    }
    .content {
        background-color: #444a50;
        border-color: #555;
    }
    footer.text-muted {
        color: #9ca5ad !important;
    }
}

.loader {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.loader::before {
    content: "Please wait, this may take a few moments...";
    position: absolute;
    top: calc(50vh - 60px);
    left: 0;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

/* Loader spinner from https://css-loaders.com/spinner/ */
.loader.spinner::after {
    content: "";
    position: absolute;
    width: 50px;
    padding: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #11a7b5;
    --_m: conic-gradient(#0000 10%,#000), linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
    mask: var(--_m);
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
    animation: loader 1s infinite linear;
    left: calc(50vw - 25px);
    top: calc(50vh - 25px);
    z-index: 100;
}

.loader.bar::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 40px;
    background: transparent;
    border: 1px solid #fff;
    border-radius: 4px;
    left: calc(50vw - 100px);
    top: calc(50vh - 20px);
    z-index: 101;
}

.bar-progress {
    position: absolute;
    width: 0;
    height:38px;
    background: #11a7b5;
    left: calc(50vw - 100px);
    top: calc(50vh - 19px);
    border-radius: 4px;
    z-index: 100;
}

.loader-overlay {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(20,20,20, 0.9);
    z-index: 99;
    backdrop-filter: blur(4px);
}

@keyframes loader {
    to {
        transform: rotate(1turn)
    }
}
