/* Slovak Government Visual Identity CSS */

/* Official Slovak Republic colors based on the coat of arms and IDSK standards */
:root {
  /* Primary colors from Slovak coat of arms */
  --slovak-blue: #1e4e9d;
  --slovak-red: #c3112b;
  --slovak-white: #ffffff;

  /* IDSK Official colors */
  --idsk-blue: #0065b3;
  --idsk-dark-blue: #003078;
  --idsk-darker-blue: #003183;
  --idsk-black: #0b0c0c;
  --idsk-light-gray: #dddede;
  --idsk-border-gray: #bfc1c3;
  --idsk-yellow: #ffdf0f;

  /* Secondary supporting colors */
  --slovak-dark-blue: #1e4e9d;
  --slovak-light-blue: #4a90e2;
  --slovak-dark-red: #c3112b;
  --slovak-light-gray: #f8f9fa;
  --slovak-medium-gray: #dddede;
  --slovak-dark-gray: #343a40;

  /* Logo positioning */
  --logo-height: 60px;
  --logo-height-large: 80px;
}

/* Government header styling */
.gov-header {
  background: linear-gradient(
    135deg,
    var(--slovak-blue) 0%,
    var(--slovak-dark-blue) 100%
  );
  color: var(--slovak-white);
  padding: 1rem 0;
  border-bottom: 3px solid var(--slovak-red);
}

.gov-logo {
  height: var(--logo-height);
  width: auto;
  margin-right: 1rem;
}

.gov-logo-large {
  height: var(--logo-height-large);
  width: auto;
}

/* Slovak government headings */
h1.gov-heading,
.display-1.gov-heading,
.display-2.gov-heading,
.display-3.gov-heading,
.display-4.gov-heading,
.display-5.gov-heading {
  color: var(--slovak-blue);
  font-weight: 700;
  position: relative;
}

h2.gov-heading,
h3.gov-heading,
h4.gov-heading {
  color: var(--slovak-dark-blue);
  font-weight: 600;
}

/* Accent elements with red */
.gov-accent {
  color: var(--slovak-red);
  font-weight: 600;
}

.gov-accent-bg {
  background-color: var(--slovak-red);
  color: var(--slovak-white);
}

/* Primary buttons */
.btn-gov-primary {
  background-color: var(--slovak-blue);
  border-color: var(--slovak-blue);
  color: var(--slovak-white);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

.btn-gov-primary:hover {
  background-color: var(--slovak-dark-blue);
  border-color: var(--slovak-dark-blue);
  color: var(--slovak-white);
  transform: translateY(-1px);
}

/* Secondary buttons */
.btn-gov-secondary {
  background-color: var(--slovak-red);
  border-color: var(--slovak-red);
  color: var(--slovak-white);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

.btn-gov-secondary:hover {
  background-color: var(--slovak-dark-red);
  border-color: var(--slovak-dark-red);
  color: var(--slovak-white);
  transform: translateY(-1px);
}

/* Cards with government styling */
.card.gov-card {
  border: 1px solid var(--slovak-light-blue);
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 82, 204, 0.1);
  transition: all 0.3s ease;
}

.card.gov-card:hover {
  border-color: var(--slovak-blue);
  box-shadow: 0 8px 15px rgba(0, 82, 204, 0.15);
  transform: translateY(-2px);
}

.card-header.gov-header-card {
  background: linear-gradient(
    90deg,
    var(--slovak-blue) 0%,
    var(--slovak-light-blue) 100%
  );
  color: var(--slovak-white);
  border-bottom: 2px solid var(--slovak-red);
  font-weight: 600;
}

/* Navigation styling */
.nav-gov {
  background-color: var(--slovak-white);
  border-bottom: 1px solid var(--slovak-light-blue);
  box-shadow: 0 2px 4px rgba(0, 82, 204, 0.1);
}

.nav-gov .nav-link {
  color: var(--slovak-blue);
  font-weight: 500;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.nav-gov .nav-link:hover {
  color: var(--slovak-red);
  background-color: var(--slovak-light-gray);
}

.nav-gov .nav-link.active {
  color: var(--slovak-white);
  background-color: var(--slovak-blue);
}

/* Badges with government colors */
.badge.gov-primary {
  background-color: var(--slovak-blue);
  color: var(--slovak-white);
}

.badge.gov-secondary {
  background-color: var(--slovak-red);
  color: var(--slovak-white);
}

.badge.gov-info {
  background-color: var(--slovak-light-blue);
  color: var(--slovak-white);
}

/* Text utilities */
.text-gov-primary {
  color: var(--slovak-blue) !important;
}

.text-gov-secondary {
  color: var(--slovak-red) !important;
}

.text-gov-muted {
  color: var(--slovak-medium-gray) !important;
}

/* Background utilities */
.bg-gov-primary {
  background-color: var(--slovak-blue) !important;
  color: var(--slovak-white);
}

.bg-gov-secondary {
  background-color: var(--slovak-red) !important;
  color: var(--slovak-white);
}

.bg-gov-light {
  background-color: var(--slovak-light-gray) !important;
}

/* Official document styling */
.document-header {
  background: linear-gradient(
    135deg,
    var(--slovak-blue) 0%,
    var(--slovak-dark-blue) 100%
  );
  color: var(--slovak-white);
  padding: 2rem;
  text-align: center;
  position: relative;
  margin-bottom: 2rem;
}

.document-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--slovak-red);
}

.document-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.document-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  opacity: 0.9;
}

/* Logo integration for headers */
.header-with-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.header-with-logo h1,
.header-with-logo .display-4,
.header-with-logo .display-5 {
  margin: 0;
  color: var(--slovak-blue);
}

/* Report-specific styling */
.report-section {
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--slovak-white);
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 82, 204, 0.1);
  border-left: 4px solid var(--slovak-blue);
}

.report-section h3 {
  color: var(--slovak-blue);
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--slovak-red);
}

/* Chart containers */
.chart-container {
  background: var(--slovak-white);
  border: 1px solid var(--slovak-light-blue);
  border-radius: 0.5rem;
  padding: 1rem;
  margin: 1rem 0;
}

/* Footer styling */
.gov-footer {
  background: linear-gradient(
    135deg,
    var(--slovak-dark-blue) 0%,
    var(--slovak-blue) 100%
  );
  color: var(--slovak-white);
  padding: 2rem 0;
  margin-top: 3rem;
  border-top: 3px solid var(--slovak-red);
}

.gov-footer a {
  color: var(--slovak-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.gov-footer a:hover {
  color: var(--slovak-light-blue);
  text-decoration: underline;
}

/* Print styles for official documents */
@media print {
  .gov-header,
  .document-header {
    background: var(--slovak-white) !important;
    color: var(--slovak-dark-gray) !important;
    border-bottom: 2px solid var(--slovak-dark-gray) !important;
  }

  .gov-logo {
    filter: grayscale(100%);
  }

  .btn-gov-primary,
  .btn-gov-secondary {
    display: none !important;
  }

  .report-section {
    box-shadow: none !important;
    border: 1px solid var(--slovak-medium-gray) !important;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gov-logo {
    height: calc(var(--logo-height) * 0.8);
  }

  .header-with-logo {
    flex-direction: column;
    text-align: center;
  }

  .document-title {
    font-size: 2rem;
  }

  .document-subtitle {
    font-size: 1rem;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  .btn-gov-primary,
  .btn-gov-secondary,
  .card.gov-card,
  .nav-gov .nav-link {
    transition: none;
  }
}

/* Focus styles for accessibility */
.btn-gov-primary:focus,
.btn-gov-secondary:focus {
  outline: 2px solid var(--slovak-red);
  outline-offset: 2px;
}

.nav-gov .nav-link:focus {
  outline: 2px solid var(--slovak-blue);
  outline-offset: 2px;
}

/* ==========================================================================
   IDSK Header Web Structure (Official Slovak Government Header)
   ========================================================================== */

/* Main header container */
.idsk-header-web {
  z-index: 9999;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  font-family: "Source Sans Pro", Arial, sans-serif;
}

/* Slovak tricolor bar at the top */
.idsk-header-web__tricolor {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-image: linear-gradient(
    to right,
    var(--slovak-white) 0%,
    var(--slovak-white) 33.3%,
    var(--idsk-darker-blue) 33.3%,
    var(--idsk-darker-blue) 66.6%,
    var(--slovak-red) 66.6%,
    var(--slovak-red) 100%
  );
  background-size: 150px 100%;
  background-repeat: repeat;
}

/* Brand section - government authenticity banner */
.idsk-header-web__brand {
  background-color: var(--idsk-dark-blue);
  color: var(--slovak-white);
  font-size: 14px;
  line-height: 1.14286;
}

@media (min-width: 40.0625em) {
  .idsk-header-web__brand {
    font-size: 16px;
    line-height: 1.25;
  }
}

.idsk-header-web__brand .govuk-body-s,
.idsk-header-web__brand .govuk-link {
  color: var(--slovak-white);
  margin: 10px 0;
}

@media (max-width: 48.0525em) {
  .idsk-header-web__brand .govuk-body-s,
  .idsk-header-web__brand .govuk-link {
    margin: 11px 0;
  }
}

.idsk-header-web__brand .govuk-grid-column-full {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Government authenticity section */
.idsk-header-web__brand-gestor {
  float: left;
}

.idsk-header-web__brand-gestor .govuk-body-s {
  display: inline-block;
}

.idsk-header-web__brand-gestor-button {
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.14286;
  padding: 0;
  background: none;
  border: none;
  color: var(--slovak-white);
  cursor: pointer;
  text-decoration: none;
}

@media (min-width: 40.0625em) {
  .idsk-header-web__brand-gestor-button {
    font-size: 16px;
    line-height: 1.25;
  }
}

.idsk-header-web__brand-gestor-button:hover {
  text-decoration: underline;
}

.idsk-header-web__brand-gestor-button:focus {
  outline: 3px solid transparent;
  color: var(--idsk-black);
  background-color: var(--idsk-yellow);
  box-shadow: 0 -2px var(--idsk-yellow), 0 4px var(--idsk-black);
  text-decoration: underline;
}

/* Arrow icons */
.idsk-header-web__link-arrow {
  background-color: var(--slovak-white);
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 10px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3e%3cpath d='M2 3l3 3 3-3' stroke='white' stroke-width='1.5' fill='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
}

.idsk-header-web__brand-gestor-button:focus .idsk-header-web__link-arrow {
  background-color: var(--idsk-black);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3e%3cpath d='M2 3l3 3 3-3' stroke='black' stroke-width='1.5' fill='none'/%3e%3c/svg%3e");
}

.idsk-header-web__brand-gestor-button--active .idsk-header-web__link-arrow {
  transform: rotate(180deg);
  transition: transform 0.2s;
}

/* Slovak flag icon */
.idsk-header-web__flag {
  background-color: var(--slovak-white);
  display: inline-block;
  width: 14px;
  height: 16px;
  margin: 12px 10px 12px 0;
  float: left;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 16'%3e%3crect width='14' height='5.33' fill='white'/%3e%3crect y='5.33' width='14' height='5.33' fill='%23003183'/%3e%3crect y='10.66' width='14' height='5.33' fill='%23EE1C25'/%3e%3c/svg%3e");
  background-size: contain;
  background-repeat: no-repeat;
}

@media (max-width: 48.0525em) {
  .idsk-header-web__flag {
    height: 15px;
    width: 12px;
  }
}

/* Government dropdown content */
.idsk-header-web__brand-dropdown {
  overflow: hidden;
  display: none;
  position: relative;
  background-color: var(--idsk-dark-blue);
  color: var(--slovak-white);
  padding: 20px 0;
}

.idsk-header-web__brand-dropdown--active {
  display: block;
}

.idsk-header-web__brand-dropdown .govuk-body-s:first-child {
  font-weight: 700;
  margin: 20px 0 0;
}

.idsk-header-web__brand-dropdown .govuk-body-s:last-child {
  margin-bottom: 20px;
}

/* Mobile responsive text */
@media (max-width: 48.0525em) {
  .idsk-header-web__brand-gestor .idsk-header-web__brand-gestor-text {
    display: none;
  }
}

@media (min-width: 48.0625em) {
  .idsk-header-web__brand-gestor .idsk-header-web__brand-gestor-text--mobile {
    display: none;
  }
}

/* Language selector */
.idsk-header-web__brand-language {
  float: right;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  position: relative;
}

@media (min-width: 40.0625em) {
  .idsk-header-web__brand-language {
    font-size: 19px;
    line-height: 1.31579;
  }
}

.idsk-header-web__brand-language-button {
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.14286;
  background: none;
  border: none;
  color: var(--slovak-white);
  margin: 9px 0;
  cursor: pointer;
}

@media (min-width: 40.0625em) {
  .idsk-header-web__brand-language-button {
    font-size: 16px;
    line-height: 1.25;
  }
}

@media (max-width: 48.0525em) {
  .idsk-header-web__brand-language-button {
    margin-top: 8px;
    font-size: 18px;
  }
}

.idsk-header-web__brand-language-button:hover {
  text-decoration: underline;
}

.idsk-header-web__brand-language-button:focus {
  outline: 3px solid transparent;
  color: var(--idsk-black);
  background-color: var(--idsk-yellow);
  box-shadow: 0 -2px var(--idsk-yellow), 0 4px var(--idsk-black);
  text-decoration: underline;
}

/* Language dropdown */
.idsk-header-web__brand-language-list {
  display: none;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  text-align: left;
  background-color: var(--slovak-white);
  position: absolute;
  z-index: 2;
  width: 150px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  right: 0;
  top: 100%;
}

.idsk-header-web__brand-language--active .idsk-header-web__brand-language-list {
  display: block;
}

.idsk-header-web__brand-language--active .idsk-header-web__link-arrow {
  transform: rotate(180deg);
  transition: transform 0.2s;
}

.idsk-header-web__brand-language-list-item-link {
  display: block;
  text-decoration: none;
  padding: 10px;
  color: var(--idsk-black);
}

.idsk-header-web__brand-language-list-item-link:hover {
  text-decoration: underline;
}

.idsk-header-web__brand-language-list-item-link--selected {
  text-decoration: underline;
  font-weight: 700;
}

/* Main header section */
.idsk-header-web__main {
  background-color: var(--slovak-white);
  padding: 0;
}

@media (min-width: 48.0625em) {
  .idsk-header-web__main .govuk-grid-row {
    display: flex;
    align-items: center;
  }

  .idsk-header-web__main .govuk-grid-column-two-thirds {
    display: flex;
    justify-content: flex-end;
  }

  .idsk-header-web__main .govuk-grid-column-one-third-from-desktop {
    display: flex;
    align-items: center;
  }
}

/* Logo and title section */
.idsk-header-web__main-headline {
  margin: 28px 0;
}

.idsk-header-web__main-headline > a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.idsk-header-web__main-headline > a:focus {
  outline: 3px solid transparent;
  color: var(--idsk-black);
  background-color: var(--idsk-yellow);
  box-shadow: 0 -2px var(--idsk-yellow), 0 4px var(--idsk-black);
  text-decoration: none;
}

.idsk-header-web__main-headline-logo {
  height: 50px;
  margin-right: 15px;
  width: auto;
}

@media (max-width: 48.0525em) {
  .idsk-header-web__main-headline-logo {
    height: 40px;
  }
}

.idsk-header-web__main-headline .govuk-heading-m {
  margin: 0;
  color: var(--idsk-dark-blue);
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.11111;
}

@media (min-width: 40.0625em) {
  .idsk-header-web__main-headline .govuk-heading-m {
    font-size: 24px;
    line-height: 1.25;
  }
}

/* Mobile menu button */
.idsk-header-web__main-headline-menu-button {
  display: none;
  background-color: var(--slovak-white);
  border: 2px solid var(--idsk-dark-blue);
  color: var(--idsk-dark-blue);
  padding: 8px 12px;
  cursor: pointer;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
}

@media (max-width: 48.0525em) {
  .idsk-header-web__main-headline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin: 0;
  }

  .idsk-header-web__main-headline-menu-button {
    display: flex;
    align-items: center;
  }
}

.idsk-header-web__main-headline-menu-button:hover {
  background-color: var(--idsk-light-gray);
}

.idsk-header-web__main-headline-menu-button:focus {
  outline: 3px solid transparent;
  color: var(--idsk-black);
  background-color: var(--idsk-yellow);
  box-shadow: 0 -2px var(--idsk-yellow), 0 4px var(--idsk-black);
}

/* Search section */
.idsk-header-web__main-action {
  display: flex;
  align-items: center;
  margin: 30px 0;
}

.idsk-header-web__main-action-search {
  display: flex;
  align-items: center;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
  outline: 1px solid var(--idsk-black);
  background: var(--slovak-white);
}

@media (min-width: 40.0625em) {
  .idsk-header-web__main-action-search {
    font-size: 19px;
    line-height: 1.31579;
  }
}

@media (min-width: 48.0625em) {
  .idsk-header-web__main-action-search {
    width: 300px;
  }
}

.idsk-header-web__main-action-search .govuk-input {
  border: none;
  height: 40px;
  padding: 8px 12px;
  flex: 1;
  font-size: inherit;
  line-height: inherit;
}

.idsk-header-web__main-action-search .govuk-input:focus {
  outline: 3px solid var(--idsk-yellow);
  z-index: 2;
}

.idsk-header-web__main-action-search .govuk-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--idsk-blue);
  border: none;
  color: var(--slovak-white);
  padding: 8px 12px;
  height: 40px;
  min-width: 44px;
  cursor: pointer;
  margin: 0;
  box-shadow: none;
}

.idsk-header-web__main-action-search .govuk-button:hover {
  background-color: var(--idsk-dark-blue);
}

.idsk-header-web__main-action-search .govuk-button:focus {
  outline: 3px solid var(--idsk-yellow);
  outline-offset: 0;
}

.idsk-header-web__main-action-search .govuk-button:active {
  top: 0;
}

/* Navigation divider */
.idsk-header-web__nav--divider {
  height: 1px;
  background-color: var(--idsk-border-gray);
}

/* Navigation section */
.idsk-header-web__nav {
  background-color: var(--slovak-white);
  display: block;
  margin: 0;
  padding: 0;
}

@media (max-width: 48.0525em) {
  .idsk-header-web__nav--mobile {
    display: block;
  }
  
  .idsk-header-web__nav--mobile.idsk-header-web__nav--open {
    display: block;
  }
}

.idsk-header-web__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 48.0625em) {
  .idsk-header-web__nav-list {
    display: flex;
    flex-wrap: wrap;
  }
}

.idsk-header-web__nav-list-item {
  border-bottom: 1px solid var(--idsk-border-gray);
}

@media (min-width: 48.0625em) {
  .idsk-header-web__nav-list-item {
    display: inline-block;
    border: none;
    margin-right: 30px;
  }

  .idsk-header-web__nav-list-item:last-child {
    margin-right: 0;
  }
}

.idsk-header-web__nav-list-item-link {
  display: block;
  padding: 15px 0;
  color: var(--idsk-black);
  text-decoration: none;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
}

@media (min-width: 40.0625em) {
  .idsk-header-web__nav-list-item-link {
    font-size: 19px;
    line-height: 1.31579;
  }
}

@media (max-width: 48.0525em) {
  .idsk-header-web__nav-list-item-link {
    font-size: 24px;
    font-weight: 700;
    padding: 20px 0;
  }
}

.idsk-header-web__nav-list-item-link:hover {
  color: var(--idsk-blue);
  text-decoration: underline;
}

.idsk-header-web__nav-list-item-link:focus {
  outline: 3px solid transparent;
  color: var(--idsk-black);
  background-color: var(--idsk-yellow);
  box-shadow: 0 -2px var(--idsk-yellow), 0 4px var(--idsk-black);
  text-decoration: none;
}

/* Sub-navigation */
.idsk-header-web__nav-submenu {
  display: none;
  background-color: var(--idsk-light-gray);
  padding: 20px 0;
  border-top: 1px solid var(--idsk-border-gray);
}

.idsk-header-web__nav-submenu--active {
  display: block;
}

.idsk-header-web__nav-submenu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.idsk-header-web__nav-submenu-list-item {
  margin-bottom: 10px;
}

.idsk-header-web__nav-submenu-list-item-link {
  color: var(--idsk-black);
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25;
}

.idsk-header-web__nav-submenu-list-item-link:hover {
  color: var(--idsk-blue);
  text-decoration: underline;
}

.idsk-header-web__nav-submenu-list-item-link:focus {
  outline: 3px solid transparent;
  color: var(--idsk-black);
  background-color: var(--idsk-yellow);
  box-shadow: 0 -2px var(--idsk-yellow), 0 4px var(--idsk-black);
  text-decoration: none;
}

/* Mobile search and buttons in nav */
@media (max-width: 48.0525em) {
  .idsk-header-web__nav .idsk-header-web__main-action-search,
  .idsk-header-web__nav .idsk-header-web__main--buttons {
    display: block;
    margin: 20px 0;
  }

  .idsk-header-web__main-action-search {
    margin: 0;
    outline: 1px solid var(--idsk-black);
  }

  .idsk-header-web__main-action-search .govuk-input {
    width: calc(100% - 44px);
  }

  .idsk-header-web__main-action-search .govuk-button {
    float: right;
  }
}

/* Responsive behavior */
@media (max-width: 48.0525em) {
  .idsk-header-web {
    position: sticky;
    top: 0;
    left: 0;
    max-height: 100vh;
    overflow: auto;
  }

  .idsk-header-web__main-action-search,
  .idsk-header-web__main--buttons {
    display: none;
  }
}
