.header {
    display:none !important;
}

.breadcrumbs__container {
    display:none !important;
}
    
.sticky-nav{
    z-index: 6;
    box-shadow: -4px 4px 7px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    left: 0;
    background: white;
    margin: 0  !important;
    padding: 2.5rem 1.5rem !important;
}

.logged-in .sticky-nav{
    top: 33px;
}

.sticky_nav__wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky_nav__button{
    background-color: #ff9571;
    color: #0f489f;
    border-radius: 50px;
    padding: .7rem 1rem;
    font-weight: 700;
    text-decoration: none;
}

.button_mobile{
    display: none;
}

@media (max-width: 768px){
    .button_desktop{
        display: none;
    }

    .sticky_nav__wrapper{
        justify-content: center;
    }

    .logged-in .sticky-nav{
        top: 0;
    }

    .button_mobile{
        display: block;
        position: fixed;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 6;
    }
}

