.fade {
  transition: opacity 0.15s linear;
}

.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1.6rem;
  color: #4E4E4E;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.6rem;
}

.dropdown-menu-left {
  right: auto;
  left: 0;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}

.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}

.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}

.dropright .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}

.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}

.dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}

.dropleft .dropdown-toggle::after {
  display: none;
}

.dropleft .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}

.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-menu[x-placement^="top"],
.dropdown-menu[x-placement^="right"],
.dropdown-menu[x-placement^="bottom"],
.dropdown-menu[x-placement^="left"] {
  right: auto;
  bottom: auto;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #ECECEC;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #333;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: #262626;
  text-decoration: none;
  background-color: #F6F6F6;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #005F3B;
}

.dropdown-item.disabled,
.dropdown-item:disabled {
  color: #C7C7C7;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 1.4rem;
  color: #C7C7C7;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #333;
}

.modal-open {
  overflow: hidden;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}

.modal.show .modal-dialog {
  transform: none;
}

.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  display: flex;
  max-height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}

.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  flex-shrink: 0;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  content: "";
}

.modal-dialog-centered.modal-dialog-scrollable {
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}

.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.4rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #D5D3D3;
  border-top-left-radius: calc(0.4rem - 1px);
  border-top-right-radius: calc(0.4rem - 1px);
}

.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #D5D3D3;
  border-bottom-right-radius: calc(0.4rem - 1px);
  border-bottom-left-radius: calc(0.4rem - 1px);
}

.modal-footer > * {
  margin: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  z-index: 1;
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5%;
  color: #005F3B;
  text-align: center;
  opacity: 1;
  transition: opacity 0.15s ease;
}

.carousel-control-prev:hover,
.carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #005F3B;
  text-decoration: none;
  outline: 0;
  opacity: 0.5;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: no-repeat 50% / 100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg width='1em' height='1em' viewBox='0 0 16 16' fill='%23005F3B' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm9.5 8.5a.5.5 0 0 0 0-1H5.707l2.147-2.146a.5.5 0 1 0-.708-.708l-3 3a.5.5 0 0 0 0 .708l3 3a.5.5 0 0 0 .708-.708L5.707 8.5H11.5z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg width='1em' height='1em' viewBox='0 0 16 16' fill='%23005F3B' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm2.5 8.5a.5.5 0 0 1 0-1h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5z'/%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-right: 5%;
  margin-left: 5%;
  list-style: none;
}

.carousel-indicators li {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: .5;
  transition: opacity 0.6s ease;
}

.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #005F3B;
  text-align: center;
}

.w-20 {
  width: 20% !important;
}

.w-25 {
  width: 25% !important;
}

.w-30 {
  width: 30% !important;
}

.w-50 {
  width: 50% !important;
}

.w-70 {
  width: 70% !important;
}

.w-75 {
  width: 75% !important;
}

.w-80 {
  width: 80% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-20 {
  height: 20% !important;
}

.h-25 {
  height: 25% !important;
}

.h-30 {
  height: 30% !important;
}

.h-50 {
  height: 50% !important;
}

.h-70 {
  height: 70% !important;
}

.h-75 {
  height: 75% !important;
}

.h-80 {
  height: 80% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 1rem !important;
}

.mt-1,
.my-1 {
  margin-top: 1rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 1rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 1rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 1rem !important;
}

.m-2 {
  margin: 1.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 1.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 1.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 1.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 1.5rem !important;
}

.m-3 {
  margin: 2rem !important;
}

.mt-3,
.my-3 {
  margin-top: 2rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 2rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 2rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 2rem !important;
}

.m-4 {
  margin: 2.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 2.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 2.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 2.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 2.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 1rem !important;
}

.pt-1,
.py-1 {
  padding-top: 1rem !important;
}

.pr-1,
.px-1 {
  padding-right: 1rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 1rem !important;
}

.pl-1,
.px-1 {
  padding-left: 1rem !important;
}

.p-2 {
  padding: 1.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 1.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 1.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 1.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 1.5rem !important;
}

.p-3 {
  padding: 2rem !important;
}

.pt-3,
.py-3 {
  padding-top: 2rem !important;
}

.pr-3,
.px-3 {
  padding-right: 2rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 2rem !important;
}

.pl-3,
.px-3 {
  padding-left: 2rem !important;
}

.p-4 {
  padding: 2.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 2.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 2.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 2.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 2.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -1rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -1rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -1rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -1rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -1rem !important;
}

.m-n2 {
  margin: -1.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -1.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -1.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -1.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -1.5rem !important;
}

.m-n3 {
  margin: -2rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -2rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -2rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -2rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -2rem !important;
}

.m-n4 {
  margin: -2.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -2.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -2.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -2.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -2.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: 900 !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-blue {
  color: #007099 !important;
}

a.text-blue:hover,
a.text-blue:focus {
  color: #00384d !important;
}

.text-primary {
  color: #005F3B !important;
}

a.text-primary:hover,
a.text-primary:focus {
  color: #00130b !important;
}

.text-secondary {
  color: #C7C7C7 !important;
}

a.text-secondary:hover,
a.text-secondary:focus {
  color: #a1a1a1 !important;
}

.text-success {
  color: #4AA45C !important;
}

a.text-success:hover,
a.text-success:focus {
  color: #326f3e !important;
}

.text-info {
  color: #65aeb9 !important;
}

a.text-info:hover,
a.text-info:focus {
  color: #418690 !important;
}

.text-warning {
  color: #f5c946 !important;
}

a.text-warning:hover,
a.text-warning:focus {
  color: #e2ac0c !important;
}

.text-danger {
  color: #DB5858 !important;
}

a.text-danger:hover,
a.text-danger:focus {
  color: #be2929 !important;
}

.text-light {
  color: #F6F6F6 !important;
}

a.text-light:hover,
a.text-light:focus {
  color: #d0d0d0 !important;
}

.text-dark {
  color: #333 !important;
}

a.text-dark:hover,
a.text-dark:focus {
  color: #0d0d0d !important;
}

.text-body {
  color: #4E4E4E !important;
}

.text-muted {
  color: #C7C7C7 !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.badge-outline-blue {
  color: #007099;
  border: 1px solid #007099;
  background-color: transparent;
}

.badge-outline-primary {
  color: #005F3B;
  border: 1px solid #005F3B;
  background-color: transparent;
}

.badge-outline-secondary {
  color: #C7C7C7;
  border: 1px solid #C7C7C7;
  background-color: transparent;
}

.badge-outline-success {
  color: #4AA45C;
  border: 1px solid #4AA45C;
  background-color: transparent;
}

.badge-outline-info {
  color: #65aeb9;
  border: 1px solid #65aeb9;
  background-color: transparent;
}

.badge-outline-warning {
  color: #f5c946;
  border: 1px solid #f5c946;
  background-color: transparent;
}

.badge-outline-danger {
  color: #DB5858;
  border: 1px solid #DB5858;
  background-color: transparent;
}

.badge-outline-light {
  color: #F6F6F6;
  border: 1px solid #F6F6F6;
  background-color: transparent;
}

.badge-outline-dark {
  color: #333;
  border: 1px solid #333;
  background-color: transparent;
}

.bi {
  display: inline-block;
  position: relative;
  height: 16px;
  width: 16px;
}

.bi[class*="bi-"]::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
  display: block;
  position: absolute;
  height: 16px;
  width: 16px;
  z-index: auto;
}

.bi-list::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22%234E4E4E%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M2.5%2011.5A.5.5%200%200%201%203%2011h10a.5.5%200%200%201%200%201H3a.5.5%200%200%201-.5-.5zm0-4A.5.5%200%200%201%203%207h10a.5.5%200%200%201%200%201H3a.5.5%200%200%201-.5-.5zm0-4A.5.5%200%200%201%203%203h10a.5.5%200%200%201%200%201H3a.5.5%200%200%201-.5-.5z%22%2F%3E%3C%2Fsvg%3E");
}

.bi-search::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22%234E4E4E%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M10.442%2010.442a1%201%200%200%201%201.415%200l3.85%203.85a1%201%200%200%201-1.414%201.415l-3.85-3.85a1%201%200%200%201%200-1.415z%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M6.5%2012a5.5%205.5%200%201%200%200-11%205.5%205.5%200%200%200%200%2011zM13%206.5a6.5%206.5%200%201%201-13%200%206.5%206.5%200%200%201%2013%200z%22%2F%3E%3C%2Fsvg%3E");
}

.bi-book::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22%234E4E4E%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M1%202.828v9.923c.918-.35%202.107-.692%203.287-.81%201.094-.111%202.278-.039%203.213.492V2.687c-.654-.689-1.782-.886-3.112-.752-1.234.124-2.503.523-3.388.893zm7.5-.141v9.746c.935-.53%202.12-.603%203.213-.493%201.18.12%202.37.461%203.287.811V2.828c-.885-.37-2.154-.769-3.388-.893-1.33-.134-2.458.063-3.112.752zM8%201.783C7.015.936%205.587.81%204.287.94c-1.514.153-3.042.672-3.994%201.105A.5.5%200%200%200%200%202.5v11a.5.5%200%200%200%20.707.455c.882-.4%202.303-.881%203.68-1.02%201.409-.142%202.59.087%203.223.877a.5.5%200%200%200%20.78%200c.633-.79%201.814-1.019%203.222-.877%201.378.139%202.8.62%203.681%201.02A.5.5%200%200%200%2016%2013.5v-11a.5.5%200%200%200-.293-.455c-.952-.433-2.48-.952-3.994-1.105C10.413.809%208.985.936%208%201.783z%22%2F%3E%3C%2Fsvg%3E");
}

.bi-checklist::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22%234E4E4E%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M14.5%203h-13a.5.5%200%200%200-.5.5v9a.5.5%200%200%200%20.5.5h13a.5.5%200%200%200%20.5-.5v-9a.5.5%200%200%200-.5-.5zm-13-1A1.5%201.5%200%200%200%200%203.5v9A1.5%201.5%200%200%200%201.5%2014h13a1.5%201.5%200%200%200%201.5-1.5v-9A1.5%201.5%200%200%200%2014.5%202h-13z%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M7%205.5a.5.5%200%200%201%20.5-.5h5a.5.5%200%200%201%200%201h-5a.5.5%200%200%201-.5-.5zm-1.496-.854a.5.5%200%200%201%200%20.708l-1.5%201.5a.5.5%200%200%201-.708%200l-.5-.5a.5.5%200%201%201%20.708-.708l.146.147%201.146-1.147a.5.5%200%200%201%20.708%200zM7%209.5a.5.5%200%200%201%20.5-.5h5a.5.5%200%200%201%200%201h-5a.5.5%200%200%201-.5-.5zm-1.496-.854a.5.5%200%200%201%200%20.708l-1.5%201.5a.5.5%200%200%201-.708%200l-.5-.5a.5.5%200%200%201%20.708-.708l.146.147%201.146-1.147a.5.5%200%200%201%20.708%200z%22%2F%3E%3C%2Fsvg%3E");
}

.bi-close {
  height: 24px;
  width: 24px;
}

.bi-close::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22%234E4E4E%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M4.646%204.646a.5.5%200%200%201%20.708%200L8%207.293l2.646-2.647a.5.5%200%200%201%20.708.708L8.707%208l2.647%202.646a.5.5%200%200%201-.708.708L8%208.707l-2.646%202.647a.5.5%200%200%201-.708-.708L7.293%208%204.646%205.354a.5.5%200%200%201%200-.708z%22%2F%3E%3C%2Fsvg%3E");
  background-size: 24px !important;
  height: 24px !important;
  width: 24px !important;
}

.bi-arrow-right {
  position: relative;
}

.bi-arrow-right::before {
  display: none;
}

.bi-arrow-right::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22%23C7C7C7%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M4.646%201.646a.5.5%200%200%201%20.708%200l6%206a.5.5%200%200%201%200%20.708l-6%206a.5.5%200%200%201-.708-.708L10.293%208%204.646%202.354a.5.5%200%200%201%200-.708z%22%2F%3E%3C%2Fsvg%3E");
  background-size: 16px;
  content: "";
  display: block;
  margin-top: -.8rem;
  position: absolute;
  height: 16px;
  width: 16px;
  top: 50%;
  right: 1.5rem;
}

.bi-check {
  position: relative;
}

.bi-check::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22%23fff%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M13.854%203.646a.5.5%200%200%201%200%20.708l-7%207a.5.5%200%200%201-.708%200l-3.5-3.5a.5.5%200%201%201%20.708-.708L6.5%2010.293l6.646-6.647a.5.5%200%200%201%20.708%200z%22%2F%3E%3C%2Fsvg%3E");
}

.bi-info::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22%234E4E4E%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M8%2015A7%207%200%201%200%208%201a7%207%200%200%200%200%2014zm0%201A8%208%200%201%200%208%200a8%208%200%200%200%200%2016z%22%2F%3E%3Cpath%20d%3D%22M8.93%206.588l-2.29.287-.082.38.45.083c.294.07.352.176.288.469l-.738%203.468c-.194.897.105%201.319.808%201.319.545%200%201.178-.252%201.465-.598l.088-.416c-.2.176-.492.246-.686.246-.275%200-.375-.193-.304-.533L8.93%206.588z%22%2F%3E%3Ccircle%20cx%3D%228%22%20cy%3D%224.5%22%20r%3D%221%22%2F%3E%3C%2Fsvg%3E");
}

.bi-mark::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22%234E4E4E%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M4%200a2%202%200%200%200-2%202v13.5a.5.5%200%200%200%20.74.439L8%2013.069l5.26%202.87A.5.5%200%200%200%2014%2015.5V2a2%202%200%200%200-2-2H4zm4.16%204.1a.178.178%200%200%200-.32%200l-.634%201.285a.178.178%200%200%201-.134.098l-1.42.206a.178.178%200%200%200-.098.303L6.58%206.993c.042.041.061.1.051.158L6.39%208.565a.178.178%200%200%200%20.258.187l1.27-.668a.178.178%200%200%201%20.165%200l1.27.668a.178.178%200%200%200%20.257-.187L9.368%207.15a.178.178%200%200%201%20.05-.158l1.028-1.001a.178.178%200%200%200-.098-.303l-1.42-.206a.178.178%200%200%201-.134-.098L8.16%204.1z%22%2F%3E%3C%2Fsvg%3E");
}

.bi-extarnal {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22%234E4E4E%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M8.636%203.5a.5.5%200%200%200-.5-.5H1.5A1.5%201.5%200%200%200%200%204.5v10A1.5%201.5%200%200%200%201.5%2016h10a1.5%201.5%200%200%200%201.5-1.5V7.864a.5.5%200%200%200-1%200V14.5a.5.5%200%200%201-.5.5h-10a.5.5%200%200%201-.5-.5v-10a.5.5%200%200%201%20.5-.5h6.636a.5.5%200%200%200%20.5-.5z%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M16%20.5a.5.5%200%200%200-.5-.5h-5a.5.5%200%200%200%200%201h3.793L6.146%209.146a.5.5%200%201%200%20.708.708L15%201.707V5.5a.5.5%200%200%200%201%200v-5z%22%2F%3E%3C%2Fsvg%3E");
}

.active .bi-search::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22%23005F3B%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M10.442%2010.442a1%201%200%200%201%201.415%200l3.85%203.85a1%201%200%200%201-1.414%201.415l-3.85-3.85a1%201%200%200%201%200-1.415z%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M6.5%2012a5.5%205.5%200%201%200%200-11%205.5%205.5%200%200%200%200%2011zM13%206.5a6.5%206.5%200%201%201-13%200%206.5%206.5%200%200%201%2013%200z%22%2F%3E%3C%2Fsvg%3E");
}

.active .bi-book::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22%23005F3B%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M1%202.828v9.923c.918-.35%202.107-.692%203.287-.81%201.094-.111%202.278-.039%203.213.492V2.687c-.654-.689-1.782-.886-3.112-.752-1.234.124-2.503.523-3.388.893zm7.5-.141v9.746c.935-.53%202.12-.603%203.213-.493%201.18.12%202.37.461%203.287.811V2.828c-.885-.37-2.154-.769-3.388-.893-1.33-.134-2.458.063-3.112.752zM8%201.783C7.015.936%205.587.81%204.287.94c-1.514.153-3.042.672-3.994%201.105A.5.5%200%200%200%200%202.5v11a.5.5%200%200%200%20.707.455c.882-.4%202.303-.881%203.68-1.02%201.409-.142%202.59.087%203.223.877a.5.5%200%200%200%20.78%200c.633-.79%201.814-1.019%203.222-.877%201.378.139%202.8.62%203.681%201.02A.5.5%200%200%200%2016%2013.5v-11a.5.5%200%200%200-.293-.455c-.952-.433-2.48-.952-3.994-1.105C10.413.809%208.985.936%208%201.783z%22%2F%3E%3C%2Fsvg%3E");
}

.active .bi-checklist::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22%23005F3B%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M14.5%203h-13a.5.5%200%200%200-.5.5v9a.5.5%200%200%200%20.5.5h13a.5.5%200%200%200%20.5-.5v-9a.5.5%200%200%200-.5-.5zm-13-1A1.5%201.5%200%200%200%200%203.5v9A1.5%201.5%200%200%200%201.5%2014h13a1.5%201.5%200%200%200%201.5-1.5v-9A1.5%201.5%200%200%200%2014.5%202h-13z%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M7%205.5a.5.5%200%200%201%20.5-.5h5a.5.5%200%200%201%200%201h-5a.5.5%200%200%201-.5-.5zm-1.496-.854a.5.5%200%200%201%200%20.708l-1.5%201.5a.5.5%200%200%201-.708%200l-.5-.5a.5.5%200%201%201%20.708-.708l.146.147%201.146-1.147a.5.5%200%200%201%20.708%200zM7%209.5a.5.5%200%200%201%20.5-.5h5a.5.5%200%200%201%200%201h-5a.5.5%200%200%201-.5-.5zm-1.496-.854a.5.5%200%200%201%200%20.708l-1.5%201.5a.5.5%200%200%201-.708%200l-.5-.5a.5.5%200%200%201%20.708-.708l.146.147%201.146-1.147a.5.5%200%200%201%20.708%200z%22%2F%3E%3C%2Fsvg%3E");
}

#header .nav-link.active {
  color: var(--primary);
}

#header .nav-link.active::after {
  background-color: var(--primary);
}

#main h1:not([class])::before,
#main h2:not([class])::before {
  background-color: #005F3B;
}

#main .border-top.border-bottom h2.text-primary::before {
  border-color: transparent transparent transparent #005F3B;
}

.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  background-color: rgba(0, 95, 59, 0.5);
}

.table-calendar thead .today {
  background-color: var(--primary);
}

.card.flex-row .card-body .card-title {
  color: var(--primary);
}

.active .bi-search::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22%23005F3B%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M10.442%2010.442a1%201%200%200%201%201.415%200l3.85%203.85a1%201%200%200%201-1.414%201.415l-3.85-3.85a1%201%200%200%201%200-1.415z%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M6.5%2012a5.5%205.5%200%201%200%200-11%205.5%205.5%200%200%200%200%2011zM13%206.5a6.5%206.5%200%201%201-13%200%206.5%206.5%200%200%201%2013%200z%22%2F%3E%3C%2Fsvg%3E");
}

.active .bi-book::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22%23005F3B%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M1%202.828v9.923c.918-.35%202.107-.692%203.287-.81%201.094-.111%202.278-.039%203.213.492V2.687c-.654-.689-1.782-.886-3.112-.752-1.234.124-2.503.523-3.388.893zm7.5-.141v9.746c.935-.53%202.12-.603%203.213-.493%201.18.12%202.37.461%203.287.811V2.828c-.885-.37-2.154-.769-3.388-.893-1.33-.134-2.458.063-3.112.752zM8%201.783C7.015.936%205.587.81%204.287.94c-1.514.153-3.042.672-3.994%201.105A.5.5%200%200%200%200%202.5v11a.5.5%200%200%200%20.707.455c.882-.4%202.303-.881%203.68-1.02%201.409-.142%202.59.087%203.223.877a.5.5%200%200%200%20.78%200c.633-.79%201.814-1.019%203.222-.877%201.378.139%202.8.62%203.681%201.02A.5.5%200%200%200%2016%2013.5v-11a.5.5%200%200%200-.293-.455c-.952-.433-2.48-.952-3.994-1.105C10.413.809%208.985.936%208%201.783z%22%2F%3E%3C%2Fsvg%3E");
}

.active .bi-checklist::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22%23005F3B%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M14.5%203h-13a.5.5%200%200%200-.5.5v9a.5.5%200%200%200%20.5.5h13a.5.5%200%200%200%20.5-.5v-9a.5.5%200%200%200-.5-.5zm-13-1A1.5%201.5%200%200%200%200%203.5v9A1.5%201.5%200%200%200%201.5%2014h13a1.5%201.5%200%200%200%201.5-1.5v-9A1.5%201.5%200%200%200%2014.5%202h-13z%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M7%205.5a.5.5%200%200%201%20.5-.5h5a.5.5%200%200%201%200%201h-5a.5.5%200%200%201-.5-.5zm-1.496-.854a.5.5%200%200%201%200%20.708l-1.5%201.5a.5.5%200%200%201-.708%200l-.5-.5a.5.5%200%201%201%20.708-.708l.146.147%201.146-1.147a.5.5%200%200%201%20.708%200zM7%209.5a.5.5%200%200%201%20.5-.5h5a.5.5%200%200%201%200%201h-5a.5.5%200%200%201-.5-.5zm-1.496-.854a.5.5%200%200%201%200%20.708l-1.5%201.5a.5.5%200%200%201-.708%200l-.5-.5a.5.5%200%200%201%20.708-.708l.146.147%201.146-1.147a.5.5%200%200%201%20.708%200z%22%2F%3E%3C%2Fsvg%3E");
}

#header {
  background-color: var(--white);
  border-bottom: 0.1rem solid var(--silver);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

#header .nav {
  border-top: 0.1rem solid var(--silver);
}

#header .nav-item {
  border-left: 0.1rem solid var(--silver);
  font-size: 1.1rem;
  width: 8.8rem;
}

#header .nav-item:last-child {
  border-right: 0.1rem solid var(--silver);
}

#header .nav-link {
  color: var(--gray-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: .65rem 1rem;
  position: relative;
}

#header .nav-link.active::after {
  content: "";
  display: block;
  margin-left: -1.5rem;
  position: absolute;
  bottom: .2rem;
  left: 50%;
  height: .2rem;
  width: 3rem;
}

#header .nav-link .bi {
  margin-right: .5rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-weight: 900;
  text-decoration: none;
}

.navbar-brand img {
  height: 34px;
  margin-right: .5rem;
  width: auto;
}

.modal-menu .modal-content {
  border: none;
  border-radius: 0;
}

.modal-menu .modal-body {
  padding: 0;
}

.modal-menu .list-group-item {
  font-size: 1.4rem;
  font-weight: 700;
  padding: 0;
}

.modal-menu .list-group-item a {
  color: var(--gray-dark);
  display: block;
  padding: 1.45rem 1.25rem;
}

.modal-menu .list-group-item a:hover {
  background-color: var(--light);
  text-decoration: none;
}

.modal-menu .list-group-flush > .list-group-item:last-child {
  border-bottom-width: 1px;
}

#main {
  font-size: 1.4rem;
  padding-bottom: 8rem;
}

#main h1:not([class]),
#main h2:not([class]) {
  margin-top: 2rem;
  position: relative;
}

#main h1:not([class])::before,
#main h2:not([class])::before {
  content: "";
  height: 2.2rem;
  width: .5rem;
  margin-top: -.9rem;
  position: absolute;
  left: -2rem;
  top: 50%;
}

#main .border-top.border-bottom {
  margin-bottom: 2rem;
  padding-top: 1.5rem;
  margin-right: -2rem;
  margin-left: -2rem;
}

#main .border-top.border-bottom h2.text-primary {
  padding-left: 2rem;
  position: relative;
}

#main .border-top.border-bottom h2.text-primary::before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 14px;
  content: "";
  margin-top: -7px;
  position: absolute;
  top: 50%;
  left: 0;
}

#main .border-top.border-bottom h2.text-primary + .table {
  margin-top: 1.5rem;
}

#main .border-top.border-bottom ul.list-unstyled {
  margin-bottom: 0;
}

#main .border-top.border-bottom ul.list-unstyled li:not(:last-child) {
  border-bottom: 1px solid var(--silver);
}

#main .border-top.border-bottom ul.list-unstyled li:not(:first-child) {
  padding-top: 1.5rem;
}

#main .border-top.border-bottom .list-group.list-group-flush .list-group-item {
  padding-right: 2rem;
  padding-left: 2rem;
}

#main .border-top.border-bottom .row.no-gutters.border-top {
  border-top-style: dashed !important;
  padding-top: 1rem;
}

#main dl.flex-column dt {
  display: flex;
  align-items: center;
  margin-bottom: .5rem;
}

#main dl.flex-column dt .bi {
  margin-right: .5rem;
}

#main h1.display-4 {
  margin-top: 5rem;
  text-align: center;
}

#main h1.display-4 img {
  margin-right: 1rem;
  height: 34px;
  width: 34px;
}

#main h1.text-center {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

#main h1.text-center.border-bottom {
  margin-top: -20px;
  margin-right: -20px;
  margin-left: -20px;
}

#main section + section {
  margin-top: 3rem;
}

#main section > .list-group.mx-n3 .list-title {
  margin-bottom: 0;
}

#main section > .list-group.mx-n3 .list-title a {
  display: flex;
  align-items: center;
  padding: .5rem;
}

#footer {
  padding-bottom: 1.5rem;
}

#footer img {
  height: 13px;
  width: auto;
}

.btn-group[aria-label="weeklist"] .btn {
  width: 50%;
}

.btn-group > .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .45rem .75rem;
}

.btn-group > .btn > .bi-check {
  margin-right: .5rem;
}

.btn-group > .btn.btn-outline-secondary .bi-check {
  display: none;
}

.custom-control.custom-radio:not(.custom-control-inline),
.custom-control.custom-checkbox:not(.custom-control-inline) {
  margin-bottom: .5rem;
}

.input-group.radio .input-group-text,
.input-group.checkbox .input-group-text {
  background-color: var(--white);
  padding: 0;
}

.input-group.radio .custom-radio.custom-control-inline,
.input-group.radio .custom-checkbox.custom-control-inline,
.input-group.checkbox .custom-radio.custom-control-inline,
.input-group.checkbox .custom-checkbox.custom-control-inline {
  margin: 0;
  padding: 0;
}

.input-group.radio .custom-control-input ~ .custom-control-label,
.input-group.checkbox .custom-control-input ~ .custom-control-label {
  cursor: pointer;
  padding: .55rem 1.4rem;
}

.input-group.radio .custom-control-input ~ .custom-control-label::before,
.input-group.radio .custom-control-input ~ .custom-control-label::after,
.input-group.checkbox .custom-control-input ~ .custom-control-label::before,
.input-group.checkbox .custom-control-input ~ .custom-control-label::after {
  display: none;
}

.input-group.radio .custom-control-input:checked ~ .custom-control-label,
.input-group.checkbox .custom-control-input:checked ~ .custom-control-label {
  color: var(--white);
  padding-right: 1.5rem;
  padding-left: 2.5rem;
}

.input-group.radio .custom-control-input:checked ~ .custom-control-label::before,
.input-group.checkbox .custom-control-input:checked ~ .custom-control-label::before {
  border: none;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22%23fff%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20d%3D%22M13.854%203.646a.5.5%200%200%201%200%20.708l-7%207a.5.5%200%200%201-.708%200l-3.5-3.5a.5.5%200%201%201%20.708-.708L6.5%2010.293l6.646-6.647a.5.5%200%200%201%20.708%200z%22%2F%3E%3C%2Fsvg%3E");
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: .5rem center;
  border-radius: 0;
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

.input-group.radio .input-group-prepend:first-child .custom-control-input:checked ~ .custom-control-label::before,
.input-group.checkbox .input-group-prepend:first-child .custom-control-input:checked ~ .custom-control-label::before {
  border-top-left-radius: .4rem !important;
  border-bottom-left-radius: .4rem !important;
}

.input-group.radio .input-group-prepend:last-child,
.input-group.checkbox .input-group-prepend:last-child {
  margin-right: 0;
  margin-left: 0;
}

.input-group.radio .input-group-prepend:last-child .input-group-text,
.input-group.checkbox .input-group-prepend:last-child .input-group-text {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: .4rem !important;
  border-bottom-right-radius: .4rem !important;
}

.input-group.radio .input-group-prepend:last-child .custom-control-input:checked ~ .custom-control-label::before,
.input-group.checkbox .input-group-prepend:last-child .custom-control-input:checked ~ .custom-control-label::before {
  border-top-right-radius: .4rem !important;
  border-bottom-right-radius: .4rem !important;
}

.form-group {
  margin-bottom: 2rem;
}

.form-group > label {
  font-weight: 700;
}

.form-group > label ~ .form-control,
.form-group > label ~ .form-control-plaintext {
  font-size: 1.6rem;
  height: calc(3rem + .6rem + 2px);
}

.form-group > label ~ .form-control.form-control-lg,
.form-group > label ~ .form-control-plaintext.form-control-lg {
  font-size: 1.6rem;
  height: calc(4rem + .6rem + 2px);
}

.form-group + .btn {
  margin-top: 3.4rem;
}

form > .justify-content-end {
  margin-top: 3.4rem;
}

form > .justify-content-end .btn {
  padding: .75rem 1.5rem;
}

form > .justify-content-end .btn + .btn {
  margin-left: 1rem;
}

.d-flex.flex-column.align-items-center {
  margin-top: 3.4rem;
}

.d-flex.flex-column.align-items-center .btn {
  padding: .75rem 1.5rem;
}

.d-flex.flex-column.align-items-center .btn + .btn {
  margin-top: 1.5rem;
}

.d-flex.flex-column.align-items-center .btn.btn-block {
  max-width: 42rem;
}

.form-inline .form-control {
  width: auto;
}

.form-inline label {
  margin-bottom: 0;
}

.carousel {
  background-color: var(--light);
  border-top: 1px solid var(--silver);
  margin-right: -2rem;
  margin-left: -2rem;
  padding-right: 2rem;
  padding-left: 2rem;
}

.carousel-caption {
  font-size: 1.4rem;
  font-weight: 700;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  z-index: 0;
}

.carousel-control-prev {
  left: 2rem;
  opacity: 1;
}

.carousel-control-next {
  right: 2rem;
  opacity: 1;
}

.table-calendar {
  margin-bottom: 0;
  table-layout: fixed;
}

.table-calendar thead th,
.table-calendar tbody th,
.table-calendar tbody td {
  font-size: 1.4rem;
  text-align: center;
  vertical-align: middle;
}

.table-calendar thead th {
  border-top: none;
  border-bottom-width: 1px;
  border-left: 1px solid var(--silver);
}

.table-calendar thead th small {
  display: block;
  font-size: 1.1rem;
}

.table-calendar thead td {
  border: none;
}

.table-calendar thead .today {
  border-radius: 50%;
  color: var(--white);
  display: inline-block;
  overflow: hidden;
  height: 22px;
  width: 22px;
}

.table-calendar tbody tr th {
  font-weight: 400;
  width: 45px;
}

.table-calendar tbody tr td {
  border-left: 1px solid var(--silver);
}

.table-calendar tbody tr td .btn {
  font-weight: 700;
}

.table-calendar .holiday {
  background-color: rgba(219, 88, 88, 0.1);
}

.table-calendar.table-striped tbody tr:nth-child(2n) {
  background-color: var(--light);
}

.table-calendar.table-striped tbody tr:nth-child(2n+1) {
  background-color: var(--white);
}

.table-calendar.table-striped tbody td {
  text-align: left;
}

.card.flex-row {
  border-width: 2px;
  margin-bottom: 1rem;
}

.card.flex-row .card-body .card-title {
  display: flex;
  align-items: center;
}

.card.flex-row .card-body .card-title .bi {
  margin-left: .5rem;
}

.card.flex-row .card-body p:last-child {
  margin-bottom: 0;
}

.card.flex-row .card-footer {
  border-top: none;
  padding: 0;
}

.card.flex-row .card-footer a {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 4rem;
}

.card.flex-row .card-footer a:hover,
.card.flex-row .card-footer a:focus {
  background-color: var(--gray);
  text-decoration: none;
}

.card.flex-row .card-footer .badge {
  border-radius: 0;
  font-size: .7rem;
  font-weight: 400;
  margin-top: .5rem;
}

.nav.nav-tabs {
  margin-right: -20px;
  margin-left: -20px;
  padding-right: 20px;
  padding-left: 20px;
}

.nav.nav-tabs .nav-item {
  font-weight: 700;
}

.nav.nav-tabs .nav-item .nav-link {
  display: flex;
  align-items: center;
  height: 100%;
}

.tab-content {
  margin-right: -20px;
  margin-left: -20px;
  padding-top: 1rem;
}

.list-group.accordion .list-group-item {
  padding: 1rem 2rem 0 2rem;
}

.list-group.accordion a[data-toggle="collapse"] {
  display: block;
  margin-bottom: 1rem;
  padding-right: 2rem;
  position: relative;
  width: 100%;
}

.list-group.accordion a[data-toggle="collapse"]::after {
  content: "";
  background-size: 16px;
  height: 16px;
  width: 16px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  right: -1rem;
}

.list-group.accordion a[aria-expanded="false"]::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22%23C7C7C7%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M7.247%2011.14L2.451%205.658C1.885%205.013%202.345%204%203.204%204h9.592a1%201%200%200%201%20.753%201.659l-4.796%205.48a1%201%200%200%201-1.506%200z%22%2F%3E%3C%2Fsvg%3E");
}

.list-group.accordion a[aria-expanded="true"]::after {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%221em%22%20height%3D%221em%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22%23C7C7C7%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M7.247%204.86l-4.796%205.481c-.566.647-.106%201.659.753%201.659h9.592a1%201%200%200%200%20.753-1.659l-4.796-5.48a1%201%200%200%200-1.506%200z%22%2F%3E%3C%2Fsvg%3E");
}

.list-title {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.list-title .badge {
  margin-right: .5rem;
}

.pagination {
  margin-top: 2rem;
}

.pagination .page-item {
  margin-right: .2rem;
  margin-left: .2rem;
}

.pagination .page-link {
  border: none;
  border-radius: .6rem;
  padding: 1rem 1.5rem;
}

.table caption {
  caption-side: top;
}

.table-evaluation {
  margin-bottom: 2rem;
}

.table-evaluation th,
.table-evaluation td {
  text-align: center;
}

.horizontal_scroll {
  display: flex;
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
  width: 100%;
}

.horizontal_scroll > div {
  scroll-snap-align: center;
  height: 100%;
  width: 100%;
  flex: none;
}

span.rounded-circle {
  display: inline-block;
  height: 16px;
  width: 16px;
  position: absolute;
  right: -2rem;
  top: .4rem;
  z-index: auto;
}

span.rounded-circle.bg-primary {
  background-color: #005F3B !important;
}

span.rounded-circle.bg-pink {
  background-color: #EB989D;
}

span.rounded-circle.bg-orange {
  background-color: #FF934B;
}

span.rounded-circle.bg-gray {
  background-color: #747474;
}

span.rounded-circle.bg-blue {
  background-color: #007099;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-sm-right {
    right: 0;
    left: auto;
  }

  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }

  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }

  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }

  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
  }

  .modal-sm {
    max-width: 300px;
  }

  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }

  .m-sm-1 {
    margin: 1rem !important;
  }

  .mt-sm-1,
  .my-sm-1 {
    margin-top: 1rem !important;
  }

  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 1rem !important;
  }

  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 1rem !important;
  }

  .m-sm-2 {
    margin: 1.5rem !important;
  }

  .mt-sm-2,
  .my-sm-2 {
    margin-top: 1.5rem !important;
  }

  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 1.5rem !important;
  }

  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 1.5rem !important;
  }

  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 1.5rem !important;
  }

  .m-sm-3 {
    margin: 2rem !important;
  }

  .mt-sm-3,
  .my-sm-3 {
    margin-top: 2rem !important;
  }

  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 2rem !important;
  }

  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 2rem !important;
  }

  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 2rem !important;
  }

  .m-sm-4 {
    margin: 2.5rem !important;
  }

  .mt-sm-4,
  .my-sm-4 {
    margin-top: 2.5rem !important;
  }

  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 2.5rem !important;
  }

  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 2.5rem !important;
  }

  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 2.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }

  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }

  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }

  .p-sm-1 {
    padding: 1rem !important;
  }

  .pt-sm-1,
  .py-sm-1 {
    padding-top: 1rem !important;
  }

  .pr-sm-1,
  .px-sm-1 {
    padding-right: 1rem !important;
  }

  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-1,
  .px-sm-1 {
    padding-left: 1rem !important;
  }

  .p-sm-2 {
    padding: 1.5rem !important;
  }

  .pt-sm-2,
  .py-sm-2 {
    padding-top: 1.5rem !important;
  }

  .pr-sm-2,
  .px-sm-2 {
    padding-right: 1.5rem !important;
  }

  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-2,
  .px-sm-2 {
    padding-left: 1.5rem !important;
  }

  .p-sm-3 {
    padding: 2rem !important;
  }

  .pt-sm-3,
  .py-sm-3 {
    padding-top: 2rem !important;
  }

  .pr-sm-3,
  .px-sm-3 {
    padding-right: 2rem !important;
  }

  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 2rem !important;
  }

  .pl-sm-3,
  .px-sm-3 {
    padding-left: 2rem !important;
  }

  .p-sm-4 {
    padding: 2.5rem !important;
  }

  .pt-sm-4,
  .py-sm-4 {
    padding-top: 2.5rem !important;
  }

  .pr-sm-4,
  .px-sm-4 {
    padding-right: 2.5rem !important;
  }

  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 2.5rem !important;
  }

  .pl-sm-4,
  .px-sm-4 {
    padding-left: 2.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }

  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }

  .m-sm-n1 {
    margin: -1rem !important;
  }

  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -1rem !important;
  }

  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -1rem !important;
  }

  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -1rem !important;
  }

  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -1rem !important;
  }

  .m-sm-n2 {
    margin: -1.5rem !important;
  }

  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -1.5rem !important;
  }

  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -1.5rem !important;
  }

  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -1.5rem !important;
  }

  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -1.5rem !important;
  }

  .m-sm-n3 {
    margin: -2rem !important;
  }

  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -2rem !important;
  }

  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -2rem !important;
  }

  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -2rem !important;
  }

  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -2rem !important;
  }

  .m-sm-n4 {
    margin: -2.5rem !important;
  }

  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -2.5rem !important;
  }

  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -2.5rem !important;
  }

  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -2.5rem !important;
  }

  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -2.5rem !important;
  }

  .m-sm-n5 {
    margin: -3rem !important;
  }

  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }

  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }

  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }

  .text-sm-left {
    text-align: left !important;
  }

  .text-sm-right {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }

  .d-flex.justify-content-center.mb-2 {
    margin-bottom: 3rem !important;
  }

  #main h1:not([class]),
  #main h2:not([class]) {
    margin-bottom: 3rem !important;
  }

  .card-deck.half .card {
    flex: none;
    margin-bottom: 20px;
    width: calc((100% / 2) - 40px);
  }
}

@media (min-width: 768px) {
  .dropdown-menu-md-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-md-right {
    right: 0;
    left: auto;
  }

  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }

  .m-md-1 {
    margin: 1rem !important;
  }

  .mt-md-1,
  .my-md-1 {
    margin-top: 1rem !important;
  }

  .mr-md-1,
  .mx-md-1 {
    margin-right: 1rem !important;
  }

  .mb-md-1,
  .my-md-1 {
    margin-bottom: 1rem !important;
  }

  .ml-md-1,
  .mx-md-1 {
    margin-left: 1rem !important;
  }

  .m-md-2 {
    margin: 1.5rem !important;
  }

  .mt-md-2,
  .my-md-2 {
    margin-top: 1.5rem !important;
  }

  .mr-md-2,
  .mx-md-2 {
    margin-right: 1.5rem !important;
  }

  .mb-md-2,
  .my-md-2 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-2,
  .mx-md-2 {
    margin-left: 1.5rem !important;
  }

  .m-md-3 {
    margin: 2rem !important;
  }

  .mt-md-3,
  .my-md-3 {
    margin-top: 2rem !important;
  }

  .mr-md-3,
  .mx-md-3 {
    margin-right: 2rem !important;
  }

  .mb-md-3,
  .my-md-3 {
    margin-bottom: 2rem !important;
  }

  .ml-md-3,
  .mx-md-3 {
    margin-left: 2rem !important;
  }

  .m-md-4 {
    margin: 2.5rem !important;
  }

  .mt-md-4,
  .my-md-4 {
    margin-top: 2.5rem !important;
  }

  .mr-md-4,
  .mx-md-4 {
    margin-right: 2.5rem !important;
  }

  .mb-md-4,
  .my-md-4 {
    margin-bottom: 2.5rem !important;
  }

  .ml-md-4,
  .mx-md-4 {
    margin-left: 2.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }

  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }

  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }

  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }

  .p-md-1 {
    padding: 1rem !important;
  }

  .pt-md-1,
  .py-md-1 {
    padding-top: 1rem !important;
  }

  .pr-md-1,
  .px-md-1 {
    padding-right: 1rem !important;
  }

  .pb-md-1,
  .py-md-1 {
    padding-bottom: 1rem !important;
  }

  .pl-md-1,
  .px-md-1 {
    padding-left: 1rem !important;
  }

  .p-md-2 {
    padding: 1.5rem !important;
  }

  .pt-md-2,
  .py-md-2 {
    padding-top: 1.5rem !important;
  }

  .pr-md-2,
  .px-md-2 {
    padding-right: 1.5rem !important;
  }

  .pb-md-2,
  .py-md-2 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-2,
  .px-md-2 {
    padding-left: 1.5rem !important;
  }

  .p-md-3 {
    padding: 2rem !important;
  }

  .pt-md-3,
  .py-md-3 {
    padding-top: 2rem !important;
  }

  .pr-md-3,
  .px-md-3 {
    padding-right: 2rem !important;
  }

  .pb-md-3,
  .py-md-3 {
    padding-bottom: 2rem !important;
  }

  .pl-md-3,
  .px-md-3 {
    padding-left: 2rem !important;
  }

  .p-md-4 {
    padding: 2.5rem !important;
  }

  .pt-md-4,
  .py-md-4 {
    padding-top: 2.5rem !important;
  }

  .pr-md-4,
  .px-md-4 {
    padding-right: 2.5rem !important;
  }

  .pb-md-4,
  .py-md-4 {
    padding-bottom: 2.5rem !important;
  }

  .pl-md-4,
  .px-md-4 {
    padding-left: 2.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }

  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }

  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }

  .m-md-n1 {
    margin: -1rem !important;
  }

  .mt-md-n1,
  .my-md-n1 {
    margin-top: -1rem !important;
  }

  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -1rem !important;
  }

  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -1rem !important;
  }

  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -1rem !important;
  }

  .m-md-n2 {
    margin: -1.5rem !important;
  }

  .mt-md-n2,
  .my-md-n2 {
    margin-top: -1.5rem !important;
  }

  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -1.5rem !important;
  }

  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -1.5rem !important;
  }

  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -1.5rem !important;
  }

  .m-md-n3 {
    margin: -2rem !important;
  }

  .mt-md-n3,
  .my-md-n3 {
    margin-top: -2rem !important;
  }

  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -2rem !important;
  }

  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -2rem !important;
  }

  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -2rem !important;
  }

  .m-md-n4 {
    margin: -2.5rem !important;
  }

  .mt-md-n4,
  .my-md-n4 {
    margin-top: -2.5rem !important;
  }

  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -2.5rem !important;
  }

  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -2.5rem !important;
  }

  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -2.5rem !important;
  }

  .m-md-n5 {
    margin: -3rem !important;
  }

  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }

  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }

  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }

  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }

  .text-md-left {
    text-align: left !important;
  }

  .text-md-right {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }

  .horizontal_scroll {
    overflow: hidden;
  }
}

@media (min-width: 992px) {
  .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }

  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }

  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: 1rem !important;
  }

  .mt-lg-1,
  .my-lg-1 {
    margin-top: 1rem !important;
  }

  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 1rem !important;
  }

  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 1rem !important;
  }

  .m-lg-2 {
    margin: 1.5rem !important;
  }

  .mt-lg-2,
  .my-lg-2 {
    margin-top: 1.5rem !important;
  }

  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 1.5rem !important;
  }

  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 1.5rem !important;
  }

  .m-lg-3 {
    margin: 2rem !important;
  }

  .mt-lg-3,
  .my-lg-3 {
    margin-top: 2rem !important;
  }

  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 2rem !important;
  }

  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 2rem !important;
  }

  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 2rem !important;
  }

  .m-lg-4 {
    margin: 2.5rem !important;
  }

  .mt-lg-4,
  .my-lg-4 {
    margin-top: 2.5rem !important;
  }

  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 2.5rem !important;
  }

  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 2.5rem !important;
  }

  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 2.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }

  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }

  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }

  .p-lg-1 {
    padding: 1rem !important;
  }

  .pt-lg-1,
  .py-lg-1 {
    padding-top: 1rem !important;
  }

  .pr-lg-1,
  .px-lg-1 {
    padding-right: 1rem !important;
  }

  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-1,
  .px-lg-1 {
    padding-left: 1rem !important;
  }

  .p-lg-2 {
    padding: 1.5rem !important;
  }

  .pt-lg-2,
  .py-lg-2 {
    padding-top: 1.5rem !important;
  }

  .pr-lg-2,
  .px-lg-2 {
    padding-right: 1.5rem !important;
  }

  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-2,
  .px-lg-2 {
    padding-left: 1.5rem !important;
  }

  .p-lg-3 {
    padding: 2rem !important;
  }

  .pt-lg-3,
  .py-lg-3 {
    padding-top: 2rem !important;
  }

  .pr-lg-3,
  .px-lg-3 {
    padding-right: 2rem !important;
  }

  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 2rem !important;
  }

  .pl-lg-3,
  .px-lg-3 {
    padding-left: 2rem !important;
  }

  .p-lg-4 {
    padding: 2.5rem !important;
  }

  .pt-lg-4,
  .py-lg-4 {
    padding-top: 2.5rem !important;
  }

  .pr-lg-4,
  .px-lg-4 {
    padding-right: 2.5rem !important;
  }

  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 2.5rem !important;
  }

  .pl-lg-4,
  .px-lg-4 {
    padding-left: 2.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }

  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }

  .m-lg-n1 {
    margin: -1rem !important;
  }

  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -1rem !important;
  }

  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -1rem !important;
  }

  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -1rem !important;
  }

  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -1rem !important;
  }

  .m-lg-n2 {
    margin: -1.5rem !important;
  }

  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -1.5rem !important;
  }

  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -1.5rem !important;
  }

  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -1.5rem !important;
  }

  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -1.5rem !important;
  }

  .m-lg-n3 {
    margin: -2rem !important;
  }

  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -2rem !important;
  }

  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -2rem !important;
  }

  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -2rem !important;
  }

  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -2rem !important;
  }

  .m-lg-n4 {
    margin: -2.5rem !important;
  }

  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -2.5rem !important;
  }

  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -2.5rem !important;
  }

  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -2.5rem !important;
  }

  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -2.5rem !important;
  }

  .m-lg-n5 {
    margin: -3rem !important;
  }

  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }

  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }

  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }

  .text-lg-left {
    text-align: left !important;
  }

  .text-lg-right {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .dropdown-menu-xl-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xl-right {
    right: 0;
    left: auto;
  }

  .modal-xl {
    max-width: 1140px;
  }

  .m-xl-0 {
    margin: 0 !important;
  }

  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }

  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }

  .m-xl-1 {
    margin: 1rem !important;
  }

  .mt-xl-1,
  .my-xl-1 {
    margin-top: 1rem !important;
  }

  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 1rem !important;
  }

  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 1rem !important;
  }

  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 1rem !important;
  }

  .m-xl-2 {
    margin: 1.5rem !important;
  }

  .mt-xl-2,
  .my-xl-2 {
    margin-top: 1.5rem !important;
  }

  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 1.5rem !important;
  }

  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 1.5rem !important;
  }

  .m-xl-3 {
    margin: 2rem !important;
  }

  .mt-xl-3,
  .my-xl-3 {
    margin-top: 2rem !important;
  }

  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 2rem !important;
  }

  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 2rem !important;
  }

  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 2rem !important;
  }

  .m-xl-4 {
    margin: 2.5rem !important;
  }

  .mt-xl-4,
  .my-xl-4 {
    margin-top: 2.5rem !important;
  }

  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 2.5rem !important;
  }

  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 2.5rem !important;
  }

  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 2.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }

  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }

  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }

  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }

  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }

  .p-xl-1 {
    padding: 1rem !important;
  }

  .pt-xl-1,
  .py-xl-1 {
    padding-top: 1rem !important;
  }

  .pr-xl-1,
  .px-xl-1 {
    padding-right: 1rem !important;
  }

  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 1rem !important;
  }

  .pl-xl-1,
  .px-xl-1 {
    padding-left: 1rem !important;
  }

  .p-xl-2 {
    padding: 1.5rem !important;
  }

  .pt-xl-2,
  .py-xl-2 {
    padding-top: 1.5rem !important;
  }

  .pr-xl-2,
  .px-xl-2 {
    padding-right: 1.5rem !important;
  }

  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xl-2,
  .px-xl-2 {
    padding-left: 1.5rem !important;
  }

  .p-xl-3 {
    padding: 2rem !important;
  }

  .pt-xl-3,
  .py-xl-3 {
    padding-top: 2rem !important;
  }

  .pr-xl-3,
  .px-xl-3 {
    padding-right: 2rem !important;
  }

  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 2rem !important;
  }

  .pl-xl-3,
  .px-xl-3 {
    padding-left: 2rem !important;
  }

  .p-xl-4 {
    padding: 2.5rem !important;
  }

  .pt-xl-4,
  .py-xl-4 {
    padding-top: 2.5rem !important;
  }

  .pr-xl-4,
  .px-xl-4 {
    padding-right: 2.5rem !important;
  }

  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 2.5rem !important;
  }

  .pl-xl-4,
  .px-xl-4 {
    padding-left: 2.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }

  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }

  .m-xl-n1 {
    margin: -1rem !important;
  }

  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -1rem !important;
  }

  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -1rem !important;
  }

  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -1rem !important;
  }

  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -1rem !important;
  }

  .m-xl-n2 {
    margin: -1.5rem !important;
  }

  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -1.5rem !important;
  }

  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -1.5rem !important;
  }

  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -1.5rem !important;
  }

  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -1.5rem !important;
  }

  .m-xl-n3 {
    margin: -2rem !important;
  }

  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -2rem !important;
  }

  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -2rem !important;
  }

  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -2rem !important;
  }

  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -2rem !important;
  }

  .m-xl-n4 {
    margin: -2.5rem !important;
  }

  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -2.5rem !important;
  }

  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -2.5rem !important;
  }

  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -2.5rem !important;
  }

  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -2.5rem !important;
  }

  .m-xl-n5 {
    margin: -3rem !important;
  }

  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }

  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }

  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }

  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }

  .text-xl-left {
    text-align: left !important;
  }

  .text-xl-right {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}

@media (max-width: 767.98px) {
  .horizontal_scroll {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 575.98px) {
  .modal-menu .modal-dialog {
    height: inherit;
    margin: 0;
  }

  .modal-menu .modal-content {
    height: 100%;
  }

  #main h1:not([class]),
  #main h2:not([class]) {
    margin-bottom: 1.5rem;
  }

  .card-deck.half .card {
    margin-bottom: 1rem;
  }

  h1 + .card-deck.half {
    margin-top: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }

  .collapsing {
    transition: none;
  }

  .modal.fade .modal-dialog {
    transition: none;
  }

  .carousel-item {
    transition: none;
  }

  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-right {
    transition: none;
  }

  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }

  .carousel-indicators li {
    transition: none;
  }
}