:root,
[data-bs-theme=light] {
  --bs-primary: #337ab7;
  --bs-primary-rgb: 51, 122, 183;
  --bs-info: #5bc0de;
  --bs-info-rgb: 91, 192, 222;
  --bs-warning: #f0ad4e;
  --bs-warning-rgb: 240, 173, 78;
  --bs-danger: #d9534f;
  --bs-danger-rgb: 217, 83, 79;
  --bs-info-text-emphasis: #31708f;
  --bs-info-bg-subtle: #d9edf7;
  --bs-info-border-subtle: #bce8f1;
  --bs-warning-text-emphasis: #8a6d3b;
  --bs-warning-bg-subtle: #fcf8e3;
  --bs-warning-border-subtle: #faebcc;
  --bs-danger-text-emphasis: #a94442;
  --bs-danger-bg-subtle: #f2dede;
  --bs-danger-border-subtle: #ebccd1;
  --bs-link-color: #337ab7;
  --bs-link-color-rgb: 51, 122, 183;
  --bs-link-hover-color: #286090;
  --bs-link-hover-color-rgb: 40, 96, 144;
}
a {
  text-decoration: none;
}
a:hover,
a:focus-visible {
  text-decoration: underline;
}
.text-primary,
.link-primary {
  color: #337ab7 !important;
}
.text-info,
.link-info {
  color: #31708f !important;
}
.text-warning,
.link-warning {
  color: #8a6d3b !important;
}
.text-danger,
.link-danger {
  color: #a94442 !important;
}
.alert-info {
  --bs-alert-color: #31708f;
  --bs-alert-bg: #d9edf7;
  --bs-alert-border-color: #bce8f1;
  --bs-alert-link-color: #214c61;
}
.alert-warning {
  --bs-alert-color: #8a6d3b;
  --bs-alert-bg: #fcf8e3;
  --bs-alert-border-color: #faebcc;
  --bs-alert-link-color: #5f4b29;
}
.alert-danger {
  --bs-alert-color: #a94442;
  --bs-alert-bg: #f2dede;
  --bs-alert-border-color: #ebccd1;
  --bs-alert-link-color: #7d3231;
}
.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #337ab7;
  --bs-btn-border-color: #2e6da4;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #286090;
  --bs-btn-hover-border-color: #204d74;
  --bs-btn-focus-shadow-rgb: 51, 122, 183;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #204d74;
  --bs-btn-active-border-color: #122b40;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #337ab7;
  --bs-btn-disabled-border-color: #2e6da4;
}
.btn-info {
  --bs-btn-color: #fff;
  --bs-btn-bg: #5bc0de;
  --bs-btn-border-color: #46b8da;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #31b0d5;
  --bs-btn-hover-border-color: #269abc;
  --bs-btn-focus-shadow-rgb: 91, 192, 222;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #269abc;
  --bs-btn-active-border-color: #1b6d85;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #5bc0de;
  --bs-btn-disabled-border-color: #46b8da;
}
.btn-warning {
  --bs-btn-color: #fff;
  --bs-btn-bg: #f0ad4e;
  --bs-btn-border-color: #eea236;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #ec971f;
  --bs-btn-hover-border-color: #d58512;
  --bs-btn-focus-shadow-rgb: 240, 173, 78;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #d58512;
  --bs-btn-active-border-color: #985f0d;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #f0ad4e;
  --bs-btn-disabled-border-color: #eea236;
}
.btn-danger {
  --bs-btn-color: #fff;
  --bs-btn-bg: #d9534f;
  --bs-btn-border-color: #d43f3a;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #c9302c;
  --bs-btn-hover-border-color: #ac2925;
  --bs-btn-focus-shadow-rgb: 217, 83, 79;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #ac2925;
  --bs-btn-active-border-color: #761c19;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #d9534f;
  --bs-btn-disabled-border-color: #d43f3a;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.pull-left {
  float: left !important;
}
.pull-right {
  float: right !important;
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
  .visible-xs {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
  .visible-sm {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
  .visible-md {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
  .visible-lg {
    display: block !important;
  }
}
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}
.input-group-btn {
  display: flex;
}
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.close {
  float: right;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.2;
  background: transparent;
  border: 0;
}
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.5;
}
button.close {
  padding: 0;
  cursor: pointer;
}
.label {
  display: inline;
  padding: 0.2em 0.6em 0.3em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25em;
}
.label:empty {
  display: none;
}
.label-default {
  background-color: #777;
}
.label-primary {
  background-color: #164194;
}
.label-success {
  background-color: #50AF47;
}
.label-info {
  background-color: #5bc0de;
}
.label-warning {
  background-color: #f0ad4e;
}
.label-danger {
  background-color: #981b1e;
}
.btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #999999;
}
.has-feedback {
  position: relative;
}
.has-feedback .form-control {
  padding-right: 3.4rem;
}
.has-feedback .form-control-feedback {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: block;
  width: 3.4rem;
  height: 3.4rem;
  line-height: 3.4rem;
  text-align: center;
  pointer-events: none;
  color: rgba(22, 65, 148, 0.55);
}
.main-header > .top-header-wrapper {
  background-color: #164194;
  font-weight: 400;
}
.main-header > .top-header-wrapper .top-header {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .main-header > .top-header-wrapper .top-header {
    padding: 0 1rem;
  }
}
.main-header > .top-header-wrapper .top-header:after {
  content: "";
  display: table;
  clear: both;
}
.main-header > .top-header-wrapper .top-header .top-header-left-nav {
  float: left;
}
.main-header > .top-header-wrapper .top-header .top-header-left-nav .sidebar-toggle {
  background-color: transparent;
  background-image: none;
  font-family: "FontAwesome";
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 1.5rem;
  min-width: 3.8rem;
  min-height: 3.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.6rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.main-header > .top-header-wrapper .top-header .top-header-left-nav .sidebar-toggle:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
}
.main-header > .top-header-wrapper .top-header .top-header-left-nav .sidebar-toggle:focus,
.main-header > .top-header-wrapper .top-header .top-header-left-nav .sidebar-toggle:active {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.14);
  outline: 0;
  box-shadow: none;
}
@media (max-width: 767px) {
  .main-header > .top-header-wrapper .top-header .top-header-left-nav .sidebar-toggle {
    padding: 1rem;
    margin: 0.4rem 0;
  }
}
.main-header > .top-header-wrapper .top-header .top-header-left-nav .sidebar-toggle:before {
  content: "\f0c9";
}
.main-header > .top-header-wrapper .top-header .top-header-right-nav {
  float: right;
  position: relative;
  z-index: 10001;
}
.main-header > .top-header-wrapper .top-header .top-header-right-nav .navbar-nav {
  flex-direction: row;
}
.main-header > .top-header-wrapper .top-header .top-header-right-nav .nav-link {
  color: rgba(255, 255, 255, 0.9);
  padding: 1rem;
  font-size: 1.4rem;
}
.main-header > .top-header-wrapper .top-header .top-header-right-nav .nav-link:hover {
  color: #fff;
}
.main-header > .top-header-wrapper .top-header .top-header-right-nav .nav-link .icon {
  margin-right: 0.5rem;
}
.main-header > .top-header-wrapper .top-header .top-header-right-nav .dropdown-menu {
  font-size: 1.4rem;
}
.main-header > .bottom-header-wrapper {
  background-color: white;
  border-bottom: 1px solid #d7d7d7;
}
.main-header > .bottom-header-wrapper > .bottom-header {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: stretch;
  position: relative;
}
@media (max-width: 767px) {
  .main-header > .bottom-header-wrapper > .bottom-header {
    display: block;
    padding: 0 1.2rem;
  }
}
.main-header > .bottom-header-wrapper > .bottom-header > .logo {
  padding: 0;
  margin: 1rem 2rem 1rem 0;
  border: none;
  float: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.main-header > .bottom-header-wrapper > .bottom-header > .logo > a {
  display: block;
  text-decoration: none;
  white-space: nowrap;
}
.main-header > .bottom-header-wrapper > .bottom-header > .logo > a > .logo-img {
  height: 5rem;
  margin-right: 1rem;
  float: left;
}
@media (max-width: 991px) {
  .main-header > .bottom-header-wrapper > .bottom-header > .logo > a > .logo-img {
    float: none;
    margin-top: -2rem;
  }
}
.main-header > .bottom-header-wrapper > .bottom-header > .logo > a > .logo-text {
  color: #50AF47;
  font-weight: 400;
  font-size: 3.2rem;
  line-height: 5rem;
}
@media (max-width: 767px) {
  .main-header > .bottom-header-wrapper > .bottom-header > .logo {
    margin: 0.6rem 0;
  }
  .main-header > .bottom-header-wrapper > .bottom-header > .logo > a {
    display: flex;
    align-items: center;
  }
  .main-header > .bottom-header-wrapper > .bottom-header > .logo > a > .logo-img {
    height: 3.4rem;
    margin-right: 0.8rem;
    float: none;
    margin-top: 0;
  }
  .main-header > .bottom-header-wrapper > .bottom-header > .logo > a > .logo-text {
    font-size: 2.2rem;
    line-height: 1.1;
  }
}
.main-header > .bottom-header-wrapper > .bottom-header .menu {
  z-index: 10000;
  display: flex;
  flex: 1 1 auto;
  align-items: stretch;
}
@media (max-width: 767px) {
  .main-header > .bottom-header-wrapper > .bottom-header .menu {
    display: none !important;
    border: 1px solid #e6ebf2;
    background-color: white;
    box-shadow: 0 12px 30px rgba(9, 30, 66, 0.14);
    border-radius: 1rem;
    overflow: hidden;
    flex-direction: column;
  }
  .main-header > .bottom-header-wrapper > .bottom-header .menu > .navbar-main-menu,
  .main-header > .bottom-header-wrapper > .bottom-header .menu > .navbar-loggedin-menu {
    float: none;
    width: 100%;
  }
}
.main-header > .bottom-header-wrapper > .bottom-header .menu.show {
  display: flex !important;
}
@media (max-width: 767px) {
  .main-header > .bottom-header-wrapper > .bottom-header .menu.show {
    background-color: white;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.6rem);
    z-index: 10020;
  }
}
.main-header > .bottom-header-wrapper > .bottom-header .menu > .navbar-main-menu {
  float: none;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex: 1 1 auto;
}
.main-header > .bottom-header-wrapper > .bottom-header .menu > .navbar-loggedin-menu {
  float: none;
  display: flex;
  align-items: center;
}
.main-header > .bottom-header-wrapper > .bottom-header .navbar-nav {
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
@media (max-width: 767px) {
  .main-header > .bottom-header-wrapper > .bottom-header .navbar-nav {
    flex-direction: column;
    width: 100%;
  }
}
.main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > li,
.main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > .nav-item {
  margin-bottom: 0;
  display: flex;
  align-items: stretch;
}
@media (max-width: 767px) {
  .main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > li,
  .main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > .nav-item {
    display: block;
  }
  .main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > li + li,
  .main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > .nav-item + li,
  .main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > li + .nav-item,
  .main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > .nav-item + .nav-item {
    border-top: 1px solid #f3f5f8;
  }
}
.main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > li a,
.main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > .nav-item a,
.main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > li .nav-link,
.main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > .nav-item .nav-link {
  font-weight: 400;
  padding: 35px 1.5rem;
  font-size: 2rem;
  color: #555;
  text-decoration: none;
  border-bottom: 4px solid transparent;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > li a.active,
.main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > .nav-item a.active,
.main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > li .nav-link.active,
.main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > .nav-item .nav-link.active {
  border-bottom: 4px solid #164194;
  color: #164194;
}
@media (max-width: 767px) {
  .main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > li a,
  .main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > .nav-item a,
  .main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > li .nav-link,
  .main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > .nav-item .nav-link {
    padding: 1.4rem 1.6rem;
    font-size: 1.6rem;
    line-height: 1.35;
    white-space: normal;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 5.2rem;
    border-bottom: 0;
    border-left: 3px solid transparent;
    color: #1f2d4d;
  }
  .main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > li a.active,
  .main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > .nav-item a.active,
  .main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > li .nav-link.active,
  .main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > .nav-item .nav-link.active {
    border-bottom: 0;
    border-left: 3px solid #164194;
    background-color: rgba(22, 65, 148, 0.06);
    font-weight: 500;
  }
  .main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > li a:active,
  .main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > .nav-item a:active,
  .main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > li .nav-link:active,
  .main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > .nav-item .nav-link:active,
  .main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > li a:focus,
  .main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > .nav-item a:focus,
  .main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > li .nav-link:focus,
  .main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > .nav-item .nav-link:focus {
    background-color: rgba(22, 65, 148, 0.1);
    outline: 0;
  }
}
.main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > li.active > a,
.main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > .nav-item.active > a,
.main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > li.active > .nav-link,
.main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > .nav-item.active > .nav-link {
  border-bottom: 4px solid #164194;
  color: #164194;
}
@media (max-width: 767px) {
  .main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > li.active,
  .main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > .nav-item.active {
    border-bottom: 0;
  }
  .main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > li.active > a,
  .main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > .nav-item.active > a,
  .main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > li.active > .nav-link,
  .main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > .nav-item.active > .nav-link {
    border-left: 3px solid #164194;
    border-bottom: 0;
    background-color: rgba(22, 65, 148, 0.06);
    font-weight: 500;
  }
}
.main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > li > a:hover,
.main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > .nav-item > a:hover,
.main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > li > .nav-link:hover,
.main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > .nav-item > .nav-link:hover {
  color: #164194;
}
@media (max-width: 767px) {
  .main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > li > a:hover,
  .main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > .nav-item > a:hover,
  .main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > li > .nav-link:hover,
  .main-header > .bottom-header-wrapper > .bottom-header .navbar-nav > .nav-item > .nav-link:hover {
    background-color: rgba(22, 65, 148, 0.04);
  }
}
html,
body {
  height: 100%;
}
.wrapper {
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-flow: column;
}
.content-wrapper {
  background-color: #ffffff;
  flex: 1 1 auto;
  padding: 15px;
}
.content-wrapper .content {
  max-width: 120rem;
  margin: 0 auto;
}
.content-wrapper .content-grey-background {
  background-color: #efefef;
  padding: 0.5rem 1rem;
  margin: 0.5rem auto;
}
.is-flex {
  display: flex;
  flex-wrap: wrap;
}
.is-flex > [class*='col-'] {
  display: flex;
  flex-direction: column;
}
.icon {
  padding-right: 0.5rem;
}
.page:after {
  content: "";
  display: table;
  clear: both;
}
.page > .page-menu {
  float: left;
  width: 24rem;
  padding-right: 25px;
}
@media (max-width: 767px) {
  .page > .page-menu {
    float: none;
    width: 100%;
    padding-right: 0;
  }
}
.page > .page-menu > .page-menu-toggle {
  display: none;
  padding: 10px;
  background: #164194;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .page > .page-menu > .page-menu-toggle {
    display: block;
  }
}
.page > .page-menu > .page-nav {
  border: none;
  font-size: 14px;
}
.page > .page-menu > .page-nav > li.page-nav-group,
.page > .page-menu > .page-nav > .nav-item.page-nav-group {
  margin-top: 24px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #164194;
  border-bottom: none;
}
.page > .page-menu > .page-nav > li.page-nav-group:first-child,
.page > .page-menu > .page-nav > .nav-item.page-nav-group:first-child {
  margin-top: 0;
}
.page > .page-menu > .page-nav > li.page-nav-group:not(:first-child)::before,
.page > .page-menu > .page-nav > .nav-item.page-nav-group:not(:first-child)::before {
  content: '';
  display: block;
  border-top: 1px solid #e8ecf1;
  margin: 0 5px 12px;
}
.page > .page-menu > .page-nav > li.page-nav-group > a > .fa,
.page > .page-menu > .page-nav > .nav-item.page-nav-group > a > .fa,
.page > .page-menu > .page-nav > li.page-nav-group > .nav-link > .fa,
.page > .page-menu > .page-nav > .nav-item.page-nav-group > .nav-link > .fa {
  width: 16px;
  text-align: center;
  margin-right: 4px;
}
.page > .page-menu > .page-nav > li.page-nav-group > a,
.page > .page-menu > .page-nav > .nav-item.page-nav-group > a,
.page > .page-menu > .page-nav > li.page-nav-group > .nav-link,
.page > .page-menu > .page-nav > .nav-item.page-nav-group > .nav-link {
  color: inherit;
  text-decoration: none;
  padding: 5px 5px;
}
.page > .page-menu > .page-nav > li.page-nav-group > a:hover,
.page > .page-menu > .page-nav > .nav-item.page-nav-group > a:hover,
.page > .page-menu > .page-nav > li.page-nav-group > .nav-link:hover,
.page > .page-menu > .page-nav > .nav-item.page-nav-group > .nav-link:hover,
.page > .page-menu > .page-nav > li.page-nav-group > a:focus,
.page > .page-menu > .page-nav > .nav-item.page-nav-group > a:focus,
.page > .page-menu > .page-nav > li.page-nav-group > .nav-link:focus,
.page > .page-menu > .page-nav > .nav-item.page-nav-group > .nav-link:focus {
  background-color: transparent;
}
.page > .page-menu > .page-nav > li > a,
.page > .page-menu > .page-nav > .nav-item > .nav-link {
  padding: 8px 5px;
  margin: 1px 0;
  border-radius: 6px;
  color: #555;
  transition: all 0.2s ease;
}
.page > .page-menu > .page-nav > li > a:hover,
.page > .page-menu > .page-nav > .nav-item > .nav-link:hover {
  background: rgba(22, 65, 148, 0.05);
  color: #164194;
}
.page > .page-menu > .page-nav > li.active > a,
.page > .page-menu > .page-nav > .nav-item.active > .nav-link,
.page > .page-menu > .page-nav > li > a.active,
.page > .page-menu > .page-nav > .nav-item > .nav-link.active {
  background: rgba(22, 65, 148, 0.08);
  color: #164194;
  font-weight: 500;
  padding: 8px 5px;
  border-left: 4px solid transparent;
}
.page > .page-header {
  background: #164194;
  color: #ffffff;
  padding: 25px 30px;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom: 4px solid #50AF47;
  margin-bottom: 25px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.page > .page-header .page-title {
  flex-grow: 1;
  margin: 0;
  color: #ffffff;
  font-weight: 600;
  font-size: 22px;
}
.page > .page-header .page-super-title,
.page > .page-header .page-sub-title {
  flex-basis: 100%;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}
.page > .page-header .page-super-title {
  margin-bottom: 4px;
}
.page > .page-header .page-actions {
  margin: 6px 0;
}
.page > .page-header .page-actions .btn {
  margin-left: 5px;
  background: #50AF47;
  border-color: #3f8b38;
  color: #ffffff;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  transition: background 0.3s ease-in-out;
}
.page > .page-header .page-actions .btn:hover {
  background: #3f8b38;
  color: #ffffff;
}
.page > .page-content {
  padding: 0;
}
.page > .page-content .page-introduction {
  background-color: #fcfcfc;
  border-radius: 3px;
  padding: 10px;
}
.page > .page-content .page-toolbar {
  overflow: auto;
}
.page > .page-content .page-content-title,
.page > .page-content .section-title {
  margin-top: 10px;
  padding: 6px 0;
  border-bottom: 3px solid #50AF47;
}
.page > .page-content .page-content-section {
  margin-top: 10px;
  margin-bottom: 20px;
}
.page > .page-content .page-content-section > .section-title {
  margin-top: 5px !important;
}
.page > .page-content .page-content-section.section-danger,
.page > .page-content .page-content-section.section-action {
  padding: 10px !important;
  border-radius: 2px;
}
.page > .page-content .page-content-section.section-danger {
  border-left: 3px solid #981b1e;
  background-color: rgba(152, 27, 30, 0.03);
}
.page > .page-content .page-content-section.section-action {
  border-left: 3px solid #164194;
  background-color: rgba(67, 125, 192, 0.1);
}
.page > .page-content .section-card {
  background: #ffffff;
  border: 1px solid #e8ecf1;
  border-bottom: 3px solid #50AF47;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(22, 65, 148, 0.06);
  transition: box-shadow 0.3s ease-in-out;
}
.page > .page-content .section-card.section-card-spaced {
  margin-top: 20px;
}
.page > .page-content .section-card:hover {
  box-shadow: 0 4px 16px rgba(22, 65, 148, 0.1);
}
.page > .page-content .section-card .section-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  user-select: none;
  margin: -25px -25px 0;
  padding: 18px 25px;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  transition: background 0.3s ease-in-out;
}
.page > .page-content .section-card .section-card-header:hover {
  background: #f7f9fc;
}
.page > .page-content .section-card .section-card-header.section-card-header-static {
  cursor: default;
}
.page > .page-content .section-card .section-card-header .section-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #164194;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.page > .page-content .section-card .section-card-header .section-card-title {
  flex-grow: 1;
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: #164194;
  border-bottom: none;
  padding: 0;
}
.page > .page-content .section-card .section-card-header .section-title {
  margin: 0;
  padding: 0;
  border-bottom: none;
}
.page > .page-content .section-card .section-card-header .section-card-toggle {
  color: #8AB5E1;
  font-size: 14px;
  transition: transform 0.3s ease-in-out;
}
.page > .page-content .section-card .section-card-body {
  padding-top: 20px;
}
.page > .page-content .section-card .section-card-actions-inline {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.page > .page-content .section-card .section-card-filter {
  padding-top: 16px;
}
.page > .page-content .section-card .section-card-filter .section-card-filter-form {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}
.page > .page-content .section-card .section-card-filter .section-card-filter-form .mb-3,
.page > .page-content .section-card .section-card-filter .section-card-filter-form .form-group {
  margin-bottom: 0;
}
.page > .page-content .section-card .section-card-filter .section-card-filter-form .form-label {
  display: none;
}
.page > .page-content .section-card .section-card-filter .section-card-filter-form .section-card-filter-select,
.page > .page-content .section-card .section-card-filter .section-card-filter-form .section-card-filter-input {
  max-width: 100%;
  height: 30px;
  min-height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.page > .page-content .section-card .section-card-filter .section-card-filter-form .section-card-filter-select {
  width: 30rem;
  padding-right: 30px;
}
.page > .page-content .section-card .section-card-filter .section-card-filter-form .section-card-filter-input {
  width: 26rem;
}
.page > .page-content .section-card .section-card-filter .section-card-filter-form .section-card-filter-submit {
  min-height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 4px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.page > .page-content .section-card .section-card-filter .section-card-filter-form.section-card-filter-form-statuses {
  align-items: center;
  gap: 14px;
}
.page > .page-content .section-card .section-card-filter .section-card-filter-form.section-card-filter-form-statuses .section-card-filter-status-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.page > .page-content .section-card .section-card-filter .section-card-filter-form.section-card-filter-form-statuses .section-card-filter-status-list .form-check {
  margin-bottom: 0;
  padding-left: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.page > .page-content .section-card .section-card-filter .section-card-filter-form.section-card-filter-form-statuses .section-card-filter-status-list .form-check .form-check-input {
  float: none;
  margin: 0;
}
.page > .page-content .section-card .section-card-filter .section-card-filter-form.section-card-filter-form-statuses .section-card-filter-status-list .form-check .form-check-label {
  margin: 0;
  font-weight: 500;
  color: #164194;
}
@media (max-width: 767px) {
  .page > .page-content .section-card .section-card-filter .section-card-filter-form {
    align-items: stretch;
  }
  .page > .page-content .section-card .section-card-filter .section-card-filter-form .section-card-filter-select,
  .page > .page-content .section-card .section-card-filter .section-card-filter-form .section-card-filter-input {
    width: 100%;
  }
}
.page > .page-content .section-card.collapsed .section-card-header {
  margin-bottom: -25px;
}
.page > .page-content .section-card.collapsed .section-card-toggle {
  transform: rotate(-90deg);
}
.page > .page-content .section-card.collapsed .section-card-body {
  display: none;
}
.page > .page-content .section-card.section-card-danger {
  border-color: rgba(152, 27, 30, 0.2);
  background: rgba(152, 27, 30, 0.02);
}
.page > .page-content .section-card.section-card-danger .section-card-header .section-card-icon {
  background: #981b1e;
}
.page > .page-content .section-card.section-card-danger .section-card-header .section-card-title {
  color: #981b1e;
}
.page > .page-content .section-card.section-card-danger .section-card-header .section-card-toggle {
  color: rgba(152, 27, 30, 0.4);
}
.page > .page-content .section-card.section-card-danger .section-card-header:hover {
  background: rgba(152, 27, 30, 0.04);
}
.page > .page-content .section-card.section-card-success {
  border-color: rgba(80, 175, 71, 0.2);
  background: rgba(80, 175, 71, 0.02);
}
.page > .page-content .section-card.section-card-success .section-card-header .section-card-icon {
  background: #50AF47;
}
.page > .page-content .section-card.section-card-success .section-card-header .section-card-title {
  color: #50AF47;
}
.page > .page-content .section-card.section-card-success .section-card-header .section-card-toggle {
  color: rgba(80, 175, 71, 0.4);
}
.page > .page-content .section-card.section-card-success .section-card-header:hover {
  background: rgba(80, 175, 71, 0.04);
}
.page > .page-content .section-card.section-card-warning {
  border-color: rgba(240, 173, 78, 0.3);
  background: rgba(240, 173, 78, 0.08);
}
.page > .page-content .section-card.section-card-warning .section-card-header .section-card-icon {
  background: #f0ad4e;
}
.page > .page-content .section-card.section-card-warning .section-card-header .section-card-title {
  color: #c77c11;
}
.page > .page-content .section-card.section-card-warning .section-card-header .section-card-toggle {
  color: rgba(199, 124, 17, 0.5);
}
.page > .page-content .section-card.section-card-warning .section-card-header:hover {
  background: rgba(240, 173, 78, 0.14);
}
.page.has-menu > .page-content {
  margin-left: 24rem;
}
@media (max-width: 767px) {
  .page.has-menu > .page-content {
    margin: auto;
  }
}
.section-info {
  background: #f7f9fc;
  border: 1px solid #c8d9f1;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 14px 14px 14px 0;
  margin-bottom: 15px;
  overflow: auto;
  display: flex;
  flex-direction: row;
}
.section-info .section-info-icon {
  flex-shrink: 0;
  width: 44px;
  font-size: 18px;
  text-align: center;
  color: #164194;
}
.section-info .section-info-text {
  flex-grow: 1;
  font-size: 13px;
  line-height: 1.6;
  color: #444;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.btn {
  border-radius: 4px;
  font-size: 14px;
}
.btn.btn-sm {
  font-size: 12px;
  padding: 5px 10px;
}
.btn.btn-oa,
.btn.btn-primary {
  color: #fff;
  background-color: #164194;
  background-image: none;
  border-color: #164194;
}
.btn.btn-oa:hover,
.btn.btn-primary:hover,
.btn.btn-oa:focus,
.btn.btn-primary:focus,
.btn.btn-oa.focus,
.btn.btn-primary.focus,
.btn.btn-oa:active,
.btn.btn-primary:active,
.btn.btn-oa.active,
.btn.btn-primary.active {
  color: #fff;
  background-color: #13377e;
  border-color: #13377e;
}
.btn.btn-oa.disabled:hover,
.btn.btn-primary.disabled:hover,
.btn.btn-oa[disabled]:hover,
.btn.btn-primary[disabled]:hover,
fieldset[disabled] .btn.btn-oa:hover,
fieldset[disabled] .btn.btn-primary:hover,
.btn.btn-oa.disabled:focus,
.btn.btn-primary.disabled:focus,
.btn.btn-oa[disabled]:focus,
.btn.btn-primary[disabled]:focus,
fieldset[disabled] .btn.btn-oa:focus,
fieldset[disabled] .btn.btn-primary:focus,
.btn.btn-oa.disabled.focus,
.btn.btn-primary.disabled.focus,
.btn.btn-oa[disabled].focus,
.btn.btn-primary[disabled].focus,
fieldset[disabled] .btn.btn-oa.focus,
fieldset[disabled] .btn.btn-primary.focus {
  background-color: #5c8be7;
  border-color: #5c8be7;
}
.btn.btn-oa-green,
.btn.btn-success {
  color: #fff;
  background-color: #50AF47;
  background-image: none;
  border-color: #50AF47;
}
.btn.btn-oa-green:hover,
.btn.btn-success:hover,
.btn.btn-oa-green:focus,
.btn.btn-success:focus,
.btn.btn-oa-green.focus,
.btn.btn-success.focus,
.btn.btn-oa-green:active,
.btn.btn-success:active,
.btn.btn-oa-green.active,
.btn.btn-success.active {
  color: #fff;
  background-color: #489d40;
  border-color: #489d40;
}
.btn.btn-oa-green.disabled:hover,
.btn.btn-success.disabled:hover,
.btn.btn-oa-green[disabled]:hover,
.btn.btn-success[disabled]:hover,
fieldset[disabled] .btn.btn-oa-green:hover,
fieldset[disabled] .btn.btn-success:hover,
.btn.btn-oa-green.disabled:focus,
.btn.btn-success.disabled:focus,
.btn.btn-oa-green[disabled]:focus,
.btn.btn-success[disabled]:focus,
fieldset[disabled] .btn.btn-oa-green:focus,
fieldset[disabled] .btn.btn-success:focus,
.btn.btn-oa-green.disabled.focus,
.btn.btn-success.disabled.focus,
.btn.btn-oa-green[disabled].focus,
.btn.btn-success[disabled].focus,
fieldset[disabled] .btn.btn-oa-green.focus,
fieldset[disabled] .btn.btn-success.focus {
  background-color: #b4dfb0;
  border-color: #b4dfb0;
}
.btn.btn-oa-red,
.btn.btn-danger {
  color: #fff;
  background-color: #981b1e;
  background-image: none;
  border-color: #981b1e;
}
.btn.btn-oa-red:hover,
.btn.btn-danger:hover,
.btn.btn-oa-red:focus,
.btn.btn-danger:focus,
.btn.btn-oa-red.focus,
.btn.btn-danger.focus,
.btn.btn-oa-red:active,
.btn.btn-danger:active,
.btn.btn-oa-red.active,
.btn.btn-danger.active {
  color: #fff;
  background-color: #82171a;
  border-color: #82171a;
}
.btn.btn-oa-red.disabled:hover,
.btn.btn-danger.disabled:hover,
.btn.btn-oa-red[disabled]:hover,
.btn.btn-danger[disabled]:hover,
fieldset[disabled] .btn.btn-oa-red:hover,
fieldset[disabled] .btn.btn-danger:hover,
.btn.btn-oa-red.disabled:focus,
.btn.btn-danger.disabled:focus,
.btn.btn-oa-red[disabled]:focus,
.btn.btn-danger[disabled]:focus,
fieldset[disabled] .btn.btn-oa-red:focus,
fieldset[disabled] .btn.btn-danger:focus,
.btn.btn-oa-red.disabled.focus,
.btn.btn-danger.disabled.focus,
.btn.btn-oa-red[disabled].focus,
.btn.btn-danger[disabled].focus,
fieldset[disabled] .btn.btn-oa-red.focus,
fieldset[disabled] .btn.btn-danger.focus {
  background-color: #e4686b;
  border-color: #e4686b;
}
.btn.btn-outline-oa,
.btn.btn-secondary,
.btn.btn-neutral {
  color: #164194;
  background-color: transparent;
  background-image: none;
  border-color: #164194;
}
.btn.btn-outline-oa:hover,
.btn.btn-secondary:hover,
.btn.btn-neutral:hover,
.btn.btn-outline-oa:focus,
.btn.btn-secondary:focus,
.btn.btn-neutral:focus,
.btn.btn-outline-oa.focus,
.btn.btn-secondary.focus,
.btn.btn-neutral.focus,
.btn.btn-outline-oa:active,
.btn.btn-secondary:active,
.btn.btn-neutral:active,
.btn.btn-outline-oa.active,
.btn.btn-secondary.active,
.btn.btn-neutral.active {
  color: #fff;
  background-color: #164194;
  border-color: #164194;
}
.btn.btn-outline-oa-red {
  color: #981b1e;
  background-color: transparent;
  background-image: none;
  border-color: #981b1e;
}
.btn.btn-outline-oa-red:hover,
.btn.btn-outline-oa-red:focus,
.btn.btn-outline-oa-red.focus,
.btn.btn-outline-oa-red:active,
.btn.btn-outline-oa-red.active {
  color: #fff;
  background-color: #981b1e;
  border-color: #981b1e;
}
.btn.btn-outline-oa-green {
  color: #50AF47;
  background-color: transparent;
  background-image: none;
  border-color: #50AF47;
}
.btn.btn-outline-oa-green:hover,
.btn.btn-outline-oa-green:focus,
.btn.btn-outline-oa-green.focus,
.btn.btn-outline-oa-green:active,
.btn.btn-outline-oa-green.active {
  color: #fff;
  background-color: #50AF47;
  border-color: #50AF47;
}
.btn.btn-measure {
  color: #fff;
  background-color: #50AF47;
  border-color: #489d40;
}
.btn.btn-measure:focus,
.btn.btn-measure.focus,
.btn.btn-measure:active,
.btn.btn-measure.active,
.btn.btn-measure:hover {
  color: #fff;
  background-color: #489d40;
  border-color: #3f8b38;
}
.btn.btn-measure.disabled:hover,
.btn.btn-measure[disabled]:hover,
fieldset[disabled] .btn.btn-measure:hover,
.btn.btn-measure.disabled:focus,
.btn.btn-measure[disabled]:focus,
fieldset[disabled] .btn.btn-measure:focus,
.btn.btn-measure.disabled.focus,
.btn.btn-measure[disabled].focus,
fieldset[disabled] .btn.btn-measure.focus {
  background-color: #b4dfb0;
  border-color: #b4dfb0;
}
.btn.btn-angled {
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
}
.btn.btn-action-emphasis {
  padding: 10px 28px;
  font-size: 15px;
  font-weight: 600;
}
.btn-group-sm > .btn {
  font-size: 12px;
  padding: 5px 10px;
}
.form-control,
.form-select {
  color: #000000;
  font-size: 14px;
}
.form-control {
  padding: 6px 12px;
}
input.form-control {
  min-height: 34px;
}
.form-select {
  min-height: 34px;
  padding: 6px 30px 6px 12px;
}
.form-group:first-child {
  margin-top: 0;
}
.form-group:last-child {
  margin-bottom: 0;
}
.form-group {
  overflow: auto;
}
.form-control-static {
  padding-top: 0px;
}
.form-inline .form-group {
  margin-left: 5px;
}
@media (max-width: 767px) {
  .button-group .pull-right,
  .button-group .float-end {
    float: none !important;
  }
  .button-group .btn {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
}
.has-error,
.is-invalid {
  color: #a94442;
  font-weight: 400;
}
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error .form-control-feedback {
  color: #a94442;
}
.has-error .form-control,
.has-error .form-select,
.has-error .input-group-text {
  border-color: #a94442;
}
.has-error .input-group-text {
  color: #a94442;
  background-color: #f2dede;
}
.has-error .form-control:focus,
.has-error .form-select:focus {
  border-color: #843534;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.08), 0 0 8px rgba(169, 68, 66, 0.6);
}
.invalid-feedback {
  color: #a94442;
}
.form-helper-text {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: rgba(51, 51, 51, 0.7);
  font-size: 13px;
  line-height: 1.4;
}
.form-group-panel {
  margin-bottom: 20px;
  background-color: rgba(22, 65, 148, 0.04);
  border: 1px solid rgba(22, 65, 148, 0.15);
  border-radius: 4px;
}
.form-group-panel .form-group-panel-options {
  padding: 10px 15px;
  border-bottom: 1px solid rgba(22, 65, 148, 0.1);
}
.form-group-panel .form-group-panel-options .form-group-panel-toggle {
  margin-bottom: 0;
  cursor: pointer;
  font-weight: 400;
  transition: color 0.3s ease-in-out;
}
.form-group-panel .form-group-panel-options .form-group-panel-toggle input[type="checkbox"] {
  display: none;
}
.form-group-panel .form-group-panel-options .form-group-panel-toggle.active {
  color: #164194;
}
.form-group-panel .form-group-panel-content {
  padding: 15px;
}
.form-group-panel .form-group-panel-content label {
  display: block;
  margin-bottom: 5px;
  color: rgba(22, 65, 148, 0.6);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
}
.form-group-panel .form-group-panel-content .form-control {
  border-color: rgba(22, 65, 148, 0.2);
}
.form-group-panel .form-group-panel-content .form-control:focus {
  border-color: #164194;
}
.planning-flow {
  margin-top: 15px;
  padding: 15px;
  border: 1px solid #d9e2ef;
  border-radius: 6px;
  background: #f8fbff;
}
.planning-flow-header {
  margin-bottom: 15px;
}
.planning-flow-title {
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}
.planning-flow-intro {
  margin-bottom: 0;
}
.planning-flow-step {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #d9e2ef;
}
.planning-flow-step-last {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.planning-flow-step-title {
  margin-bottom: 5px;
  font-weight: 600;
  color: #333;
}
.planning-flow-step-copy {
  margin-bottom: 10px;
}
.planning-flow-field {
  margin-bottom: 0;
}
.vertical-blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.horizontal-blocks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.distribute-blocks {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.block {
  flex: 1 1;
  padding: 10px;
  margin: 10px 0;
}
.block-contrast {
  background-color: #164194;
  border-radius: 5px;
  color: #FFFFFF;
}
.grey-block {
  background-color: #ededed;
  border-radius: 2px;
}
.list {
  width: 100%;
  list-style: none;
  padding: 0;
}
.list .list-item-group {
  padding: 5px;
  border: 1px solid #ddd;
  background: #ddd;
}
.list .list-item {
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}
.list .list-item:last-child {
  border-bottom: 1px solid #ddd;
}
.list .list-item:hover {
  background-color: #fafafa;
}
.list .list-item.disabled {
  color: #999;
}
.list .list-item a {
  color: #333;
  text-decoration: none;
}
.list .list-item .list-item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0;
  line-height: 5rem;
}
.list .list-item .list-item-wrapper .list-item-icon {
  flex: 0 0 5rem;
  height: 5rem;
  max-width: 5rem;
  font-size: 3rem;
  text-align: center;
}
.list .list-item .list-item-wrapper .list-item-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1 0;
  padding-left: 15px;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  font-size: 1.4rem;
  line-height: normal;
}
.list .list-item .list-item-wrapper .list-item-body .list-item-text {
  font-weight: 500;
}
.list .list-item .list-item-wrapper .list-item-body .list-item-text-extra {
  font-size: 1.2rem;
  font-style: italic;
  color: #4d4d4d;
}
.list .list-item .list-item-wrapper .list-item-body .list-item-help {
  font-size: 1.2rem;
  color: #981b1e;
}
.list.list-separated .list-item {
  margin-bottom: 10px;
  border: 1px #efefef solid;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.18);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.18);
}
.list.list-separated .list-item:hover {
  -webkit-box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.18);
  box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.18);
}
.switch-group {
  display: flex;
  flex-direction: row;
  margin: 5px 0;
}
.switch-control {
  padding: 0 10px;
}
.switch-text {
  padding: 2px 0;
}
.switch {
  position: relative;
  display: inline-block;
  width: 5em;
  height: 2.5em;
  font-size: 10px;
}
.switch input {
  display: none;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.2s;
  border-radius: 99999px;
  background-color: #ccc;
}
.slider::before {
  position: absolute;
  content: "";
  height: 1.5em;
  width: 1.5em;
  left: 0.5em;
  bottom: 0.5em;
  background-color: white;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
  transition: 0.2s;
  border-radius: 50%;
}
input:checked + .slider {
  background-color: #164194;
}
input:focus + .slider {
  box-shadow: 0 0 1px #13377e;
}
input:checked + .slider::before {
  transform: translateX(2.5em);
}
.slider::after {
  color: black;
  display: block;
  position: absolute;
  transform: translate(-50%, -50%);
  transition: 0.2s;
  top: 50%;
  left: 50%;
  font-size: 0.7em;
}
input:checked + .slider::after {
  color: white;
}
@keyframes hover-color {
  from {
    border-color: #c0c0c0;
  }
  to {
    border-color: #164194;
  }
}
.oa-radio,
.oa-checkbox {
  position: absolute;
  opacity: 0;
}
.oa-radio[disabled],
.oa-checkbox[disabled] {
  cursor: not-allowed;
}
.oa-radio + label,
.oa-checkbox + label {
  position: relative;
  display: block;
  padding-left: 30px;
  cursor: pointer;
  vertical-align: middle;
}
.oa-radio + label:hover:before,
.oa-checkbox + label:hover:before {
  animation-duration: 0.4s;
  animation-fill-mode: both;
  animation-name: hover-color;
}
.oa-radio + label:before,
.oa-checkbox + label:before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  content: '';
  border: 1px solid #c0c0c0;
}
.oa-radio + label:after,
.oa-checkbox + label:after {
  position: absolute;
  display: none;
  content: '';
}
.oa-radio:focus + label,
.oa-checkbox:focus + label {
  text-decoration: underline #164194;
}
.oa-radio:focus + label:before,
.oa-checkbox:focus + label:before {
  border-color: #164194;
}
.oa-radio[disabled] + label,
.oa-checkbox[disabled] + label {
  cursor: not-allowed;
  color: #e4e4e4;
}
.oa-radio[disabled] + label:hover,
.oa-checkbox[disabled] + label:hover,
.oa-radio[disabled] + label:before,
.oa-checkbox[disabled] + label:before,
.oa-radio[disabled] + label:after,
.oa-checkbox[disabled] + label:after {
  cursor: not-allowed;
}
.oa-radio[disabled] + label:hover:before,
.oa-checkbox[disabled] + label:hover:before {
  border: 1px solid #e4e4e4;
  animation-name: none;
}
.oa-radio[disabled] + label:before,
.oa-checkbox[disabled] + label:before {
  border-color: #e4e4e4;
}
.oa-radio:checked + label:before,
.oa-checkbox:checked + label:before {
  animation-name: none;
}
.oa-radio:checked + label:after,
.oa-checkbox:checked + label:after {
  display: block;
}
.oa-checkbox + label:before {
  border-radius: 3px;
}
.oa-checkbox + label:after {
  top: 2px;
  left: 7px;
  box-sizing: border-box;
  width: 6px;
  height: 12px;
  transform: rotate(45deg);
  border-width: 2px;
  border-style: solid;
  border-color: #fff;
  border-top: 0;
  border-left: 0;
}
.oa-checkbox:checked + label:before {
  border: #164194;
  background: #164194;
}
.oa-checkbox:checked[disabled] + label:before {
  border: #5c8be7;
  background: #5c8be7;
}
.oa-radio + label:before {
  border-radius: 50%;
}
.oa-radio + label:after {
  top: 6px;
  left: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #164194;
}
.oa-radio:checked + label:before {
  border: 1px solid #164194;
}
.oa-radio:checked[disabled] + label:before {
  border: 1px solid #5c8be7;
}
.oa-radio:checked[disabled] + label:after {
  background: #5c8be7;
}
td.no-wrap,
th.no-wrap {
  white-space: nowrap;
}
td.align-right,
th.align-right {
  text-align: right;
}
.admin-list-grid th a {
  color: #337ab7;
  text-decoration: none;
  font-weight: 600;
}
.admin-list-grid td a {
  color: #337ab7;
  text-decoration: none;
}
.admin-list-grid th a:hover,
.admin-list-grid td a:hover {
  text-decoration: underline;
}
.admin-list-grid {
  margin-bottom: 0;
}
.admin-list-pagination.pagination {
  margin: 0;
}
.admin-list-table-compact {
  margin-bottom: 0;
}
.admin-list-empty-text {
  font-style: italic;
}
.admin-list-toolbar-form {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}
.admin-list-toolbar-form .mb-3,
.admin-list-toolbar-form .form-group,
.admin-list-toolbar-form .form-check {
  margin-bottom: 0;
}
.admin-list-toolbar-form .form-select {
  min-width: 14rem;
  padding-right: 30px;
}
.admin-list-toolbar-form .form-control,
.admin-list-toolbar-form .form-select {
  height: 30px;
  min-height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.admin-list-toolbar-form .btn {
  min-height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 4px;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.admin-list-search-group .admin-list-search-input,
.participants-search-group .admin-list-search-input,
.admin-list-search-group .participants-search-input,
.participants-search-group .participants-search-input {
  width: 24rem;
  min-width: 24rem;
}
.stats-overview-table > tbody > tr.stats-total-row > td {
  background-color: rgba(22, 65, 148, 0.1) !important;
  font-weight: 600;
}
.stats-chart-container {
  position: relative;
  max-width: 100%;
  height: 300px;
  margin-bottom: 30px;
}
.registration-details-table > tbody > tr > th {
  width: 200px;
}
.admin-list-row-muted > td {
  font-weight: 300;
  font-style: italic;
  opacity: 0.8;
}
@media (max-width: 767px) {
  .admin-list-toolbar-form {
    justify-content: flex-start;
  }
  .admin-list-search-group,
  .participants-search-group {
    width: 100%;
  }
  .admin-list-search-group .admin-list-search-input,
  .participants-search-group .admin-list-search-input,
  .admin-list-search-group .participants-search-input,
  .participants-search-group .participants-search-input {
    min-width: 0;
    width: 100%;
  }
}
html {
  font-size: 62.5%;
}
body {
  background-color: #ffffff;
  font-family: 'Roboto Slab', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: #000000;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #164194;
  font-weight: 400;
}
h2 {
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 3px solid #50AF47;
}
.main-footer {
  background-color: #164194;
  padding: 15px;
  color: #FFFFFF;
  display: flex;
  font-weight: 400;
}
.main-footer .left,
.main-footer .center,
.main-footer .right {
  flex: 1 1 0;
}
.main-footer .center {
  text-align: center;
}
@media (max-width: 767px) {
  .main-footer .center {
    text-align: right;
  }
}
.main-footer .right {
  text-align: right;
}
.main-footer a {
  color: #FFFFFF;
}
.text-oa-blue {
  color: #164194;
}
.text-oa-red {
  color: #981b1e;
}
.details-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.details-row .details-label,
.details-row .details-value {
  margin-bottom: 5px;
}
.details-row .details-label {
  font-weight: 600;
  flex: 0 0 200px;
}
.details-row .details-value {
  flex-grow: 1;
}
.details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.details .details-general,
.details .details-coach {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex: 1 0 50%;
  max-width: 50%;
  padding: 10px 5px;
  font-size: 1.2rem;
}
@media (max-width: 767px) {
  .details .details-general,
  .details .details-coach {
    flex: 1 0 100%;
    max-width: 100%;
  }
}
.details .details-general .info-box,
.details .details-coach .info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  flex: 1 0;
  padding: 10px 5px;
  background-color: #efefef;
  border-radius: 2px;
  color: #333;
}
.details .details-general h3,
.details .details-coach h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 10px;
  border-bottom: 1px solid #ddd;
}
.details .details-general table,
.details .details-coach table {
  width: 100%;
}
.details .details-general table td,
.details .details-coach table td {
  width: 50%;
}
.home-measure-box {
  background-color: #efefef;
  padding-top: 15px;
  padding-bottom: 15px;
}
.login-wrapper > .login-form-box {
  background-color: #efefef;
  padding-top: 15px;
  padding-bottom: 15px;
}
.sign-up-options-wrapper > .sign-up-create-account-box {
  background-color: #efefef;
  padding-top: 15px;
  padding-bottom: 15px;
}
.site-error-page {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 200px);
  padding: 52px 0 70px;
  background: #ffffff;
}
.site-error-page .container {
  max-width: 860px;
}
@media (max-width: 767px) {
  .site-error-page {
    min-height: auto;
    padding: 32px 0 48px;
  }
}
.site-error-page__hero {
  background: #164194;
  color: #ffffff;
  padding: 44px 42px 118px;
  border-bottom-left-radius: 14px;
  border-top-right-radius: 14px;
  border-top-left-radius: 14px;
  box-shadow: 0 18px 42px rgba(22, 65, 148, 0.14);
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .site-error-page__hero {
    padding: 32px 24px 92px;
  }
}
.site-error-page__hero:before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.2), transparent 42%);
  pointer-events: none;
}
.site-error-page__hero-content {
  margin: 0 auto;
  max-width: 540px;
  position: relative;
  text-align: center;
  z-index: 1;
}
.site-error-page__eyebrow {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.24rem;
  margin: 0 0 22px;
  text-transform: uppercase;
}
.site-error-page__card {
  background: #ffffff;
  border: 1px solid #e3e9f1;
  border-bottom-left-radius: 14px;
  border-top-right-radius: 14px;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: 0 20px 48px rgba(17, 45, 97, 0.1);
  margin: -74px auto 0;
  max-width: 660px;
  padding: 0;
  position: relative;
}
@media (max-width: 767px) {
  .site-error-page__card {
    margin-top: -52px;
  }
}
.site-error-page__card-content {
  margin: 0 auto;
  max-width: 540px;
  padding: 38px 40px 40px;
  position: relative;
  text-align: center;
}
@media (max-width: 767px) {
  .site-error-page__card-content {
    padding: 28px 22px 30px;
  }
}
.site-error-page__status {
  color: #ffffff;
  font-size: 5.4rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0 0 18px;
}
@media (max-width: 767px) {
  .site-error-page__status {
    font-size: 4.6rem;
  }
}
.site-error-page__title {
  border-bottom: 0;
  font-size: 3.6rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.15;
  margin: 0 auto;
  max-width: 420px;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .site-error-page__title {
    font-size: 3rem;
  }
}
.site-error-page__message {
  font-size: 1.9rem;
  color: #405066;
  line-height: 1.8;
  margin: 0 auto 32px;
  max-width: 460px;
}
@media (max-width: 767px) {
  .site-error-page__message {
    font-size: 1.4rem;
    margin-bottom: 26px;
  }
}
.site-error-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.site-error-page__actions .btn {
  min-width: 160px;
}
.site-error-page__actions .btn-oa {
  box-shadow: 0 10px 22px rgba(22, 65, 148, 0.18);
}
@media (max-width: 767px) {
  .site-error-page__actions .btn {
    width: 100%;
  }
}
.question-instructions {
  max-width: 80rem;
  margin-bottom: 2.4rem;
  line-height: 1.6;
}
.question-title {
  margin-bottom: 10px;
}
.question-title > h3 {
  font-size: 16px;
  font-weight: 600;
}
.question-description {
  margin-bottom: 10px;
  font-style: italic;
}
.question-label {
  font-weight: 600;
  font-size: 14px;
  margin: 0 0 10px 0;
}
.question-score {
  margin-bottom: 10px;
}
.question-score .invalid-feedback,
.question-score .help-block {
  color: #a94442;
}
.question-score .question-score-table {
  text-align: center;
  width: 100%;
}
.question-score .question-score-table td.score {
  padding: 0 15px;
}
.question-score .question-score-table .question-score-table-inputs {
  background-color: #efefef;
}
.teamscan-score-guide {
  margin-bottom: 1.6rem;
  padding: 1.2rem 1.6rem;
  border: 1px solid #dbe1ea;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 8px;
  background: #f7f9fc;
}
.teamscan-score-guide .teamscan-score-guide-intro {
  margin: 0;
  color: #000000;
  font-size: 1.4rem;
  font-weight: 500;
}
.teamscan-flow-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}
.teamscan-flow-actions-end {
  justify-content: flex-end;
}
.teamscan-register-copy p:last-child {
  margin-bottom: 0;
}
.teamscan-statements {
  display: grid;
  gap: 1.6rem;
  margin-bottom: 2.4rem;
}
.teamscan-statement {
  border: 1px solid #dbe1ea;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 1.6rem;
  margin: 0;
  background: #ffffff;
}
.teamscan-statement-legend {
  margin-bottom: 1.2rem;
  padding: 0;
  border: 0;
  color: #000000;
  font-size: 1.6rem;
  font-weight: 600;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  width: 100%;
}
.teamscan-statement-index {
  font-weight: 700;
}
.teamscan-scale {
  display: grid;
  grid-template-columns: minmax(8rem, auto) 1fr minmax(8rem, auto);
  gap: 1rem;
  align-items: center;
}
.teamscan-scale-edge {
  color: #000000;
  font-size: 1.2rem;
  font-weight: 600;
}
.teamscan-scale-edge-start {
  text-align: left;
}
.teamscan-scale-edge-end {
  text-align: right;
}
.teamscan-scale-field {
  margin: 0;
}
.teamscan-scale-field > input[type='hidden'] {
  display: none;
}
.teamscan-scale-field .teamscan-scale-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
}
.teamscan-scale-field .teamscan-scale-option {
  margin: 0;
  cursor: pointer;
  position: relative;
}
.teamscan-scale-field .teamscan-scale-option input[type='radio'] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.teamscan-scale-field .teamscan-scale-option .teamscan-scale-option-label {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.8rem;
  border: 1px solid #cfd6e0;
  border-radius: 8px;
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  background: #ffffff;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
.teamscan-scale-field .teamscan-scale-option input[type='radio']:focus-visible + .teamscan-scale-option-label {
  outline: 2px solid rgba(22, 65, 148, 0.35);
  outline-offset: 2px;
}
.teamscan-scale-field .teamscan-scale-option input[type='radio']:checked + .teamscan-scale-option-label {
  color: #ffffff;
  border-color: #164194;
  background: #164194;
}
.teamscan-scale-field .teamscan-scale-error {
  margin-top: 0.8rem;
  font-size: 1.2rem;
  color: #a94442;
}
.teamscan-scale-field .help-block {
  color: #a94442;
}
.question-explanation {
  margin-bottom: 10px;
}
.question-explanation textarea {
  width: 100%;
  min-height: 12rem;
  border: 1px solid #cccccc;
  border-radius: 2px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
@media (max-width: 767px) {
  .teamscan-flow-actions .btn {
    width: 100%;
  }
  .teamscan-flow-actions-end {
    justify-content: stretch;
  }
  .teamscan-scale {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .teamscan-scale-edge {
    display: flex;
    align-items: center;
  }
  .teamscan-scale-edge-start {
    justify-content: flex-start;
  }
  .teamscan-scale-edge-end {
    justify-content: flex-end;
  }
}
.usage-list {
  margin-top: 15px;
}
.usage-list .usage-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  margin-bottom: 10px;
  background: #ffffff;
  border: 1px solid #e8ecf1;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: 0 1px 4px rgba(22, 65, 148, 0.04);
  transition: all 0.3s ease-in-out;
}
.usage-list .usage-item:hover {
  box-shadow: 0 3px 8px rgba(22, 65, 148, 0.08);
  border-color: #d0d7e2;
}
.usage-list .usage-item .usage-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #164194;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  margin-right: 16px;
}
.usage-list .usage-item .usage-name {
  flex-grow: 1;
  font-weight: 500;
  font-size: 15px;
}
.usage-list .usage-item .usage-name a {
  color: #333;
  text-decoration: none;
}
.usage-list .usage-item .usage-name a:hover {
  color: #164194;
}
.usage-list .usage-item .usage-action {
  margin-left: 16px;
}
.competency-list {
  margin-bottom: 24px;
}
.competency-list .competency-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  margin-bottom: 10px;
  background: #ffffff;
  border: 1px solid #e8ecf1;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: 0 1px 4px rgba(22, 65, 148, 0.04);
  transition: all 0.3s ease-in-out;
}
.competency-list .competency-item:hover {
  box-shadow: 0 3px 8px rgba(22, 65, 148, 0.08);
  border-color: #d0d7e2;
}
.competency-list .competency-item .competency-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #164194;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  font-weight: 700;
  margin-right: 16px;
}
.competency-list .competency-item .competency-info {
  flex-grow: 1;
}
.competency-list .competency-item .competency-info .competency-name {
  font-weight: 500;
  font-size: 15px;
  color: #333;
}
.competency-list .competency-item .competency-info .competency-category {
  font-size: 12px;
  color: #777;
  margin-top: 2px;
  font-weight: 400;
}
.competency-list .competency-item .competency-actions {
  margin-left: 16px;
}
.competency-list .competency-item .competency-actions .btn {
  padding: 5px 10px;
  font-size: 13px;
  border-radius: 4px;
}
.competency-list .competency-item .competency-actions .btn.btn-move {
  margin-right: 4px;
}
.competency-list .competency-item .competency-actions .btn.btn-oa-red {
  margin-left: 4px;
}
.competency-list .no-competencies {
  padding: 30px;
  text-align: center;
  background: #f9fbfe;
  border: 1px dashed #d0d7e2;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  color: #888;
}
.add-competency-section {
  padding: 24px;
  background: #f7f9fc;
  border: 1px solid #e8ecf1;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
}
.add-competency-section .section-title {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 600;
  color: #164194;
  border-bottom: none;
  padding: 0;
}
.add-competency-section .add-form {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.add-competency-section .add-form .flex-grow {
  flex-grow: 1;
}
.add-competency-section .add-form .oa-styled-input {
  height: 42px;
}
.add-competency-section .add-form .btn-add {
  height: 42px;
  padding: 0 20px;
  font-weight: 600;
  border-bottom-left-radius: 8px;
  border-top-right-radius: 8px;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
}
.add-competency-section .error-message {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 500;
}
.success-message-top {
  font-size: 14px;
  font-weight: 500;
  animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.course-list {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.course-list .course-list-item {
  color: #333;
  margin-bottom: 10px;
  border: 1px #efefef solid;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
}
.course-list .course-list-item:hover {
  -webkit-box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.25);
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.25);
}
.course-list .course-list-item:hover .course-list-item-title {
  text-decoration: underline;
}
.course-list .course-list-item a {
  text-decoration: none;
}
.course-list .course-list-item .course-list-item-box {
  padding: 10px;
  margin: 0;
}
.course-list .course-list-item .course-list-item-box .course-list-item-title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}
.course-list .course-list-item .course-list-item-box .course-list-item-details {
  font-size: 12px;
  font-style: italic;
  color: #333;
}
.course-module-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.course-module-details .course-module-details-general,
.course-module-details .course-module-details-coach {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex: 1 0 50%;
  max-width: 50%;
  padding: 10px 5px;
  font-size: 12px;
}
@media (max-width: 767px) {
  .course-module-details .course-module-details-general,
  .course-module-details .course-module-details-coach {
    flex: 1 0 100%;
    max-width: 100%;
  }
}
.course-module-details .course-module-details-general .info-box,
.course-module-details .course-module-details-coach .info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  flex: 1 0;
  padding: 10px 5px;
  background-color: #efefef;
  border-radius: 2px;
  color: #333;
}
.course-module-details .course-module-details-general h3,
.course-module-details .course-module-details-coach h3 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 10px;
  border-bottom: 1px solid #ddd;
}
.course-module-details .course-module-details-general table,
.course-module-details .course-module-details-coach table {
  width: 100%;
}
.course-module-details .course-module-details-general table td,
.course-module-details .course-module-details-coach table td {
  width: 50%;
}
.course-members-list .members {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #333;
}
.course-members-list .members-item {
  padding: 3px 10px;
}
.course-members-list .members-group {
  background-color: #ebebeb;
  padding: 3px 10px;
  font-weight: 600;
  font-size: 12px;
  border: 1px #efefef solid;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  margin-bottom: 5px;
  margin-top: 5px;
}
.course-members-list .member-container {
  border: 1px #efefef solid;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.course-members-list .member-container .member-icon {
  color: #ccc;
  font-size: 3em;
}
.course-members-list .member-container .member-details {
  padding: 3px 10px;
}
.course-members-list .member-container .member-details .member-name {
  font-weight: 600;
  font-size: 1em;
}
.course-members-list .member-container .member-details .member-email,
.course-members-list .member-container .member-details .member-phone {
  font-size: 0.8em;
}
.events {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.event {
  color: #333;
  margin-bottom: 10px;
  border: 1px #efefef solid;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
  padding: 10px;
}
.event.event-today {
  font-weight: bold;
}
.event-month {
  background-color: #ebebeb;
  padding-top: 3px;
  padding-bottom: 3px;
  font-weight: 600;
  font-size: 12px;
}
.event-date,
.event-module {
  font-size: 12px;
  font-style: italic;
  color: #333;
}
.template-sub-section {
  margin-left: 30px;
}
.template-section,
.template-sub-section {
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 2px;
}
.template-section .template-group,
.template-sub-section .template-group {
  margin-top: 10px;
}
.template-section .template-section-head,
.template-sub-section .template-section-head {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}
.template-section .template-section-head .template-section-title,
.template-sub-section .template-section-head .template-section-title {
  font-weight: 600;
  flex-grow: 1;
  vertical-align: bottom;
  margin: 6px 0;
}
.template-section .template-section-head .template-section-actions,
.template-sub-section .template-section-head .template-section-actions {
  padding-bottom: 5px;
}
.template-section .template-section-head .template-section-actions .btn,
.template-sub-section .template-section-head .template-section-actions .btn {
  margin-left: 5px;
}
.template-section .template-section-head .template-section-actions .btn-sm,
.template-sub-section .template-section-head .template-section-actions .btn-sm {
  font-size: 12px;
  padding: 3px 5px;
}
.calendar-wrapper .calendar {
  position: relative;
  overflow-x: hidden;
}
.calendar-wrapper .calendar .calendar-event-foldout {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  max-width: 100%;
  height: 100%;
  flex-direction: column;
  flex-grow: 1;
  z-index: 9999;
  border: solid 2px #ddd;
  border-radius: 5px 0 0 5px;
  background-color: #ffffff;
  transform: translateX(100%);
}
.calendar-wrapper .calendar .calendar-event-foldout.foldout-open {
  animation: slide-in 0.5s forwards;
}
.calendar-wrapper .calendar .calendar-event-foldout.foldout-closed {
  animation: slide-out 0.5s forwards;
}
@keyframes slide-in {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes slide-out {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}
.calendar-wrapper .calendar .calendar-event-foldout .calendar-event-details {
  padding: 10px;
}
.calendar-wrapper .calendar .calendar-event-foldout .calendar-event-details .calendar-event-details-row {
  display: flex;
  flex-direction: row;
}
.calendar-wrapper .calendar .calendar-event-foldout .calendar-event-details .calendar-event-details-row .calendar-event-details-label {
  flex: 0 0 150px;
}
.calendar .fc-button {
  border-radius: 4px !important;
  font-size: 14px !important;
  color: #fff !important;
  background-color: #164194 !important;
  background-image: none !important;
  border-color: #164194 !important;
}
.calendar .fc-button.btn-sm {
  font-size: 12px !important;
  padding: 5px 10px !important;
}
.calendar .fc-button.btn-oa,
.calendar .fc-button.btn-primary {
  color: #fff !important;
  background-color: #164194 !important;
  background-image: none !important;
  border-color: #164194 !important;
}
.calendar .fc-button.btn-oa:hover,
.calendar .fc-button.btn-primary:hover,
.calendar .fc-button.btn-oa:focus,
.calendar .fc-button.btn-primary:focus,
.calendar .fc-button.btn-oa.focus,
.calendar .fc-button.btn-primary.focus,
.calendar .fc-button.btn-oa:active,
.calendar .fc-button.btn-primary:active,
.calendar .fc-button.btn-oa.active,
.calendar .fc-button.btn-primary.active {
  color: #fff !important;
  background-color: #13377e !important;
  border-color: #13377e !important;
}
.calendar .fc-button.btn-oa.disabled:hover,
.calendar .fc-button.btn-primary.disabled:hover,
.calendar .fc-button.btn-oa[disabled]:hover,
.calendar .fc-button.btn-primary[disabled]:hover,
fieldset[disabled] .calendar .fc-button.btn-oa:hover,
fieldset[disabled] .calendar .fc-button.btn-primary:hover,
.calendar .fc-button.btn-oa.disabled:focus,
.calendar .fc-button.btn-primary.disabled:focus,
.calendar .fc-button.btn-oa[disabled]:focus,
.calendar .fc-button.btn-primary[disabled]:focus,
fieldset[disabled] .calendar .fc-button.btn-oa:focus,
fieldset[disabled] .calendar .fc-button.btn-primary:focus,
.calendar .fc-button.btn-oa.disabled.focus,
.calendar .fc-button.btn-primary.disabled.focus,
.calendar .fc-button.btn-oa[disabled].focus,
.calendar .fc-button.btn-primary[disabled].focus,
fieldset[disabled] .calendar .fc-button.btn-oa.focus,
fieldset[disabled] .calendar .fc-button.btn-primary.focus {
  background-color: #5c8be7 !important;
  border-color: #5c8be7 !important;
}
.calendar .fc-button.btn-oa-green,
.calendar .fc-button.btn-success {
  color: #fff !important;
  background-color: #50AF47 !important;
  background-image: none !important;
  border-color: #50AF47 !important;
}
.calendar .fc-button.btn-oa-green:hover,
.calendar .fc-button.btn-success:hover,
.calendar .fc-button.btn-oa-green:focus,
.calendar .fc-button.btn-success:focus,
.calendar .fc-button.btn-oa-green.focus,
.calendar .fc-button.btn-success.focus,
.calendar .fc-button.btn-oa-green:active,
.calendar .fc-button.btn-success:active,
.calendar .fc-button.btn-oa-green.active,
.calendar .fc-button.btn-success.active {
  color: #fff !important;
  background-color: #489d40 !important;
  border-color: #489d40 !important;
}
.calendar .fc-button.btn-oa-green.disabled:hover,
.calendar .fc-button.btn-success.disabled:hover,
.calendar .fc-button.btn-oa-green[disabled]:hover,
.calendar .fc-button.btn-success[disabled]:hover,
fieldset[disabled] .calendar .fc-button.btn-oa-green:hover,
fieldset[disabled] .calendar .fc-button.btn-success:hover,
.calendar .fc-button.btn-oa-green.disabled:focus,
.calendar .fc-button.btn-success.disabled:focus,
.calendar .fc-button.btn-oa-green[disabled]:focus,
.calendar .fc-button.btn-success[disabled]:focus,
fieldset[disabled] .calendar .fc-button.btn-oa-green:focus,
fieldset[disabled] .calendar .fc-button.btn-success:focus,
.calendar .fc-button.btn-oa-green.disabled.focus,
.calendar .fc-button.btn-success.disabled.focus,
.calendar .fc-button.btn-oa-green[disabled].focus,
.calendar .fc-button.btn-success[disabled].focus,
fieldset[disabled] .calendar .fc-button.btn-oa-green.focus,
fieldset[disabled] .calendar .fc-button.btn-success.focus {
  background-color: #b4dfb0 !important;
  border-color: #b4dfb0 !important;
}
.calendar .fc-button.btn-oa-red,
.calendar .fc-button.btn-danger {
  color: #fff !important;
  background-color: #981b1e !important;
  background-image: none !important;
  border-color: #981b1e !important;
}
.calendar .fc-button.btn-oa-red:hover,
.calendar .fc-button.btn-danger:hover,
.calendar .fc-button.btn-oa-red:focus,
.calendar .fc-button.btn-danger:focus,
.calendar .fc-button.btn-oa-red.focus,
.calendar .fc-button.btn-danger.focus,
.calendar .fc-button.btn-oa-red:active,
.calendar .fc-button.btn-danger:active,
.calendar .fc-button.btn-oa-red.active,
.calendar .fc-button.btn-danger.active {
  color: #fff !important;
  background-color: #82171a !important;
  border-color: #82171a !important;
}
.calendar .fc-button.btn-oa-red.disabled:hover,
.calendar .fc-button.btn-danger.disabled:hover,
.calendar .fc-button.btn-oa-red[disabled]:hover,
.calendar .fc-button.btn-danger[disabled]:hover,
fieldset[disabled] .calendar .fc-button.btn-oa-red:hover,
fieldset[disabled] .calendar .fc-button.btn-danger:hover,
.calendar .fc-button.btn-oa-red.disabled:focus,
.calendar .fc-button.btn-danger.disabled:focus,
.calendar .fc-button.btn-oa-red[disabled]:focus,
.calendar .fc-button.btn-danger[disabled]:focus,
fieldset[disabled] .calendar .fc-button.btn-oa-red:focus,
fieldset[disabled] .calendar .fc-button.btn-danger:focus,
.calendar .fc-button.btn-oa-red.disabled.focus,
.calendar .fc-button.btn-danger.disabled.focus,
.calendar .fc-button.btn-oa-red[disabled].focus,
.calendar .fc-button.btn-danger[disabled].focus,
fieldset[disabled] .calendar .fc-button.btn-oa-red.focus,
fieldset[disabled] .calendar .fc-button.btn-danger.focus {
  background-color: #e4686b !important;
  border-color: #e4686b !important;
}
.calendar .fc-button.btn-outline-oa,
.calendar .fc-button.btn-secondary,
.calendar .fc-button.btn-neutral {
  color: #164194 !important;
  background-color: transparent !important;
  background-image: none !important;
  border-color: #164194 !important;
}
.calendar .fc-button.btn-outline-oa:hover,
.calendar .fc-button.btn-secondary:hover,
.calendar .fc-button.btn-neutral:hover,
.calendar .fc-button.btn-outline-oa:focus,
.calendar .fc-button.btn-secondary:focus,
.calendar .fc-button.btn-neutral:focus,
.calendar .fc-button.btn-outline-oa.focus,
.calendar .fc-button.btn-secondary.focus,
.calendar .fc-button.btn-neutral.focus,
.calendar .fc-button.btn-outline-oa:active,
.calendar .fc-button.btn-secondary:active,
.calendar .fc-button.btn-neutral:active,
.calendar .fc-button.btn-outline-oa.active,
.calendar .fc-button.btn-secondary.active,
.calendar .fc-button.btn-neutral.active {
  color: #fff !important;
  background-color: #164194 !important;
  border-color: #164194 !important;
}
.calendar .fc-button.btn-outline-oa-red {
  color: #981b1e !important;
  background-color: transparent !important;
  background-image: none !important;
  border-color: #981b1e !important;
}
.calendar .fc-button.btn-outline-oa-red:hover,
.calendar .fc-button.btn-outline-oa-red:focus,
.calendar .fc-button.btn-outline-oa-red.focus,
.calendar .fc-button.btn-outline-oa-red:active,
.calendar .fc-button.btn-outline-oa-red.active {
  color: #fff !important;
  background-color: #981b1e !important;
  border-color: #981b1e !important;
}
.calendar .fc-button.btn-outline-oa-green {
  color: #50AF47 !important;
  background-color: transparent !important;
  background-image: none !important;
  border-color: #50AF47 !important;
}
.calendar .fc-button.btn-outline-oa-green:hover,
.calendar .fc-button.btn-outline-oa-green:focus,
.calendar .fc-button.btn-outline-oa-green.focus,
.calendar .fc-button.btn-outline-oa-green:active,
.calendar .fc-button.btn-outline-oa-green.active {
  color: #fff !important;
  background-color: #50AF47 !important;
  border-color: #50AF47 !important;
}
.calendar .fc-button.btn-measure {
  color: #fff !important;
  background-color: #50AF47 !important;
  border-color: #489d40 !important;
}
.calendar .fc-button.btn-measure:focus,
.calendar .fc-button.btn-measure.focus,
.calendar .fc-button.btn-measure:active,
.calendar .fc-button.btn-measure.active,
.calendar .fc-button.btn-measure:hover {
  color: #fff !important;
  background-color: #489d40 !important;
  border-color: #3f8b38 !important;
}
.calendar .fc-button.btn-measure.disabled:hover,
.calendar .fc-button.btn-measure[disabled]:hover,
fieldset[disabled] .calendar .fc-button.btn-measure:hover,
.calendar .fc-button.btn-measure.disabled:focus,
.calendar .fc-button.btn-measure[disabled]:focus,
fieldset[disabled] .calendar .fc-button.btn-measure:focus,
.calendar .fc-button.btn-measure.disabled.focus,
.calendar .fc-button.btn-measure[disabled].focus,
fieldset[disabled] .calendar .fc-button.btn-measure.focus {
  background-color: #b4dfb0 !important;
  border-color: #b4dfb0 !important;
}
.calendar .fc-button.btn-angled {
  border-bottom-left-radius: 10px !important;
  border-top-right-radius: 10px !important;
  border-top-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.calendar .fc-button.btn-action-emphasis {
  padding: 10px 28px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
}
.calendar .fc-button:hover,
.calendar .fc-button:focus,
.calendar .fc-button.focus,
.calendar .fc-button:active,
.calendar .fc-button.active {
  color: #fff !important;
  background-color: #13377e !important;
  border-color: #13377e !important;
}
.calendar .fc-button.disabled:hover,
.calendar .fc-button[disabled]:hover,
fieldset[disabled] .calendar .fc-button:hover,
.calendar .fc-button.disabled:focus,
.calendar .fc-button[disabled]:focus,
fieldset[disabled] .calendar .fc-button:focus,
.calendar .fc-button.disabled.focus,
.calendar .fc-button[disabled].focus,
fieldset[disabled] .calendar .fc-button.focus {
  background-color: #5c8be7 !important;
  border-color: #5c8be7 !important;
}
@media (max-width: 767px) {
  .calendar .fc-button {
    display: block !important;
    width: 100%;
    margin-top: 5px !important;
  }
}
.calendar .fc-header-toolbar {
  padding: 10px;
  background-color: #fafafa;
  border: 1px solid #b8c2cc;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .calendar .fc-header-toolbar.fc-toolbar > * > :not(:first-child) {
    margin-left: 0;
  }
}
.calendar .fc-daygrid-event {
  white-space: normal;
  padding: 5px;
  font-size: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 3px;
}
.calendar .fc-daygrid-event,
.calendar .fc-list-event {
  cursor: pointer;
}
.calendar .fc-daygrid-day-events {
  margin-bottom: 0;
}
.calendar .fc-daygrid-event-harness {
  margin-bottom: 3px;
}
.calendar .fc-daygrid-event-harness:last-child {
  margin-bottom: 0;
}
.calendar .calendar-event-entry {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.calendar .calendar-event-time {
  opacity: 1;
  font-size: 0.95em;
  font-weight: 600;
  line-height: 1.2;
  flex-shrink: 0;
}
.calendar .fc-daygrid-event .calendar-event-time {
  color: #ffffff;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
.calendar .fc-daygrid-event .calendar-event-entry {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  align-items: flex-start;
  gap: 2px;
}
.calendar .fc-daygrid-event .calendar-event-title {
  display: block;
  width: 100%;
  min-width: 0;
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
  line-height: 1.2;
}
.calendar .fc-list-event .calendar-event-entry {
  align-items: baseline;
}
.calendar .fc-list-event .calendar-event-time {
  line-height: inherit;
}
.calendar .calendar-event-time--start {
  display: none;
}
@media (max-width: 991px) {
  .calendar .calendar-event-time--full {
    display: none;
  }
  .calendar .calendar-event-time--start {
    display: inline;
  }
}
@media (max-width: 767px) {
  .calendar .calendar-event-time--start {
    display: none;
  }
}
.calendar .fc-list-event .calendar-event-time--full {
  display: inline;
}
.calendar .fc-list-event .calendar-event-time--start {
  display: none;
}
.calendar .fc-list-event-time,
.calendar .fc-list-event-graphic {
  display: none;
}
.progressbar {
  display: flex;
  flex-direction: row;
  margin: 20px 0 40px;
}
.progressbar-item {
  flex-grow: 2;
  flex-basis: 0;
  padding-bottom: 10px;
  text-align: center;
  position: relative;
}
.progressbar-item:first-child {
  text-align: left;
  flex-grow: 1;
}
.progressbar-item:last-child {
  text-align: right;
  flex-grow: 1;
}
.progressbar-item:after {
  content: '';
  border-bottom: 4px solid #cccccc;
  position: absolute;
  bottom: -4px;
  right: 50%;
  width: 100%;
}
.progressbar-item:first-child:after {
  border-bottom: none;
}
.progressbar-item:nth-child(2):after {
  width: 100%;
}
.progressbar-item:last-child:after {
  right: 0;
  width: 200%;
}
.progressbar-item.active:after,
.progressbar-item.complete:after {
  border-color: #3aac5d;
}
.progressbar-item:before {
  content: '';
  position: absolute;
  bottom: -12px;
  right: 50%;
  /* fallback */
  right: calc(50% - 10px);
  border-radius: 50%;
  height: 20px;
  width: 20px;
  border: 5px solid #cccccc;
  background-color: #cccccc;
  z-index: 1;
}
.progressbar-item:first-child:before {
  left: 0;
}
.progressbar-item:last-child:before {
  right: 0;
}
.progressbar-item.active {
  font-weight: 500;
}
@media (max-width: 767px) {
  .progressbar-item.active .progressbar-item-text {
    font-weight: normal;
    font-size: 0.8em;
  }
  .progressbar-item:not(.active) .progressbar-item-text {
    display: none;
  }
}
.progressbar-item.active,
.progressbar-item.complete {
  border-color: #3aac5d;
}
.progressbar-item.active:before,
.progressbar-item.complete:before {
  background-color: #3aac5d;
  border-color: #3aac5d;
}
.oa-panel {
  padding: 10px;
}
.oa-panel.panel-corner-top-left {
  border-top-left-radius: 10px;
}
.oa-panel.panel-corner-top-right {
  border-top-right-radius: 10px;
}
.oa-panel.panel-corner-bottom-left {
  border-bottom-left-radius: 10px;
}
.oa-panel.panel-corner-bottom-right {
  border-bottom-right-radius: 10px;
}
.oa-panel.panel-blue,
.oa-panel.panel-green {
  color: #FFFFFF;
}
.oa-panel.panel-blue h1,
.oa-panel.panel-green h1,
.oa-panel.panel-blue h2,
.oa-panel.panel-green h2,
.oa-panel.panel-blue h3,
.oa-panel.panel-green h3,
.oa-panel.panel-blue h4,
.oa-panel.panel-green h4,
.oa-panel.panel-blue h5,
.oa-panel.panel-green h5,
.oa-panel.panel-blue h6,
.oa-panel.panel-green h6 {
  color: #FFFFFF;
}
.oa-panel.panel-blue a,
.oa-panel.panel-green a {
  color: #FFFFFF;
}
.oa-panel.panel-green {
  background-color: #50AF47;
}
.oa-panel.panel-blue {
  background-color: #164194;
}
.oa-panel.panel-blue-lightest {
  background-color: #c8d9f1;
}
.oa-panel.panel-grey {
  background-color: #ededed;
}
.oa-panel.panel-grey-light {
  background-color: #fcfcfc;
}
.home-hero {
  background: #164194;
  color: #ffffff;
  padding: 40px 35px;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-bottom: 30px;
}
.home-hero h1 {
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 24px;
}
.home-hero p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.92;
  margin-bottom: 0;
}
.home-cards {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .home-cards {
    flex-direction: column;
  }
}
.home-card {
  flex: 1;
  background: #ffffff;
  border: 1px solid #e8ecf1;
  padding: 25px;
  box-shadow: 0 2px 12px rgba(22, 65, 148, 0.06);
  transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.home-card:hover {
  box-shadow: 0 6px 24px rgba(22, 65, 148, 0.12);
  transform: translateY(-2px);
}
.home-card h2 {
  margin-top: 0;
  margin-bottom: 12px;
}
.home-card p {
  color: #444;
  line-height: 1.7;
  font-size: 14px;
}
.home-card-main {
  flex: 3;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.home-card-main .home-card {
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
}
.home-card-side {
  flex: 2;
  align-self: flex-start;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  background: #f7f9fc;
  border-color: #c8d9f1;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-card-side h2 {
  border-bottom: none;
  font-style: italic;
  font-size: 20px;
  padding-bottom: 0;
}
.home-card-side .poem {
  font-style: italic;
  color: #164194;
  line-height: 1.8;
  font-size: 13px;
}
.home-card-side .poem-divider {
  width: 40px;
  height: 2px;
  background: #50AF47;
  margin: 15px auto;
}
.home-card-side .oa-link {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 20px;
  background: #164194;
  color: #ffffff;
  text-decoration: none;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  font-size: 13px;
  transition: background 0.3s ease-in-out;
}
.home-card-side .oa-link:hover {
  background: #437DC0;
  color: #ffffff;
  text-decoration: none;
}
.home-courses {
  background: #ffffff;
  border: 1px solid #e8ecf1;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 12px rgba(22, 65, 148, 0.06);
}
.home-courses h2 {
  margin-top: 0;
  margin-bottom: 12px;
}
.login-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 40px;
}
.login-hero {
  background: #164194;
  color: #ffffff;
  padding: 40px 35px;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-bottom: 30px;
  width: 100%;
  text-align: center;
}
.login-hero h1 {
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 24px;
}
.login-hero p {
  font-size: 15px;
  line-height: 1.7;
  opacity: 0.92;
  margin-bottom: 0;
}
.login-card {
  background: #ffffff;
  border: 1px solid #e8ecf1;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 35px 40px;
  box-shadow: 0 2px 12px rgba(22, 65, 148, 0.06);
  width: 100%;
  max-width: 460px;
}
.login-card h2 {
  margin-top: 0;
  margin-bottom: 20px;
}
.login-card .form-control {
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  padding: 10px 14px;
  height: auto;
  border-color: #d4dce8;
  transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.login-card .form-control:focus {
  border-color: #437DC0;
  box-shadow: 0 0 0 3px rgba(22, 65, 148, 0.08);
}
.login-card .btn-oa {
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  padding: 10px 30px;
  font-size: 14px;
  transition: background 0.3s ease-in-out;
}
.password-reset-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 40px;
}
.password-reset-page .password-reset-info {
  color: #444;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.login-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
.login-actions .login-forgot {
  color: #164194;
  font-size: 13px;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
.login-actions .login-forgot:hover {
  color: #437DC0;
  text-decoration: underline;
}
.login-actions .form-group {
  margin-bottom: 0;
}
.create-course-configurator .loading,
.course-module-manager .loading,
.course-member-manager .loading {
  display: flex;
  width: 100%;
  min-height: 100px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.create-course-configurator .loading {
  min-height: 120px;
}
.create-course-configurator .loading .loading-spinner {
  color: #8AB5E1;
  font-size: 15px;
}
.create-course-configurator .loading .loading-spinner i {
  margin-right: 8px;
}
.oa-card {
  background: #ffffff;
  border: 1px solid #e8ecf1;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease-in-out;
}
.oa-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.oa-card-header {
  display: flex;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid #e8ecf1;
  background: #f7f9fc;
  border-top-right-radius: 10px;
}
.oa-card-header .oa-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #164194;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-right: 14px;
}
.oa-card-header .oa-card-title {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: #164194;
  border-bottom: none;
  padding: 0;
}
.oa-card-body {
  padding: 22px;
}
.oa-card-body label {
  font-weight: 600;
  font-size: 14px;
  color: #333;
  margin-bottom: 6px;
}
.oa-styled-input {
  border: 1px solid #d0d7e2;
  border-bottom-left-radius: 6px;
  border-top-right-radius: 6px;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  padding: 10px 14px;
  font-size: 14px;
  transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.oa-styled-input:focus {
  border-color: #437DC0;
  box-shadow: 0 0 0 3px rgba(22, 65, 148, 0.08);
  outline: none;
}
.oa-list-item {
  display: flex;
  flex-direction: row;
  padding: 12px 15px;
  margin-bottom: 8px;
  border: 1px solid #e8ecf1;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  background: #ffffff;
  box-shadow: 0 1px 6px rgba(22, 65, 148, 0.04);
  transition: box-shadow 0.3s ease-in-out;
}
.oa-list-item:hover {
  box-shadow: 0 2px 10px rgba(22, 65, 148, 0.08);
}
.mode-selector {
  margin-bottom: 24px;
}
.mode-selector .mode-selector-label {
  font-weight: 600;
  font-size: 15px;
  color: #333;
  margin-bottom: 12px;
  display: block;
}
.mode-selector .mode-selector-options {
  display: flex;
  gap: 14px;
}
@media (max-width: 600px) {
  .mode-selector .mode-selector-options {
    flex-direction: column;
  }
}
.mode-selector .mode-option {
  flex: 1;
  max-width: 380px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  background: #ffffff;
  border: 2px solid #e8ecf1;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.mode-selector .mode-option:hover {
  border-color: #8AB5E1;
  box-shadow: 0 2px 12px rgba(22, 65, 148, 0.08);
}
.mode-selector .mode-option.active {
  border-color: #164194;
  background: linear-gradient(135deg, #f7f9fc 0%, #edf2fa 100%);
  box-shadow: 0 2px 8px rgba(22, 65, 148, 0.08);
}
.mode-selector .mode-option .mode-option-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #164194;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  margin-right: 14px;
}
.mode-selector .mode-option .mode-option-content {
  flex-grow: 1;
}
.mode-selector .mode-option .mode-option-content .mode-option-title {
  font-weight: 600;
  font-size: 14px;
  color: #333;
  margin-bottom: 2px;
}
.mode-selector .mode-option .mode-option-content .mode-option-description {
  font-size: 12px;
  color: #888;
  line-height: 1.4;
}
.mode-selector .mode-option .mode-option-check {
  color: #164194;
  font-size: 20px;
  margin-left: 10px;
  flex-shrink: 0;
}
.course-form-section {
  margin-bottom: 20px;
}
.course-details {
  display: block;
  width: 100%;
}
.course-form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid #e8ecf1;
}
.course-form-actions .btn-save-course {
  padding: 10px 28px;
  font-size: 15px;
  font-weight: 600;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
}
.course-form-actions .save-result {
  font-size: 14px;
  font-weight: 500;
}
.blank-course-card {
  background: #ffffff;
  border: 1px solid #e8ecf1;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease-in-out;
}
.blank-course-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.blank-course-card .blank-course-card-header {
  display: flex;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid #e8ecf1;
  background: #f7f9fc;
  border-top-right-radius: 10px;
}
.blank-course-card .blank-course-card-header .oa-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #164194;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-right: 14px;
}
.blank-course-card .blank-course-card-header .oa-card-title {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: #164194;
  border-bottom: none;
  padding: 0;
}
.blank-course-card .blank-course-card-header .blank-course-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #164194;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-right: 14px;
}
.blank-course-card .blank-course-card-header .blank-course-card-title {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: #164194;
  border-bottom: none;
  padding: 0;
}
.blank-course-card .blank-course-card-body {
  padding: 22px;
}
.blank-course-card .blank-course-card-body label {
  font-weight: 600;
  font-size: 14px;
  color: #333;
  margin-bottom: 6px;
}
.blank-course-card .blank-course-card-body .styled-input {
  border: 1px solid #d0d7e2;
  border-bottom-left-radius: 6px;
  border-top-right-radius: 6px;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  padding: 10px 14px;
  font-size: 14px;
  transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.blank-course-card .blank-course-card-body .styled-input:focus {
  border-color: #437DC0;
  box-shadow: 0 0 0 3px rgba(22, 65, 148, 0.08);
  outline: none;
}
.template-course-card {
  background: #ffffff;
  border: 1px solid #e8ecf1;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease-in-out;
}
.template-course-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.template-course-card .template-course-card-header {
  display: flex;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid #e8ecf1;
  background: #f7f9fc;
  border-top-right-radius: 10px;
}
.template-course-card .template-course-card-header .oa-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #164194;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-right: 14px;
}
.template-course-card .template-course-card-header .oa-card-title {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: #164194;
  border-bottom: none;
  padding: 0;
}
.template-course-card .template-course-card-header .template-course-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #164194;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-right: 14px;
}
.template-course-card .template-course-card-header .template-course-card-title {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: #164194;
  border-bottom: none;
  padding: 0;
}
.template-course-card .template-course-card-body {
  padding: 22px;
}
.template-course-card .template-course-card-body label {
  font-weight: 600;
  font-size: 14px;
  color: #333;
  margin-bottom: 6px;
}
.template-course-card .template-course-card-body .styled-input {
  border: 1px solid #d0d7e2;
  border-bottom-left-radius: 6px;
  border-top-right-radius: 6px;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  padding: 10px 14px;
  font-size: 14px;
  transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.template-course-card .template-course-card-body .styled-input:focus {
  border-color: #437DC0;
  box-shadow: 0 0 0 3px rgba(22, 65, 148, 0.08);
  outline: none;
}
.template-course-card .template-course-card-body .styled-select {
  border: 1px solid #d0d7e2;
  border-bottom-left-radius: 6px;
  border-top-right-radius: 6px;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  padding: 10px 14px;
  font-size: 14px;
  transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  height: auto;
  line-height: 1.5;
  padding-right: 30px;
}
.template-course-card .template-course-card-body .styled-select:focus {
  border-color: #437DC0;
  box-shadow: 0 0 0 3px rgba(22, 65, 148, 0.08);
  outline: none;
}
.template-config {
  margin-top: 20px;
}
.template-group {
  margin-top: 16px;
}
.template-group > label {
  font-weight: 600;
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
  display: block;
}
.template-group.template-group-no-indent {
  margin-left: 0;
  padding-left: 0;
}
.template-sub-section {
  background: #ffffff;
  border: 1px solid #e8ecf1;
  border-bottom-left-radius: 8px;
  border-top-right-radius: 8px;
  padding: 16px 18px;
  margin-left: 0;
  margin-bottom: 12px;
  box-shadow: 0 1px 6px rgba(22, 65, 148, 0.04);
  transition: box-shadow 0.3s ease-in-out;
}
.template-sub-section:hover {
  box-shadow: 0 2px 10px rgba(22, 65, 148, 0.08);
}
.template-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eef1f5;
}
.template-section-head .template-section-title {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #164194;
  border-bottom: none;
  padding: 0;
}
.template-section-head .template-section-actions {
  display: flex;
  gap: 6px;
}
.template-section-head .template-section-actions .btn {
  border-bottom-left-radius: 6px;
  border-top-right-radius: 6px;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  padding: 4px 10px;
  font-size: 12px;
  transition: all 0.3s ease-in-out;
}
/* Nested template-group inside modules */
.template-sub-section .template-group {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #eef1f5;
}
.template-sub-section .template-group > label {
  font-size: 13px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 8px;
}
/* Style form controls inside template sections */
.template-sub-section .form-control,
.section-card-body .form-control {
  border: 1px solid #d0d7e2;
  border-bottom-left-radius: 6px;
  border-top-right-radius: 6px;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  padding: 8px 12px;
  font-size: 14px;
  transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.template-sub-section .form-control:focus,
.section-card-body .form-control:focus {
  border-color: #437DC0;
  box-shadow: 0 0 0 3px rgba(22, 65, 148, 0.08);
  outline: none;
}
.template-sub-section label,
.section-card-body label {
  font-weight: 600;
  font-size: 13px;
  color: #444;
}
/* Event datetime panel layout styling */
.event-datetime-panel .event-datetime-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.event-datetime-panel .event-datetime-group {
  flex: 0 1 auto;
  min-width: 0;
}
.event-datetime-panel .event-datetime-group > label .fa {
  margin-right: 2px;
}
.event-datetime-panel .event-datetime-inputs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.event-datetime-panel .event-datetime-inputs .form-control {
  min-width: 0;
}
.event-datetime-panel .event-datetime-inputs input[type="date"] {
  flex: 1 1 140px;
  max-width: 160px;
}
.event-datetime-panel .event-datetime-inputs .event-time-input {
  flex: 1 1 100px;
  max-width: 120px;
}
.event-datetime-panel .event-datetime-error {
  margin-top: 8px;
}
/* File template read-only display */
.template-sub-section .form-horizontal .form-control-static {
  font-size: 14px;
  color: #555;
  padding: 6px 0;
}
.module-list {
  margin-bottom: 15px;
}
.module-list .module {
  display: flex;
  flex-direction: row;
  padding: 12px 15px;
  margin-bottom: 8px;
  border: 1px solid #e8ecf1;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  background: #ffffff;
  box-shadow: 0 1px 6px rgba(22, 65, 148, 0.04);
  transition: box-shadow 0.3s ease-in-out;
  padding: 15px;
}
.module-list .module:hover {
  box-shadow: 0 2px 10px rgba(22, 65, 148, 0.08);
}
.module-list .module .module-data {
  flex-grow: 1;
}
.module-list .module .module-actions {
  display: flex;
  flex-direction: column;
  margin-left: 12px;
}
.module-list .module .module-actions button {
  font-size: 14px;
  line-height: 2rem;
  border-bottom-left-radius: 6px;
  border-top-right-radius: 6px;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-bottom: 5px;
}
.member-list {
  margin-bottom: 15px;
}
.member-list .member {
  display: flex;
  flex-direction: row;
  padding: 12px 15px;
  margin-bottom: 8px;
  border: 1px solid #e8ecf1;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  background: #ffffff;
  box-shadow: 0 1px 6px rgba(22, 65, 148, 0.04);
  transition: box-shadow 0.3s ease-in-out;
}
.member-list .member:hover {
  box-shadow: 0 2px 10px rgba(22, 65, 148, 0.08);
}
.member-list .member .member-name {
  flex-grow: 1;
  line-height: 2em;
}
.member-list .member .member-actions {
  margin-left: 10px;
}
.member-list .member .member-actions button {
  font-size: 14px;
  line-height: 2rem;
  border-bottom-left-radius: 6px;
  border-top-right-radius: 6px;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  margin-left: 4px;
}
.member-list .member-add {
  display: flex;
  flex-direction: column;
  padding: 15px;
  margin-top: 8px;
  margin-bottom: 3px;
  border: 1px solid #e8ecf1;
  border-bottom-left-radius: 10px;
  border-top-right-radius: 10px;
  background: linear-gradient(135deg, #f7f9fc 0%, #edf2fa 100%);
}
.member-list .member-add .member-input {
  display: flex;
  flex-direction: row;
  margin-top: 3px;
  margin-bottom: 3px;
}
.member-list .member-add .member-input button {
  font-size: 14px;
  line-height: 2rem;
  margin-left: 4px;
}
.swal2-popup {
  font-size: 1.6rem !important;
}
.form-question-list {
  margin-bottom: 10px;
}
.form-question-list .form-question {
  display: flex;
  flex-direction: row;
  padding: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
}
.form-question-list .form-question .form-question-number {
  font-weight: 600;
  text-align: right;
  display: inline;
  margin-right: 0.5em;
  flex: 0 0 2em;
}
.form-question-list .form-question .form-question-wrapper {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  margin: 0;
}
.form-question-list .form-question .form-question-wrapper .form-question-text {
  display: flex;
}
.form-question-list .form-question .form-question-wrapper .form-question-answer {
  margin: 1rem 0;
}
.suggest-measure-box {
  overflow: hidden;
  background-color: #efefef;
  padding-top: 15px;
  padding-bottom: 15px;
}
.suggest-measure-box > .suggest-measure-action {
  justify-content: center;
  align-items: center;
  min-height: 100%;
}
@media (max-width: 767px) {
  .suggest-measure-box > .suggest-measure-action {
    min-width: 100%;
  }
}
.inquiry-box {
  max-width: 80rem;
  margin: 0 auto;
  padding: 15px;
  background-color: #efefef;
  border-radius: 2px;
}
.inquiry-box h3 {
  margin: 10px 0;
}
.inquiry-box .inquiry-controls {
  padding: 15px;
  text-align: center;
}
.inquiry-box .inquiry-controls .btn {
  margin: 0 1rem;
  min-width: 10rem;
}
.inquiry-finished-check {
  justify-content: center;
  align-items: center;
  min-height: 100%;
}
.inquiry-finished-check > .circle {
  border-radius: 50%;
  background-color: white;
}
.question-wrapper .question-title {
  text-align: center;
}
.question-wrapper .question-text {
  padding: 15px;
}
.question-wrapper .question-answer {
  position: relative;
  text-align: center;
  padding: 15px;
  background-color: #f9f9f9;
}
.question-wrapper .question-answer .question-mintext,
.question-wrapper .question-answer .question-maxtext {
  margin: 0 2rem;
  font-weight: 600;
}
@media (max-width: 767px) {
  .question-wrapper .question-answer .question-mintext {
    position: absolute;
    margin: 0;
    left: 2rem;
    bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .question-wrapper .question-answer .question-maxtext {
    position: absolute;
    margin: 0;
    right: 2rem;
    bottom: 2rem;
  }
}
.question-wrapper .question-answer .question-input {
  display: inline-block;
}
@media (max-width: 767px) {
  .question-wrapper .question-answer .question-input {
    display: block;
    margin-bottom: 2rem;
  }
}
.question-wrapper .question-answer .question-input .slider-track-low,
.question-wrapper .question-answer .question-input .slider-selection,
.question-wrapper .question-answer .question-input .slider-track-high {
  background: #50AF47;
}
.organisation-list {
  list-style: none;
  padding-left: 0;
}
.organisation-list .organisation-box {
  padding: 1rem;
  font-size: 1.5rem;
  border: 1px solid #efefef;
  position: relative;
}
.organisation-list .organisation-box:hover {
  background: #efefef;
}
.organisation-list .organisation-box > .link-arrow-right-container {
  font-size: 3rem;
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -1.5rem;
}
