header {
    padding-top: 30px;
    padding-bottom: 15px;
    background: var(--color-white);
}

@media all and (max-width: 767px) {
    header {
        min-height: 85px;
    }
}

@media all and (min-width: 768px) {
    header {
        min-height: 233px;
    }
}

.header-main-container {
    padding-top: 30px;
    padding-bottom: 25px;
    top: 30px;
}

.lang-switch {
    display: flex;
    width: 145px;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.lang-switch .dropdown-toggle:after {
    border: none;
    width: 7.88px;
    height: 23px;
    background-image: url("/bilder/r2025r/lang-switch-arrows.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.lang-switch .dropdown-toggle:focus {
    box-shadow: none;
}

.flag {
    display: inline-flex;
    align-items: center;
    position: relative;
    gap: 10px;
    flex: 0 0 auto;
}

.unfold-more {
    position: relative;
    width: 21px;
    height: 21px;
}

.lang-icon {
    position: relative;
    width: 27.83px;
    height: 20px;
    object-fit: cover;
	border-radius:3px;
}

.lang-name {
    position: relative;
    width: fit-content;
    margin-top: -1px;
    white-space: nowrap;
}

header .row.first {
    padding-bottom: 20px;
}

header .row.first hr {
    max-width: calc(100% - 24px);
    margin-top: 20px;
    margin-bottom: 0;
}

header .row.second {
    padding-top: 20px;
}

.max-width-1200 {
    max-width: 1200px;
}

/** Navigation / Burger menu */
.nav-item, .nav-item:hover {
    text-decoration: none;
    color: var(--color-black);
}

.navbar hr {
    margin: 7px 0 6px 0;
    height: 2px;
}

.navbar .lang-switch {
    margin-top: 15px;
}

.navbar li.nav-item  {
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    padding: 11px 0;
}

.nav-item.selected  {
    color: var(--color-orange);
}

.navbar li.nav-item:not(.last-of-group)  {
    border-bottom: 2px solid rgb(246, 246, 246);
}

.navbar li.nav-item .dropdown-header:not(:first-child) {
    margin-top: 15px;
}

.navbar li.nav-item.dropdown li.nav-item a {
    font-weight: 400;
    font-size: 14px;
}

.navbar li.nav-item .dropdown-toggle:after {
    right: 0;
    top: 24px;
    position: absolute;

}

.navbar li.nav-item .dropdown-toggle.show:after {
    transform: rotate(180deg);
}

.navbar-toggler-icon {
    background-image: var(--bs-navbar-toggler-icon-bg);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.submenu {
    top: 83px;
    max-width: 1440px;
    width: calc(100% - 24px);
    right: 0;
    left: 0;
    margin: auto;
    display: none;
    background-color: var(--color-white);
}

.nav-item:hover + .submenu {
    display: flex;
    z-index: 2;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
}



