* {
  box-sizing: border-box;
  margin: 0;
}

/* Layout */

body {
  /* font-family: system-ui, sans-serif; */
  line-height: 1.5;
  color: #222;
}

/* body>* {
  --layout-spacing: max(8vh, 3rem);
  --max-width: 70ch;
  width: min(100%, var(--max-width));
  margin-left: auto;
  margin-right: auto;
} */

.nobr {
  white-space: nowrap;
}


nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-left: -1rem;
  margin-right: -1rem;
}

nav ul li {
  padding: 0.5rem 1rem;
}

nav [aria-current="page"] {
  font-weight: bold;
}

header,
main,
main>*+* {
  margin-top: var(--layout-spacing);
}

body>footer {
  margin-top: auto;
  padding-top: var(--layout-spacing);
}

body>footer div {
  border-top: 1px solid #ccc;
  padding-top: 0.5em;
  font-size: 0.9rem;
  color: #767676;
}

article *+* {
  margin-top: 1em;
}


/* Media */

article img {
  display: block;
  width: 100%;
  min-height: 20rem;
  max-height: 40vh;
  object-fit: cover;
  margin: 2rem auto;
}

@supports (aspect-ratio: 1) {
  article img {
    max-height: unset;
    aspect-ratio: 3/2;
  }
}

/* Supporting Content */

code:not([class*="language"]) {
  font-family: Consolas, Monaco, Andale Mono, Ubuntu Mono, monospace;
  font-size: 1.75ex;
  color: #444;
  background-color: rgba(0, 0, 0, 0.1);
  padding-right: 0.15em;
  padding-left: 0.15em;
}

/* blockquote {
  margin: 2rem 0;
  padding: 0.5em 1rem;
  border-left: 3px solid rgba(0, 0, 0, 0.35);
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 0 0.25rem 0.25rem 0;
} */

.console-home-header {
  padding: 4.3rem 1rem 0;
  height: 64px;
  color: #627D98;
  display: flex;
  align-items: center;
  transition: padding-left 0.15s ease;
}

.console-disposable-header {
  padding: 0.5rem 0.5rem;
  margin-bottom: 32px;
  height: 42px;
  background-color: #eaeaea;
  display: flex;
  align-items: center;

}

.align-items-center {
  align-items: center !important;
}

.d-flex {
  display: flex !important;
}

.console--main--inner {
  position: relative;
}

ul.no-bullets {
  list-style-type: none;
}

.font-weight-500 {
  font-weight: 500;
}

.font-weight-600 {
  font-weight: 600;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}

.nav-link:hover,
.nav-link:focus {
  text-decoration: none;
}

.nav-link.disabled {
  color: #606f7b;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dae1e7;
}

.nav-tabs .nav-link {
  margin-bottom: -1px;
  border: 1px solid transparent;
  border-top-left-radius: 0.25em;
  border-top-right-radius: 0.25em;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
  border-color: #f1f5f8 #f1f5f8 #dae1e7;
}

.nav-tabs .nav-link.disabled {
  color: #606f7b;
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #3d4852;
  background-color: #F0F4F8;
  border-color: #dae1e7 #dae1e7 #F0F4F8;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav.home-tabs {
  max-width: 850px;
  margin-left: 10px;
}

.nav.home-tabs .nav-item {
  margin-left: 6px;
  border-radius: 0;
}

.nav.home-tabs .nav-item .nav-link {
  padding: 0px 10px;
  font-size: 12px;
  background-color: #ffffff !important;
  color: #2779bd;
  border-bottom: 1px solid #dae1e7;
}

.nav.home-tabs .nav-item .nav-link.active {
  font-weight: bold;
  background-color: #ffffff;
  border-bottom: 1px solid transparent;
}

.nav.home-tabs .nav-item .nav-link.home {
  color: white;
  background-color: #17a2b8 !important;
  border-bottom: 0px solid transparent;
}

.nav.home-tabs .nav-transparent .nav-link {
  background: none !important;
  border: none;
  color: #334E68;
}

.nav.nav-tabs .nav-item .nav-link {
  font-size: 12px;
  background-color: #ffffff !important;
  color: #2779bd;
  border-bottom: 1px solid #dae1e7;
}

.nav.nav-tabs .nav-item .nav-link.active {
  color: #243B53;
  background-color: #ffffff !important;
  border-bottom: 1px solid transparent;
}

.nav.nav-tabs .nav-item .nav-link.bg-lite {
  background-color: #fafafa !important;
}


.nav.dwp-tabs .nav-item .nav-link {
  font-size: 13px;
  font-weight: bold;
  border-bottom: 1px solid #dae1e7;
}

.nav.dwp-tabs .nav-item .nav-link.active {
  color: #243B53;
  background-color: #ffffff !important;
  border-bottom: 1px solid transparent;
}

.u-border {
  border-left: 1px solid #dae1e7;
  border-right: 1px solid #dae1e7;
  border-bottom: 1px solid #dae1e7;
}


.text-strikethrough {
  text-decoration: line-through !important;
}

.bg-neutral-1 {
  background-color: #F0F4F8;
}

.btn-golden {
  background-color: #FFEE7F !important;
  border-color: #FFEE7F !important;
  color: #334E68 !important;
}

.btn-golden:focus {
  box-shadow: none !important;
}

.btn-outline-golden {
  color: #627D98;
  border-color: #D9E2EC;
}

.btn-outline-golden.active {
  background-color: #FFEE7F !important;
  border-color: #FFEE7F !important;
  color: #334E68 !important;
}


/* .ce-block__content,
.ce-toolbar__content {
  max-width: unset;
} */

.drag-area {
  border: 2px dashed #ccc;
  height: 500px;
  /* width: 700px; */
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.drag-area.active {
  border: 2px solid #aaa;
  background-color: #f8f8f8;
}

.drag-area .icon {
  font-size: 100px;
  color: #888;
}

.drag-area header {
  font-size: 24px;
  font-weight: 500;
  color: #565656;
}

.drag-area span {
  font-size: 20px;
  font-weight: 500;
  color: #565656;
  margin: 10px 0 15px 0;
}

.drag-area button {
  display: inline-block;
  padding: 10px 25px;
  font-size: 20px;
  font-weight: 500;
  border: none;
  outline: none;
  background: #FFEE7F;
  color: #434343;
  border-radius: 5px;
  cursor: pointer;
}

.drag-area img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.flash-message {
  font-size: 13.5px !important;
}

.flash-container .flash-message {
  border-radius: 0 !important;
}

/*
#editorjs .ce-paragraph {
  padding: 0.2rem 0.5rem;
  box-sizing: border-box;
  margin: 10px 0;
  background: #f8f5f3;
}

#editorjs.editor_readOnly .ce-paragraph {
  background: #ffffff;
  min-height: 0;
}
*/



#template-squares .square {
  float: left;
  position: relative;
  width: 18%;
  padding-bottom: 18%;
  /* = width for a 1:1 aspect ratio */
  margin: 1%;
  background-color: #fafafa;
  overflow: hidden;
  border-radius: 10%;
  border: none;
  padding-left: 0;
}

#template-squares .square.active {
  background-color: #FAFAD2;
}

#template-squares .content {
  position: absolute;
  height: 100%;
  /* = 100% - 4*5% padding */
  width: 100%;
  /* = 100% - 4*5% padding */
  padding: 5%;
  text-align: center;
  font-size: 2vw;
}

#template-squares .table {
  display: table;
  margin: 0;
  width: 100%;
  height: 100%;
}

#template-squares .table-cell {
  display: table-cell;
  vertical-align: middle;
}

#template-squares-labels .content {
  float: left;
  position: relative;
  width: 18%;
  margin: 0 1%;
  text-align: center;
  overflow: hidden;
}

#template-squares:after,
#template-squares-labels:after {
  content: '';
  display: block;
  clear: both;
}





button:focus,
.btn-primary:focus {
  outline: none !important;
  box-shadow: none !important;
}

div.code-toolbar>.toolbar {
  top: .3em !important;
  right: .3em !important;
  opacity: 0.7 !important;
}

div.code-toolbar>.toolbar>.toolbar-item>button {
  border-radius: 2px !important;
  box-shadow: none !important;
}

.footer a {
  color: #777777;
}

@media print {
  .noPrint {
    display: none !important;
  }
}

@media (min-width: 576px) {

  .container-sm,
  .container {
    /* max-width: 540px; */
    max-width: auto !important;
  }
}


@media (min-width: 768px) {

  .container-md,
  .container-sm,
  .container {
    /* max-width: 720px; */
    max-width: auto !important;
  }
}

@media (min-width: 992px) {

  .container-lg,
  .container-md,
  .container-sm,
  .container {
    /* max-width: 960px; */
    max-width: auto !important;
  }
}


@media (min-width: 1200px) {

  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    /* max-width: 1140px; */
    max-width: auto !important;
  }
}



.container,
.container-fluid,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}