﻿body {
    --template-nav-gap: 30px;
    --template-nav-height: 40px;
    --template-nav-font-size: 14px;
    --template-nav-small-font-size: 14px;
    --template-nav-letter-spacing: initial;
    --template-nav-font-weight: 400;
    --template-nav-color: #333333;
    --template-nav-text-transform: uppercase;
    --template-nav-background: #fff;
}

body .header__inner {
    padding: 3px 10px;
}

body .header__title .logo {
    content: "";
    background-image: url(https://resources.citybreak.com/bookvisit/funasdalen/logo_2025.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: block;
    width: 100px;
    height: 46px;
}

body .header__title .logo img {
    display: none;
}

@media (max-width: 999px) {
    body .nav__item--cart .text__price {
        display: none !important;
    }
}

@media (min-width: 1000px) {
    body {
        --template-nav-gap: 0;
    }

    body .header__inner {
        padding: 0 0 0 35px;
    }

    body .header__title {
        flex-grow: initial !important;
        padding-right: 43px;
    }

    body .nav__primary {
        justify-content: flex-start !important;
    }

    body .header__title .logo {
        width: 120px;
        height: 55px;
    }

    body .nav__item  {
        height: 80px !important;
        transition: all .2s;
        padding: 0 15px;
    }

    body .nav__item:hover {
        background-color: rgba(234,94,42,.81);
        color: #fff !important;
    }

    .nav__item--booking,
    .nav__item--lang,
    .nav__item--cart {
        display: flex;
        flex-direction: column;
        height: 60px;
        gap: 3px !important;
        line-height: 26px;
        padding: 0 20px !important;
        color: #000 !important;
        padding-top: 8px !important;
        justify-content: flex-start !important;
    }

    .nav__item--booking:hover,
    .nav__item--lang:hover,
    .nav__item--cart:hover {
        background-color: #333 !important;
        color: #fff !important;
    }

    .nav__item--booking .icon,
    .nav__item--lang .icon,
    .nav__item--cart .icon {
        display: none;
    }

    .nav__item--booking:before,
    .nav__item--lang:before,
    .nav__item--cart:before {
        content: '';
        display: block;
        min-width: 40px;
        min-height: 40px;
        background-color: currentColor;
        mask-repeat: no-repeat;
        -webkit-mask-repeat: no-repeat;
        mask-size: 100% 100%;
        -webkit-mask-size: 100% 100%;    
    }

    .nav__item--cart {
        background-color: rgba(234,94,42,1);
        color: #fff !important;
    }

    .nav__item--booking:before {
        mask-image: url(https://resources.citybreak.com/bookvisit/funasdalen/icon-booking.png);
        -webkit-mask-image: url(https://resources.citybreak.com/bookvisit/funasdalen/icon-booking.png); 
    }

    .nav__item--lang:before {
        mask-image: url(https://resources.citybreak.com/bookvisit/funasdalen/icon-lang.png);
        -webkit-mask-image: url(https://resources.citybreak.com/bookvisit/funasdalen/icon-lang.png); 
    }

    .nav__item--cart:before {
        mask-image: url(https://resources.citybreak.com/bookvisit/funasdalen/icon-cart.png);
        -webkit-mask-image: url(https://resources.citybreak.com/bookvisit/funasdalen/icon-cart.png); 
    }
}