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;
}

.bg-pink {
    background-color: rgba(214, 28, 100, 1) !important;
}
.bg-pink-subtle {
    background-color: rgba(214, 28, 100, 0.02) !important;
}
.border-pink {
    border-color: rgba(214, 28, 100, 1) !important;
}

.bg-blue {
    background-color: rgba(20, 25, 105, 1) !important;
}
.bg-blue-subtle {
    background-color: rgba(20, 25, 105, 0.02) !important;
}
.border-blue {
    border-color: rgba(20, 25, 105, 1) !important;
}

.bg-green {
    background-color: rgba(34, 68, 48, 1) !important;
}

.bg-green-subtle {
    background-color: rgba(34, 68, 48, 0.02) !important;
}

.border-green {
    border-color: rgba(34, 68, 48, 1) !important;
}

.foldud-link::after {
    content: url('../chevron-up.svg');
    display: inline-block;
    margin-left: 5px;
}
.foldud-link.collapsed::after {
    content: url('../chevron-down.svg');
    display: inline-block;
    margin-left: 5px;
}