﻿.static-navbar-container {
    position: sticky;
    z-index: 1000;
    top: 0;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-bottom: 30px;
    padding: 10px 0;
    transition: all 0.3s ease;
}
    .static-navbar-container.scrolled {
        padding: 8px 0;
        background-color: #fffdfd;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

.navbar-logo {
    height: 70px;
    width: 291px;
    transition: height 0.3s ease;
    cursor:pointer;
}
@media only screen and (max-width:643px) {
    .navbar-logo {
        height: auto;
        width: 240px;
    }
}
@media only screen and (max-width:768px) {
    .navbar-logo {
        height: auto;
        max-height: 70px;
    }
}

.navbar-logo:hover{
    opacity:0.8;
}
.static-navbar-container.scrolled .navbar-logo {
    height: 68px;
}

.navbar-right-side{
    display:flex;
    align-items:center;
    margin-right:5px;
}

.compare-prices-nav-button {
    width: 250px;
    height: 42px;
    padding: 0px 10px 0px 10px;
    font-family: Arial;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: #ffffff;
    letter-spacing: 1px;
    text-shadow: -1px -1px 1px #bc2300;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 40px !important;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

@media only screen and (max-width:550px) {
    .compare-prices-nav-button {
        width: 190px;
    }
}

.compare-prices-nav-button:hover {
    background-color: #f35416;
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: #ffffff;
}

.account-menu {
    padding-left: 20px;
    border-left: 1px solid var(--secondary-color);
    margin-right:5px;
}

@media only screen and (max-width:768px) {
    .account-menu {
        padding-left: 0;
        border-left: none;
    }
}

.nav-main-menu {
    position: relative;
    padding: 35px;
    box-shadow: 0 10px 50px #0003;
    background: #fff;
    max-width: 100%;
    width: 278px;
    border-radius: 15px;
    z-index:15;
}

.menu-toggle {
    position: relative;
}
.nav-main-menu .menu-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.account-menu .nav-main-menu {
    width: 180px;
}

.account-menu .nav-main-menu li:nth-of-type(1){
    padding-top:15px;
}

.menu-ring {
    display: block;
    width: 32px;
    height: 32px;
    border-width: 2px;
    border-style: solid;
    border-color: rgb(52, 119, 188);
    border-radius: 100%;
    cursor: pointer;
}

.page-menu .menu-toggle .menu-close {
    background: url(/images/menu-cross.svg) no-repeat center center;
    background-size: 12px;
}

.page-menu .menu-toggle {
    border-image: initial;
    background: url(/images/navbar/menu-burger.svg) center center / 16px no-repeat;
}

.account-menu .menu-toggle {
    border-image: initial;
    background: url(/images/navbar/account-menu-empty.svg) center center / 24px no-repeat;
}

.account-menu .menu-toggle .menu-close {
    background: url(/images/menu-cross.svg) no-repeat center center;
    background-size: 12px;
}

.menu-toggle.open > div{
    display:flex;
}
.menu-toggle > div {
    display: none;
    position: absolute;
    top: -17px;
    right: calc(100% - 45px);
    z-index: 1;
}

/*screen reader*/
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    clip: rect(0px, 0px, 0px, 0px);
    padding: 0px;
    margin: -1px;
    overflow: hidden;
    border-width: 0px;
    border-style: initial;
    border-color: initial;
    border-image: initial;
}

.nav-main-menu .menu-list {
    margin: -7px;
}

.account-menu .menu-list{
    display:none;
}

    .menu-list > li {
        padding: 7px;
        text-decoration:none;
        list-style-type:none;
    }

    .menu-list a {
        color: #3477bc;
        font-weight: 700;
    }
        .menu-list a:hover {
            color: #7993ad;
        }

.menu-open {
    cursor: pointer;
}
.page-menu .menu-open{
    transition: transform 0.1s ease;
}
.menu-open:not(.open):hover {
    transform: scale(0.98);
}


.quote-journey-nav-container{
    display:flex;
    justify-content:center;
}