/*!************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./assets/scss/screen.scss ***!
  \************************************************************************************************************************************************************************************************************************************************/
/**
* Set font-size and line-height, also adds a fallback
* @include FS(16px, 24px);
*/
/**
* Set font-size and line-height with clamp for fluid scaling.
* @include FSFluid(1rem, 1.5rem, 1.125rem, 1.75rem);
* Parameters: min-size, min-lineheight, max-size, max-lineheight
*/
/**
* Breakpoints for responsive developments
* @include breakpoint(small/medium/large, direction) {...}
* @include breakpoint(Pixel-value, direction) {...}
*/
.show-for-sr,
.show-on-focus {
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  border: 0;
  position: absolute !important;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.show-on-focus:active, .show-on-focus:focus {
  position: static !important;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
  clip-path: none;
}

.clickable-area:hover, .clickable-area:focus {
  cursor: pointer;
}
.clickable-area:hover a, .clickable-area:focus a {
  text-decoration: underline !important;
}

.tabbed {
  outline: 2px solid #00f !important;
  outline-offset: 1px;
}

#dbyh-adminbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  visibility: hidden;
  z-index: 10;
}
@media only screen and (max-width: 960px) {
  #dbyh-adminbar {
    display: none !important;
  }
}
#dbyh-adminbar::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  background: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease, width 0.1s 0.3s ease, height 0.1s 0.3s ease;
}
#dbyh-adminbar.is-open {
  visibility: visible;
}
#dbyh-adminbar.is-open::after {
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: opacity 0.2s ease;
}
#dbyh-adminbar.is-open .ct-holder {
  visibility: visible;
  transform: translate3d(0, 0, 0);
}
#dbyh-adminbar__toggle {
  position: fixed;
  top: 0;
  width: 65px;
  height: 65px;
  background: #051a25;
  padding: 0.5rem;
  border-radius: 0 0 0.4rem 0;
  transform: translate3d(0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: transform 0.3s ease-in-out;
  pointer-events: all;
  z-index: 11;
}
@media only screen and (max-width: 960px) {
  #dbyh-adminbar__toggle {
    display: none !important;
  }
}
#dbyh-adminbar__toggle .is-open {
  display: none;
}
#dbyh-adminbar__toggle.is-active {
  transform: translate3d(350px, 0, 0);
}
#dbyh-adminbar__toggle.is-active .is-closed {
  display: none;
}
#dbyh-adminbar__toggle.is-active .is-open {
  display: block;
}
#dbyh-adminbar__toggle:hover {
  cursor: pointer;
}
#dbyh-adminbar__toggle svg {
  display: block;
  fill: #0093ff;
}
#dbyh-adminbar__toggle span {
  color: #c1e4fd;
  text-transform: uppercase;
  margin: 0.5rem 0 0;
  font-weight: bold;
  font-size: 0.75rem;
  line-height: 0.875rem;
}
#dbyh-adminbar .ct-holder {
  width: 100%;
  max-width: 350px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  visibility: hidden;
  width: 350px;
  height: 100%;
  background: radial-gradient(124.95% 124.95% at 50% 100%, #042338 0%, #041925 43.75%);
  transition: all 0.3s ease-in-out;
  transform: translate3d(-100%, 0, 0);
}
#dbyh-adminbar .ct-holder__header {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
  row-gap: 1rem;
  padding: 1rem;
  border-bottom: solid 6px rgba(255, 255, 255, 0.1);
  min-height: 178px;
}
#dbyh-adminbar .ct-holder__header--environment {
  grid-column: span 12;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
  border-radius: 4px;
}
#dbyh-adminbar .ct-holder__header--environment small {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
#dbyh-adminbar .ct-holder__header--environment span {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}
#dbyh-adminbar .ct-holder__header--environment.is-dev {
  background-color: #fff4e5 !important;
  color: #663c00 !important;
}
#dbyh-adminbar .ct-holder__header--environment.is-next {
  background-color: #e5f6fd !important;
  color: #014361 !important;
}
#dbyh-adminbar .ct-holder__header--environment.is-prod {
  background-color: #edf7ed !important;
  color: #1e4620 !important;
}
#dbyh-adminbar .ct-holder__header--environment.is-unknown {
  background-color: #fdeded !important;
  color: #5f2120 !important;
}
#dbyh-adminbar .ct-holder__header--img {
  width: 65px;
  grid-column: span 3;
}
#dbyh-adminbar .ct-holder__header--img img {
  width: 100%;
  border-radius: 10rem;
  display: block;
}
#dbyh-adminbar .ct-holder__header--name {
  grid-column: span 9;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5rem;
}
#dbyh-adminbar .ct-holder__header--name a {
  color: #c1e4fd !important;
  text-decoration: none !important;
}
#dbyh-adminbar .ct-holder__header--role {
  color: #c1e4fd;
  display: block;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.375rem;
}
#dbyh-adminbar .ct-holder__options {
  height: calc(100% - 178px);
  overflow-x: auto;
}
#dbyh-adminbar .ct-holder__options nav {
  height: 100%;
}
#dbyh-adminbar .ct-holder__options nav > ul {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
#dbyh-adminbar .ct-holder__options nav > ul li {
  list-style: none;
  padding: 0 0 0 1rem;
  border-bottom: solid 2px rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s ease;
}
#dbyh-adminbar .ct-holder__options nav > ul li:hover {
  background: rgb(0, 44.1, 76.5);
}
#dbyh-adminbar .ct-holder__options nav > ul .item {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}
#dbyh-adminbar .ct-holder__options nav > ul .item__icon {
  width: 30px;
}
#dbyh-adminbar .ct-holder__options nav > ul .item__icon svg {
  display: block;
  width: 25px;
  fill: rgb(0, 144.06, 249.9);
}
#dbyh-adminbar .ct-holder__options nav > ul .item__label {
  width: calc(100% - 30px);
}
#dbyh-adminbar .ct-holder__options nav > ul .item__label a,
#dbyh-adminbar .ct-holder__options nav > ul .item__label span {
  text-decoration: none;
  padding: 0.8rem 0 0.8rem 1rem;
  display: block;
  color: #c1e4fd;
  font-weight: bold;
}
#dbyh-adminbar .ct-holder__options nav > ul .item__label a:hover,
#dbyh-adminbar .ct-holder__options nav > ul .item__label span:hover {
  cursor: pointer;
}
#dbyh-adminbar .ct-holder__options nav > ul .item__label a small,
#dbyh-adminbar .ct-holder__options nav > ul .item__label span small {
  width: 100%;
  display: block;
  font-weight: 400;
  color: #c1e4fd;
}
#dbyh-adminbar .ct-holder__options nav > ul .item__submenu {
  width: calc(100% - 30px);
  display: none;
}
#dbyh-adminbar .ct-holder__options nav > ul .item__submenu ul {
  margin: 0;
}
#dbyh-adminbar .ct-holder__options nav > ul .item__submenu ul li {
  border: none;
}
#dbyh-adminbar .ct-holder__options nav > ul .item__submenu ul li a {
  display: block;
  padding: 0.3rem 0;
  color: #c1e4fd;
  text-decoration: underline !important;
}
#dbyh-adminbar .ct-holder__options nav > ul .item__submenu ul li a:hover {
  text-decoration: none !important;
}
#dbyh-adminbar .ct-holder__options nav > ul .sign-out {
  border-top: solid 2px rgba(255, 255, 255, 0.1);
  margin-top: auto;
}

#wpadminbar ul li#wp-admin-bar-wp-environment {
  margin-right: 1rem;
}
#wpadminbar ul li#wp-admin-bar-wp-environment > .ab-item {
  cursor: pointer;
  background-color: transparent;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
#wpadminbar ul li#wp-admin-bar-wp-environment > .ab-item small,
#wpadminbar ul li#wp-admin-bar-wp-environment > .ab-item span {
  line-height: 1;
}
#wpadminbar ul li#wp-admin-bar-wp-environment > .ab-item small {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}
#wpadminbar ul li#wp-admin-bar-wp-environment > .ab-item span {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
}
#wpadminbar ul li.wp-env .wp-env__icon {
  width: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#wpadminbar ul li.wp-env .wp-env__label {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#wpadminbar ul li.is-dev {
  background-color: #fff4e5 !important;
}
#wpadminbar ul li.is-dev > div {
  color: #663c00 !important;
}
#wpadminbar ul li.is-dev > div svg {
  fill: #663c00 !important;
}
#wpadminbar ul li.is-next {
  background-color: #e5f6fd !important;
}
#wpadminbar ul li.is-next > div {
  color: #014361 !important;
}
#wpadminbar ul li.is-next > div svg {
  fill: #014361 !important;
}
#wpadminbar ul li.is-prod {
  background-color: #edf7ed !important;
}
#wpadminbar ul li.is-prod > div {
  color: #1e4620 !important;
}
#wpadminbar ul li.is-prod > div svg {
  fill: #1e4620 !important;
}
#wpadminbar ul li.is-unknown {
  background-color: #fdeded !important;
}
#wpadminbar ul li.is-unknown > div {
  color: #5f2120 !important;
}
#wpadminbar ul li.is-unknown > div svg {
  fill: #5f2120 !important;
}

.has-spinner {
  align-items: center;
  background: #fafafa;
  border-radius: 4px;
  box-sizing: border-box;
  display: flex;
  height: 100%;
  justify-content: center;
  min-height: 70px;
  padding: 1rem;
  text-align: center;
  width: 100%;
}
.has-spinner svg {
  width: 40px !important;
  height: 40px !important;
}
.has-spinner svg circle {
  stroke-width: 6px;
}
.has-spinner svg path {
  animation-duration: 0.5s;
  stroke-width: 6px;
  stroke: #011e2d;
}
.has-spinner.text {
  padding: 1rem 0;
  flex-direction: column;
}
.has-spinner.text svg {
  width: 30px !important;
  height: 30px !important;
}
.has-spinner.text svg circle {
  stroke-width: 4px;
}
.has-spinner.text svg path {
  stroke-width: 4px;
}
.has-spinner.text p {
  margin: 0.6rem 0 0;
  text-transform: uppercase;
  color: #748fa7;
  letter-spacing: 1px;
  opacity: 0.4;
  font-size: 0.75rem;
  line-height: 1.125rem;
}
.has-spinner.small {
  min-height: 50px;
}
.has-spinner.small svg {
  width: 20px !important;
  height: 20px !important;
}
.has-spinner.small svg circle {
  stroke-width: 3px;
}
.has-spinner.small svg path {
  animation-duration: 0.5s;
  stroke-width: 3px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/*# sourceMappingURL=screen.css.map*/