/* Sprogflag */
.navbar .navbar-content>.navbar-left {
    max-width: 25%;
}
.w-language img {
    max-width: 25px;
    margin-right: 5px;
}
.w-language .button {
    text-transform: none;
}
.w-language .dropdown-container li > a {
    display: flex;
    align-items: center;
    gap: 5px;
}
.navbar {
    position: sticky;
    top: 0;
    border: none;
}
.navbar .navbar-bottom {
    display: none;
}
.menu.menu-inline>li {
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.navbar-right .menu.menu-inline {
    gap: 10px;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
}
.navbar .navbar-icons>li>span {
    justify-self: center;
    align-self: flex-end;
    font-size: 11px;
    display: block;
    margin: auto auto 0;
}
.navbar .navbar-icons>li .basket>a {
    line-height: 0;
}
.navbar .navbar-icons>li>* {
    justify-content: center;
}

@media (min-width: 960px) {
    .navbar .navbar-content {
        min-height: unset;
        padding: 10px 0;
    }
    .navbar .navbar-content>.navbar-center {
        display: block;
        text-align: center;
        font-weight: bold;
        font-style: italic;
        font-size: 20px;
    }
    .navbar-center svg {
        width: 20px;
        position: relative;
        top: -10px;;
    }
    .navbar .navbar-bottom {
        display: block;
        width: 100%;
    }

    .productmenu {
        position: relative;
        justify-content: center;
        color: inherit
    }

    .productmenu>li {
        position: relative;
    }
    .productmenu>li.has-megamenu {
        position: static;
    }

    .productmenu>li>a {
        display: block;
        text-decoration: none;
        padding: 10px 15px;
        color: inherit;
        font-size: 14px;
        font-weight: 700;
        transition: color ease .15s
    }

    .productmenu>li.has-dropdown>a {
        display: flex;
        align-items: center
    }

    .productmenu>li.has-dropdown>a svg {
        width: 14px;
        height: 14px;
        margin-left: 10px;
        opacity: .5;
        display: block
    }

    .productmenu>li>ul {
        min-width: 240px;
        position: absolute;
        top: 110%;
        left: 15px;
        background-color: #fff;
        border-radius: 3px;
        z-index: 1;
        box-shadow: rgba(100,100,111,.2) 0 4px 29px 0;
        list-style: none;
        padding: 5px 0;
        margin: 0;
        opacity: 0;
        pointer-events: none;
        transition: opacity ease .25s,top ease .25s
    }

    .productmenu>li:hover>ul {
        opacity: 1;
        top: 100%;
        pointer-events: auto
    }

    .productmenu>li:nth-last-child(1)>ul,.productmenu>li:nth-last-child(2)>ul {
        left: auto;
        right: 15px
    }

    .productmenu>li:nth-last-child(1)>ul::before,.productmenu>li:nth-last-child(2)>ul::before {
        left: auto;
        right: 15px
    }

    .productmenu>li>ul>li>a {
        display: block;
        padding: 5px 15px;
        font-size: 14px;
        text-decoration: none;
        color: #888;
        transition: color ease .15s
    }

    .productmenu>li>ul li a svg {
        display: none
    }

    .productmenu>li>ul>li:hover>a {
        color: #000
    }

    .productmenu>li>ul.megamenu {
        width: 100%;
        left: 0 !important;
        right: 0;
        margin: 0;
        padding: 20px;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 20px;
        transform: none;
    }

    .productmenu>li>ul.megamenu.megamenu--large {
        grid-template-columns: repeat(4,1fr)
    }

    .productmenu>li>ul.megamenu.megamenu--extralarge {
        grid-template-columns: repeat(4,1fr)
    }

    .productmenu>li>ul.megamenu>li {
        margin: 0;
        min-width: 180px;
        width: fit-content
    }

    .productmenu>li>ul.megamenu>li a {
        padding: 5px;
        display: block
    }

    .productmenu>li>ul.megamenu>li>a {
        color: #666;
        font-weight: 700;
        transition: color ease .15s
    }

    .productmenu>li>ul.megamenu>li:hover>a {
        color: #000
    }

    .productmenu>li>ul.megamenu>li>ul {
        list-style: none;
        padding: 0;
        margin: 0
    }

    .productmenu>li>ul.megamenu>li>ul>li>a {
        padding: 5px;
        font-size: 14px;
        text-decoration: none;
        color: #888;
        transition: color ease .15s
    }

    .productmenu>li>ul.megamenu>li>ul>li:hover>a {
        color: #000
    }

    .productmenu>li>ul.megamenu>li>ul>li.has-dropdown .item-arrow {
        display: none
    }

    .productmenu>li>ul.megamenu>li>ul>li.has-dropdown .menu {
        display: none
    }

    .productmenu>li>ul.megamenu>li>ul>li.seeMore>a {
        text-decoration: underline;
        color: #000
    }

    .productmenu>li>ul.megamenu>li>ul>li ul {
        display: none
    }
}

@media (max-width: 767px) {
    .w-logo .w-logo-text {
        font-size: 13px;
    }
}


.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.flex-row {
    margin: 0 -10px;
}
.flex-row>div {
    padding-left: 10px;
    padding-right: 10px;
}
.wrap {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.between {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.around {
	-ms-flex-pack: distribute;
	justify-content: space-around;
}
.start {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start
}
.end {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.align-top {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.align-bottom {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}
.align-self-bottom {
    align-self: flex-end
}
.align-center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.align-self-center {
    -ms-flex-item-align: center;
    align-self: center;
}
.with-gap {
    gap: 10px
}
.popUp {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .1s ease-in;
    transition: all .1s ease-in;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    width: 100%;
    margin: auto;
    z-index: 999;
    overflow-y: auto;
    font-size: 16px;
    background: rgba(0, 0, 0, .6);
}
.popUp strong {
    margin: 10px 0;
}
.popUp select {
    height: auto;
}

.popUp>div {
    background: #fff;
    width: 85%;
    max-width: 650px;
    margin: auto;
    -webkit-box-shadow: 0 0 20px #000;
    box-shadow: 0 0 20px #000;
    border-radius: 5px;
    position: relative;
    display: flex;
    flex-direction: column;
}
.popUp>div div {
    padding: 55px 25px;
}
.popUp>div .flex {
    padding: 0;
    gap: 10px;
    margin: 1em 0;
}
.popUp>div .flex>div {
    padding: 0;
    width: 100%;
}
.popUp>div .flex>div span {
    display: block;
    text-align: left;
}
.popUp>div .button-primary {
    text-transform: uppercase;
    margin-left: auto;
    display: block;
}
.popUp .buttons-container a,
.popUp .buttons-container button {
    border: none;
    margin: 5px;
    background: none;
    padding: 10px;
    font-weight: bold;
    letter-spacing: 2px;
    display: inline-block;
    border-radius: 5px;
    background: #001d3b;
    color: #ffffff;
    -webkit-transition: all .3s;
    transition: all .3s;
    min-width: 150px;
}

.popUp b {
    font-weight: normal;
    font-size: 1.5em;
}

.popUp.is-opened {
    opacity: 1;
    visibility: visible;
}
.popUp small {
    margin-top: 1em;
    color: #666;;
}
.popUp small a {
    text-decoration: underline;
}

.button-popup {
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    padding: 10px;
}
.button-popup svg {
    max-width: 100%;
    height: auto;
    pointer-events: none;
}

