/**************************************************************/
/*****************             Media queries                  */

.menu {
    margin-top: 40px;
    margin-bottom: 40px;
}

.menu .options {
    padding: 40px 0 0 0;
}

.option {
    width: 100%;
    text-align: right;
}

.menu .options button {
    display: inline-block;
    border: none;
    color: #242424;
    cursor: pointer;
    background-color: #fcba30;
    border-radius: 5px 0 0 5px;
    padding: 5px 24px;
    margin-bottom: 4px;
    text-decoration: none;
    font-family: 'Old Press';
    text-transform: uppercase;
    font-size: 32px;
}
.menu .content {
    background-color: #2e1904;
    box-shadow: 0 0 30px #000;
    color: #FBBA2F;
    padding: 15px;
}

.menu .content h1 {
    font-size: 90px;
    text-transform: uppercase;
    word-wrap: break-word;
    font-family: 'Old Press';
}

.menu .ico-xs, footer .ico-xs {
    width: 24px;
}

.menu .ico-sm {
    width: 32px;
}

.menu .ico-md {
    width: 40px;
}

.menu .ico-lg {
    width: 80px;
}

.menu .icon-label {
    display: inline-block;
    margin-right: 8px;
}

.menu .row .food-desc {
    margin-bottom: 8px;
    cursor: pointer;
}

.menu .row .food-desc:hover {
    background-color: #40270e;
    cursor: pointer;
}

/**************************************************************/
/*****************             Float menu button              */
.menu .section {
    position: relative;
}

.menu .fix-position-top-20 {
    position: absolute;
    top: 24px;
}

.menu .btn-sidenav {
    right: 0;
    transition: 0.3s;
    padding: 15px;
    width: 60px;
    text-decoration: none;
    font-size: 20px;
    color: white;
    border-radius: 5px 0 0 5px;
    background-color: #fcba30;
}

.menu .btn-sidenav:hover {
    width: 100px;
    background-color: #e2a72b;
}

.menu .btn-sidenav:active {
    background-color: #c39024;
}

.menu .btn-sidenav i {
    border: solid #2e1904;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
}

.menu .btn-sidenav .right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

/**************************************************************/
/*****************             Float menu                  */

.menu .float-menu {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    background-color: #2e1904;
}

.menu .float-menu .btn-close {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    color: #818181;
    display: block;
    transition: 0.3s;
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 3;
    top: 0;
    left:0;
    background-color: rgba(0,0,0, 0.9);
    overflow-y: auto;
    overflow-x: hidden;
    text-align: center;
    opacity:0;
    transition: opacity 0.3s;
}

@media screen and (max-height: 450px) {
    .menu .float-menu {padding-top: 15px;}
    .menu .float-menu a {font-size: 18px;}
}

/**************************************************************/
/*****************                  Services                  */
.dashed-right-sm-up {
    border-right: 2px dashed white;
}

.custom-message {
    text-align: center;
    border-bottom: 1px solid #ccc !important;
}

.big-images {
    text-align: right;
}

.big-image {
    max-width: 200px;
}

/**************************************************************/
/*****************             Media queries                  */

@media screen and (max-width: 768px) {
    .text-center-xs {
        text-align: center;
    }
    .dashed-right-sm-up {
        border-right: none;
        border-bottom: 2px dashed white;
    }

    .big-image {
        max-width: 100px;
    }

    .big-images {
        text-align: center;
    }
}

@media screen and (max-width: 992px) and (min-width: 768px) {
    .menu .options button {
        font-size: 24px;
    }
}