/* ----------------------------
  Header
---------------------------- */

.header {
    padding: 0 50px;
    display: -webkit-box;
    /* Less than android 4.3 */
    display: -webkit-flex;
    /* Less than iOS8 */
    display: flex;
    -webkit-box-pack: justify;
    /* Less than android 4.3 */
    -webkit-justify-content: space-between;
    /* Less than iOS8 */
    justify-content: space-between;
    height: 50px;
    background: #fff;
    font-family: "Axiforma", Helvetica, sans-serif;
    font-size: 13px;
    position: fixed;
    top: -50px;
    left: 0;
    right: 0;
    z-index: 10000;
    -webkit-transition: top 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    transition: top 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.loaded .header {
    top: 0;
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
}

@media screen and (max-width: 800px) {
    .header {
        padding: 0 20px;
        padding-right: 40px;
        height: 54px;
        top: -54px;
        font-size: 11px;
    }
}


/* Header Title
---------------------------- */

.header-title {
    height: 100%;
}

.header-title a {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    height: 100%;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.header-title a:hover {
    opacity: 0.6;
}

.header-title svg {
    margin-right: 12px;
    width: 123px;
    height: 12px;
    position: relative;
    top: -1px;
}

.header-title em {
    font-weight: 900;
}

@media screen and (max-width: 800px) {
    .header-title svg {
        margin-right: 10px;
        width: 103px;
        height: 13.5px;
        top: 0;
    }
    .header-title span {
        position: relative;
        top: 1px;
    }
}


/* Header Menu List
---------------------------- */

.header-menu-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    height: 100%;
    margin-right: 0;
}

.header-menu-list a {
    padding-right: 60px;
    padding-left: 60px;
    display: block;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
    background-color: #929397;
    color: #FFF;
    line-height: 50px;
}

.header-menu-list a:hover {
    opacity: 0.6;
}

@media screen and (max-width: 800px) {
    .header-menu-list {
        display: none;
    }
}


/* Header Button
---------------------------- */

.header-button {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    display: block;
    width: 50px;
    height: 50px;
    background-color: rgba(99, 102, 106, 1.00);
    z-index: 10010;
}

.header-button span {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -12px;
    width: 25px;
    height: 2px;
    background: #FFF;
    -webkit-transition: all 0.5s 0s ease;
    -moz-transition: all 0.5s 0s ease;
    -ms-transition: all 0.5s 0s ease;
    -o-transition: all 0.5s 0s ease;
    transition: all 0.5s 0s ease;
}

.header-button span.l1 {
    margin-top: -6px;
}

.header-button span.l3 {
    margin-top: 6px;
}

.header-button.active {
    transform: translate(-300px, 0);
    -ms-transform: translate(-300px, 0);
    -moz-transform: translate(-300px, 0);
    -webkit-transform: translate(-300px, 0);
    -webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.header-button.active span.l1 {
    margin-top: 0px;
    -webkit-transform: scale(1, 1) translate(0%, 0%) rotate(45deg);
    -moz-transform: scale(1, 1) translate(0%, 0%) rotate(45deg);
    -ms-transform: scale(1, 1) translate(0%, 0%) rotate(45deg);
    -o-transform: scale(1, 1) translate(0%, 0%) rotate(45deg);
    transform: scale(1, 1) translate(0%, 0%) rotate(45deg);
}

.header-button.active span.l2 {
    opacity: 0;
}

.header-button.active span.l3 {
    margin-top: 0px;
    -webkit-transform: scale(1, 1) translate(0%, 0%) rotate(-45deg);
    -moz-transform: scale(1, 1) translate(0%, 0%) rotate(-45deg);
    -ms-transform: scale(1, 1) translate(0%, 0%) rotate(-45deg);
    -o-transform: scale(1, 1) translate(0%, 0%) rotate(-45deg);
    transform: scale(1, 1) translate(0%, 0%) rotate(-45deg);
}

@media screen and (max-width: 800px) {
    .header-button {
        width: 55px;
        height: 54px;
    }
}

@media screen and (max-width: 350px) {
    .header-button.active {
        transform: translate(-300px, 0);
        -ms-transform: translate(0px, 0);
        -moz-transform: translate(0px, 0);
        -webkit-transform: translate(0px, 0);
        -webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
        transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    }
}


/* ----------------------------
  Menu
---------------------------- */

.main-container {
    -webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.main-container.view {
    transform: translate(-300px, 0);
    -ms-transform: translate(-300px, 0);
    -moz-transform: translate(-300px, 0);
    -webkit-transform: translate(-300px, 0);
    -webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.menu {
    width: 300px;
    height: 100%;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #000;
    color: #FFF;
    position: fixed;
    top: 0px;
    right: 0;
    bottom: 0;
    z-index: 10001;
    visibility: hidden;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    overflow: hidden
}

.menu.view {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    visibility: visible;
}

.menu-inner {
    padding: 0 15px;
    text-align: center;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

ul.hg_menu {
    max-height: 100vh;
    margin-bottom: 25px;
    overflow-y: scroll;
}

ul.hg_menu li {
    border-bottom: 1px #2b2b2b solid;
    color: #FFF;
    font-size: 20px;
    letter-spacing: 0.02em;
    line-height: 1;
    font-weight: 900;
    padding: 15px 0;
}

ul.hg_menu li:last-child {
    border-bottom: none 0px
}

ul.hg_menu li a {
    color: #FFF;
    display: block;
}

ul.hg_menu li a:hover {
    color: #808080
}

@media screen and (max-width: 800px) {
    .menu {
        display: block;
    }
    .menu-inner {
        padding: 0 15px;
        text-align: center;
        width: 100%;
        margin-left: 0%;
        height: 100%;
        background: #000;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media screen and (max-width: 350px) {
    .menu {
        width: 80%;
    }
    ul.hg_menu li {
        padding: 20px 0;
        font-size: 18px;
    }
    .main-container.view {
        transform: translate(-20%, 0);
        -ms-transform: translate(-20%, 0);
        -moz-transform: translate(-20%, 0);
        -webkit-transform: translate(-20%, 0);
        -webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
        transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    }
}


/* Menu Close
  ---------------------------- */

.menu-close button {
    margin-left: auto;
    padding: 14px 0;
    width: 25px;
}

.menu-close button svg {
    margin: 0 auto;
}


/* Menu List
  ---------------------------- */

.menu-list {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.menu-list-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}


/* Menu List Head
  ---------------------------- */

.menu-list-head {
    display: block;
    padding: 19px 0;
    font-size: 13px;
    font-weight: bold;
    position: relative;
}

.menu-list-head svg {
    margin: auto 0;
    width: 24px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}

.menu-list-head.on svg {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}

.menu-list-head rect:nth-child(2) {
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}

.menu-list-head.on rect:nth-child(2) {
    opacity: 0;
}


/* Menu List Inner
  ---------------------------- */

.menu-list-inner {
    padding-bottom: 6px;
    display: none;
}

.menu-list-inner:after {
    content: "";
    display: block;
    clear: both;
}

.menu-list-inner li {
    width: 50%;
    float: left;
    font-size: 10px;
    font-weight: bold;
}

.menu-list-inner a {
    display: block;
    padding-bottom: 16px;
    text-decoration: underline;
}


/* Menu Info
  ---------------------------- */

.menu-info {
    margin-top: 16px;
    font-size: 10px;
    font-weight: bold;
}

.menu-info a {
    display: block;
    padding: 8px 0;
    text-decoration: underline;
}


/* Menu Lang
  ---------------------------- */

.menu-lang {
    margin-top: 8px;
    margin-bottom: 35px;
    font-size: 10px;
    font-weight: bold;
}

.menu-lang a {
    text-decoration: underline;
}

.menu-lang i {
    margin: 0 11px;
}

.wrapper {
    padding-top: 50px;
}


/** booking_wrapper **/

.booking_wrapper {
    display: none
}

.booking {
    display: none
}

@media screen and (max-width: 800px) {
    .booking_wrapper {
        display: block;
        position: fixed;
        border: 1px solid #FFF;
        height: 69px;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 99;
        margin: 0 auto 3px;
        width: 99%;
        border-radius: 9px;
        background: rgba(99, 102, 106, 0.7);
        box-sizing: border-box;
    }
    .booking_wrapper a {
        text-decoration: none;
    }
    .booking_wrapper .top_reservation_contact {
        position: relative;
        left: 0px;
        bottom: auto;
        margin: 0px auto;
        display: flex;
        justify-content: space-between;
        width: 100%;
        font-size: 13px;
        line-height: 1.8;
    }
    .booking_wrapper .top_reservation_contact div {
        width: 100%;
        border-bottom: 1px solid #FFF;
    }
    .booking_wrapper .top_reservation_contact div:first-child {
        margin-bottom: 0;
        border-right: 1px solid #FFF;
    }
    .booking_wrapper .top_reservation_contact a {
        color: #FFF;
        background-color: transparent;
        text-align: center;
        display: block;
    }
    .booking {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        height: 43.5px;
    }
    .booking div {
        text-align: center;
    }
    .booking div.reservation_footer_btn {
        width: calc( 100% - 120px);
        border-right: 1px solid #FFF;
        border-left: 1px solid #FFF;
    }
    .booking div a {
        display: block;
        font-size: 13px;
        color: #fff;
        letter-spacing: 0.05em;
        padding: 8px 17px;
        text-align: center;
        pointer-events:auto;
    }
}