/*
French Bike Tours - sticky header
Bootstrap 3.4.1 compatible
*/

#fbtStickyHeader {
    position: sticky;
    top: 0;
    z-index: 1050;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,.12);
}

.fbt-topbar {
    background: #fff;
}

.fbt-topbar-inner {
    min-height: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fbt-logo {
    flex: 0 0 auto;
}

.fbt-logo img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 70px;
}

.fbt-primary-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.fbt-action {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #555;
    text-decoration: none;
    white-space: nowrap;
}

.fbt-action:hover,
.fbt-action:focus {
    color: #222;
    text-decoration: none;
}

.fbt-action .glyphicon {
    font-size: 17px;
}

.fbt-action.fbt-action-phone,
.fbt-action.fbt-action-email {
	font-weight:bold
}

.fbt-action.fbt-review:hover {
	text-decoration:underline;
}
.fbt-review {
    padding: 6px 9px;
    border: 0px solid #e5e5e5;
    border-radius: 3px;
}

.fbt-review-stars {
    letter-spacing: 0;
    font-size: 13px;
    line-height: 1;
}

.fbt-review-score,
.fbt-review-count {
    font-size: 13px;
}

.fbt-desktop-tools {
    min-height: 36px;
    margin-top: -8px;
    padding-bottom: 7px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.fbt-language-social {
    display: flex;
    align-items: center;
    gap: 7px;
}

.fbt-language-social img {
    display: block;
}

.fbt-tools-divider {
    display: inline-block;
    width: 1px;
    height: 18px;
    margin: 0 3px;
    background: #ddd;
}

.fbt-language-link {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-decoration: none;
}

.fbt-language-link:hover,
.fbt-language-link:focus {
    color: #222;
    text-decoration: none;
}

.fbt-search-form {
    width: 220px;
    margin: 0;
}

.fbt-navigation {
    background: #fff;
}

.fbt-desktop-nav {
    min-height: 35px;
}

.fbt-desktop-nav .flexnavContainer {
    width: 100%;
}

.fbt-desktop-nav .flexnav {
    margin-bottom: 0;
}

/* Mobile/tablet hamburger */

.fbt-mobile-menu-toggle {
    position: relative;
    width: 44px;
    height: 44px;
    padding: 10px;
    margin: 0;
    border: 0;
    border-radius: 3px;
    background: transparent;
}

.fbt-mobile-menu-toggle:hover,
.fbt-mobile-menu-toggle:focus {
    background: #f5f5f5;
    outline: none;
}

.fbt-mobile-menu-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px auto;
    border-radius: 1px;
    background: #444;
}

.fbt-mobile-panel {
    display: none !important;
    background: #fff;
    border-top: 1px solid #eee;
}

.fbt-mobile-panel.is-open {
    display: block !important;
}

.fbt-mobile-nav {
    padding: 6px 0;
}

.fbt-mobile-main-link,
.fbt-mobile-submenu-toggle {
    display: flex;
    width: 100%;
    min-height: 46px;
    align-items: center;
    justify-content: space-between;
    padding: 11px 4px 11px 11px;
    border: 0;
    border-bottom: 1px solid #eee;
    background: transparent;
    color: #333;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    text-decoration: none;
}

.fbt-mobile-main-link:hover,
.fbt-mobile-main-link:focus,
.fbt-mobile-submenu-toggle:hover,
.fbt-mobile-submenu-toggle:focus {
    background: #fafafa;
    color: #111;
    text-decoration: none;
    outline: none;
}

.fbt-mobile-submenu-toggle .glyphicon {
    font-size: 11px;
    transition: transform .2s ease;
}

.fbt-mobile-group.is-open .fbt-mobile-submenu-toggle .glyphicon {
    transform: rotate(180deg);
}

.fbt-mobile-submenu {
    display: none;
    padding: 4px 0 8px 15px;
    background: #fafafa;
    border-bottom: 1px solid #eee;
}

.fbt-mobile-group.is-open .fbt-mobile-submenu {
    display: block;
}

.fbt-mobile-submenu a {
    display: block;
    padding: 10px 8px;
    color: #555;
    text-decoration: none;
}

.fbt-mobile-submenu a:hover,
.fbt-mobile-submenu a:focus {
    color: #111;
    text-decoration: none;
}

.fbt-mobile-tools {
    padding: 14px 0 18px;
}

.fbt-mobile-search {
    margin: 0 0 15px;
}

.fbt-mobile-languages {
    display: flex;
    gap: 8px;
}

.fbt-mobile-languages a {
    display: inline-flex;
    min-width: 42px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 3px;
    color: #555;
    text-decoration: none;
    font-weight: 600;
}

.fbt-mobile-languages a:hover,
.fbt-mobile-languages a:focus {
    border-color: #aaa;
    color: #222;
    text-decoration: none;
}

/* Tablet/mobile */
@media (max-width: 991px) {

    .fbt-topbar-inner {
        min-height: 50px;
	height:50px;
    }

    #topOfPage .fbt-logo img {
        max-height: 53px;
        max-width: 190px;
	display: initial;
    }

    .fbt-primary-actions {
        gap: 8px;
    }

    .fbt-action {
        min-width: 42px;
        height: 42px;
        justify-content: center;
        padding: 0 7px;
        border-radius: 3px;
    }

    .fbt-action:hover,
    .fbt-action:focus {
        background: #f5f5f5;
    }

    .fbt-action .glyphicon {
        font-size: 18px;
    }

    .fbt-review {
        min-width: auto;
        gap: 4px;
        border: 0;
    }

    .fbt-review-stars {
        font-size: 12px;
    }

    .fbt-review-score {
        font-size: 13px;
        font-weight: 600;
    }

    #fbtStickyHeader {
        box-shadow: 0 2px 8px rgba(0,0,0,.14);
    }

    .fbt-navigation {
        border-top: 1px solid #eee;
    }

    .fbt-mobile-panel {
        max-height: calc(100vh - 65px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Small phones */
@media (max-width: 479px) {

    .fbt-topbar-inner {
        min-height: 50px;
	height:50px;
    }

    .fbt-logo {
        min-width: 0;
        margin-right: 6px;
    }

    .fbt-logo img {
        max-width: 128px;
        max-height: 46px;
    }

    .fbt-primary-actions {
        gap: 1px;
    }

    .fbt-action {
        min-width: 36px;
        width: 36px;
        height: 40px;
        padding: 0;
    }

    .fbt-review {
        width: auto;
        min-width: 52px;
        padding: 0 3px;
    }

    .fbt-review-score,
    .fbt-review-count {
        display: none;
    }

    .fbt-mobile-menu-toggle {
        width: 40px;
        height: 40px;
        padding-left: 8px;
        padding-right: 8px;
    }

    .fbt-mobile-panel {
        max-height: calc(100vh - 61px);
    }
}

