
body {
  font-family: MuseoSans-normal, sans-serif;
  background-color: #fff
}

.header {
  background-color: #f7f7f5;
  border-bottom: 1px solid #e0e0e0;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .05)
}

div .error_message {
  background-color: rgba(230, 10, 62, 0.75);
  padding: 12px 24px;
  color:#fff;
  display: flex;
  flex-direction: column;
}

.logo {
  display: flex;
  align-items: center
}

.logo svg {
  width: 68px;
  height: 29px
}

.controls {
  display: flex;
  gap: 8px;
  align-items: center
}

.language-links {
  display: flex;
  gap: 4px;
  padding: 4px;
  font-size: 16px;
  font-weight: 400
}

.lng_btn {
  padding: 4px 4px;
  text-decoration: none;
  cursor: pointer;
  transition: all .2s ease;
  border: none;
  background: 0 0;
  color: #00327d
}

.language-links .lng_btn {
  text-transform: lowercase
}

.language-links .lng_btn:hover {
  color: #00a4e0;
  text-decoration: underline
}

.language-links .lng_btn.active {
  font-weight: bolder;
  color: #00327d
}

.env_tag {
  background-color: #FFF;
  border-radius: 1em;
  padding: 0.6em;
  margin-left: 1.5em;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.clear-btn {
  margin-left: 8px;
  padding: 8px 20px;
  text-decoration: none;
  cursor: pointer;
  transition: all .2s ease;
  background-color: #e74c3c;
  color: #fff;
  border-radius: 4px
}

.clear-btn:hover {
  background-color: #c0392b
}

.dl-btn {
  margin-right: 20px;
  margin-top: 4px;
  padding: 6px 12px;
  text-decoration: none;
  cursor: pointer;
  transition: all .2s ease;
  background-color: #00327D;
  color: #fff;
  border-radius: 4px
}

.dl-btn:hover {
  background-color: rgba(0, 50, 125, 0.5)
}

.close-btn {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #666;
  padding: 0;
  width: 30px;
  height: 30px;
  line-height: 1;
}

.close-btn:hover {
  color: #000;
  background: none;
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: white;
  width: 90%;
  height: 90%;
  max-width: 1200px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.modal-header {
  padding: 15px 20px;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  margin: 0;
  font-size: 20px;
}

.modal-body {
  flex: 1;
  overflow: hidden;
  padding: 20px;
}

#pdfFrame {
  width: 100%;
  height: 100%;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.spinner-container {
  height: 90vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center
}

.sk-cube-grid {
  width: 40px;
  height: 40px;
  margin: 100px auto
}

.sk-cube-grid .sk-cube {
  width: 33%;
  height: 33%;
  background-color: #333;
  float: left;
  -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
  animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out
}

.sk-cube-grid .sk-cube1 {
  -webkit-animation-delay: .2s;
  animation-delay: .2s
}

.sk-cube-grid .sk-cube2 {
  -webkit-animation-delay: .3s;
  animation-delay: .3s
}

.sk-cube-grid .sk-cube3 {
  -webkit-animation-delay: .4s;
  animation-delay: .4s
}

.sk-cube-grid .sk-cube4 {
  -webkit-animation-delay: .1s;
  animation-delay: .1s
}

.sk-cube-grid .sk-cube5 {
  -webkit-animation-delay: .2s;
  animation-delay: .2s
}

.sk-cube-grid .sk-cube6 {
  -webkit-animation-delay: .3s;
  animation-delay: .3s
}

.sk-cube-grid .sk-cube7 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s
}

.sk-cube-grid .sk-cube8 {
  -webkit-animation-delay: .1s;
  animation-delay: .1s
}

.sk-cube-grid .sk-cube9 {
  -webkit-animation-delay: .2s;
  animation-delay: .2s
}

@-webkit-keyframes sk-cubeGridScaleDelay {

  0%,
  100%,
  70% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1)
  }

  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1)
  }
}

@keyframes sk-cubeGridScaleDelay {

  0%,
  100%,
  70% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1)
  }

  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1)
  }
}
