/* ICONFONT */

@font-face {
    font-family: 'HamburgerMenu';
    src: url('https://cdnwp0.mirai.com/fonts/hamburgermenu.eot');
    src: url('https://cdnwp0.mirai.com/fonts/hamburgermenu.eot#iefix') format('embedded-opentype'), url('https://cdnwp0.mirai.com/fonts/hamburgermenu.woff') format('woff'), url('https://cdnwp0.mirai.com/fonts/hamburgermenu.ttf') format('truetype'), url('https://cdnwp0.mirai.com/fonts/hamburgermenu.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}


/* HAMBURGER MENU */

.addons-wrapper {
    background: #333;
    display: block;
    text-align: right;
}

.addons-wrapper .hamburger-menu {
    display: inline-block;
    padding: 5px;
}

.addons-wrapper .hamburger-menu span {}

.addons-wrapper .hamburger-menu:before {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-family: 'HamburgerMenu';
    font-size: 16px;
    font-style: normal;
    margin-right: 5px;
}

.addons-wrapper .hide-menu:before {
    content: "\e000";
}

.addons-wrapper .show-menu:before {
    content: "\e001";
}

.addons-wrapper .hamburger-menu,
.addons-wrapper .hamburger-menu span,
.addons-wrapper .hamburger-menu:before {
    color: #fff !important;
}

.addons-wrapper .hamburger-menu span,
.addons-wrapper .hamburger-menu:before {
    display: inline-block;
    line-height: initial;
    text-transform: uppercase;
    vertical-align: middle;
}


/* MENU WEB */

body #menu_web {
    background-color: #111 !important;
    display: block;
    margin: 0px !important;
    overflow: scroll;
    padding: 10px 0 15px !important;
    position: fixed;
    z-index: 100;
}

body #menu_web li.menu-item {
    background: transparent;
    border: 0 !important;
    display: block !important;
    float: none !important;
    font-weight: normal;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
    width: 100% !important;
}

#menu_web li.menu-item a {
    border: 0 !important;
    color: #ddd;
    font-weight: normal;
    margin: 0 !important;
    padding: 12px 20px !important;
    white-space: initial;
}

#menu_web li.menu-item a.booking_mobile {
    color: #fff;
    font-weight: bold;
}

body #menu_web li.menu-item,
body #menu_web li.menu-item a {
    text-align: left;
}

body #menu_web>li ul.sub-menu {
    background: #222 !important;
    border-bottom: 1px dotted #333;
    border-top: 1px dotted #333;
    bottom: auto;
    display: block !important;
    float: none !important;
    font-size: 0.95em;
    left: auto !important;
    min-width: initial;
    padding: 0 !important;
    position: relative !important;
    top: auto;
    width: 100%;
}

body #menu_web>li ul.sub-menu a:before {
    content: "-";
    margin-left: 5px;
    margin-right: 7px;
}


/* ICONS ANIMATIONS */

.addons-wrapper a.show-menu:before {
    -moz-animation: showLines 1s;
    -webkit-animation: showLines 1s;
    opacity: 1;
}

@-moz-keyframes showLines {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes showLines {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.addons-wrapper a.hide-menu:before {
    -moz-animation: showClose 1s;
    -webkit-animation: showClose 1s;
    opacity: 1;
}

@-moz-keyframes showClose {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes showClose {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


/***********************************************************/


/********************** MENU EFFECTS ***********************/


/***********************************************************/


/*----------------------- EFFECT 1 ------------------------*/

body #menu_web {
    bottom: 0;
    left: -75%;
    top: 0;
    width: 75%;
}


/* MENU ANIMATION */

#menu_web.show {
    -moz-animation: showMenu 0.5s;
    -webkit-animation: showMenu 0.5s;
    left: 0;
}

@-moz-keyframes showMenu {
    0% {
        left: -75%;
    }
    100% {
        left: 0;
    }
}

@-webkit-keyframes showMenu {
    0% {
        left: -75%;
    }
    100% {
        left: 0;
    }
}

#menu_web.hide {
    -moz-animation: hideMenu 0.5s;
    -webkit-animation: hideMenu 0.5s;
    left: -75%;
}

@-moz-keyframes hideMenu {
    0% {
        left: 0;
    }
    100% {
        left: -75%;
    }
}

@-webkit-keyframes hideMenu {
    0% {
        left: 0;
    }
    100% {
        left: -75%;
    }
}


/*--------------------- END EFFECT 1 ----------------------*/


/***********************************************************/


/***********************************************************/


/***********************************************************/