@import url("https://fonts.googleapis.com/css2?family=Dosis:wght@200;300;400;500;600;700;800&family=Open+Sans:wght@300;400;500;600;700&display=swap");

/* Brand design tokens */
:root {
  --dls-primary: #E14D2A;
  --dls-primary-hover: #C9371B;
  --dls-accent: #FD841F;
  --dls-accent-dark: #C2410C;
  --dls-text: #212529;
  --dls-text-muted: rgba(33, 37, 41, 0.75);
  --dls-surface: #ffffff;
  --dls-focus: rgba(225, 77, 42, 0.25);
  --dls-focus-strong: rgba(225, 77, 42, 0.5);
  --dls-primary-soft: rgba(225, 77, 42, 0.08);
  --dls-radius: 10px;
  --dls-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

body {
  font-family: "Open Sans", sans-serif;
  color: #000000;
}
@media screen and (max-width: 576px) {
  body {
    font-size: 14px;
  }
}

.auth-page {
  height: 100vh;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .auth-page {
    overflow-y: scroll;
  }
}

a {
  text-decoration: none;
}

.logo {
  color: var(--dls-primary);
  font-size: 30px;
  line-height: 30px;
  font-weight: bold;
}
.logo:hover, .logo:focus, .logo:active {
  color: var(--dls-primary);
}
.logo span {
  font-size: 18px;
  display: block;
  font-weight: normal;
}

.btn-theme {
  background-color: var(--dls-accent);
  color: #ffffff;
  padding: 5px 15px;
}
.btn-theme:hover, .btn-theme:focus, .btn-theme:active {
  background-color: #e76a02;
  color: #ffffff;
}

.login-form {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
}
@media screen and (max-width: 1199px) {
  .login-form {
    padding: 0px;
  }
}
@media screen and (max-width: 767px) {
  .login-form {
    padding: 60px;
  }
}
@media screen and (max-width: 576px) {
  .login-form {
    padding: 0px;
  }
}
.login-form label {
  font-size: 18px;
  margin-bottom: 6px;
}
.login-form .form-control {
  height: 48px;
  border-color: #999;
}

.login-text {
  line-height: 30px;
  margin-bottom: 35px;
}

.form-control:focus, .form-select:focus {
  border-color: var(--dls-accent);
  box-shadow: 0 0 0 0.25rem var(--dls-focus);
}

::-moz-selection {
  background-color: var(--dls-accent);
  color: #ffffff;
}

::selection {
  background-color: var(--dls-accent);
  color: #ffffff;
}

.login-bg {
  background-color: var(--dls-primary);
  padding: 48px;
  position: relative;
}
@media screen and (max-width: 576px) {
  .login-bg {
    padding: 30px;
  }
}
.login-bg .login-container {
  padding: 61px;
  display: flex;
  align-items: center;
  border: 5px solid #ffffff;
  height: 100%;
  position: relative;
  z-index: 8;
}
@media screen and (max-width: 767px) {
  .login-bg .login-container {
    border-width: 3px;
  }
}
@media screen and (max-width: 576px) {
  .login-bg .login-container {
    padding: 30px;
  }
}
.login-bg .login-container::before {
  width: 450px;
  height: 320px;
  content: "";
  background-color: var(--dls-primary);
  position: absolute;
  bottom: -5px;
  left: -5px;
}
@media screen and (max-width: 767px) {
  .login-bg .login-container::before {
    display: none;
  }
}
.login-bg h1 {
  /* font-size: 55px; */
  font-size: 3vw;
  color: #ffffff;
  font-weight: bold;
  position: relative;
  z-index: 99;
}
.login-bg h1 span {
  font-size: 60px;
  display: block;
  font-weight: normal;
}
@media screen and (max-width: 1199px) {
  .login-bg h1 {
    font-size: 60px;
    /* font-size: 3vw; */
  }
  .login-bg h1 span {
    font-size: 40px;
  }
}
@media screen and (max-width: 576px) {
  .login-bg h1 {
    font-size: 36px;
    /* font-size: 3vw; */
  }
  .login-bg h1 span {
    font-size: 20px;
  }
}

.log-topRight {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .log-topRight {
    width: 200px;
  }
}

.log-bottomLeft {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 450px;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .log-bottomLeft {
    width: 250px;
  }
}

.hero-sec {
  background-image: url(../images/hero-banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 770px;
}
@media screen and (max-width: 992px) {
  .hero-sec {
    height: 500px;
  }
}
@media screen and (max-width: 576px) {
  .hero-sec {
    height: auto;
    padding-bottom: 30px;
  }
}
.hero-sec h1 {
  font-size: 60px;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
  margin-top: 150px;
}
@media screen and (max-width: 1299px) {
  .hero-sec h1 {
    font-size: 50px;
  }
}
@media screen and (max-width: 992px) {
  .hero-sec h1 {
    font-size: 36px;
    margin-top: 50px;
  }
}
@media screen and (max-width: 576px) {
  .hero-sec h1 {
    margin-top: 20px;
    font-size: 25px;
  }
}
@media screen and (max-width: 576px) {
  .hero-sec p {
    font-size: 14px;
  }
}

.navbar-brand.logo {
  color: #ffffff;
}

.navbar .nav-link {
  color: #ffffff;
}
.navbar .nav-link.active {
  color: #ffffff;
}

.heading {
  color: #000000;
  font-size: 48px;
  font-weight: bold;
}
@media screen and (max-width: 1399px) {
  .heading {
    font-size: 36px;
  }
}
@media screen and (max-width: 576px) {
  .heading {
    font-size: 25px;
  }
}

.mt-100 {
  margin-top: 150px;
}
@media screen and (max-width: 1399px) {
  .mt-100 {
    margin-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .mt-100 {
    margin-top: 75px;
  }
}
@media screen and (max-width: 576px) {
  .mt-100 {
    margin-top: 50px;
  }
}

.dls-card {
  background-color: #FFE7D2;
  border-radius: 15px;
  padding-top: 48px;
  padding-left: 35px;
  padding-right: 35px;
  min-height: 372px;
  overflow: hidden;
  position: relative;
  margin-top: 58px;
}
.dls-card .btn {
  position: relative;
  z-index: 9;
}
@media screen and (max-width: 1399px) {
  .dls-card {
    padding-top: 35px;
    padding-left: 28px;
    padding-right: 28px;
    min-height: 320px;
  }
}
@media screen and (max-width: 992px) {
  .dls-card {
    padding-top: 24px;
    padding-left: 18px;
    padding-right: 18px;
    min-height: 270px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .dls-card {
    padding: 30px 30px 0;
    min-height: 300px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 576px) {
  .dls-card {
    padding: 30px 20px 0;
    min-height: 300px;
    margin-top: 30px;
  }
}
.dls-card img {
  width: 100%;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
}

.analytics-text {
  line-height: 30px;
}
@media screen and (max-width: 576px) {
  .analytics-text {
    line-height: normal;
  }
}

.mt-40 {
  margin-top: 40px;
}
@media screen and (max-width: 1399px) {
  .mt-40 {
    margin-top: 20px;
  }
}

.feature-list {
  margin-bottom: 0;
  padding-left: 0;
}
.feature-list li {
  margin-bottom: 15px;
  position: relative;
  list-style: none;
  padding-left: 30px;
}
@media screen and (max-width: 1399px) {
  .feature-list li {
    margin-bottom: 7px;
    font-size: 15px;
  }
}
.feature-list li::before {
  content: "\f058";
  font-size: 18px;
  font-family: "Font Awesome 6 Free";
  color: var(--dls-primary);
  margin-right: 25px;
  position: absolute;
  top: 0;
  left: 0;
}

.bar-flex {
  margin-top: 10px;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
}
.bar-flex h5 {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .bar-flex h5 {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 576px) {
  .bar-flex h5 {
    font-size: 10px;
  }
}
.bar-flex .scale-bar {
  border-radius: 0;
  color: #ffffff;
  padding: 0;
  border: 0;
  width: 100px;
  margin: 0 2.5px;
}
@media screen and (max-width: 1399px) {
  .bar-flex .scale-bar {
    width: 83px;
  }
}
@media screen and (max-width: 1199px) {
  .bar-flex .scale-bar {
    margin: 0 2px;
    width: 130px;
  }
}
@media screen and (max-width: 992px) {
  .bar-flex .scale-bar {
    width: 90px;
  }
}
@media screen and (max-width: 767px) {
  .bar-flex .scale-bar {
    width: 80px;
  }
}
@media screen and (max-width: 576px) {
  .bar-flex .scale-bar {
    width: 80px;
  }
}
.bar-flex .scale-bar:hover {
  background-color: var(--dls-primary-hover);
  color: #ffffff;
}
.bar-flex .scale-bar:active {
  color: #ffffff;
}
.bar-flex .scale-bar div:first-child {
  height: 260px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .bar-flex .scale-bar div:first-child {
    height: 250px;
  }
}
@media screen and (max-width: 767px) {
  .bar-flex .scale-bar div:first-child {
    height: 150px;
  }
}
.bar-flex .scale-bar div:first-child span {
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: capitalize;
  transform: rotate(-90deg);
  font-weight: 300;
  white-space: nowrap;
}
@media screen and (max-width: 1199px) {
  .bar-flex .scale-bar div:first-child span {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .bar-flex .scale-bar div:first-child span {
    font-size: 14px;
  }
}
.bar-flex .scale-bar div:last-child {
  border-top: 5px solid #ffffff;
  height: 55px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .bar-flex .scale-bar div:last-child {
    height: 35px;
    border-top-width: 3px;
  }
}

.bar-1 {
  background-color: #C8102E;
}
.bar-2 {
  background-color: #C2410C;
}
.bar-3 {
  background-color: #F78F1E;
}
.bar-flex .scale-bar.bar-4 {
  background-color: #C98F00;
  color: #212529;
}
.bar-flex .scale-bar.bar-4:hover {
  background-color: var(--dls-primary-hover);
  color: #ffffff;
}
.bar-5 {
  background-color: #82C540;
}
.bar-6 {
  background-color: #2E7D32;
}
.bar-7 {
  background-color: #30A94A;
}
.bar-8 {
  background-color: #0FB8B5;
}
.bar-9 {
  background-color: #1B6CA8;
}
.bar-10 {
  background-color: #4490CC;
}
.bar-11 {
  background-color: #3855A5;
}
.bar-12 {
  background-color: #5A53A3;
}
.bar-13 {
  background-color: #6B2980;
}
.bar-14 {
  background-color: #4D256C;
}

.bar-merger {
  display: block;
  border: 2px solid #000000;
  height: 20px;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 10px;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .bar-merger {
    height: 10px;
    margin-top: 5px;
  }
}
.bar-merger.single {
  width: 2px;
  border: 0;
  border-left: 2px solid #000000;
}

footer {
  background-color: var(--dls-primary);
  padding: 20px 0;
  font-size: 18px;
  color: #ffffff;
}
@media screen and (max-width: 991px) {
  footer {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  footer {
    padding: 10px 20px;
  }
}

.text-theme {
  color: var(--dls-primary);
}

.chartArrow {
  background-color: #AEAEAE;
  display: flex;
  width: 77%;
  margin: 0 auto;
  justify-content: space-between;
  font-size: 14px;
  padding: 4.5px 6px;
  position: relative;
}
@media screen and (max-width: 576px) {
  .chartArrow {
    width: 57%;
  }
}
.chartArrow::before {
  content: "";
  background-image: url(../images/colored-arrow-left.svg);
  width: 53px;
  height: 33px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: -52px;
}
.chartArrow::after {
  content: "";
  background-image: url(../images/colored-arrow-right.svg);
  width: 53px;
  height: 33px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: -52px;
}

@media screen and (max-width: 991px) {
  .menu {
    position: absolute;
    top: 70px;
    background-color: var(--dls-accent);
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    text-align: right;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.25);
  }
}

.modal-header,
.modal-body {
  padding: 24px 50px;
}
@media screen and (max-width: 767px) {
  .modal-header,
  .modal-body {
    padding: 15px 20px;
  }
}

.modal-text {
  font-weight: 300;
  line-height: 28px;
}

.modal-content {
  border-radius: 20px;
  border: 0;
}

.btn-close {
  background: #ECEEF2 url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border-radius: 50%;
  width: 1.5rem;
  height: 1.5rem;
}

.modal-title {
  font-size: 24px;
  font-weight: 500;
}

.modal-dialog-scrollable .modal-body {
  scrollbar-width: thin;
}
.modal-dialog-scrollable .modal-body::-webkit-scrollbar {
  width: 7px;
  border-radius: 10px;
}
.modal-dialog-scrollable .modal-body::-webkit-scrollbar-thumb {
  background-color: #C1C1C1;
  border-radius: 10px;
}

.hero-sec-inner {
  background-image: linear-gradient(to bottom, var(--dls-primary), rgba(253, 132, 31, 0));
}

.banner-info {
  text-align: center;
}
.banner-info h2 {
  font-size: 60px;
  font-weight: bold;
  color: var(--dls-primary);
  text-shadow: 5px 8px 4px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 992px) {
  .banner-info h2 {
    font-size: 40px;
  }
}

.about-lang-card {
  background-color: #FFE7D2;
  padding: 30px;
  border-radius: 10px;
  border-top: 4px solid var(--dls-accent);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 992px) {
  .about-lang-card {
    padding: 20px;
  }
}

.btn-hero {
  padding: 19px 20px;
  background-color: var(--dls-primary);
  color: #ffffff;
  min-width: 250px;
  text-align: left;
  position: relative;
}
.btn-hero img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}
.btn-hero:hover, .btn-hero:focus, .btn-hero:active {
  background-color: #bd3a1b;
  color: #ffffff;
}

.btn:active {
  color: #ffffff !important;
  background-color: var(--dls-primary) !important;
  border-color: var(--dls-primary);
}

.card {
  border: 0;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.16);
  margin-bottom: 40px;
}
.card .card-body {
  padding: 30px;
}

.table input[type=checkbox] {
  border: 0;
  width: 18px;
  height: 18px;
  background-color: #D9D9D9;
  cursor: pointer;
}
.table input[type=checkbox]:checked {
  background-color: var(--dls-primary);
}

input:focus {
  box-shadow: 0 0 0 0.25rem var(--dls-focus) !important;
}

.pyramid-graph {
  text-align: center;
}
.pyramid-graph img {
  pointer-events: none;
}
.pyramid-graph a img {
  height: 69px;
}
@media screen and (max-width: 1399px) {
  .pyramid-graph {
    width: 550px;
    margin: 0 auto;
    transform: scale(0.7) translateX(50px);
    transform-origin: top left;
  }
  .pyramid-graph a img {
    height: 90px;
  }
}
@media screen and (max-width: 576px) {
  .pyramid-graph {
    width: 300px;
  }
  .pyramid-graph a img {
    height: 52px;
  }
}
@media screen and (max-width: 400px) {
  .pyramid-graph {
    transform: scale(0.8);
  }
}

.pyramid-level {
  position: relative;
}
.pyramid-level a {
  display: block;
  color: #ffffff;
}
.pyramid-level a h5 {
  font-weight: normal;
  font-size: 10px;
}
@media screen and (max-width: 1399px) {
  .pyramid-level a h5 {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .pyramid-level a h5 {
    display: none;
  }
}
.pyramid-level a h3 {
  font-weight: bold;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .pyramid-level a h3 {
    font-size: 16px;
  }
}
.pyramid-level .pyramid-detail {
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}

.lang-indicator {
  position: absolute;
  top: 43%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
}
.lang-indicator h5 {
  font-size: 14px;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .lang-indicator h5 {
    font-size: 12px;
  }
}
.lang-indicator img {
  width: 40px;
}
@media screen and (max-width: 1399px) {
  .lang-indicator img {
    width: 56px;
  }
}
@media screen and (max-width: 576px) {
  .lang-indicator img {
    width: 30px;
  }
}
@media screen and (max-width: 400px) {
  .lang-indicator img {
    display: none;
  }
}

.pyramid1 .pyramid-detail {
  top: 68%;
}
.pyramid1 .lang-indicator {
  left: 185px;
}
@media screen and (max-width: 1399px) {
  .pyramid1 .lang-indicator {
    left: 133px;
  }
}
@media screen and (max-width: 576px) {
  .pyramid1 .lang-indicator {
    left: 51px;
  }
}
@media screen and (max-width: 400px) {
  .pyramid1 .lang-indicator {
    left: 81px;
  }
}

.pyramid2 .lang-indicator {
  left: 168px;
}
@media screen and (max-width: 1399px) {
  .pyramid2 .lang-indicator {
    left: 108px;
  }
}
@media screen and (max-width: 576px) {
  .pyramid2 .lang-indicator {
    left: 43px;
  }
}
@media screen and (max-width: 400px) {
  .pyramid2 .lang-indicator {
    left: 73px;
  }
}

.pyramid3 .lang-indicator {
  left: 89px;
}
@media screen and (max-width: 1399px) {
  .pyramid3 .lang-indicator {
    left: 11px;
  }
}
@media screen and (max-width: 576px) {
  .pyramid3 .lang-indicator {
    left: -20px;
  }
}
@media screen and (max-width: 400px) {
  .pyramid3 .lang-indicator {
    left: 10px;
  }
}

.pyramid4 .lang-indicator {
  left: 56px;
}
@media screen and (max-width: 1399px) {
  .pyramid4 .lang-indicator {
    left: -34px;
  }
}
@media screen and (max-width: 576px) {
  .pyramid4 .lang-indicator {
    left: -46px;
  }
}
@media screen and (max-width: 400px) {
  .pyramid4 .lang-indicator {
    left: -12px;
  }
}

.pyramid5 .lang-indicator {
  left: 52px;
}
@media screen and (max-width: 1399px) {
  .pyramid5 .lang-indicator {
    left: -43px;
  }
}
@media screen and (max-width: 400px) {
  .pyramid5 .lang-indicator {
    left: -7px;
  }
}

.pyramid-sec {
  position: relative;
}
@media screen and (max-width: 1399px) {
  .pyramid-sec .lang-grouped {
    height: 100%;
  }
}
.pyramid-sec.pyramid-sec1 .lang-grouped {
  position: absolute;
  right: 241px;
  top: -9px;
  height: 100%;
}
@media screen and (max-width: 1399px) {
  .pyramid-sec.pyramid-sec1 .lang-grouped {
    right: 192px;
    top: -12px;
  }
}
@media screen and (max-width: 576px) {
  .pyramid-sec.pyramid-sec1 .lang-grouped {
    right: 104px;
    top: -6px;
  }
}
.pyramid-sec.pyramid-sec2 .lang-grouped {
  position: absolute;
  right: 74px;
  top: -35px;
  height: 111%;
}
@media screen and (max-width: 1399px) {
  .pyramid-sec.pyramid-sec2 .lang-grouped {
    right: -35px;
    top: -58px;
    height: 118%;
  }
}
@media screen and (max-width: 576px) {
  .pyramid-sec.pyramid-sec2 .lang-grouped {
    right: -28px;
    top: -34px;
  }
}
.pyramid-sec.pyramid-sec3 .lang-grouped {
  position: absolute;
  right: 84px;
  top: -9px;
  height: 100%;
}
@media screen and (max-width: 1399px) {
  .pyramid-sec.pyramid-sec3 .lang-grouped {
    right: -14px;
    top: -13px;
  }
}
@media screen and (max-width: 576px) {
  .pyramid-sec.pyramid-sec3 .lang-grouped {
    right: -16px;
    top: -6px;
  }
}

.dls-list {
  padding-left: 0;
  font-size: 18px;
  list-style: none;
  margin-bottom: 0;
}
.dls-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.btn-setting {
  background-color: var(--dls-primary) !important;
  color: #ffffff !important;
  padding: 0;
  width: 24px;
  height: 24px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dropdown-menu {
  /* width: 250px; */
  /* overflow: hidden; */
  border: 0;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.16);
  border-radius: 15px;
}

.nav-tabs .nav-link {
  color: #000000;
  font-weight: 500;
  border: 0;
}

.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
  border: 0;
  border-bottom: 3px solid var(--dls-primary);
  color: var(--dls-primary);
}/*# sourceMappingURL=style.css.map */

.switch { 
  display: none;
}

/* Translate this //*[@id="react-entry-point"]/div to css selector */
#react-entry-point > div {
  background-color: #fff2ef;
}

.Select-menu-outer {
  border-bottom-right-radius: 4px; 
  border-bottom-left-radius: 4px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-top-color: #e6e6e6;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  margin-top: -1px;
  max-height: 200px;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  z-index: 1;
  -webkit-overflow-scrolling: touch;
}

#navbar-content > div > nav > div > div > div > div.show.dropdown.nav-item > div {
  overflow: hidden;
}

.container {
  
}
/* Consent notice: responsive, brand-aligned */
#consent-notice.consent-notice {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 20px);
  max-width: 1200px;
  padding: 14px 16px calc(14px + env(safe-area-inset-bottom, 0px));
  background-color: #ffffff;
  border: 1px solid rgba(33, 37, 41, 0.12);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  color: #212529;
  text-align: center;
  z-index: 999999;
}
#consent-notice.consent-notice .consent-notice-text a.manage-consent {
  color: var(--dls-primary);
  font-weight: 600;
}
#consent-notice.consent-notice .consent-notice-actions {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
#consent-notice.consent-notice .btn {
  min-height: 44px;
}
#consent-notice.consent-notice #approve-consent {
  background-color: var(--dls-primary);
  border-color: var(--dls-primary);
}
#consent-notice.consent-notice #approve-consent:hover {
  background-color: var(--dls-primary-hover);
  border-color: var(--dls-primary-hover);
}
#consent-notice.consent-notice #deny-consent,
#consent-notice.consent-notice #manage-preferences {
  background-color: #ffffff;
  border: 1px solid var(--dls-primary);
  color: var(--dls-primary);
}
#consent-notice.consent-notice #deny-consent:hover,
#consent-notice.consent-notice #manage-preferences:hover {
  background-color: var(--dls-primary-soft);
  color: var(--dls-primary-hover);
  border-color: var(--dls-primary-hover);
}
@media (max-width: 576px) {
  #consent-notice.consent-notice {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }
  #consent-notice.consent-notice .consent-notice-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }
  #consent-notice.consent-notice .consent-notice-actions #manage-preferences {
    grid-column: 1 / -1;
  }
}

/* Horizontal-scroll wrapper for wide data tables */
.table-responsive-wrap {
  overflow-x: auto;
  max-width: 100%;
}

/* Page-level headings */
.page-title {
  font-size: 34px;
  font-weight: 700;
  color: #212529;
  margin: 0 0 8px;
}
.page-title-intro {
  color: rgba(33, 37, 41, 0.75);
  max-width: 900px;
  margin-bottom: 24px;
}
.page-title-hero {
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px;
}
.page-title-hero-intro {
  color: rgba(255, 255, 255, 0.9);
  max-width: 900px;
  margin-bottom: 16px;
}
@media (max-width: 576px) {
  .page-title,
  .page-title-hero {
    font-size: 24px;
  }
}

/* Landing hero call-to-action buttons */
.hero-cta {
  min-width: 200px;
  padding: 12px 24px;
  font-size: 18px;
  border-radius: 8px;
}
.hero-cta.btn-outline-light {
  background-color: transparent;
}
@media (max-width: 576px) {
  .hero-cta {
    min-width: 100%;
  }
}

/* Unauthorized-access conversion card */
.unauthorized-card-wrap {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}
.unauthorized-card {
  max-width: 640px;
  width: 100%;
  border: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
}
.unauthorized-card .card-body {
  text-align: center;
  padding: 40px 32px;
}
.unauthorized-icon {
  font-size: 40px;
  color: var(--dls-primary);
  margin-bottom: 16px;
}
.unauthorized-title {
  font-size: 26px;
  font-weight: 700;
  color: #212529;
  margin-bottom: 16px;
}
.unauthorized-text {
  color: rgba(33, 37, 41, 0.75);
  text-align: left;
  margin-bottom: 24px;
}
.unauthorized-list {
  margin: 12px 0 0 0;
  padding-left: 20px;
}
@media (max-width: 576px) {
  .unauthorized-card .card-body {
    padding: 28px 20px;
  }
  .unauthorized-card .btn {
    min-width: 100%;
  }
}

/* Branded primary buttons should not inherit Bootstrap primary borders */
.btn-theme {
  border-color: var(--dls-accent);
}
.btn-theme:hover {
  border-color: var(--dls-primary-hover);
}

/* Privacy policy navigation */
html {
  scroll-behavior: smooth;
}
.privacy-toc ul li a {
  text-decoration: none;
  color: var(--dls-primary);
}
.privacy-toc ul li a:hover {
  text-decoration: underline;
  color: var(--dls-primary-hover);
}
@media (max-width: 576px) {
  .privacy-toc ul {
    padding-left: 0;
  }
}

/* Data-page content container and section quick navigation */
.container.page-content {
  max-width: 1200px;
}
.page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.page-nav a {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--dls-accent);
  border-radius: 999px;
  color: var(--dls-primary);
  font-size: 14px;
  font-weight: 600;
  background-color: var(--dls-surface);
  transition: background-color 0.15s ease, color 0.15s ease;
}
.page-nav a:hover {
  background-color: var(--dls-primary);
  color: #ffffff;
  text-decoration: none;
}

/* Consent overlay actions use the brand instead of Bootstrap primary */
#consent-overlay #allow-all {
  background-color: var(--dls-primary);
  border-color: var(--dls-primary);
}
#consent-overlay #allow-all:hover {
  background-color: var(--dls-primary-hover);
  border-color: var(--dls-primary-hover);
}
#consent-overlay .save-consent {
  background-color: var(--dls-surface);
  border: 1px solid var(--dls-primary);
  color: var(--dls-primary);
}
#consent-overlay .save-consent:hover {
  background-color: var(--dls-primary-soft);
  color: var(--dls-primary-hover);
  border-color: var(--dls-primary-hover);
}

/* Branded button states */
.btn-theme:focus-visible,
.hero-cta:focus-visible,
#consent-notice .btn:focus-visible,
#consent-overlay .btn:focus-visible,
.page-nav a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 0.25rem var(--dls-focus-strong);
}
.btn-theme:disabled,
.hero-cta:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
