/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 27 2025 | 06:19:53 */
.header-menu-container {
	position: relative;
  background-image: url('https://prototyp.dev.cargocenter.se/wp-content/uploads/2025/04/background-header.png');
	background-repeat: no-repeat;
	background-position: center top;
}

.header-menu-category > h4 > strong > a {
	font-family: 'Manrope' !important;
}

/* Dropdown hidden by default */
.dropdown-menu-container {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  opacity: 0;
  pointer-events: none;
  background: white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.5);
  padding: 1em;
  z-index: 999;
	position: absolute;
	margin-block-start: 0 !important;
}

/* Arrow animation */
.header-menu-category .header-menu-arrow {
  transition: transform 0.3s ease;
}

/* Active state */
.header-menu-category.hovered .header-menu-arrow {
  transform: rotate(180deg);
}

.wp-block-image img {
	vertical-align: middle !important;
}

.header-menu-icon {
	min-width: 52px;
}

.dropdown-menu-container.visible {
    display: block;
	max-height: 500px; /* large enough to fit the full menu */
	opacity: 1;
	pointer-events: auto;
	width: 60%;
	right: 1rem;
	position: absolute;
}

.dropdown-menu-subcategory:hover {
	background-color: #F4F4F4 !important;
	box-shadow: grey 0px 3px 6px;
	padding: 25px !important;
	transition: 0.3s ease;
}

.news-ticker-container {
  margin-block-start: 0 !important;
  width: 100%;
  overflow: hidden;
  background-color: #514e4f;
  color: #fff;
  font-size: 16px;
  padding: 6px 0;
  border-top: 2px solid #514e4f;
  border-bottom: 2px solid #514e4f;
  position: relative;
  z-index: 10;
}

.news-ticker {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 20s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}