/* =======================================================================
 * CONFIG
 * -----------------------------------------------------------------------
 * File used to import custom and vendors variables
 * ===================================================================== */
/* =======================================================================
 * BREAKPOINTS
 * -----------------------------------------------------------------------
 * Breakpoints are used for responsive design. You can define here
 * the breakpoints required for the design.
 * ===================================================================== */
/* =======================================================================
 * COLORS VARIABLES
 * -----------------------------------------------------------------------
 * Define all the colors used in the website. You can use
 * http://chir.ag/projects/name-that-color/ to generate human readable
 * names for each color.
 * ===================================================================== */
/* =======================================================================
 * BASE VARIABLES
 * -----------------------------------------------------------------------
 *
 * ===================================================================== */
/* =======================================================================
 * VENDORS VARIABLES
 * -----------------------------------------------------------------------
 * Import here vendors configurations files for them to be automatically
 * loaded into the app.config file
 * ===================================================================== */
/* =======================================================================
 * MIXINS
 * -----------------------------------------------------------------------
 * File used to import custom and vendors mixins
 * ===================================================================== */
@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes fixedZindexUp {
    from {
        z-index: -9999;
    }
    to {
        z-index: 5;
    }
}

@keyframes fixedZindexUp {
    from {
        z-index: -9999;
    }
    to {
        z-index: 5;
    }
}

@-webkit-keyframes fixedZindexDown {
    from {
        z-index: 5;
    }
    to {
        z-index: -9999;
    }
}

@keyframes fixedZindexDown {
    from {
        z-index: 5;
    }
    to {
        z-index: -9999;
    }
}

@-webkit-keyframes burgerOpenFirstLine {
    from {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
    to {
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
}

@keyframes burgerOpenFirstLine {
    from {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
    to {
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
}

@-webkit-keyframes burgerOpenRotateFirstLine {
    from {
        -webkit-transform: translateY(10px) rotate(0deg);
                transform: translateY(10px) rotate(0deg);
    }
    to {
        -webkit-transform: translateY(10px) rotate(45deg);
                transform: translateY(10px) rotate(45deg);
    }
}

@keyframes burgerOpenRotateFirstLine {
    from {
        -webkit-transform: translateY(10px) rotate(0deg);
                transform: translateY(10px) rotate(0deg);
    }
    to {
        -webkit-transform: translateY(10px) rotate(45deg);
                transform: translateY(10px) rotate(45deg);
    }
}

@-webkit-keyframes burgerOpenLastLine {
    from {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
    to {
        -webkit-transform: translateY(-10px);
                transform: translateY(-10px);
    }
}

@keyframes burgerOpenLastLine {
    from {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
    to {
        -webkit-transform: translateY(-10px);
                transform: translateY(-10px);
    }
}

@-webkit-keyframes burgerOpenRotateLastLine {
    from {
        -webkit-transform: translateY(-10px) rotate(0deg);
                transform: translateY(-10px) rotate(0deg);
    }
    to {
        -webkit-transform: translateY(-10px) rotate(-45deg);
                transform: translateY(-10px) rotate(-45deg);
    }
}

@keyframes burgerOpenRotateLastLine {
    from {
        -webkit-transform: translateY(-10px) rotate(0deg);
                transform: translateY(-10px) rotate(0deg);
    }
    to {
        -webkit-transform: translateY(-10px) rotate(-45deg);
                transform: translateY(-10px) rotate(-45deg);
    }
}

@-webkit-keyframes burgerCloseFirstLine {
    from {
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
    to {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
}

@keyframes burgerCloseFirstLine {
    from {
        -webkit-transform: translateY(10px);
                transform: translateY(10px);
    }
    to {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
}

@-webkit-keyframes burgerCloseRotateFirstLine {
    from {
        -webkit-transform: translateY(10px) rotate(45deg);
                transform: translateY(10px) rotate(45deg);
    }
    to {
        -webkit-transform: translateY(10px) rotate(0deg);
                transform: translateY(10px) rotate(0deg);
    }
}

@keyframes burgerCloseRotateFirstLine {
    from {
        -webkit-transform: translateY(10px) rotate(45deg);
                transform: translateY(10px) rotate(45deg);
    }
    to {
        -webkit-transform: translateY(10px) rotate(0deg);
                transform: translateY(10px) rotate(0deg);
    }
}

@-webkit-keyframes burgerCloseLastLine {
    from {
        -webkit-transform: translateY(-10px);
                transform: translateY(-10px);
    }
    to {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
}

@keyframes burgerCloseLastLine {
    from {
        -webkit-transform: translateY(-10px);
                transform: translateY(-10px);
    }
    to {
        -webkit-transform: translateY(0px);
                transform: translateY(0px);
    }
}

@-webkit-keyframes burgerCloseRotateLastLine {
    from {
        -webkit-transform: translateY(-10px) rotate(-45deg);
                transform: translateY(-10px) rotate(-45deg);
    }
    to {
        -webkit-transform: translateY(-10px) rotate(0deg);
                transform: translateY(-10px) rotate(0deg);
    }
}

@keyframes burgerCloseRotateLastLine {
    from {
        -webkit-transform: translateY(-10px) rotate(-45deg);
                transform: translateY(-10px) rotate(-45deg);
    }
    to {
        -webkit-transform: translateY(-10px) rotate(0deg);
                transform: translateY(-10px) rotate(0deg);
    }
}

@-webkit-keyframes submitRotate {
    from {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(-7200deg);
                transform: rotate(-7200deg);
    }
}

@keyframes submitRotate {
    from {
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(-7200deg);
                transform: rotate(-7200deg);
    }
}

@-webkit-keyframes submitShrink {
    from {
        width: 100%;
    }
    to {
        width: 54px;
        height: 54px;
        padding: 0 0;
        border-top-color: #F39600;
    }
}

@keyframes submitShrink {
    from {
        width: 100%;
    }
    to {
        width: 54px;
        height: 54px;
        padding: 0 0;
        border-top-color: #F39600;
    }
}

@-webkit-keyframes submitShrinkUp {
    from {
        width: 0;
        padding: 20px 25px;
        border-top-color: #F39600;
    }
    to {
        width: 100%;
        height: auto;
        padding: 20px 45px;
        border-top-color: #ed1d24;
    }
}

@keyframes submitShrinkUp {
    from {
        width: 0;
        padding: 20px 25px;
        border-top-color: #F39600;
    }
    to {
        width: 100%;
        height: auto;
        padding: 20px 45px;
        border-top-color: #ed1d24;
    }
}

/* =======================================================================
 * VENDORS VARIABLES
 * -----------------------------------------------------------------------
 * Import here vendors mixins files for them to be automatically
 * loaded into the app.mixins file
 * ===================================================================== */
.restaurant-info-toolbox {
    margin-left: 15px;
    position: fixed;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    opacity: 0;
    background: #FFFFFF;
    -webkit-box-shadow: 0 4px 5px 0 rgba(150, 150, 150, 0.8);
            box-shadow: 0 4px 5px 0 rgba(150, 150, 150, 0.8);
    top: -150px;
    z-index: -1;
    -webkit-transition: top 500ms, opacity 500ms;
    transition: top 500ms, opacity 500ms;
    pointer-events: none;
}

.restaurant-info-toolbox.opened {
    opacity: 1;
    top: 190px;
    pointer-events: auto;
}

.restaurant-info-toolbox .informations-wrapper {
    width: 600px;
}

.restaurant-info-toolbox .informations-wrapper .informations-header {
    background: #F5F5F5;
    padding: 21px 27px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.restaurant-info-toolbox .informations-wrapper .informations-header h3 {
    font-family: 'TradeGothicLTPro-BdCn20', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    color: #ed1d24;
    text-transform: uppercase;
    width: 332px;
    padding-right: 20px;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
}

.restaurant-info-toolbox .informations-wrapper .informations-header .contacts .contact-type {
    position: relative;
    padding-left: 25px;
}

.restaurant-info-toolbox .informations-wrapper .informations-header .contacts .contact-type .type-icon {
    position: absolute;
    top: -2px;
    left: 0;
}

.restaurant-info-toolbox .informations-wrapper .informations-header .contacts .contact-type .phone .contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-bottom: 4px;
}

.restaurant-info-toolbox .informations-wrapper .informations-header .contacts .contact-type .phone .contact:last-child {
    margin-bottom: 0;
}

.restaurant-info-toolbox .informations-wrapper .informations-header .contacts .contact-type .phone .contact .type {
    font-family: 'TradeGothicLTPro-BdCn20', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    color: #ed1d24;
    margin-right: 6px;
}

.restaurant-info-toolbox .informations-wrapper .informations-header .contacts .contact-type .phone .contact .phone-number {
    font-family: 'TradeGothicLTPro-Cn18', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    color: #383838;
    letter-spacing: 0.03em;
    text-decoration: none;
}

.restaurant-info-toolbox .informations-wrapper .informations-header .contacts .contact-type .phone .contact .phone-number:hover {
    color: #ed1d24;
}

.restaurant-info-toolbox .informations-wrapper .informations-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 21px 27px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.restaurant-info-toolbox .informations-wrapper .informations-content .actions {
    padding: 0 20px 0 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}

.restaurant-info-toolbox .informations-wrapper .informations-content .actions .action {
    margin-bottom: 10px;
    text-align: center;
}

.restaurant-info-toolbox .informations-wrapper .informations-content .actions .action .primary-cta {
    width: 100%;
}

.restaurant-info-toolbox .informations-wrapper .informations-content .actions .action:last-child {
    margin-bottom: 0;
}

.restaurant-info-toolbox .informations-wrapper .informations-content .actions .action .change-restaurant {
    font-family: 'TradeGothicLTPro-BdCn20', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    text-decoration: underline;
    color: #9B9B9B;
    text-transform: uppercase;
    padding-top: 3px;
}

.restaurant-info-toolbox .informations-wrapper .informations-content .categories {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-right: 0;
}

.restaurant-info-toolbox .informations-wrapper .informations-content .categories .category {
    margin-left: 55px;
}

.restaurant-info-toolbox .informations-wrapper .informations-content .categories .category:first-child {
    margin-left: 0;
}

.restaurant-info-toolbox .informations-wrapper .informations-content .categories .category h4 {
    font-family: 'TradeGothicLTPro-BdCn20', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    text-transform: uppercase;
    color: #383838;
    margin-bottom: 24px;
}

.restaurant-info-toolbox .informations-wrapper .informations-content .categories .category .hours .hour {
    font-family: 'TradeGothicLTPro-Cn18', Arial, helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    color: #383838;
}

.restaurant-info-toolbox .informations-wrapper .informations-content .categories .category .hours .hour:not(:last-child) {
    margin-bottom: 6px;
}

.restaurant-info-toolbox .informations-wrapper .informations-content .categories .category .hours .hour .circle-status {
    margin-right: 4px;
}

.restaurant-info-toolbox .map-localize {
    width: 275px;
}

.restaurant-info-toolbox .map-localize .map {
    height: 100%;
    width: 100%;
}

@media (min-width: 0) and (max-width: 959px) {
    .restaurant-info-toolbox {
        display: none;
    }
}

/*# sourceMappingURL=infos-toolbox.css.map */
