/* =========================================================
   NEW YORK ROYAL COACH
   COMMON HEADER + NAVIGATION
   ========================================================= */


.rcc-header,
.rcc-header * {
    box-sizing: border-box;
}


.rcc-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5000;
    background: #fff;
    opacity: 0.9;
    border-bottom: 1px solid #eeeeee;
}


/* =========================================================
   TOP HEADER
   ========================================================= */

.rcc-header-top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    min-height: 78px;
    padding: 0 22px;
}


/* LOGO */

.rcc-header-logo {
    position: relative;
    top: -6px;
    text-align: center;
}

.rcc-header-logo a {
    display: inline-block; }

.rcc-header-logo img {
    display: block;
    width: 320px;
    max-width: 100%;
    margin: 0 0 5px 0;
    height: auto; }


/* PHONE NUMBERS */

.rcc-header-phone {
    line-height: 1.08; }


.rcc-header-phone a {
    display: block;
    color: #969696;
    font-size: 23px;
    font-weight: 400;
    letter-spacing: .02em;
    text-decoration: none;
}

.rcc-header-phone span {
    display: block;
    color: #999;
    font-size: 14px;
    letter-spacing: .03em;
}

.rcc-header-phone-left {
    text-align: left; }

.rcc-header-phone-right {
    text-align: right;
}


.rcc-header-phone a:hover,
.rcc-header-phone a:focus {
    color: #79c843;
}


/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

.rcc-nav {
    width: 100%;
    margin-top: -15px;
    background: rgba(255,255,255,.97);
}

.rcc-nav-list {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rcc-nav-list > li {
    position: relative;
}

.rcc-nav-list a {
    text-decoration: none;
}

/* MAIN LINKS */

.rcc-nav-list > li > a,
.rcc-nav-parent > a {
    display: block;
    padding: 8px 12px 9px;
    color: #737373;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: .09em;
    white-space: nowrap;
}


.rcc-nav-list > li > a:hover,
.rcc-nav-list > li > a:focus,
.rcc-nav-parent > a:hover,
.rcc-nav-parent > a:focus {
    color: #79c843;
}


/* MAIN ITEM WITH SUBMENU */

.rcc-nav-parent {
    display: flex;
    align-items: center;
}


/* ARROW */

.rcc-submenu-toggle {
    position: relative;
    width: 18px;
    height: 38px;
    margin-left: -8px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.rcc-submenu-toggle::after {
    content: "";
    position: absolute;
    top: 16px;
    left: 4px;
    width: 6px;
    height: 6px;
    border-right: 1px solid #888;
    border-bottom: 1px solid #888;
    transform: rotate(45deg);
}


.rcc-has-submenu:hover .rcc-submenu-toggle::after,
.rcc-has-submenu:focus-within .rcc-submenu-toggle::after {
    border-color: #79c843;
}


/* =========================================================
   DROPDOWNS
   ========================================================= */

.rcc-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 190px;
    margin: 0;
    padding: 5px 0;
    list-style: none;
    background: rgba(255,255,255,.92);
    border-top: 2px solid #79c843;
    box-shadow: 0 8px 20px rgba(0,0,0,.07);
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    transition:
        opacity .18s ease,
        transform .18s ease,
        visibility .18s ease;
}

.rcc-submenu li {
    margin: 0;
    padding: 0;
}

.rcc-submenu a {
    display: block;
    padding: 9px 14px;
    color: #444;
    background: transparent;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.35;
    letter-spacing: .04em;
    white-space: nowrap;
}


.rcc-submenu a:hover,
.rcc-submenu a:focus {
    color: #79c843;
    background: #fff;
}


/* OPEN DROPDOWN ON DESKTOP */

.rcc-has-submenu:hover > .rcc-submenu,
.rcc-has-submenu:focus-within > .rcc-submenu,
.rcc-has-submenu.rcc-open > .rcc-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* =========================================================
   CURRENT PAGE
   ========================================================= */

.rcc-nav a[aria-current="page"] {
    
}


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.rcc-menu-toggle {
    display: none;
    width: 100%;
    padding: 12px 20px;
    border: 0;
    border-top: 1px solid #eee;
    background: #fff;
    color: #777;
    font-size: 14px;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
}

.rcc-menu-icon {
    position: relative;
    display: inline-block;
    width: 22px;
    height: 14px;
    margin-right: 8px;
    vertical-align: middle;
    border-top: 2px solid #888;
    border-bottom: 2px solid #888;
}

.rcc-menu-icon::after {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 22px;
    border-top: 2px solid #888;
}


/* =========================================================
   TABLET
   ========================================================= */

@media only screen and (max-width: 1000px) {

    .rcc-header-logo img {
        width: 275px;   }

    .rcc-header-phone a {
        font-size: 18px;   }

    .rcc-header-phone span {
        font-size: 12px;    }

    .rcc-nav-list > li > a,
    .rcc-nav-parent > a {
        padding-left: 8px;
        padding-right: 8px;
        font-size: 13px;
        letter-spacing: .06em;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media only screen and (max-width: 760px) {

    .rcc-header-top {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 10px 15px 8px;    }

    .rcc-header-logo {
        grid-row: 1;
        margin-bottom: 6px;    }

    .rcc-header-logo img {
        width: 220px;    }

    .rcc-header-phone {
        display: none;    }

    /* MENU BUTTON */

    .rcc-menu-toggle {
        display: block;    }


    /* NAV */

    .rcc-nav {
        display: none;
        border-top: 1px solid #eee;
    }

    .rcc-nav.rcc-menu-open {
        display: block;    }

    .rcc-nav-list {
        display: block;
        width: 100%;
        padding: 0;
    }

    .rcc-nav-list > li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .rcc-nav-list > li > a,
    .rcc-nav-parent > a {
        padding: 12px 18px;
        font-size: 14px;
        letter-spacing: .07em;
    }


    .rcc-nav-parent {
        justify-content: space-between;
    }

    .rcc-submenu-toggle {
        flex: 0 0 48px;
        width: 48px;
        height: 46px;
        margin: 0;
        border-left: 1px solid #eee;
    }


    .rcc-submenu-toggle::after {
        top: 17px;
        left: 19px;
        width: 8px;
        height: 8px;
    }


    /* MOBILE DROPDOWN */

    .rcc-submenu {
        position: static;
        display: none;
        width: 100%;
        min-width: 0;
        padding: 0;
        border-top: 1px solid #eee;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: #fafafa;
    }

    .rcc-has-submenu:hover > .rcc-submenu,
    .rcc-has-submenu:focus-within > .rcc-submenu {
        display: none;    }

    .rcc-has-submenu.rcc-open > .rcc-submenu {
        display: block;    }

    .rcc-submenu a {
        padding: 11px 30px;
        color: #555;
        background: #fafafa;
        font-size: 13px;
    }

    .rcc-submenu a:hover,
    .rcc-submenu a:focus {
        color: #79c843;
        background: #fff;
    }

    .rcc-has-submenu.rcc-open
    > .rcc-nav-parent
    > .rcc-submenu-toggle::after {
        transform: rotate(225deg);
        top: 20px;
    }



}
/* Fixed Book / Last Minute buttons */
a#book:link,
a#book:visited,
a#book:hover,
a#book:active,
a#book:focus,
a#last-minute:link,
a#last-minute:visited,
a#last-minute:hover,
a#last-minute:active,
a#last-minute:focus {
    text-decoration: none !important;
    color: #fff !important;
}