/*!********************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./components/topbar/topbar.scss ***!
  \********************************************************************************************************************************************************************************/
/* stylelint-disable */
.topbar {
  width: 100%;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  z-index: 1000;
  background-color: #DA5A01;
  color: #ffffff;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
  opacity: 1;
}
body.has-scrolled .topbar {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.topbar__content {
  font-weight: 700;
  font-size: 0.85rem;
  padding: 13px 20px;
  position: relative;
  color: #ffffff;
  max-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media print, screen and (max-width: 63.99875em) {
  .topbar__content {
    padding: 12px 15px;
    font-size: 0.85rem;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .topbar__content {
    padding: 10px 10px;
    font-size: 0.75rem;
    flex-wrap: nowrap;
  }
}
.topbar__content a:not(.topbar__button) {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 700;
  white-space: nowrap;
}
.topbar__content a:not(.topbar__button):hover {
  text-decoration: none;
}
.topbar__content p {
  margin: 0;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.topbar__content span {
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.topbar__button {
  display: inline-block;
  padding: 7px 14px 5px 14px;
  margin-left: 12px;
  background-color: #ffffff;
  color: #DA5A01;
  font-weight: 700;
  font-size: 0.8rem;
  text-decoration: none;
  border-radius: 3px;
  transition: all 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1.2;
}
.topbar__button:hover {
  background-color: rgb(242.25, 242.25, 242.25);
  transform: scale(1.05);
  color: #DA5A01;
}
@media print, screen and (max-width: 63.99875em) {
  .topbar__button {
    padding: 5px 12px;
    font-size: 0.75rem;
    margin-left: 10px;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .topbar__button {
    padding: 4px 10px;
    font-size: 0.7rem;
    margin-left: 8px;
  }
}

body {
  padding-top: var(--header-height, 80px);
  transition: padding-top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body.has-topbar .header {
  top: var(--topbar-height, 46px);
  transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body.has-scrolled .header {
  top: 0;
}
