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;
}

.margined-10 {
    margin: 10px;
}

.margined-left-10 {
    margin-left: 10px;
}

.margined-left-20 {
    margin-left: 20px;
}

.margined-right-20 {
    margin-right: 20px;
}

.padded-right-10 {
    padding-right: 10px;
}

.padded-left-20 {
    padding-left: 20px;
}

.padded-left-10 {
    padding-left: 10px;
}

.margined-bottom-20 {
    margin-bottom: 20px;
}

.margined-bottom-45 {
    margin-bottom: 45px;
}

.padded-10 {
    padding: 10px;
}

.start-90 {
    left: 90% !important;
}

.full-width {
    width: 100%;
}

.full-height {
    height: 100%;
}

.full-height-modal {
    height: 90vh;
}

.full-height-modal .modal-dialog {
    height: 100%;
}

.full-height-modal .modal-content {
    height: calc(100% - 1.75em);
}

.full-height-modal .modal-body {
    max-height: 75vh;
    overflow-y: auto;
}

.hidden {
    display: none;
}

.container {
    margin-left: 0px !important;
    margin-right: 0px !important;
}

.red {
    color: #FF0000;
}

.text-right {
    text-align: end;
}

.clickable {
    cursor: pointer;
}

@media (min-width: 1401px) {
    .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 100%;
    }
}

@keyframes pulse-20pct {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes glow-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.7);
    }

    100% {
        box-shadow: 0 0 0 10px rgba(52, 152, 219, 0);
    }
}

@keyframes font-bold-red {
    0%, 100% {
        font-weight: normal;
    }

    50% {
        font-weight: bold;
        color: red;
    }
}

.animation-pulse-20pct-4 {
    animation: pulse-20pct 2s
}

.animation-pulseglow-blue {
    animation: glow-blue 0.75s
}

.animation-pulsebold-red {
    animation: font-bold-red 0.75s
}

button.btn-dangertext {
    color: #FF0000;
}

.centered {
    vertical-align: middle;
    text-align: center;
}